  @import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,680&family=Work+Sans:wght@400;500;600;700&display=swap');

  :root {
    --paper: #FBF3EE;
    --paper-raised: #FFFFFF;
    --ink: #241F1B;
    --ink-soft: #6E6259;
    --ink-faint: #A99C91;
    --coral: #E5573F;
    --coral-deep: #B93F2C;
    --coral-tint: #FBE3DC;
    --border: #E9DDD4;
    --shadow: 0 1px 2px rgba(36,31,27,.04), 0 8px 24px -12px rgba(36,31,27,.18);
  }

  * { box-sizing: border-box; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Work Sans', system-ui, sans-serif;
    line-height: 1.6;
  }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

  h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; margin: 0; text-wrap: balance; }

  a { color: inherit; }

  .pitch-banner {
    background: var(--ink);
    color: var(--paper);
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    text-align: center;
    padding: 9px 16px;
    letter-spacing: .02em;
  }
  .pitch-banner b { color: var(--coral); }
  .pitch-banner { display: flex; align-items: center; justify-content: center; gap: 14px; }
  .theme-toggle {
    font-family: 'Work Sans', sans-serif; font-size: 12px; font-weight: 600;
    background: rgba(251,243,238,.12); color: var(--paper);
    border: 1px solid rgba(251,243,238,.3); border-radius: 999px;
    padding: 4px 12px; cursor: pointer;
  }
  .theme-toggle:hover { background: rgba(251,243,238,.22); }

  /* header */
  header.site {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
  }
  header.site img.logo { height: 30px; width: auto; display: block; }

  nav.main { display: flex; align-items: center; gap: 30px; }
  nav.main .links { display: flex; align-items: center; gap: 26px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
  nav.main .links > a { text-decoration: none; }
  nav.main .links > a:hover { color: var(--ink); }

  .lang-switch { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; }
  .lang-switch a { color: var(--ink-faint); text-decoration: none; }
  .lang-switch a:hover { color: var(--coral-deep); }
  .lang-switch .lang-current { color: var(--ink); }
  .lang-switch .lang-sep { color: var(--border); font-weight: 400; }

  .nav-toggle { display: none; background: none; border: none; padding: 6px; margin: 0; color: var(--ink); cursor: pointer; }
  .nav-toggle svg { display: block; }
  .dropdown { position: relative; }
  .dropdown-trigger {
    font-family: 'Work Sans', sans-serif; font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
    background: none; border: none; cursor: pointer; padding: 0;
    display: flex; align-items: center; gap: 6px;
  }
  .dropdown-trigger svg { transition: transform .15s ease; }
  .dropdown:hover .dropdown-trigger { color: var(--ink); }
  .dropdown:hover .dropdown-trigger svg { transform: rotate(180deg); }
  .dropdown-panel {
    position: absolute; top: 100%; left: -16px; margin-top: 14px;
    background: var(--paper-raised); border: 1px solid var(--border); border-radius: 12px;
    box-shadow: var(--shadow); padding: 8px; min-width: 210px;
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden; transform: translateY(-4px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
  }
  .dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown-panel a {
    text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 500;
    padding: 9px 12px; border-radius: 8px;
  }
  .dropdown-panel a:hover { background: var(--coral-tint); color: var(--coral-deep); }
  .btn {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600; font-size: 14px;
    padding: 11px 22px; border-radius: 8px;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; border: 1px solid transparent;
    cursor: pointer; white-space: nowrap;
  }
  .btn-primary { background: var(--coral); color: #fff; }
  .btn-primary:hover { background: var(--coral-deep); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
  .btn-ghost:hover { border-color: var(--ink-faint); }

  /* hero */
  .hero { padding: 76px 0 0; }
  .hero .inner { max-width: 620px; margin: 0 auto; text-align: center; }
  .hero .eyebrow {
    font-size: 12.5px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase;
    color: var(--coral-deep); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; gap: 9px;
  }
  .hero .eyebrow::before, .hero .eyebrow::after { content: ''; width: 22px; height: 1.5px; background: var(--coral); display: inline-block; }
  .hero h1 { font-size: 52px; font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
  .hero h1 em { font-style: normal; color: var(--coral); }
  .hero p.lede { font-size: 18px; color: var(--ink-soft); margin: 22px auto 32px; max-width: 46ch; }
  .hero .ctas { display: flex; gap: 14px; margin-bottom: 34px; justify-content: center; }
  .hero .trustline { display: flex; gap: 22px; font-size: 13px; color: var(--ink-faint); flex-wrap: wrap; justify-content: center; }
  .hero .trustline span { display: flex; align-items: center; gap: 7px; }
  .hero .trustline svg { width: 15px; height: 15px; flex: none; }

  /* hero illustration */
  .hero-illustration { position: relative; margin-top: 56px; }
  .hero-illustration .frame {
    position: relative;
    background: var(--coral-tint);
    border-radius: 28px;
    padding: 30px;
    overflow: hidden;
  }
  .hero-illustration img {
    display: block; width: 100%; height: auto;
    border-radius: 16px;
  }
  .hero-illustration .chip {
    position: absolute;
    background: var(--paper-raised);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 10px 14px;
    display: flex; align-items: center; gap: 9px;
    font-size: 12.5px; font-weight: 600; color: var(--ink);
  }
  .hero-illustration .chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); flex: none; }
  .hero-illustration .chip.c1 { top: 16%; right: 8%; }
  .hero-illustration .chip.c2 { bottom: 14%; left: 9%; }

  /* stats */
  .stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stats .wrap { display: grid; grid-template-columns: repeat(3,1fr); }
  .stat { padding: 30px 20px; text-align: center; border-left: 1px solid var(--border); }
  .stat:first-child { border-left: none; }
  .stat b { display: block; font-family: 'Fraunces', serif; font-size: 27px; font-weight: 600; color: var(--coral-deep); }
  .stat span { font-size: 13px; color: var(--ink-soft); }

  /* section heading */
  .section { padding: 88px 0; }
  .section-head { max-width: 560px; margin: 0 auto 48px; text-align: center; }
  .section-head .eyebrow { justify-content: center; }
  .section-head h2 { font-size: 34px; font-weight: 600; }
  .section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 15.5px; }

  /* product families */
  .families { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .family-card {
    background: var(--paper-raised);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 26px;
    display: flex; flex-direction: column;
  }
  .family-card .icon-wrap {
    width: 96px; height: 96px; border-radius: 20px;
    background: var(--coral-tint);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    overflow: hidden;
  }
  .family-card .icon-wrap svg { width: 96px; height: 96px; }
  .family-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
  .family-card p { font-size: 14px; color: var(--ink-soft); flex: 1; margin: 0 0 18px; }
  .family-card .tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
  .tag { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--border); padding: 4px 10px; border-radius: 999px; }
  .family-card .more { font-size: 13.5px; font-weight: 600; color: var(--coral-deep); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }

  /* story */
  .story { background: var(--paper-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .story .wrap { padding: 90px 28px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
  .story .quote-mark { font-family: 'Fraunces', serif; font-size: 90px; color: var(--coral-tint); line-height: .6; }
  .story blockquote { font-family: 'Fraunces', serif; font-size: 27px; font-weight: 500; line-height: 1.35; margin: 0 0 20px; }
  .story cite { font-style: normal; font-size: 13.5px; color: var(--ink-faint); }
  .story .values { display: flex; flex-direction: column; gap: 22px; }
  .value-row { display: flex; gap: 16px; align-items: flex-start; }
  .value-row svg { width: 22px; height: 22px; color: var(--coral-deep); flex: none; margin-top: 2px; }
  .value-row b { display: block; font-size: 15px; margin-bottom: 3px; }
  .value-row span { font-size: 13.5px; color: var(--ink-soft); }

  /* cta band */
  .cta-band {
    position: relative; padding: 100px 0; overflow: hidden;
    background: linear-gradient(160deg, #33241c 0%, var(--ink) 55%, #17110d 100%);
  }
  .cta-band::before {
    content: ''; position: absolute; inset: -20%;
    background: radial-gradient(45% 60% at 82% 15%, rgba(229,87,63,.32), transparent 70%);
    pointer-events: none;
  }
  .cta-band .wrap { position: relative; text-align: center; }
  .cta-band .eyebrow { justify-content: center; color: var(--coral); }
  .cta-band h2 { color: #FBF3EE; font-size: 32px; font-weight: 600; max-width: 32ch; margin: 0 auto 30px; }
  .cta-band .ctas { display: flex; gap: 14px; justify-content: center; }
  .cta-band .btn-ghost { color: #FBF3EE; border-color: rgba(251,243,238,.35); }

  /* footer */
  footer.site { padding: 60px 0 34px; }
  footer.site .top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
  footer.site img.logo { height: 26px; margin-bottom: 14px; }
  footer.site p.blurb { font-size: 13.5px; color: var(--ink-soft); max-width: 30ch; }
  footer.site h4 { font-family: 'Work Sans', sans-serif; font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); margin: 0 0 14px; }
  footer.site ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  footer.site ul a { font-size: 14px; color: var(--ink-soft); text-decoration: none; }
  footer.site ul a:hover { color: var(--coral-deep); }
  footer.site address { font-style: normal; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
  .bottom-row { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 12.5px; color: var(--ink-faint); flex-wrap: wrap; gap: 10px; }
  .bottom-row a { text-decoration: none; }
  .bottom-row a:hover { color: var(--coral-deep); }

  @media (max-width: 860px) {
    .hero { padding-top: 48px; }
    .hero h1 { font-size: 34px; }
    .hero-illustration .chip { position: static; margin-top: 10px; display: inline-flex; }
    .hero-illustration .frame { padding: 16px; }
    .stats .wrap { grid-template-columns: 1fr; }
    .stat { border-left: none; border-top: 1px solid var(--border); }
    .stat:first-child { border-top: none; }
    .families { grid-template-columns: 1fr; }
    .story .wrap { grid-template-columns: 1fr; padding: 60px 24px; }
    footer.site .top { grid-template-columns: 1fr; row-gap: 28px; }

    header.site { flex-wrap: wrap; row-gap: 14px; padding: 16px 0; }
    header.site img.logo { height: 26px; }
    .nav-toggle { display: flex; order: 2; }
    .lang-switch { order: 3; }
    nav.main {
      order: 4; flex-basis: 100%; width: 100%;
      flex-direction: column; align-items: stretch; gap: 0;
      display: none;
    }
    header.site.nav-open nav.main { display: flex; }
    nav.main .links { flex-direction: column; align-items: flex-start; gap: 2px; width: 100%; padding: 10px 0; }
    nav.main .links > a { width: 100%; padding: 10px 0; }
    nav.main .btn { justify-content: center; margin: 10px 0 4px; }
    .dropdown { width: 100%; }
    .dropdown-trigger { width: 100%; justify-content: space-between; padding: 10px 0; }
    .dropdown-panel {
      position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
      display: flex; flex-direction: column; min-width: 0; width: 100%;
      padding: 0 0 6px 14px; margin: 0; border: none;
    }
  }

  /* breadcrumb */
  .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-faint); padding: 28px 0 0; }
  .breadcrumb a { text-decoration: none; color: var(--ink-faint); }
  .breadcrumb a:hover { color: var(--coral-deep); }

  /* category hero */
  .cat-hero { padding: 48px 0 60px; }
  .cat-hero .wrap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .cat-hero .icon-wrap {
    width: 88px; height: 88px; border-radius: 22px; background: var(--coral-tint);
    display: flex; align-items: center; justify-content: center; flex: none; overflow: hidden;
  }
  .cat-hero .icon-wrap svg { width: 88px; height: 88px; }
  .cat-hero .eyebrow { justify-content: center; margin-bottom: 8px; }
  .cat-hero h1 { font-size: 38px; font-weight: 600; }
  .cat-hero p.lede { font-size: 16.5px; color: var(--ink-soft); margin: 10px 0 0; max-width: 62ch; }

  /* feature grid (sub-features within a category) */
  .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .feature-card {
    background: var(--paper-raised); border: 1px solid var(--border); border-radius: 16px;
    padding: 26px; display: flex; gap: 16px;
  }
  .feature-card .badge {
    width: 44px; height: 44px; border-radius: 11px; background: var(--coral-tint);
    display: flex; align-items: center; justify-content: center; flex: none;
  }
  .feature-card .badge svg { width: 22px; height: 22px; color: var(--coral-deep); }
  .feature-card h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 6px; }
  .feature-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

  /* product hub cards already use .families / .family-card, reused as-is */

  @media (max-width: 700px) {
    .cat-hero .wrap { grid-template-columns: 1fr; text-align: left; }
    .feature-grid { grid-template-columns: 1fr; }
  }

  /* contact form */
  .contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
  .contact-info h2 { font-size: 26px; font-weight: 600; margin-bottom: 12px; }
  .contact-info p { color: var(--ink-soft); font-size: 15px; }
  .contact-info-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
  .contact-info-row { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); }
  .contact-info-row svg { width: 19px; height: 19px; color: var(--coral-deep); flex: none; margin-top: 1px; }
  .contact-form { background: var(--paper-raised); border: 1px solid var(--border); border-radius: 18px; padding: 30px; display: flex; flex-direction: column; gap: 16px; }
  .contact-form label { font-size: 13px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 6px; }
  .contact-form input, .contact-form textarea {
    width: 100%; font-family: 'Work Sans', sans-serif; font-size: 14px; color: var(--ink);
    background: var(--paper); border: 1px solid var(--border); border-radius: 10px; padding: 11px 14px;
  }
  .contact-form textarea { min-height: 110px; resize: vertical; }
  .contact-form button { align-self: flex-start; }

  /* warranty / FAQ list */
  .warranty-list { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin: 0 auto; }
  .warranty-item { background: var(--paper-raised); border: 1px solid var(--border); border-radius: 14px; padding: 22px 26px; }
  .warranty-item .num { font-family: 'IBM Plex Mono', 'Work Sans', monospace; font-size: 12px; color: var(--coral-deep); font-weight: 600; margin-bottom: 6px; display: block; }
  .warranty-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
  .warranty-item p { font-size: 14px; color: var(--ink-soft); margin: 0; }
  .warranty-company {
    max-width: 760px; margin: 32px auto 0; background: var(--coral-tint); border-radius: 14px; padding: 22px 26px;
    font-size: 14px; color: var(--ink);
  }
  .warranty-company b { display: block; margin-bottom: 4px; }

  /* retailer badges */
  .retailer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 620px; margin: 0 auto; }
  .retailer-card {
    background: var(--paper-raised); border: 1px solid var(--border); border-radius: 16px;
    padding: 30px 24px; display: flex; flex-direction: column; align-items: center; gap: 16px;
    text-align: center; text-decoration: none;
  }
  .retailer-card img { height: 34px; width: auto; max-width: 100%; object-fit: contain; }
  .retailer-card .go { font-size: 13px; font-weight: 600; color: var(--coral-deep); }

  @media (max-width: 800px) {
    .contact-wrap { grid-template-columns: 1fr; }
    .retailer-grid { grid-template-columns: 1fr; }
  }

.website-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-notice { padding: 12px 16px; border-radius: 8px; font-weight: 600; margin: 0 0 16px; }
.form-notice-success { background: #e8f5e9; color: #1b5e20; }
.form-notice-error { background: #fdecea; color: #b3261e; }
