/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --cream:    #f9f6f0;
  --parchment:#ede8df;
  --ink:      #1a1612;
  --ink-mid:  #1a1612;
  --ink-light:#8a847c;
  --accent:   #2c2318;
  --gold:     #b8965a;
  --white:    #ffffff;
  --radius:   6px;
  --max-w:    1100px;
  --font-serif:  'Lora', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --gold-pale:   #f0e6cc;
  --brown-pale:  #c4a882;
  --brown-mid:   #8a7055;
  --rule-gold:   rgba(184,150,90,0.30);
}

html { scroll-behavior: smooth; }

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

/* ─── Main Navbar ───────────────────────────────────────── */
.main-nav {
  background: var(--ink);
  border-top: none;
  border-bottom: none;
}

.main-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4px 40px;
  position: relative;
}

.nav-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(196,168,130,0.85);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gold-pale);
}

.nav-link--active {
  color: var(--gold);
  font-weight: 600;
  background: rgba(184,150,90,0.15);
  letter-spacing: 0.08em;
  box-shadow: inset 0 -2px 0 var(--gold);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  position: absolute;
  right: 16px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--brown-pale);
  transition: transform 0.25s, opacity 0.25s;
}

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

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 40px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* ─── Basket & Checkout action icons (right of main navbar) ─ */
.nav-cart-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 20px;
  border-left: 1px solid rgba(184,150,90,0.25);
}

.nav-cart-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(196,168,130,0.6);
  padding: 8px 12px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  position: relative;
  font-family: var(--font-sans);
}

.nav-cart-btn:hover {
  color: var(--gold-pale);
  border-color: rgba(184,150,90,0.30);
  background: rgba(184,150,90,0.10);
}

.nav-checkout-btn {
  background: var(--gold);
  color: var(--ink) !important;
  border-color: var(--gold) !important;
}

.nav-checkout-btn:hover {
  background: #9a7a44 !important;
  border-color: #9a7a44 !important;
  color: var(--ink) !important;
}

.nav-cart-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-cart-badge {
  position: absolute;
  top: 4px;
  right: 6px;
  min-width: 17px;
  height: 17px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

.nav-logo {
  height: clamp(135px, 20.3125vw, 218.75px);
  width: auto;
  display: block;
  margin-top: -6px;
  margin-bottom: -6px;
}

.nav-logo-placeholder {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 0;
  display: inline-block;
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 40px 80px;
  text-align: center;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 22.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 52px;
}

.hero-headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}


.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ─── Envelope illustration ─────────────────────────────── */
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.envelope-wrapper {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* ── Stacked envelope bundle ── */
.letter-bundle {
  width: 300px;
  height: 220px;
  position: relative;
  filter: drop-shadow(0 16px 36px rgba(26,18,4,0.22));
}

/* Shared envelope styles */
.env-stack {
  position: absolute;
  width: 172px;
  height: 116px;
  left: 64px;
  top: 80px;
  background: #f0e8d0;
  border: 1.5px solid #b4a470;
  border-radius: 2px;
  transform-origin: bottom center;
  overflow: hidden;
}

/* V-flap fold on each envelope */
.env-stack::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 58px;
  background: #e2d6b8;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* Bottom fold on each envelope */
.env-stack::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 54px;
  background: #e8ddc4;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}

.env-stack-left {
  transform: rotate(-13deg);
  z-index: 1;
  background: #ede4cc;
  border-color: #b0a06c;
}

.env-stack-right {
  transform: rotate(13deg);
  z-index: 1;
  background: #eee5cd;
  border-color: #b0a06c;
}

.env-stack-center {
  transform: rotate(-1deg);
  z-index: 2;
  background: #f2e8d2;
}

/* Ribbon band crossing all three envelopes */
.ribbon-band {
  position: absolute;
  left: -8px;
  right: -8px;
  top: 142px;
  height: 15px;
  background: linear-gradient(to bottom, #9e3c50, #7c2c3c);
  border-radius: 1px;
  z-index: 3;
}

/* Ribbon highlight */
.ribbon-band::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 1px;
}

/* Bow — sits centred on the ribbon */
.ribbon-bow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 126px;
  width: 66px;
  height: 42px;
  z-index: 4;
}

/* Left loop */
.ribbon-bow::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 22px;
  background: #9e3c50;
  border-radius: 50%;
  right: calc(50% - 5px);
  top: 0;
  transform: rotate(28deg);
  transform-origin: right bottom;
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.22);
}

/* Right loop */
.ribbon-bow::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 22px;
  background: #9e3c50;
  border-radius: 50%;
  left: calc(50% - 5px);
  top: 0;
  transform: rotate(-28deg);
  transform-origin: left bottom;
  box-shadow: inset -2px 2px 5px rgba(0,0,0,0.22);
}

/* Centre knot */
.ribbon-knot {
  position: absolute;
  width: 15px;
  height: 18px;
  background: #8a3044;
  border-radius: 3px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
  z-index: 5;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.28);
}

