/* =============================================================
   WedCut — Brand Site
   Direction A palette: Cellar & Linen
   Type: Fraunces (display serif) + Inter (body sans)
   ============================================================= */

:root {
  /* Palette */
  --garnet: #7A2438;
  --oxblood: #4E1726;
  --terracotta: #B85C3B;
  --linen: #EFE2C9;
  --linen-light: #F7F0DE;
  --bone: #FDF8EE;
  --mushroom: #A89A87;
  --gold: #B89461;
  --espresso: #2E1F18;
  --white: #FFFFFF;

  /* Layout */
  --max-width: 1140px;
  --gutter: 1.5rem;

  /* Type scale (fluid) */
  --fs-h1: clamp(2.5rem, 6vw, 4.5rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1.0625rem;       /* 17px */
  --fs-lede: 1.2rem;          /* 19.2px */
  --fs-small: 0.85rem;
  --fs-eyebrow: 0.78rem;

  /* Spacing */
  --section-y: clamp(4rem, 8vw, 6rem);
}

/* =============================================================
   Reset / base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--espresso);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* =============================================================
   Typography
   ============================================================= */
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--garnet);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mushroom);
  font-weight: 500;
  margin: 0 0 1.5em;
}
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.centered { text-align: center; }

.lede {
  font-size: var(--fs-lede);
  color: var(--espresso);
  opacity: 0.86;
  max-width: 38em;
  line-height: 1.55;
  margin: 0 0 2em;
}

.serif-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--espresso);
}

/* =============================================================
   Layout helpers
   ============================================================= */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding: var(--section-y) var(--gutter);
}
section > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* =============================================================
   Header / navigation
   ============================================================= */
header.site-header {
  position: sticky;
  top: 0;
  background: rgba(239, 226, 201, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 154, 135, 0.25);
  z-index: 50;
}

nav.site-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand-mark {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--garnet);
  text-decoration: none;
  letter-spacing: -0.02em;
  position: relative;
  padding: 0.1em 0;
}
.brand-mark::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.25s ease;
}
.brand-mark:hover::after { width: 100%; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--espresso);
  transition: color 0.2s ease;
}
.nav-links a:hover:not(.btn) {
  color: var(--garnet);
}
.nav-links .btn {
  padding: 0.55em 1.2em;
  font-size: 0.9rem;
}

/* =============================================================
   Buttons + links
   ============================================================= */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 0;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background: var(--garnet);
  color: var(--linen);
}
.btn-primary:hover {
  background: var(--oxblood);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(78, 23, 38, 0.25);
}
.btn-terracotta {
  background: var(--terracotta);
  color: var(--linen);
}
.btn-terracotta:hover {
  background: #9F4A2B;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 92, 59, 0.25);
}

.link-arrow {
  text-decoration: none;
  color: var(--garnet);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
  display: inline-block;
}
.link-arrow:hover {
  border-bottom-color: var(--garnet);
}
.link-arrow.on-dark {
  color: var(--linen);
  border-bottom-color: var(--gold);
}
.link-arrow.on-dark:hover {
  border-bottom-color: var(--linen);
}

/* =============================================================
   Hero
   ============================================================= */
.hero {
  text-align: center;
  padding-top: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}
