﻿:root {
    --ink:        #5C1C1C;
    --ink-light:  #6E2A2A;
    --gold:       #C9A87C;
    --gold-light: #E0C29C;
    --cream:      #FFF8F0;
    --sand:       #FEF5EA;
    --white:      #fff;
    --serif:      'Cormorant Garamond', Georgia, serif;
    --sans:       'Jost', sans-serif;
    --muted:      #8a6a4a;
    --radius:     3px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: #FEF5EA;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 300;
    min-height: 100vh;
  }

  h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 300;
    line-height: 1.2;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,168,124,0.3);
    box-shadow: 0 2px 18px rgba(92,28,28,0.08);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
  }
  .nav-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  .nav-back {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .nav-back:hover { color: var(--ink); }
  .nav-back svg { width: 13px; height: 13px; }

  /* ─── HERO BAND ─── */
  .hero-band {
    margin-top: 61px;
    background: linear-gradient(110deg, var(--ink) 0%, var(--ink-light) 55%, var(--ink) 100%);
    padding: 52px 40px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(201,168,124,0.14) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-band .eyebrow { color: var(--gold-light); }
  .hero-band h1 { color: var(--white); font-size: clamp(26px, 5vw, 42px); margin-bottom: 10px; }
  .hero-band h1 em { font-style: italic; color: #f5ddb8; }
  .hero-band p { color: rgba(255,248,240,0.65); font-size: 14px; font-weight: 300; max-width: 380px; margin: 0 auto; }

  /* ─── HELPERS ─── */
  .eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
  }
  .gold-line {
    width: 36px; height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto;
    display: block;
  }

  /* ─── PAGE BODY ─── */
  .page-body {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 24px 72px;
  }

  /* ─── CARD ─── */
  .card {
    background: var(--white);
    border: 1px solid rgba(201,168,124,0.25);
    border-radius: var(--radius);
    box-shadow: 0 6px 40px rgba(92,28,28,0.12);
    overflow: hidden;
    animation: fadeUp 0.55s ease forwards;
  }
  .card-body {
    padding: 48px 44px;
    text-align: center;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .card .eyebrow { margin-bottom: 6px; }
  .card .gold-line { margin-bottom: 24px; margin-top: 8px; }

  .card h2 { font-size: clamp(22px, 4vw, 30px); color: var(--ink); margin-bottom: 8px; }
  .card h2 em { font-style: italic; color: var(--gold); }

  .card-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 36px;
    line-height: 1.75;
    font-weight: 300;
  }

  /* ─── STARS ─── */
  .stars-hint {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
    display: block;
  }
  .stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  .star {
    width: 46px; height: 46px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    outline: none;
    transition: transform 0.15s ease;
  }
  .star svg { width: 100%; height: 100%; }
  .star svg path { fill: #ddd0c0; transition: fill 0.12s ease; }
  .star.lit svg path { fill: var(--gold); }
  .star.lit { transform: scale(1.12); }

  .stars-note {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    height: 20px;
    letter-spacing: 0.03em;
  }

  /* ─── PANELS ─── */
  .panel { display: none; }
  .panel.visible { display: block; animation: fadeUp 0.4s ease forwards; }
  .thankyou { display: none; }
  .thankyou.visible { display: block; animation: fadeUp 0.4s ease forwards; }

  /* ─── ICON CIRCLE ─── */
  .icon-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .icon-circle svg { width: 24px; height: 24px; fill: none; stroke-width: 1.6; }
  .ic-ink { background: rgba(92,28,28,0.08); }
  .ic-ink svg { stroke: var(--ink); }
  .ic-gold { background: rgba(201,168,124,0.18); }
  .ic-gold svg { stroke: var(--gold); }

  /* Stars display */
  .star-display {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
  }
  .star-display svg { width: 18px; height: 18px; }

  .panel-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
    font-weight: 300;
  }
  .panel-text strong { color: var(--ink); font-weight: 500; }

  /* ─── BUTTONS ─── */
  .btn-ink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--white);
    text-decoration: none;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-ink:hover { background: var(--ink-light); transform: translateY(-1px); }
  .btn-ink svg { width: 17px; height: 17px; flex-shrink: 0; }

  .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-gold:hover { background: #b8976a; transform: translateY(-1px); }
  .btn-gold svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

  /* ─── TRUST STRIP ─── */
  .trust-strip {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 24px;
    background: var(--sand);
    border-top: 1px solid rgba(201,168,124,0.25);
  }
  .trust-strip.visible { display: flex; }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--muted);
    font-weight: 300;
  }
  .trust-item svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; }

  /* ─── NEGATIVE ─── */
  .sorry-band {
    background: var(--sand);
    border: 1px solid rgba(201,168,124,0.25);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-bottom: 24px;
    text-align: left;
  }
  .sorry-band blockquote {
    font-family: var(--serif);
    font-size: 19px;
    font-style: italic;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 6px;
  }
  .sorry-band p { font-size:17px; color: var(--muted); font-weight: 300; line-height: 1.6; }

  .form-group { text-align: left; margin-bottom: 16px; }
  .form-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid rgba(201,168,124,0.35);
    border-radius: var(--radius);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    padding: 12px 14px;
    resize: vertical;
    min-height: 110px;
    outline: none;
    transition: border-color 0.2s;
    line-height: 1.6;
  }
  textarea::placeholder { color: rgba(138,106,74,0.4); }
  textarea:focus { border-color: var(--ink); }

  /* ─── MISC ─── */
  .sep { width: 100%; height: 1px; background: rgba(201,168,124,0.25); margin: 26px 0; }

  .reset-link {
    background: none; border: none;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.06em;
    cursor: pointer;
    margin-top: 18px;
    display: inline-block;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .reset-link:hover { color: var(--ink); }

  /* ─── FOOTER ─── */
  footer {
    text-align: center;
    padding: 24px;
    font-size: 11px;
    color: rgba(92,28,28,0.4);
    letter-spacing: 0.06em;
  }
  footer a { color: rgba(92,28,28,0.4); text-decoration: none; margin: 0 8px; transition: color 0.2s; }
  footer a:hover { color: var(--ink); }

  @media (max-width: 520px) {
    nav { padding: 10px 20px; }
    .hero-band { padding: 36px 20px 30px; }
    .card-body { padding: 32px 20px; }
    .trust-strip { flex-direction: column; gap: 10px; }
    .star { width: 38px; height: 38px; }
  }


