/* ============================================
   Victoria & Sergio — Wedding Website
   ============================================ */

:root {
  --navy: #132348;
  --navy-light: #1f3a6b;
  --navy-pale: #e9edf5;
  --cream: #faf5ea;
  --cream-dark: #f1e6d2;
  --ink: #21242c;
  --gold: #b8933f;
  --gold-deep: #8a6b28;
  --gold-deep-dark: #6f5420;
  --white: #ffffff;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', 'Segoe UI', sans-serif;

  --max-width: 1180px;
  --radius: 4px;
  --shadow: 0 12px 40px rgba(19, 35, 72, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0 0 0.5em;
  font-weight: 600;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-deep);
  display: inline-block;
  margin-bottom: 14px;
}

.eyebrow.light { color: var(--gold); }

p { margin: 0 0 1em; }

.divider {
  width: 64px;
  height: 2px;
  background: var(--navy-light);
  margin: 18px auto;
  position: relative;
}
.divider::before {
  content: "♥";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  color: var(--gold-deep);
  font-size: 0.85rem;
  padding: 0 8px;
}
.divider.on-navy { background: rgba(255,255,255,0.35); }
.divider.on-navy::before { background: var(--navy); color: var(--gold); }
.divider.left { margin: 18px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 2px;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--gold-deep);
  color: var(--white);
  border-color: var(--gold-deep);
}
.btn-primary:hover { background: var(--gold-deep-dark); border-color: var(--gold-deep-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 35, 72, 0.97);
  backdrop-filter: blur(6px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand img { height: 40px; width: auto; }
.brand-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links a { padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,35,72,0.55) 0%, rgba(19,35,72,0.72) 55%, rgba(19,35,72,0.92) 100%);
  z-index: -1;
}
.hero-inner { max-width: 780px; padding: 40px 24px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 0.25em;
}
.hero .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
}
.hero .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.hero .meta strong { color: var(--white); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-small {
  min-height: 46vh;
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.bg-navy { background: var(--navy); color: rgba(255,255,255,0.9); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-white { background: var(--white); }

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 28px 0 6px;
}
.countdown div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  min-width: 92px;
  padding: 16px 8px;
  border-radius: var(--radius);
  text-align: center;
}
.countdown .num {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--white);
  display: block;
  line-height: 1;
}
.countdown .label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ---------- Cards / Grids ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.info-card:hover { transform: translateY(-6px); }
.info-card .photo { height: 220px; overflow: hidden; }
.info-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.info-card .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.info-card h3 { font-size: 1.35rem; }
.info-card .tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.info-card .more { margin-top: auto; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.info-card .more::after { content: " →"; }

/* ---------- Photo Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery a, .gallery .g-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 14px rgba(19,35,72,0.12);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery .g-item:hover img { transform: scale(1.06); }
.gallery .wide { grid-column: span 2; }
.gallery .tall { grid-row: span 2; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .wide { grid-column: span 2; }
}

/* ---------- Story / Timeline ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story img { border-radius: var(--radius); box-shadow: var(--shadow); }
.story .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy);
  border-left: 3px solid var(--gold-deep);
  padding-left: 22px;
  margin: 26px 0;
}
@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Cabin cards ---------- */
.cabin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) { .cabin-grid { grid-template-columns: 1fr; } }
.cabin-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow);
}
.cabin-card.recommended { border: 2px solid var(--navy); }
.cabin-card .photo {
  height: 190px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.cabin-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.cabin-card .body { padding: 26px 26px 30px; }
.cabin-card .pick-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.cabin-card h3 { margin-bottom: 2px; }
.cabin-card .value {
  font-weight: 700;
  color: var(--gold-deep);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.cabin-card ul { padding-left: 18px; margin: 0 0 18px; }
.cabin-card li { margin-bottom: 6px; font-size: 0.94rem; }
.cabin-card .best-for {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.85rem;
}
.cabin-card .best-for strong { color: var(--navy); }
.cabin-card .price-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- Included icons row ---------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 900px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
.included-grid .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-pale);
  color: var(--navy);
  font-size: 1.4rem;
}
.included-grid h4 { font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.included-grid p { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ---------- Itinerary ---------- */
.itinerary {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) { .itinerary { grid-template-columns: 1fr; } }
.itinerary img { border-radius: var(--radius); box-shadow: var(--shadow); }
.stops { list-style: none; margin: 0; padding: 0; }
.stops li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.stops li:last-child { border-bottom: none; }
.stop-day {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-deep);
  min-width: 96px;
  line-height: 1.4;
}
.stop-date {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
}
.stop-title { font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.stop-desc { font-size: 0.9rem; opacity: 0.85; }

/* ---------- Booking steps ---------- */
.steps { counter-reset: step; max-width: 780px; margin: 0 auto; }
.step {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.step:last-child { border-bottom: none; }
.step .num {
  counter-increment: step;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step .num::before { content: counter(step); }
.step h3 { margin-bottom: 6px; font-size: 1.15rem; }
.inline-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.inline-link:hover { color: var(--gold-deep); }

.deadline-tag {
  display: inline-block;
  background: var(--navy-pale);
  color: var(--navy);
  border: 1px solid var(--gold);
  font-weight: 700;
  padding: 1px 10px;
  border-radius: 20px;
  font-size: 0.94em;
  white-space: nowrap;
}

/* ---------- Perks / info panels ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }
.panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.panel h3 { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; }
.panel .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-deep);
  font-size: 1rem;
}
.perk-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}
.perk-pill {
  flex: 1;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.perk-pill .amount { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-deep); display: block; }
.perk-pill .label { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.75; }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--cream-dark);
  display: flex;
  gap: 12px;
  font-size: 0.94rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li strong { color: var(--navy); }

/* ---------- Contact card ---------- */
.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-card h3 { color: var(--white); font-size: 1.5rem; }
.contact-card .role { color: var(--gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.contact-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.contact-links a {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-links a:hover { background: rgba(255,255,255,0.1); }

.note-box {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* ---------- Email template ---------- */
.email-template {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 620px;
  margin: 22px auto 0;
  overflow: hidden;
}
.email-head {
  background: var(--cream);
  padding: 18px 26px;
  border-bottom: 1px solid var(--cream-dark);
}
.email-field {
  font-size: 0.88rem;
  padding: 3px 0;
  color: var(--ink);
  word-break: break-word;
}
.email-field .email-label {
  display: inline-block;
  width: 70px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}
.email-body {
  padding: 26px 26px 4px;
  font-size: 0.92rem;
  text-align: left;
}
.email-body p { margin: 0 0 14px; }
.email-body ul { margin: 0 0 14px; padding-left: 20px; }
.email-body li { margin-bottom: 6px; }
.email-body li strong { color: var(--navy); }
.email-actions {
  padding: 16px 26px 26px;
  text-align: center;
}
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px 26px;
  border-radius: 2px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.copy-btn:hover { background: var(--navy-light); }
.copy-btn.copied { background: var(--gold-deep); }

/* ---------- App promo card ---------- */
.app-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
.app-card .icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  font-size: 1.6rem;
}
.app-card h2 { color: var(--white); }
.app-card p { opacity: 0.8; max-width: 460px; margin: 0 auto 30px; }
.app-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.app-badges a {
  display: inline-block;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.app-badges a:hover { transform: translateY(-3px); opacity: 0.9; }
.app-badges img { height: 48px; width: auto; }

/* ---------- TODO placeholder tag ---------- */
.todo {
  display: inline-block;
  background: #fff3cd;
  color: #7a5b00;
  border: 1px dashed #d8ad2f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* ---------- RSVP ---------- */
.rsvp-card {
  max-width: 640px;
  margin: 0 auto;
}
.rsvp-head { text-align: center; margin-bottom: 30px; }
.rsvp-head .divider.left { margin: 18px auto; }
.rsvp-intro { opacity: 0.75; font-size: 0.92rem; margin: 0; }
.rsvp-notice {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px 22px;
  font-size: 0.86rem;
  line-height: 1.55;
  opacity: 0.85;
  text-align: center;
  margin-bottom: 40px;
}

.rsvp-form { text-align: left; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.form-row { margin-bottom: 28px; }
.form-row label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  margin-bottom: 10px;
}
.form-row .req { color: var(--gold-deep); opacity: 1; }
.form-row .optional { text-transform: none; letter-spacing: 0; font-weight: 400; opacity: 0.7; }

.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cream-dark);
  border-radius: 0;
  padding: 6px 2px 10px;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
}
.hp-field { position: absolute; left: -9999px; }

.rsvp-options { display: flex; gap: 10px; flex-wrap: wrap; }
.rsvp-option {
  flex: 1 1 150px;
  text-align: center;
  background: transparent;
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  padding: 13px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rsvp-option:hover { border-color: var(--gold-deep); }
.rsvp-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.rsvp-option-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.rsvp-option:has(input:checked),
.rsvp-option.selected {
  background: var(--navy);
  border-color: var(--navy);
}
.rsvp-option:has(input:checked) .rsvp-option-label,
.rsvp-option.selected .rsvp-option-label { color: var(--white); }
.rsvp-option:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

.rsvp-submit { display: block; width: 100%; text-align: center; margin-top: 12px; }

.rsvp-success { padding: 30px 0; text-align: center; }
.rsvp-success h3 { margin-bottom: 8px; }
.rsvp-success p { opacity: 0.75; max-width: 440px; margin: 0 auto; }

@media (max-width: 560px) {
  .rsvp-options { flex-direction: column; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
  text-align: center;
}
.site-footer img { height: 48px; margin: 0 auto 18px; }
.site-footer h3 { color: var(--white); font-size: 1.6rem; }
.footer-nav { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin: 22px 0; }
.footer-nav a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.75); }
.footer-nav a:hover { color: var(--white); }
.fine-print { font-size: 0.75rem; opacity: 0.55; margin-top: 24px; }

/* ---------- Page hero title bar (secondary pages) ---------- */
.page-title { color: var(--white); text-align: center; }
