:root{
    --cream:#FFF8EC;
    --red:#A83232;
    --white:#FFFFFF;
    --blue:#00274C;
    --blue-light:#3D74A8;
    --mustard:#F2AE30;
    --coral:#A83232;
    --line:#EBE1CE;
    --ink:#2B2118;
    --muted:#71675A;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{-webkit-text-size-adjust:100%;}
  body{
    background:var(--cream);
    color:var(--ink);
    font-family:'Inter',sans-serif;
    max-width:480px;
    margin:0 auto;
    padding-bottom:104px;
    text-align:center;
  }
  .mono{font-family:'Space Mono',monospace; letter-spacing:0.02em;}
  .hand{font-family:'Caveat',cursive;}

  /* HEADER */
  header{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 20px;
    position:sticky; top:0; z-index:20;
    background:rgba(0,39,76,0.82);
  }
  /* WORDMARK — single shared definition, used by both header and footer.
     Structure (fonts, underline shape, sizing ratios) lives here once.
     Only color changes per placement, via the --header/--footer modifier. */
  .wordmark{
    font-family:'Bricolage Grotesque',sans-serif;
    font-weight:800;
    text-transform:lowercase;
  }
  .wordmark .un{
    position:relative;
    display:inline-block;
    font-family:'Caveat',cursive;
    font-weight:700;
    font-size:1.35em;
    vertical-align:-0.05em;
    margin-right:0.06em;
  }
  .wordmark .pen-underline{
    position:absolute;
    left:-3%; bottom:-3px;
    width:106%; height:9px;
  }
  .wordmark .tm{
    font-family:'Inter',sans-serif;
    font-weight:600;
    font-size:0.32em;
    vertical-align:super;
    margin-left:2px;
    opacity:0.85;
  }
  .wordmark--header{ font-size:23px; color:var(--white); }
  .wordmark--header .un{ color:var(--white); }
  .wordmark--header .pen-underline{ color:var(--red); }
  .wordmark--header .store{ color:var(--white); }
  .menu-dot{
    width:36px; height:36px; border-radius:50%;
    background:var(--red);
    display:flex; align-items:center; justify-content:center;
    flex-direction:column; gap:3px;
  }
  .menu-dot i{width:15px; height:2px; background:var(--white); display:block;}
  .desktop-nav{ display:none; }
  .desktop-nav-cta{ display:none; }

  /* HERO */
  .hero{ padding:52px 20px 10px; position:relative; overflow:visible; }
  .hero-icons{ position:absolute; inset:0; z-index:0; pointer-events:none; }
  .hero-icon{ position:absolute; color:var(--mustard); opacity:0.35; animation:hero-float 6s ease-in-out infinite; }
  .hero-icon svg{ display:block; width:100%; height:100%; }
  .hero > *:not(.hero-icons){ position:relative; z-index:1; }
  @keyframes hero-float{
    0%, 100%{ transform:translate(0,0) rotate(-2deg); }
    50%{ transform:translate(6px,-16px) rotate(8deg); }
  }
  @media (prefers-reduced-motion: reduce){ .hero-icon{ animation:none; } }

  /* HERO GRID — layout-driven placement instead of guessing at absolute
     positions. Mobile: single column, natural stacking order. Desktop:
     two columns via grid-template-areas, so the stamp can sit beside the
     text without depending on the text block's height. */
  .hero-grid{
    display:grid;
    grid-template-columns:1fr;
    grid-template-areas:
      "eyebrow"
      "headline"
      "sub"
      "stamp"
      "cta";
    justify-items:center;
  }
  .eyebrow-tag{
    grid-area:eyebrow;
    display:inline-flex; align-items:center; gap:8px;
    font-family:'Space Mono',monospace;
    font-size:11px; font-weight:700;
    letter-spacing:0.1em; text-transform:uppercase;
    color:var(--coral);
    margin-bottom:18px;
  }
  .eyebrow-tag::before{ content:'⚑'; font-size:11px; }

  h1{
    grid-area:headline;
    font-family:'Bricolage Grotesque',sans-serif;
    font-weight:800;
    font-size:42px;
    line-height:1.05;
    color:var(--blue);
    letter-spacing:-0.015em;
  }
  h1 .hl{
    color:var(--coral);
    font-style:italic;
  }
  .hero-sub{
    grid-area:sub;
    margin:20px auto 0;
    font-size:16.5px;
    line-height:1.6;
    color:var(--muted);
    max-width:34ch;
  }

  /* STAMP — the signature element */
  .stamp{
    grid-area:stamp;
    position:relative;
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transform:rotate(-4deg);
    margin:28px auto 4px;
  }
  .stamp-est{
    font-family:'Space Mono',monospace;
    font-size:13px;
    font-weight:700;
    letter-spacing:0.08em;
    color:var(--coral);
    text-transform:uppercase;
  }
  .stamp-main{
    font-family:'Caveat',cursive;
    font-weight:700;
    font-size:36px;
    line-height:1.05;
    color:var(--blue);
    margin:8px 0;
  }
  .stamp-sub{
    font-family:'Space Mono',monospace;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.06em;
    color:var(--coral);
    text-transform:uppercase;
  }

  .cta-row{ grid-area:cta; padding:30px 20px 6px; display:flex; flex-direction:column; gap:12px; align-items:center; }
  .btn-primary{
    width:100%;
    background:var(--coral);
    color:var(--white);
    border:none;
    padding:19px;
    border-radius:14px;
    font-family:'Bricolage Grotesque',sans-serif;
    font-weight:700;
    font-size:17px;
    text-align:center;
    display:block;
    text-decoration:none;
  }
  .btn-text{
    font-family:'Inter',sans-serif;
    font-weight:600;
    font-size:14px;
    color:var(--blue);
    text-decoration:underline;
    text-underline-offset:3px;
  }

  .divider{
    display:flex; align-items:center; justify-content:center; gap:8px;
    margin:52px auto 0;
  }
  .divider span{
    width:5px; height:5px; border-radius:50%; background:var(--mustard);
  }

  /* SECTIONS */
  .section{ padding:44px 20px 6px; }
  .section-eyebrow{
    font-family:'Space Mono',monospace;
    font-size:11px; font-weight:700;
    letter-spacing:0.1em; text-transform:uppercase;
    color:var(--coral);
    margin-bottom:10px;
  }
  .section-title{
    font-family:'Bricolage Grotesque',sans-serif;
    font-weight:800;
    font-size:34px;
    color:var(--blue);
    line-height:1.08;
    margin-bottom:18px;
    letter-spacing:-0.01em;
  }
  .section-subtitle{
    font-family:'Inter',sans-serif;
    font-weight:400;
    font-size:15.5px;
    color:var(--muted);
    margin-top:-6px;
    margin-bottom:24px;
    line-height:1.55;
  }

  /* OCCASION CHIPS */
  .occasion-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }
  .occasion-card{
    background:var(--white);
    border:1.5px solid var(--line);
    border-radius:18px;
    padding:18px 10px 14px;
    display:flex; flex-direction:column; align-items:center; gap:8px;
  }
  .occasion-card:nth-child(2){ transform:rotate(-1.5deg); }
  .occasion-card:nth-child(3){ transform:rotate(1.2deg); }
  .occasion-card:nth-child(5){ transform:rotate(-1deg); }
  .occasion-card svg{ width:44px; height:44px; }
  .occasion-card span{ font-size:13px; font-weight:600; color:var(--ink); }

  /* STEPS */
  .steps{ display:flex; flex-direction:column; gap:30px; text-align:left; }
  .step{ display:flex; gap:16px; align-items:flex-start; }
  .step-num{
    font-family:'Bricolage Grotesque',sans-serif;
    font-weight:800;
    font-size:26px;
    color:var(--white);
    background:var(--blue);
    width:42px; height:42px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .step-title{
    font-family:'Bricolage Grotesque',sans-serif;
    font-weight:700;
    font-size:19px;
    color:var(--blue);
    margin-bottom:5px;
  }
  .step-body{
    font-size:14.5px;
    color:var(--muted);
    line-height:1.55;
  }
  .step-link{
    display:inline-block;
    margin-top:6px;
    font-size:12.5px;
    font-weight:600;
    color:var(--coral);
    text-decoration:underline;
    text-underline-offset:3px;
  }

  /* PLANS */
  .plan-stack{ display:flex; flex-direction:column; gap:14px; }
  .plan{
    background:var(--white);
    border:1.5px solid var(--line);
    border-radius:18px;
    padding:24px 22px;
    position:relative;
    text-align:left;
  }
  .plan.reco{ border-color:var(--blue); box-shadow:0 6px 0 var(--blue); }
  .plan-cta{
    display:block;
    margin-top:16px;
    padding:12px;
    border:1.5px solid var(--blue);
    border-radius:10px;
    text-align:center;
    font-size:14px;
    font-weight:600;
    color:var(--blue);
    text-decoration:none;
  }
  .plan-cta.reco-cta{ background:var(--blue); color:var(--mustard); border-color:var(--blue); }
  .plan-name{
    font-family:'Bricolage Grotesque',sans-serif;
    font-weight:800;
    font-size:21px;
    margin-bottom:1px;
    color:var(--blue);
  }
  .plan-vibe{
    font-size:12.5px;
    color:var(--coral);
    font-weight:600;
    margin-bottom:12px;
    font-style:italic;
  }
  .plan-totes{
    font-family:'Space Mono',monospace;
    font-size:11.5px;
    text-transform:uppercase;
    letter-spacing:0.04em;
    color:var(--muted);
    margin-bottom:14px;
  }
  .plan-price{
    font-family:'Space Mono',monospace;
    font-weight:700;
    font-size:29px;
    color:var(--ink);
    margin-bottom:2px;
  }
  .plan-price span{ font-size:12.5px; font-weight:500; color:var(--muted); }
  .plan-exchanges{ font-size:12.5px; color:var(--muted); margin-top:6px; margin-bottom:16px; }
  .plan-badge{
    position:absolute;
    top:-14px; left:24px;
    display:flex; align-items:center; gap:5px;
    background:var(--mustard);
    color:var(--blue);
    padding:6px 13px;
    border-radius:20px;
    white-space:nowrap;
    transform:rotate(-3deg);
    box-shadow:0 2px 6px rgba(0,0,0,0.12);
    font-family:'Space Mono',monospace;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.03em;
  }
  .plans-foot{ margin-top:18px; font-size:13px; color:var(--muted); line-height:1.55; }
  .plans-foot b{ color:var(--ink); }
  .custom-quote{
    display:inline-block;
    margin-top:18px;
    padding:11px 22px;
    border:1.5px dashed var(--line);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    color:var(--blue);
    text-decoration:none;
  }

  /* NO LIST */
  .save-copy{
    font-size:16px;
    line-height:1.65;
    color:var(--muted);
    max-width:36ch;
    margin:0 auto;
  }
  .no-list{ margin:26px auto 0; max-width:34ch; text-align:left; }
  .no-item{
    display:flex; align-items:center; gap:12px;
    font-family:'Bricolage Grotesque',sans-serif;
    font-weight:700;
    font-size:19px;
    color:var(--blue);
    line-height:1.3;
    padding:12px 0;
    border-bottom:1px solid var(--line);
  }
  .no-item:first-child{ border-top:1px solid var(--line); }
  .no-item::before{ content:'✕'; color:var(--coral); font-size:15px; flex-shrink:0; }
  .no-item.hl-item{ color:var(--blue); font-weight:800; border-bottom:3px solid var(--mustard); }
  .no-item.hl-item::before{ content:'✓'; color:var(--mustard); }

  /* FOOTER */
  footer{ padding:52px 20px 20px; }
  .wordmark--footer{ font-size:20px; color:var(--blue); }
  .wordmark--footer .un{ color:var(--red); }
  .wordmark--footer .pen-underline{ color:var(--red); bottom:-2px; height:8px; }
  .wordmark--footer .store{ color:var(--blue); }
  .foot-hand{
    font-family:'Caveat',cursive;
    font-weight:700;
    font-size:17px;
    color:var(--coral);
    margin-top:6px;
  }
  .foot-tag{ margin-top:4px; font-size:12.5px; color:var(--muted); }
  .foot-link{
    display:inline-block;
    margin-top:16px;
    font-size:13px;
    font-weight:600;
    color:var(--blue);
    text-decoration:underline;
    text-underline-offset:3px;
  }
  .social-row{ display:flex; justify-content:center; gap:12px; margin-top:18px; }
  .social-icon{
    width:36px; height:36px; border-radius:50%;
    border:1.5px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    color:var(--blue);
    text-decoration:none;
  }
  .social-icon svg{ width:18px; height:18px; display:block; }

  /* STICKY CTA */
  .sticky-cta{
    position:fixed; bottom:0; left:0; right:0;
    max-width:480px; margin:0 auto;
    background:var(--white);
    border-top:1px solid var(--line);
    padding:14px 20px calc(14px + env(safe-area-inset-bottom));
    z-index:30;
  }
  .sticky-cta-row{ display:flex; gap:10px; }
  .sticky-cta .btn-primary{ padding:15px; font-size:14px; flex:1; }
  .btn-secondary-cta{ background:var(--white); color:var(--blue); border:1.5px solid var(--blue); }

  /* ---------- DOODLE SYSTEM ---------- */
  .squiggle-divider{
    display:block;
    width:64px;
    height:14px;
    margin:28px auto 0;
    color:var(--mustard);
  }

  .hand-note{
    font-family:'Caveat',cursive;
    font-weight:700;
    font-size:21px;
    color:var(--coral);
    position:relative;
    display:inline-block;
  }
  .hand-note.pointer-right{ padding-right:36px; }
  .hand-note.pointer-right::after{
    content:'';
    position:absolute;
    right:-4px; top:50%;
    width:34px; height:20px;
    background:no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath d='M2 6 Q30 -4 50 14' stroke='%23E15B3C' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3Cpath d='M40 8 L50 14 L41 20' stroke='%23E15B3C' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
  .hand-note-wrap{ text-align:center; margin-top:14px; }

  .wobble-circle{
    width:42px; height:42px;
    flex-shrink:0;
    position:relative;
  }
  .wobble-circle svg{ position:absolute; inset:0; width:100%; height:100%; }
  .wobble-circle span{
    position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    font-family:'Bricolage Grotesque',sans-serif;
    font-weight:800;
    font-size:19px;
    color:var(--white);
  }

  .doodle-underline{
    display:block;
    width:100%;
    height:10px;
    margin-top:-4px;
    color:var(--mustard);
  }

  .scribble-star{
    position:absolute;
    color:var(--coral);
    opacity:0.85;
  }

  .badge-circle{
    position:absolute;
    top:-30px; left:6px;
    width:140px; height:70px;
    pointer-events:none;
  }

  .icon-doodle{
    width:26px; height:26px;
    flex-shrink:0;
  }

  .step-illustration{
    width:52px; height:52px;
    flex-shrink:0;
    margin-bottom:2px;
  }

  .tape-corner{
    position:absolute;
    top:-8px; right:18px;
    width:44px; height:16px;
    background:rgba(242,174,48,0.35);
    border:1px solid rgba(242,174,48,0.5);
    transform:rotate(6deg);
  }

  /* ================= DESKTOP ================= */
  @media (min-width:900px){
    .mobile-break{ display:none; }
    body{ max-width:none; padding-bottom:0; }
    header{ padding:22px 48px; }
    .desktop-nav{ display:flex; align-items:center; gap:32px; margin-left:auto; margin-right:32px; }
    .desktop-nav a{ font-family:'Inter',sans-serif; font-weight:600; font-size:15px; color:var(--white); text-decoration:none; }
    .desktop-nav-cta{
      display:block; background:var(--coral); color:var(--white);
      font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:14.5px;
      padding:11px 20px; border-radius:10px; text-decoration:none; white-space:nowrap;
    }
    .menu-dot{ display:none; }

    .hero{ padding:88px 48px 50px; }
    .hero-grid{
      display:flex;
      flex-direction:column;
      align-items:center;
      text-align:center;
    }
    h1{ font-size:60px; max-width:720px; text-align:center; }
    .hero-sub{ font-size:18px; max-width:52ch; margin:20px auto 0; text-align:center; }
    .stamp{ margin:34px auto 4px; }
    .stamp-est{ font-size:14px; }
    .stamp-main{ font-size:42px; }
    .stamp-sub{ font-size:13px; }
    .cta-row{ flex-direction:row; justify-content:center; padding:36px 0 6px; }
    .cta-row .btn-primary{ width:auto; padding:19px 40px; }

    .section{ padding:64px 48px 6px; }
    .section-title{ font-size:44px; }
    .steps{ flex-direction:row; gap:32px; max-width:1080px; margin:0 auto; }
    .step{ flex:1; flex-direction:column; }
    .occasion-grid{ max-width:900px; margin:0 auto; }

    .plan-stack{ flex-direction:row; align-items:stretch; max-width:1080px; margin:0 auto; }
    .plan{ flex:1; display:flex; flex-direction:column; }
    .plan-cta{ margin-top:auto; }

    .save-copy{ max-width:56ch; font-size:17px; }
    .no-list{ max-width:44ch; }

    footer{
      display:flex; align-items:flex-start; justify-content:space-between;
      text-align:left; padding:48px 48px 40px; max-width:none;
    }
    .foot-left{ display:flex; flex-direction:column; align-items:flex-start; }
    .foot-right{ text-align:right; }
    .social-row{ justify-content:flex-start; }
    .foot-link{ display:block; }
    .sticky-cta{ display:none; }
  }

/* ================= SUB-PAGE COMPONENTS ================= */
/* Shared by faq / contact / plan-select — kept in this one file so every
   page that links to styles.css automatically matches the homepage. */

.page-hero{
  padding:48px 20px 8px;
  text-align:center;
}
.page-eyebrow{
  font-family:'Space Mono',monospace;
  font-size:11px; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase;
  color:var(--coral);
  margin-bottom:14px;
}
.page-title{
  font-family:'Bricolage Grotesque',sans-serif;
  font-weight:800;
  font-size:36px;
  line-height:1.05;
  color:var(--blue);
  letter-spacing:-0.01em;
  margin-bottom:14px;
}
.page-sub{
  font-size:15.5px;
  line-height:1.6;
  color:var(--muted);
  max-width:38ch;
  margin:0 auto;
}

/* ---- FAQ accordion ---- */
.faq-wrap{ padding:8px 20px 40px; }
.faq-category{
  font-family:'Space Mono',monospace;
  font-size:11px; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase;
  color:var(--red);
  margin:32px 0 10px;
}
.faq-category:first-child{ margin-top:8px; }
.faq-list{ display:flex; flex-direction:column; border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:16px 2px;
  background:none; border:none; text-align:left; cursor:pointer;
  font-family:'Bricolage Grotesque',sans-serif;
  font-weight:700; font-size:16px;
  color:var(--blue);
}
.faq-icon{
  font-family:'Space Mono',monospace;
  font-size:17px; font-weight:700;
  color:var(--coral);
  flex-shrink:0;
  transition:transform 0.2s ease;
}
.faq-item.open .faq-icon{ transform:rotate(45deg); }
.faq-a{
  display:none;
  padding:0 24px 18px 2px;
  font-size:14.5px; line-height:1.6;
  color:var(--muted);
  max-width:60ch;
}
.faq-item.open .faq-a{ display:block; }

/* ---- Contact / schedule exchange ---- */
.contact-wrap{ padding:12px 20px 40px; max-width:520px; margin:0 auto; }
.contact-phone{
  display:flex; align-items:center; justify-content:center; gap:10px;
  border:1.5px solid var(--blue);
  border-radius:14px;
  padding:16px;
  margin-bottom:22px;
  font-family:'Bricolage Grotesque',sans-serif;
  font-weight:700; font-size:19px;
  color:var(--blue);
  text-decoration:none;
}
.form-field{ display:flex; flex-direction:column; gap:6px; margin-bottom:16px; text-align:left; }
.form-field label{
  font-family:'Space Mono',monospace;
  font-size:11px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase;
  color:var(--muted);
}
.form-field input, .form-field select, .form-field textarea{
  font-family:'Inter',sans-serif;
  font-size:15px;
  padding:13px 14px;
  border:1.5px solid var(--line);
  border-radius:10px;
  background:var(--white);
  color:var(--ink);
}
.form-field textarea{ resize:vertical; min-height:90px; }
.form-note{
  font-size:12.5px; color:var(--muted); text-align:center;
  margin-top:16px; line-height:1.5;
}

/* ---- Plan select ---- */
.plan-tabs{ display:flex; gap:8px; padding:0 20px 8px; overflow-x:auto; }
.plan-tab{
  flex-shrink:0;
  font-family:'Bricolage Grotesque',sans-serif;
  font-weight:700; font-size:14px;
  color:var(--blue);
  background:var(--white);
  border:1.5px solid var(--line);
  border-radius:30px;
  padding:9px 18px;
  cursor:pointer;
}
.plan-tab.active{ background:var(--blue); color:var(--white); border-color:var(--blue); }
.plan-summary{
  margin:16px 20px; padding:26px 24px;
  background:var(--blue); color:var(--white);
  border-radius:20px;
}
.plan-summary .tag{
  font-family:'Space Mono',monospace; font-size:10.5px; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--mustard);
  margin-bottom:8px;
}
.plan-summary h3{ font-family:'Bricolage Grotesque',sans-serif; font-size:24px; margin-bottom:4px; }
.plan-summary .vibe{ font-size:13px; color:#C6D1E0; font-style:italic; margin-bottom:16px; }
.plan-summary .price-row{ display:flex; align-items:baseline; gap:6px; margin-bottom:4px; }
.plan-summary .price-row .amt{ font-family:'Space Mono',monospace; font-weight:700; font-size:32px; }
.plan-summary .price-row .per{ font-size:12px; color:#C6D1E0; }
.plan-summary .meta{ font-size:13px; color:#C6D1E0; }

@media (min-width:900px){
  .page-hero{ padding:64px 48px 8px; }
  .page-title{ font-size:48px; }
  .page-sub{ font-size:17px; max-width:52ch; }
  .faq-wrap{ padding:16px 48px 64px; max-width:760px; margin:0 auto; }
  .contact-wrap{ padding:16px 48px 64px; }
  .plan-tabs{ padding:0 48px 8px; justify-content:center; }
  .plan-summary{ margin:16px auto; max-width:520px; }
}
