/* ============================================================
   Benchmark Academy — Harley Street, Rawalpindi
   Palette: paper white / deep ink / antique gold
   Type: Fraunces (display) + Instrument Sans (body)
   ============================================================ */

:root {
  --paper: #fcfbf8;
  --white: #ffffff;
  --ink: #131210;
  --ink-soft: #26241f;
  --stone: #6e6a63;
  --gold: #a8873b;
  --gold-soft: #c9a961;
  --gold-faint: #f3ecdd;
  --line: #e9e5dc;
  --line-dark: #3a372f;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", -apple-system, "Segoe UI", sans-serif;

  --container: 1140px;
  --radius: 14px;
  --shadow-soft: 0 8px 30px rgba(19, 18, 16, 0.06);
  --shadow-lift: 0 14px 40px rgba(19, 18, 16, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.35rem; line-height: 1.3; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.lede {
  font-size: 1.15rem;
  color: var(--stone);
  max-width: 640px;
}

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lede { margin: 14px auto 0; }
.section-head h2 + .lede { margin-top: 14px; }

/* ---------- Monogram seal ---------- */

.seal {
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 248, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand .seal { width: 42px; height: 42px; font-size: 1.15rem; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.13rem;
  line-height: 1.15;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-links a.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.nav-cta {
  border: 1px solid var(--ink) !important;
  border-radius: 100px;
  padding: 9px 22px !important;
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 100px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(168, 135, 59, 0.35); }

.on-dark .btn-ghost { border-color: var(--paper); color: var(--paper); }
.on-dark .btn-ghost:hover { background: var(--paper); color: var(--ink); }

/* ---------- Hero ---------- */

.hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-inner { max-width: 820px; }

.hero .eyebrow { margin-bottom: 26px; }

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero .lede { margin: 26px 0 40px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-rule {
  margin-top: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--stone);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.hero-rule::before {
  content: "";
  flex: 0 0 64px;
  height: 1px;
  background: var(--gold);
}

.hero-modes {
  margin: 26px 0 30px;
  font-size: 0.98rem;
  color: var(--stone);
}

.hero-modes strong { color: var(--gold); font-weight: 600; }

.hero-whatsapp {
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--stone);
}

.hero-whatsapp a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.hero-whatsapp a:hover { color: var(--ink); }

/* Fact strip — quiet institutional numbers */

.fact-strip {
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--ink);
  line-height: 1.1;
}

.fact span {
  display: block;
  margin-top: 6px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.section-dark .fact-strip { border-top-color: var(--line-dark); }
.section-dark .fact strong { color: var(--gold-soft); }
.section-dark .fact span { color: #979186; }

/* Page hero (inner pages) */

.page-hero {
  padding: 84px 0 64px;
  border-bottom: 1px solid var(--line);
}

.page-hero .lede { margin-top: 18px; }

/* ---------- Sections ---------- */

.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-dark .lede { color: #b5b0a6; }
.section-dark .eyebrow { color: var(--gold-soft); }
.section-dark .eyebrow::before { background: var(--gold-soft); }

.divider { border: none; border-top: 1px solid var(--line); }

/* ---------- Cards & grids ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.card h3 { margin-bottom: 12px; }
.card p { color: var(--stone); font-size: 0.97rem; }

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-faint);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card-icon svg { width: 22px; height: 22px; }

/* Subject groups */

.subject-group h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* The Benchmark Method — weekly cycle */

.method-list {
  display: grid;
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--line);
}

.method-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.method-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}

.method-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.method-step p { color: var(--stone); font-size: 0.98rem; max-width: 620px; }

.section-dark .method-list { border-top-color: var(--line-dark); }
.section-dark .method-step { border-bottom-color: var(--line-dark); }
.section-dark .method-step p { color: #b5b0a6; }

/* Prospectus download strip */

.download-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px 34px;
  box-shadow: var(--shadow-soft);
}

.download-strip h3 { font-size: 1.25rem; margin-bottom: 6px; }
.download-strip p { color: var(--stone); font-size: 0.95rem; }

/* Fees */

.fee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.fee-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-soft);
}

.fee-card.featured { border-color: var(--gold); border-width: 1.5px; }

.fee-card .fee-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.fee-card h3 { font-size: 1.35rem; margin: 10px 0 4px; }
.fee-card .fee-sub { font-size: 0.9rem; color: var(--stone); margin-bottom: 22px; }

.fee-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.fee-amount .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
}

.fee-amount .per { font-size: 0.9rem; color: var(--stone); }

.fee-reg {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.fee-reg strong { color: var(--gold); font-weight: 600; }

.fee-note {
  margin-top: 26px;
  font-size: 0.92rem;
  color: var(--stone);
  max-width: 720px;
}

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

/* Admission steps */

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

/* Subject pills */

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }

.pill {
  font-size: 0.86rem;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink-soft);
}

.pill strong { color: var(--gold); font-weight: 600; }

/* ---------- Course cards ---------- */

.course-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.course-card-head {
  padding: 34px 32px 26px;
  border-bottom: 1px solid var(--line);
}

.course-card-head .tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.course-card-head h3 {
  font-size: 1.7rem;
  margin-top: 10px;
}

.course-card-head p { margin-top: 10px; }

.course-card-body { padding: 26px 32px 34px; display: grid; gap: 22px; }

.course-detail h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.course-detail p, .course-detail li {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.course-detail ul { list-style: none; display: grid; gap: 6px; }

.course-detail li { padding-left: 20px; position: relative; }

.course-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 1.5px;
  background: var(--gold);
}

/* ---------- Teachers ---------- */

.teacher-card { padding: 0; overflow: hidden; }

