/* ============================================================
   Fairytale Castle Wedding - static stylesheet
   Palette: navy / gold / cream, serif + script typography
   ============================================================ */

:root {
  --navy: #1c3557;
  --navy-dark: #16294a;
  --gold: #b3893d;
  --gold-soft: #c8a55e;
  --line: #ddc9a3;
  --cream: #faf5ec;
  --beige: #f3ead9;
  --card: #fdfaf3;
  --card-line: #e6d8ba;
  --ink: #2c4160;
  --muted: #5a6b84;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 19px; }

body {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
}

img { display: block; }

h1, h2, h3, h4 { font-weight: 600; }

.script {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
}
.btn:hover { background: #9c7634; }

/* ---------- icons ---------- */
.ic {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.ic-lg { width: 30px; height: 30px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.85rem 9rem 0.85rem 1rem;
  flex-wrap: wrap;
}
.site-header a.nav-link {
  color: #f2ecdd;
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-header a.nav-link:hover { color: var(--gold-soft); }
.site-header a.nav-link.active { color: var(--gold-soft); }
.site-header .btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  border-radius: 0;
  padding: 0 1.6rem;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(420px, 34vw, 78vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,245,236,0.04) 0%, rgba(250,245,236,0.10) 55%, rgba(250,245,236,0.32) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  margin-top: clamp(0.5rem, 3.5vh, 2.2rem);
  padding: 2.2rem 3.5rem 2.8rem;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: -2.5rem -4rem;
  background: radial-gradient(ellipse at center, rgba(250, 245, 236, 0.85) 0%, rgba(250, 245, 236, 0.45) 55%, rgba(250, 245, 236, 0) 75%);
  z-index: -1;
  pointer-events: none;
}
.hero .crown { color: var(--gold); width: 44px; height: 44px; }
.hero h1 {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  color: var(--gold);
  font-size: clamp(2.3rem, 6.5vw, 4.6rem);
  line-height: 1.12;
  margin: 0.3rem 0 0.2rem;
  text-shadow: 0 1px 2px rgba(28, 53, 87, 0.45), 0 2px 22px rgba(255, 250, 235, 0.9);
}
.hero .ornament { color: var(--gold); margin: 0.25rem auto 0.6rem; display: block; }
.hero .meta {
  color: var(--navy);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0.3rem 0;
  text-shadow: 0 1px 10px rgba(255, 250, 235, 0.8);
}

/* ---------- generic section bits ---------- */
.section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3.6rem 1.6rem 3rem;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--navy);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 1.12rem;
  margin: 0 0 0.4rem;
}
.section-title::before,
.section-title::after {
  content: '';
  height: 1px;
  width: min(190px, 18vw);
  background: var(--line);
}
.section-title .ic { color: var(--gold); }
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0.2rem 0 0;
}
.caption {
  text-align: center;
  color: var(--muted);
  margin: 1.6rem 0 0;
  font-size: 0.98rem;
}

/* ---------- wedding day timeline ---------- */
.day-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.day-photos figure { margin: 0; }
.day-photos img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(28, 53, 87, 0.18);
}
.day-photos figcaption {
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-top: 0.7rem;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  margin-top: 2.6rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 43px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--line);
}
.t-col {
  position: relative;
  text-align: center;
  padding: 0.4rem 0.9rem;
}
.t-col + .t-col { border-left: 1px solid var(--card-line); }
.t-col + .t-col::before {
  content: '';
  position: absolute;
  top: 39px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.t-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--cream);
  color: var(--gold);
  border-radius: 50%;
}
.t-icon.ring { border: 1px solid var(--line); }
.t-col h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--navy);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.92rem;
  margin: 0.7rem 0 0;
}
.t-col h3 .ic { color: var(--gold); }
.t-col .venue {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0.7rem auto 0.3rem;
  max-width: 260px;
  overflow-wrap: break-word;
}
.t-col .time {
  color: var(--navy);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  white-space: nowrap;
  margin: 0.2rem 0;
}
.t-col .note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 260px;
  margin: 0.5rem auto 0;
}