.hero h1 {
  margin-bottom: 0.6em;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.hero .lede {
  margin: 0 auto 2.5em;
  max-width: 32em;
}
.cta-group {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero countdown illustration */
.hero-illustration {
  max-width: 560px;
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.hero-illustration .date-pill {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  color: var(--mushroom);
  background: var(--bone);
  border: 1px solid rgba(168, 154, 135, 0.3);
  border-radius: 8px;
  padding: 0.55em 0.85em;
  font-size: 0.95rem;
  min-width: 2.6em;
  text-align: center;
}
.hero-illustration .date-pill.is-target {
  background: var(--terracotta);
  color: var(--linen);
  border-color: var(--terracotta);
  font-size: 1.1rem;
  padding: 0.7em 1em;
  position: relative;
  box-shadow: 0 4px 12px rgba(184, 92, 59, 0.3);
}
.hero-illustration .date-pill.is-target::after {
  content: 'wedding day';
  position: absolute;
  top: calc(100% + 0.5em);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  white-space: nowrap;
}

/* =============================================================
   Pillars
   ============================================================= */
.pillars {
  background: var(--bone);
  border-top: 1px solid rgba(168, 154, 135, 0.2);
  border-bottom: 1px solid rgba(168, 154, 135, 0.2);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 1rem;
}
.pillar-card {
  background: var(--linen);
  padding: 2.5rem 2rem;
  border-radius: 14px;
  border: 1px solid rgba(184, 148, 97, 0.3);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  opacity: 0.5;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: var(--terracotta);
}
.pillar-card h3 {
  color: var(--espresso);
  font-size: 1.45rem;
  margin-bottom: 0.6em;
}
.pillar-card p {
  margin: 0;
  color: var(--espresso);
  opacity: 0.85;
  line-height: 1.6;
}

/* =============================================================
   How It Works
   ============================================================= */
.how-it-works {
  background: var(--linen);
}
.how-it-works h2 {
  text-align: center;
  max-width: 18ch;
  margin: 0 auto 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  align-items: start;
}
.step {
  text-align: left;
  position: relative;
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 400;
}
.step h3 {
  color: var(--espresso);
  font-size: 1.35rem;
  margin-bottom: 0.7em;
}
.step p {
  margin: 0;
  opacity: 0.85;
  line-height: 1.6;
}

/* =============================================================
   Waitlist form
   ============================================================= */
.waitlist {
  background: var(--garnet);
  color: var(--linen);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 148, 97, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 92, 59, 0.08), transparent 50%);
  pointer-events: none;
}
.waitlist > * { position: relative; }
.waitlist h2 {
  color: var(--linen);
  max-width: 22ch;
  margin: 0 auto 0.6em;
}
.waitlist .section-lede {
  color: var(--linen);
  opacity: 0.88;
  max-width: 32em;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-card {
  background: var(--linen);
  color: var(--espresso);
  max-width: 540px;
  margin: 0 auto;
  padding: 2.75rem 2.25rem;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 20px 60px rgba(78, 23, 38, 0.3);
}
.form-row {
  margin-bottom: 1.25rem;
}
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
  color: var(--espresso);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.9em 1em;
  border: 1px solid var(--mushroom);
  border-radius: 9px;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--espresso);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--garnet);
  box-shadow: 0 0 0 3px rgba(122, 36, 56, 0.12);
}
.form-submit {
  background: var(--terracotta);
  color: var(--linen);
  border: 0;
  width: 100%;
  padding: 1em;
  font-size: 1.05rem;
  font-family: inherit;
  border-radius: 9px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-top: 0.4rem;
}
.form-submit:hover {
  background: #9F4A2B;
  transform: translateY(-1px);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.form-error {
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  background: #FBEAE5;
  color: var(--oxblood);
  border-left: 3px solid var(--terracotta);
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.45;
}
.form-disclaimer {
  margin: 1.5rem 0 0;
  font-size: 0.8rem;
  color: var(--mushroom);
  text-align: center;
  line-height: 1.5;
}

/* =============================================================
   Founder strip
   ============================================================= */
.founder {
  text-align: center;
  background: var(--linen);
}
.founder-portrait {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: var(--mushroom);
  object-fit: cover;          /* keep the medallion centred & filled */
  object-position: center;
  display: block;             /* img is replaced; flex no longer needed */
  border: 2px solid var(--gold);
}
.founder-line {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  max-width: 28em;
  margin: 0 auto 1.5rem;
  color: var(--espresso);
}

/* =============================================================
   Footer
   ============================================================= */
footer.site-footer {
  background: var(--oxblood);
  color: var(--linen);
  padding: 4rem var(--gutter) 2rem;
}
footer.site-footer > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.footer-tagline {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--linen);
  opacity: 0.85;
  padding: 0.35em 0;
  font-size: 0.95rem;
  transition: opacity 0.15s ease;
}
.footer-col a:hover { opacity: 1; }
.footer-col a[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(184, 148, 97, 0.25);
}
.footer-social a {
  text-decoration: none;
  color: var(--linen);
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.footer-social a:hover { opacity: 1; }

.disclaimer {
  margin: 1.5rem 0 0;
  font-size: 0.78rem;
  opacity: 0.65;
  max-width: 62ch;
  line-height: 1.5;
}

/* =============================================================
   Subpages (manifesto, faq, privacy, terms, thank-you)
   ============================================================= */
.page {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}
.page-content {
  max-width: 720px;
  margin: 0 auto;
}
.page-content h1 {
  margin-bottom: 0.4em;
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.page-content p,
.page-content li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--espresso);
}
.page-content blockquote {
  margin: 1.5rem 0;
  padding: 0 1.5rem;
  border-left: 3px solid var(--gold);
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--espresso);
  opacity: 0.9;
}