.teacher-photo {
  aspect-ratio: 4 / 4.4;
  background:
    radial-gradient(circle at 30% 25%, rgba(201, 169, 97, 0.25), transparent 55%),
    linear-gradient(160deg, #efece4, #ddd7c9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.teacher-photo .seal { opacity: 0.55; }

.teacher-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.photo-note {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
}

.teacher-info { padding: 26px 26px 30px; }

.teacher-info h3 { font-size: 1.3rem; }

.teacher-subject {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 6px 0 14px;
}

.teacher-meta {
  font-size: 0.92rem;
  color: var(--stone);
  display: grid;
  gap: 8px;
}

.teacher-meta strong { color: var(--ink-soft); font-weight: 600; }

.online-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-faint);
  padding: 4px 12px;
  border-radius: 100px;
}

.teacher-quote {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.93rem;
  font-style: italic;
  color: var(--ink-soft);
}

/* ---------- Results ---------- */

.result-stat {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.result-stat .grade {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--gold-soft);
  line-height: 1;
}

.result-stat .count {
  font-size: 1.05rem;
  margin-top: 14px;
  color: var(--paper);
}

.result-stat .note {
  font-size: 0.82rem;
  color: #979186;
  margin-top: 6px;
}

.story-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 30px 32px;
  box-shadow: var(--shadow-soft);
}

.story-card p { color: var(--ink-soft); font-size: 1rem; }

.story-card footer {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--stone);
}

.story-card footer strong { color: var(--ink); }

/* ---------- Testimonials ---------- */

.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink-soft);
  flex: 1;
}

.testimonial p::before { content: "\201C"; color: var(--gold); }
.testimonial p::after { content: "\201D"; color: var(--gold); }

.testimonial footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--stone);
}

.testimonial footer strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Moving testimonial wall ---------- */

.marquee {
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee + .marquee { margin-top: 22px; }

.marquee-row {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee-scroll 70s linear infinite;
  will-change: transform;
}

.marquee-row.reverse { animation-direction: reverse; }

.marquee:hover .marquee-row { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.t-card {
  flex: 0 0 auto;
  width: 360px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.t-card p {
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.5;
  color: var(--ink-soft);
  flex: 1;
}

.t-card p::before { content: "\201C"; color: var(--gold); }
.t-card p::after { content: "\201D"; color: var(--gold); }

.t-card footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--stone);
}

.t-card footer strong { display: block; color: var(--ink); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .marquee-row { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

@media (max-width: 680px) {
  .t-card { width: 290px; }
}

.about-logo {
  width: 150px;
  height: auto;
  margin-bottom: 24px;
}

.follow-line {
  text-align: center;
  margin-top: 40px;
  font-size: 0.98rem;
  color: var(--stone);
}

.follow-line a {
  display: inline-block;
  margin: 0 4px;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.follow-line a:hover { color: var(--ink); }

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 169, 97, 0.22), transparent 50%),
    linear-gradient(150deg, #f0ede5, #dcd6c8);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.gallery-item.tall { aspect-ratio: 4 / 5; }

.gallery-item > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 26px 20px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: linear-gradient(transparent, rgba(252, 251, 248, 0.95) 55%);
}

.gallery-item .seal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.4;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-list { display: grid; gap: 26px; }

.contact-item { display: flex; gap: 18px; align-items: flex-start; }

.contact-item .card-icon { margin-bottom: 0; flex-shrink: 0; }

.contact-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }

.contact-item p, .contact-item a { color: var(--stone); font-size: 0.96rem; }

.contact-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 36px;
  box-shadow: var(--shadow-soft);
}

.contact-form h3 { margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink-soft);
}

.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(168, 135, 59, 0.14);
}

.field textarea { resize: vertical; min-height: 120px; }

/* Study-mode chooser */

.field-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink-soft);
}

.mode-choice { display: grid; gap: 9px; }

.mode-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.mode-option:hover { border-color: var(--gold-soft); }

.mode-option input { accent-color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.mode-option span { font-size: 0.88rem; color: var(--stone); line-height: 1.45; }

.mode-option strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.mode-option:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-faint);
}

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

/* FAQ */

.faq-list {
  max-width: 780px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 0 22px;
  color: var(--stone);
  font-size: 0.96rem;
  max-width: 640px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--gold-faint);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.form-status.show { display: block; }

.map-frame {
  margin-top: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }

.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--line); }

.hours-table td:last-child { text-align: right; color: var(--stone); }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: 20px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 12px;
  pointer-events: none;
}

.cta-band h2 { max-width: 620px; margin: 0 auto 16px; }

.cta-band .lede { margin: 0 auto 34px; color: #b5b0a6; }

/* ---------- Values / about ---------- */

.value-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.value-row:last-child { border-bottom: none; }

.value-row h3 { color: var(--gold); font-size: 1.25rem; }

.value-row p { color: var(--ink-soft); max-width: 640px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #b5b0a6;
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand .brand-name { color: var(--paper); }
.footer-brand .brand-name small { color: #979186; }

.footer-brand p { font-size: 0.92rem; margin-top: 18px; max-width: 300px; }

.footer-brand .footer-motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-soft);
  margin-top: 14px;
}

.site-footer h4 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.site-footer ul { list-style: none; display: grid; gap: 10px; }

.site-footer li a, .site-footer address {
  font-size: 0.93rem;
  font-style: normal;
  color: #b5b0a6;
  transition: color 0.2s;
}

.site-footer li a:hover { color: var(--gold-soft); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
  color: #979186;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .gallery-item:hover, .btn:hover { transform: none; }
}

/* ---------- Focus ---------- */

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-row { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 680px) {
  .section { padding: 68px 0; }
  .hero { padding: 76px 0 64px; }

  .grid-2, .grid-3, .grid-4, .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 28px; }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 20px;
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 13px 0;
    font-size: 1.05rem;
    border-bottom: none;
  }

  .nav-cta {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