/* ---------- welcome card ---------- */
.welcome-card {
  display: grid;
  grid-template-columns: minmax(260px, 32%) 1.25fr minmax(250px, 320px);
  gap: 2.2rem;
  background: var(--beige);
  border: 1px solid var(--card-line);
  border-radius: 10px;
  overflow: hidden;
}
.welcome-card > .photo {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.welcome-card .welcome-text {
  align-self: center;
  padding: 2.6rem 0;
}
.welcome-card .qr-card {
  align-self: center;
  margin: 2.6rem 2.2rem 2.6rem 0;
}
.welcome-text { text-align: center; }
.welcome-text h2 { margin-bottom: 0.2rem; }
.welcome-text .heart { color: var(--gold); margin: 0.2rem 0 0.6rem; }
.welcome-text p {
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.55;
  color: var(--ink);
}
.welcome-text .sign {
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 1rem;
  line-height: 1.3;
}
.qr-card {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 10px;
  padding: 1.5rem 1.4rem;
  text-align: center;
}
.qr-card h4 {
  color: var(--navy);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}
.qr-card svg { width: 170px; height: 170px; margin: 0 auto; display: block; }

/* save the date card */
.save-the-date .std-script {
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
  font-size: 2rem;
  margin: 0.2rem 0 0;
}
.save-the-date .std-city {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 0.8rem;
  margin: 0.2rem 0 0;
}
.std-rule { color: var(--gold); margin: 0.7rem 0; }
.std-count { color: var(--ink); font-size: 1rem; margin: 0; }
.std-count span {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.35rem;
}
.std-note {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.7rem;
  line-height: 1.5;
}
.std-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
}
.std-gcal {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.std-gcal:hover { color: var(--gold); }

/* ---------- card grids ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-h {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-h > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.card-body {
  padding: 1.1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  min-width: 0;
}
.card-body h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.4;
  overflow-wrap: break-word;
}
.card-body h3 .ic { color: var(--gold); }
.card-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.card-body ul li { margin: 0.15rem 0; }
.card-body ul li::before {
  content: '\2022';
  color: var(--gold);
  margin-right: 0.45rem;
}
.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  overflow-wrap: break-word;
}
.card-body .btn { margin-top: auto; align-self: flex-start; }
.stars {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 0.95rem;
}

/* things-to-do cards */
.todo-head {
  text-align: center;
  padding: 1.05rem 0.8rem 0.7rem;
}
.todo-head .k {
  color: var(--navy);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
}
.todo-head .d {
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  margin-top: 0.15rem;
}
.todo-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.todo-body {
  padding: 0 1.1rem 1rem;
  flex: 1;
}
.todo-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.todo-body ul li::before { content: '\2022'; color: var(--gold); margin-right: 0.45rem; }
.todo-body p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.card > .btn { margin: 0 1rem 1.1rem; align-self: flex-start; }

/* corner ribbon */
.ribbon {
  position: absolute;
  top: 31px;
  left: -39px;
  width: 160px;
  text-align: center;
  transform: rotate(-45deg);
  background: var(--gold);
  color: #fff;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.28rem 0;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

/* ---------- RSVP band ---------- */
.rsvp-grid {
  display: grid;
  grid-template-columns: 300px 1fr 1.15fr;
  gap: 2.2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 1.6rem;
  margin-top: 1rem;
}
.rsvp-grid > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(200, 165, 94, 0.55);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.rsvp-center { text-align: center; }
.rsvp-center .heart { color: var(--gold-soft); margin: 0.15rem 0 0.5rem; }
.rsvp-center .section-title { color: var(--gold-soft); white-space: nowrap; }
.rsvp-center .section-title::before,
.rsvp-center .section-title::after {
  width: min(90px, 10vw);
  background: var(--gold-soft);
  opacity: 0.6;
}
.rsvp-center p { max-width: 300px; margin: 0 auto 1.1rem; line-height: 1.5; color: #e9e2d2; }
.rsvp-right .lead {
  font-family: 'Great Vibes', cursive;
  color: var(--gold-soft);
  font-size: 1.55rem;
  text-align: center;
  margin: 0 0 1.2rem;
}
.perks {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.perk { text-align: center; width: 92px; }
.perk .circle {
  width: 66px;
  height: 66px;
  margin: 0 auto 0.55rem;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  background: rgba(200, 165, 94, 0.08);
}
.perk span {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e9e2d2;
  line-height: 1.5;
  display: block;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy);
  color: #e9e2d2;
  padding: 2.1rem 1.6rem 1.7rem;
  margin-top: 3rem;
  border-top: 3px solid var(--gold);
}
.foot-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.monogram {
  color: var(--gold-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.monogram .crown-mini { width: 22px; height: 22px; }
.monogram .script { font-size: 1.7rem; line-height: 1.1; }
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.foot-nav a {
  color: #e9e2d2;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.foot-nav a.active { text-decoration: underline; text-underline-offset: 4px; }
.foot-nav a:hover { color: var(--gold-soft); }
.socials { display: flex; gap: 0.7rem; }
.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
}
.socials a:hover { background: rgba(200, 165, 94, 0.15); }
.foot-meta {
  text-align: center;
  margin: 1.4rem 0 0;
  letter-spacing: 0.26em;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #cfc6b4;
}
.foot-script {
  font-family: 'Great Vibes', cursive;
  text-align: center;
  color: var(--gold-soft);
  font-size: 1.3rem;
  margin: 0.35rem 0 0;
}

/* ---------- responsive ---------- */
@media (max-width: 1150px) {
  .site-header { padding-right: 1rem; }
  .site-header .btn { position: static; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .welcome-card { grid-template-columns: minmax(240px, 36%) 1fr; }
  .welcome-card > .photo { grid-row: 1 / span 2; min-height: 300px; }
  .welcome-card .welcome-text { padding: 2.2rem 2.2rem 0.6rem; }
  .welcome-card .qr-card { margin: 0.6rem 2.2rem 2.2rem; }
  .rsvp-grid { grid-template-columns: 1fr; text-align: center; }
  .rsvp-grid > img { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .t-col + .t-col { border-left: none; border-top: 1px solid var(--card-line); }
  .t-col + .t-col::before { display: none; }
  .cards { grid-template-columns: 1fr; }
  .welcome-card { grid-template-columns: 1fr; gap: 0; }
  .welcome-card > .photo { grid-row: auto; min-height: 240px; }
  .welcome-card .welcome-text { padding: 2rem 1.6rem 0.6rem; }
  .welcome-card .qr-card { margin: 0.6rem 1.6rem 2rem; }
  .foot-grid { grid-template-columns: 1fr; justify-items: center; gap: 1.2rem; }
  .perks { flex-wrap: wrap; }
  .site-header { gap: 0.7rem 1.1rem; padding: 0.7rem 1rem; }
  .site-header a.nav-link { font-size: 0.68rem; letter-spacing: 0.12em; }
  .section { padding: 2.6rem 1.1rem 2.4rem; }
  .section-title { letter-spacing: 0.2em; font-size: 1rem; }
  .hero .crown { width: 34px; height: 34px; }
  .hero .meta { letter-spacing: 0.22em; font-size: 0.92rem; }
  .hero-content { padding: 1.6rem 1.2rem 2.2rem; }
  .modal-body { padding: 1.2rem 1.1rem 1rem; }
  .rsvp-grid > img { height: 220px; }
}

/* ---------- RSVP modal ---------- */
[hidden] { display: none !important; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(16, 31, 52, 0.62);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal {
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow: auto;
  position: relative;
  padding: 0;
}
.modal-head {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-bottom: 2px solid var(--gold);
  padding: 1.5rem 3rem 1.2rem;
  text-align: center;
}
.modal-orn { color: var(--gold); margin-top: 0.4rem; }
.modal-orn .ic { width: 16px; height: 16px; }
.modal-body { padding: 1.6rem 2rem 1.4rem; }
.overlay-body.modal-body { margin-top: 0; }
.modal .close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: none;
  color: var(--gold-soft);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.modal .close:hover {
  border-color: var(--gold-soft);
  background: rgba(200, 165, 94, 0.12);
}
.modal-title {
  text-align: center;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin: 0;
}
.modal-head .modal-title { color: var(--gold-soft); }
.modal-sub {
  text-align: center;
  font-size: 0.9rem;
  margin: 0.3rem 0 0;
}
.modal-head .modal-sub { color: #cfc6b4; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field.full { grid-column: 1 / -1; }
.field > label,
.field > .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--card-line);
  border-radius: 4px;
  padding: 0.5rem 0.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold-soft);
  border-color: var(--gold-soft);
}
.radio-row { display: flex; gap: 1.4rem; padding-top: 0.2rem; }
.radio {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.radio input { accent-color: var(--gold); }
.form-error {
  color: #a23b3b;
  font-size: 0.88rem;
  min-height: 1.2em;
  margin: 0.8rem 0 0.2rem;
}
.modal .btn[type="submit"] { width: 100%; padding: 0.75rem 1rem; font-size: 0.72rem; box-shadow: 0 4px 14px rgba(179, 137, 61, 0.35); }
.modal-note {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
  margin: 0.9rem 0 0;
}
.success { text-align: center; }
.success .big {
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
  font-size: 2rem;
  margin: 0.6rem 0 0.3rem;
}
.success p { margin: 0.3rem 0; }
.linklike {
  border: none;
  background: none;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 0.8rem;
  font: inherit;
  font-size: 0.85rem;
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- info overlays ---------- */
.modal.wide { max-width: 660px; }
.overlay-body { margin-top: 1.1rem; }
.overlay-body .script-head {
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
  font-size: 1.9rem;
  text-align: center;
  margin: 0 0 0.7rem;
}
.overlay-body h4 {
  color: var(--navy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 1.15rem 0 0.35rem;
}
.overlay-body p,
.overlay-body li {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0.3rem 0;
}
.overlay-body ul { list-style: none; padding: 0; }
.overlay-body ul li { padding-left: 1.1rem; position: relative; }
.overlay-body ul li::before {
  content: '\2022';
  color: var(--gold);
  position: absolute;
  left: 0;
}
.overlay-body strong { color: var(--ink); }
/* animated exclusive accordion (FAQ) */
.acc { border-bottom: 1px solid var(--card-line); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 0.75rem 0.2rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}
.acc-head:hover { color: var(--gold); }
.acc-ic {
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.acc.open .acc-ic { transform: rotate(45deg); }
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.acc-inner { overflow: hidden; }
.acc-inner p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.acc.open .acc-panel { grid-template-rows: 1fr; }

/* our story timeline */
.story-intro {
  text-align: center;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 1.4rem;
}
.story-tl { position: relative; }
.story-tl::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 32px;
  width: 1px;
  background: var(--line);
}
.story-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.1rem;
  padding: 0.55rem 0;
  align-items: start;
}
.story-year {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}
.story-txt h4 {
  margin: 0.2rem 0 0.25rem;
  color: var(--navy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.story-txt p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