/* FAQ specific */
.faq-section {
  margin-top: 2rem;
  padding: 0;            /* cancel the inherited global section{} padding */
}
.faq-section h2 {
  font-size: 1.65rem;
  color: var(--garnet);
  margin-bottom: 1.15rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(168, 154, 135, 0.3);
}
.faq-item {
  margin-bottom: 1.25rem;
}
.faq-item .question {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--espresso);
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.faq-item .answer {
  margin: 0;
  color: var(--espresso);
  opacity: 0.88;
}

/* Thank-you page */
.thank-you {
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.thank-you h1 { max-width: 18ch; }

/* =============================================================
   Mobile
   ============================================================= */
@media (max-width: 720px) {
  .nav-links {
    gap: 1rem;
  }
  .nav-links a:not(.btn) {
    display: none;
  }
  .form-card {
    padding: 2rem 1.5rem;
  }
  .hero-illustration .date-pill {
    font-size: 0.85rem;
    padding: 0.45em 0.7em;
    min-width: 2.3em;
  }
  .hero-illustration .date-pill.is-target {
    font-size: 1rem;
    padding: 0.6em 0.9em;
  }

  /* Mobile contrast: light "mushroom" eyebrows and faded ledes read too pale on phone screens */
  .eyebrow {
    color: var(--espresso);
    opacity: 0.95;
    font-weight: 600;
  }
  .eyebrow.on-dark {
    color: var(--gold);
    opacity: 1;
  }
  .lede,
  .section-lede {
    opacity: 1;
    color: var(--espresso);
  }
  .pillar-card p,
  .step p {
    opacity: 1;
  }
  /* "While you wait..." line on the thank-you page */
  .thank-you p[style*="mushroom"] {
    color: var(--espresso) !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================================
   TIER 1 + 2 — heirloom-luxe redesign to match the logo
   (Cellar & Linen palette unchanged; treatment upgraded:
   tactile, dimensional, ornamental rather than flat editorial)
   ============================================================= */

/* --- Body: linen-canvas grain (subtle SVG noise overlay) --- */
body {
  background-color: var(--linen);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.12  0 0 0 0 0.09  0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  background-repeat: repeat;
  background-attachment: fixed;
}

/* --- Brand mark: small logo medallion + wordmark --- */
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.brand-mark-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 1px 3px rgba(78, 23, 38, 0.18);
}

/* --- Hero logo medallion --- */
.hero-logo {
  display: block;
  width: clamp(150px, 20vw, 220px);
  height: auto;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 50%;
  filter: drop-shadow(0 18px 40px rgba(78, 23, 38, 0.22))
          drop-shadow(0 4px 10px rgba(78, 23, 38, 0.10));
}

/* --- Ornamental section divider (small antique-gold flourish) --- */
.ornament-divider {
  display: flex;
  justify-content: center;
  margin: clamp(2rem, 5vw, 3.5rem) auto;
  color: var(--gold);
}
.ornament-divider svg {
  width: 140px;
  height: 18px;
  opacity: 0.85;
}

/* --- Pillar cards: tactile, beveled, ornamental --- */
.pillar-card {
  background: linear-gradient(180deg, #FDF6E2 0%, var(--linen) 100%);
  border: 1px solid rgba(184, 148, 97, 0.55);
  border-radius: 14px;
  padding: 2.75rem 2rem 2.5rem;
  position: relative;
  overflow: visible;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.9),
    inset 0 -1px 0 rgba(78, 23, 38, 0.06),
    0 10px 28px rgba(78, 23, 38, 0.08),
    0 2px 6px rgba(78, 23, 38, 0.05);
}
.pillar-card::before {
  /* connector bar removed — diamond ornament on ::after is enough */
  content: none;
}
.pillar-card::after {
  /* small diamond ornament on top edge */
  content: '◆';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  background: var(--linen);
  width: 18px;
  height: 18px;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(78, 23, 38, 0.08);
}
.pillar-icon {
  color: var(--gold);         /* shift from terracotta to gold for engraved/heraldic feel */
  stroke-width: 1.1;
}

/* --- Buttons: subtle bevel + richer shadow --- */
.btn-primary {
  background: linear-gradient(180deg, #8E2A45 0%, var(--garnet) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(78, 23, 38, 0.22);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #6B1F35 0%, var(--oxblood) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 8px 22px rgba(78, 23, 38, 0.34);
  transform: translateY(-1px);
}
.btn-terracotta {
  background: linear-gradient(180deg, #C46D4F 0%, var(--terracotta) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10),
    0 4px 12px rgba(184, 92, 59, 0.22);
}
.btn-terracotta:hover {
  background: linear-gradient(180deg, #9F4A2B 0%, #8E4225 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 8px 22px rgba(184, 92, 59, 0.32);
  transform: translateY(-1px);
}
.form-submit {
  background: linear-gradient(180deg, #C46D4F 0%, var(--terracotta) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10),
    0 4px 12px rgba(184, 92, 59, 0.24);
}
.form-submit:hover {
  background: linear-gradient(180deg, #9F4A2B 0%, #8E4225 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 8px 22px rgba(184, 92, 59, 0.34);
}

/* --- Waitlist section: deep wine velvet (gradient + noise overlay) --- */
.waitlist {
  background:
    radial-gradient(ellipse at center top, #8B2A45 0%, var(--garnet) 40%, var(--oxblood) 100%);
  position: relative;
}
.waitlist::before {
  /* fine grain noise to read as velvet */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 260'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.3' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.92  0 0 0 0 0.78  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 260px 260px;
  mix-blend-mode: overlay;
  opacity: 0.55;
  pointer-events: none;
}
.waitlist > * { position: relative; z-index: 1; }

/* --- Founder portrait: small medallion frame instead of flat circle --- */
.founder-portrait {
  background: var(--linen-light);
  border: 2px solid var(--gold);
  box-shadow:
    inset 0 0 0 4px var(--linen),
    0 6px 16px rgba(78, 23, 38, 0.12);
  color: var(--garnet);
}

/* =============================================================
   TIER 3 — final polish (micro-interactions, focus, refinement)
   ============================================================= */

/* --- Global typographic crispness --- */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

/* --- Selection: garnet wash on linen, ivory text --- */
::selection {
  background: var(--garnet);
  color: var(--linen);
}
::-moz-selection {
  background: var(--garnet);
  color: var(--linen);
}

/* --- Focus-visible: refined gold ring (keyboard nav only) --- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Form inputs: soft inset, gold focus glow --- */
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="date"],
.form-row select,
.form-row textarea {
  background: #FBF5E5;
  box-shadow: inset 0 1px 2px rgba(78, 23, 38, 0.06);
  transition: border-color 200ms ease, box-shadow 220ms ease, background 200ms ease;
}
.form-row input[type="text"]:hover,
.form-row input[type="email"]:hover,
.form-row input[type="date"]:hover,
.form-row select:hover,
.form-row textarea:hover {
  border-color: rgba(184, 148, 97, 0.55);
}
.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus,
.form-row input[type="date"]:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #FFFDF6;
  box-shadow:
    inset 0 1px 2px rgba(78, 23, 38, 0.04),
    0 0 0 3px rgba(184, 148, 97, 0.22);
}
.form-row label {
  letter-spacing: 0.04em;
}

/* --- link-arrow: sliding underline that draws on hover --- */
.link-arrow {
  position: relative;
  text-decoration: none;
  transition: color 180ms ease;
}
.link-arrow::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 220ms ease;
}
.link-arrow:hover::after,
.link-arrow:focus-visible::after {
  transform: scaleX(1);
  opacity: 0.85;
}

/* --- Pillar cards: micro hover lift + warmer shadow --- */
.pillar-card {
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 320ms ease,
              border-color 320ms ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 148, 97, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.95),
    inset 0 -1px 0 rgba(78, 23, 38, 0.06),
    0 18px 40px rgba(78, 23, 38, 0.12),
    0 4px 10px rgba(78, 23, 38, 0.07);
}

/* --- Buttons: refined transitions on the existing bevels --- */
.btn-primary,
.btn-terracotta,
.form-submit {
  transition: background 220ms ease,
              box-shadow 260ms ease,
              transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.btn-primary:active,
.btn-terracotta:active,
.form-submit:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

/* --- Footer links: warm gold underline on hover --- */
.footer-col a {
  position: relative;
  transition: color 200ms ease;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-social a {
  position: relative;
  padding-bottom: 2px;
  transition: color 180ms ease;
}
.footer-social a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.footer-social a:hover {
  color: var(--gold);
}
.footer-social a:hover::after {
  transform: scaleX(1);
}

/* --- Sticky nav: hairline gold underline accent on scroll --- */
header.site-header {
  transition: box-shadow 300ms ease, border-color 300ms ease;
}
header.site-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  transform: translateX(-50%);
}
header.site-header { position: sticky; }

/* --- Date pills: gentler shadow + wedding-day target gets a soft gold halo --- */
.hero-illustration .date-pill {
  font-feature-settings: "ss01" 1;
  transition: transform 200ms ease, box-shadow 220ms ease;
}
.hero-illustration .date-pill.is-target {
  box-shadow:
    0 4px 12px rgba(184, 92, 59, 0.32),
    0 0 0 3px rgba(184, 148, 97, 0.18);
}

/* --- Founder portrait: replace blocky "W" with refined Fraunces serif --- */
.founder-portrait {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  font-feature-settings: "ss01" 1, "liga" 1;
}

/* --- Hero medallion: very subtle drift, breathing animation --- */
@keyframes wedcut-medallion-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.hero-logo {
  animation: wedcut-medallion-float 6s ease-in-out infinite;
  will-change: transform;
}

/* --- Section-head: refined kerning on display headings --- */
h1, h2, h3 {
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
  letter-spacing: -0.015em;
}
h1 { letter-spacing: -0.025em; }

/* --- Hairline image-loading reservation --- */
img { image-rendering: -webkit-optimize-contrast; }

/* --- Reduced motion: kill the medallion float + hover lifts --- */
@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; }
  .pillar-card:hover { transform: none; }
  .btn-primary:hover,
  .btn-terracotta:hover,
  .form-submit:hover { transform: none; }
  html { scroll-behavior: auto; }
}

/* --- Nav button: force ivory text (.nav-links a was beating .btn-primary on specificity) --- */
.nav-links a.btn-primary,
.nav-links a.btn-terracotta,
.nav-links a.btn {
  color: var(--linen);
}
.nav-links a.btn-primary:hover,
.nav-links a.btn-terracotta:hover,
.nav-links a.btn:hover {
  color: var(--linen);
}

/* --- Fix: input[type="date"] ignoring container width on mobile Safari ---
   Cause: native UA chrome (picker icon + intrinsic mm/dd/yyyy width) makes
   the date input wider than the rest of the form, overflowing the card. */
.form-row input[type="date"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  /* match the line-height of the other inputs so the field is the same height */
  line-height: 1.2;
}
/* tidy up the native picker indicator + spin buttons so they sit cleanly */
.form-row input[type="date"]::-webkit-calendar-picker-indicator {
  margin-left: auto;
  opacity: 0.55;
  cursor: pointer;
}
.form-row input[type="date"]::-webkit-inner-spin-button,
.form-row input[type="date"]::-webkit-clear-button {
  display: none;
}
