/* ============================================================
   METINGS — stylesheet
   Concept: "The Agenda" — meeting rooms, booked for you.
   Palette: Paper / Graphite Ink / Cobalt / Tint / Mint signal
   Type:    Sora (display) · Instrument Sans (body) · Spline Sans Mono (labels)
   ============================================================ */

:root {
  --paper:  #F7F7F4;
  --ink:    #171C22;
  --slate:  #4C5560;
  --cobalt: #2B59E0;
  --cobalt-deep: #1E44B8;
  --tint:   #E8EDFB;
  --mint:   #2EC878;
  --card:   #FFFFFF;
  --line:   #DFE3E8;
  --radius: 16px;
  --wrap:   1140px;
  --display: "Sora", "Segoe UI", system-ui, sans-serif;
  --body:    "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  --mono:    "Spline Sans Mono", "SFMono-Regular", Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

img { display: block; max-width: 100%; }

a { color: var(--ink); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 2px; }

/* ---------- header ---------- */

.site-head { background: var(--paper); }

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}

.brand svg { width: 34px; height: 34px; }

.head-nav { display: flex; align-items: center; gap: 26px; }

.head-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--slate);
}

.head-nav a:hover { color: var(--ink); }

.head-nav .btn { padding: 11px 22px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  border-radius: 10px;
  padding: 15px 28px;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.btn-cobalt { background: var(--cobalt); color: #fff; }
.btn-cobalt:hover { background: var(--cobalt-deep); }

.btn-quiet {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-quiet:hover { box-shadow: inset 0 0 0 1.5px var(--slate); }

/* ---------- eyebrow / headings ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 14px;
}

h1, h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.12;
  text-wrap: balance;
}

/* ---------- hero ---------- */

.hero { padding: 40px 0 84px; }

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); }

.hero .lede {
  margin: 22px 0 30px;
  max-width: 50ch;
  font-size: 1.13rem;
  color: var(--slate);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-note {
  margin-top: 16px;
  font-size: .92rem;
  color: var(--slate);
}

.hero-note strong { color: var(--ink); }

.hero-visual { position: relative; }

.hero-visual img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}

.agenda-chip {
  position: absolute;
  left: -22px;
  bottom: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 18px;
  box-shadow: 0 18px 40px -22px rgba(23,28,34,.35);
  font-family: var(--mono);
  font-size: .82rem;
  line-height: 1.5;
}

.agenda-chip .chip-time { color: var(--cobalt); font-weight: 500; }

.agenda-chip .chip-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  margin-right: 7px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero .lede, .hero-ctas, .hero-note { animation: rise .6s ease both; }
  .hero .lede  { animation-delay: .08s; }
  .hero-ctas   { animation-delay: .16s; }
  .hero-note   { animation-delay: .22s; }
  .agenda-chip { animation: rise .6s ease .3s both; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
  }
}

/* ---------- sections ---------- */

.section { padding: 78px 0; }
.section.alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section h2 { font-size: clamp(1.65rem, 3.2vw, 2.3rem); max-width: 26ch; margin-bottom: 14px; }

.section .lede { max-width: 60ch; color: var(--slate); }

/* room categories */

.rooms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.room-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.room-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

.room-card .room-body { padding: 16px 18px 18px; }

.room-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.02rem; letter-spacing: -.01em; }

.room-card p { font-size: .92rem; color: var(--slate); margin-top: 5px; }

/* ---------- agenda (signature) ---------- */

.agenda { max-width: 720px; margin-top: 48px; }

.agenda-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  position: relative;
  padding-bottom: 40px;
}

.agenda-row:last-child { padding-bottom: 0; }

.agenda-row::before {
  content: "";
  position: absolute;
  left: 132px;
  top: 10px;
  bottom: -6px;
  width: 2px;
  background: var(--line);
}

.agenda-row:last-child::before { display: none; }

.agenda-time {
  font-family: var(--mono);
  font-size: .85rem;
  font-weight: 500;
  color: var(--cobalt);
  text-align: right;
  padding-top: 2px;
}

.agenda-item { position: relative; padding-left: 34px; }

.agenda-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 4px var(--tint);
}

.agenda-item h3 { font-family: var(--display); font-weight: 600; font-size: 1.12rem; }

.agenda-item p { color: var(--slate); margin-top: 6px; max-width: 48ch; }

/* included checklist */

.included {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.inc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.inc .tick {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--cobalt);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.inc h3 { font-size: 1.02rem; font-family: var(--display); font-weight: 600; }

.inc p { font-size: .95rem; color: var(--slate); margin-top: 5px; }

/* ---------- request form ---------- */

.req-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.req-side .fine {
  margin-top: 18px;
  font-size: .95rem;
  color: var(--slate);
  max-width: 44ch;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 60px -40px rgba(23,28,34,.4);
}

.form-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(43,89,224,.18);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-card .btn { width: 100%; margin-top: 6px; }

.form-note { font-size: .84rem; color: var(--slate); margin-top: 14px; }

.form-note a { color: inherit; }

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
}

.form-status.err { display: block; background: #FBECEC; color: #92321F; }

.hp { position: absolute; left: -6000px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- faq ---------- */

.faq { max-width: 760px; margin-top: 36px; }

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 22px;
  margin-bottom: 12px;
}

.faq summary {
  font-weight: 600;
  padding: 16px 34px 16px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 1.15rem;
  color: var(--cobalt);
}

.faq details[open] summary::after { content: "–"; }

.faq details p { padding-bottom: 18px; color: var(--slate); }

/* ---------- footer ---------- */

.site-foot {
  background: var(--ink);
  color: #B9C2CC;
  padding: 50px 0 38px;
  font-size: .95rem;
}

.foot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}

.site-foot .brand { color: #fff; font-size: 1.1rem; }

.site-foot a { color: #E7ECF2; }

.foot-links { display: flex; gap: 22px; }

.foot-legal {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 34px;
  padding-top: 20px;
  font-size: .84rem;
  color: #8D99A6;
}

/* ---------- legal / util pages ---------- */

.legal-main { padding: 56px 0 80px; max-width: 760px; }

.legal-main h1 { font-size: 2rem; margin-bottom: 8px; }

.legal-main .updated { color: var(--slate); margin-bottom: 30px; }

.legal-main h2 { font-size: 1.2rem; margin: 28px 0 8px; }

.legal-main p, .legal-main ul { margin-bottom: 14px; color: #2A333D; }

.legal-main ul { padding-left: 22px; }

.center-main {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.center-main h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); margin: 20px 0 12px; }

.center-main p { max-width: 46ch; color: var(--slate); margin-bottom: 26px; }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual img { aspect-ratio: 16 / 10; }
  .agenda-chip { left: 14px; }
  .rooms { grid-template-columns: 1fr 1fr; }
  .included { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .head-nav a:not(.btn) { display: none; }
  .hero { padding: 24px 0 64px; }
  .section { padding: 58px 0; }
  .rooms { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .agenda-row { grid-template-columns: 74px 1fr; gap: 20px; }
  .agenda-row::before { left: 90px; }
}