/* ─── Features ──────────────────────────────────────────── */
.features {
  background: var(--parchment);
  padding: 80px 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.feature-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 40px 32px;
  border: 1px solid rgba(26,22,18,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,22,18,0.08);
}

.feature-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}

.feature-card p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.65;
  text-align: left;
}

/* ─── Divider ───────────────────────────────────────────── */
.section-divider {
  text-align: center;
  padding: 48px 0 0;
  color: var(--ink-light);
  font-size: 24px;
  letter-spacing: 0.3em;
}

/* ─── Waitlist ──────────────────────────────────────────── */
.waitlist {
  padding: 72px 40px 100px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.waitlist-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.waitlist-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 48px;
  line-height: 1.65;
}

/* ─── Form ──────────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--parchment);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-light); }

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(26,22,18,0.08);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: #c0392b;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '↓';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--ink-light);
  pointer-events: none;
}

.field-error {
  font-size: 12px;
  color: #c0392b;
  min-height: 16px;
  display: block;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover:not(:disabled) {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ─── Success state ─────────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 48px 32px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 15px;
  color: var(--ink);
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  height: 85px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer p {
  font-size: 13px;
  color: rgba(249,246,240,0.5);
}

.footer a {
  font-size: 13px;
  color: rgba(249,246,240,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover { color: var(--cream); }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid rgba(249,246,240,0.1);
  padding-top: 16px;
  margin-top: 4px;
}

.footer-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4px;
}
.footer .footer-action-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.footer .footer-action-btn:hover { background: #9a7a44; color: #000; transform: translateY(-1px); }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .main-nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px 0 40px;
  }

  .nav-cart-actions {
    grid-column: unset;
    justify-self: unset;
    gap: 2px;
    margin-right: 0;
    padding-left: 0;
    border-left: none;
  }

  .nav-cart-btn { padding: 6px 8px; }
  .nav-cart-label { display: none; }

  .nav-hamburger {
    display: flex;
    position: static;
    right: auto;
    padding: 10px 12px;
    margin-left: 4px;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
    grid-column: unset;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(184,150,90,0.20);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.30);
  }

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

  .nav-link {
    padding: 12px 24px;
    font-size: 14px;
    border-bottom: 1px solid rgba(184,150,90,0.12);
    border-radius: 0;
  }

  .nav-link--active { border-bottom: 1px solid rgba(184,150,90,0.12); border-left: 3px solid var(--gold); background: rgba(184,150,90,0.12); }

  .hero {
    flex-direction: column;
    padding: 60px 24px 56px;
    gap: 48px;
    text-align: center;
  }

  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }

  .hero-visual { order: -1; }

  .letter-bundle { width: 240px; height: 178px; }
  .env-stack { width: 138px; height: 93px; left: 51px; top: 64px; }
  .env-stack::before { height: 46px; }
  .env-stack::after { height: 43px; }
  .ribbon-band { top: 114px; height: 12px; }
  .ribbon-bow { top: 101px; width: 54px; height: 34px; }
  .ribbon-bow::before, .ribbon-bow::after { width: 26px; height: 18px; }
  .ribbon-knot { width: 12px; height: 14px; }

  .features { padding: 60px 24px; }

  .waitlist { padding: 60px 24px 80px; }

  .nav { padding: 8px 24px; }
}

/* ─── Cookie Banner ─────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink);
  border-top: 1px solid rgba(184,150,90,0.35);
  padding: 20px 24px;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}

.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 240px;
}

.cookie-banner__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0e6cc;
  margin-bottom: 6px;
}

.cookie-banner__desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: rgba(196,168,130,0.85);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.cookie-banner__link:hover {
  color: #f0e6cc;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none;
  border-radius: var(--radius);
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.cookie-banner__btn:hover {
  transform: translateY(-1px);
}

.cookie-banner__btn--accept {
  background: var(--gold);
  color: var(--ink);
}

.cookie-banner__btn--accept:hover {
  background: #a07840;
}

.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(196,168,130,0.85);
  border: 1px solid rgba(184,150,90,0.40);
}

.cookie-banner__btn--decline:hover {
  background: rgba(184,150,90,0.10);
  color: #f0e6cc;
  border-color: rgba(184,150,90,0.65);
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}

/* ─── Scroll reveal ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Shared dark hero (page-hero) ──────────────────────── */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  background-color: var(--ink);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(184,150,90,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 75%, rgba(184,150,90,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.page-hero-ornament {
  font-family: var(--font-sans);
  font-size: 1.00rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.page-hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.2;
  max-width: 800px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.page-hero h1 .script-accent {
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  font-size: 1.22em;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1.1;
  margin-top: 4px;
}

.page-hero-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 32px auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 0.65s forwards;
}

.page-hero-sub {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(1.0rem, 1.8vw, 1.15rem);
  font-weight: 400;
  color: var(--brown-pale);
  max-width: 620px;
  line-height: 1.85;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 0.85s forwards;
}

.page-hero-cta {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 1.22s forwards;
}

.page-hero-cta .btn-primary {
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.page-hero-cta .btn-primary:hover {
  background: #9a7a44;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .page-hero { padding: 60px 24px 56px; }
}
