
    @font-face { font-family: "Heebo"; src: url("fonts/heebo-400.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
    @font-face { font-family: "Heebo"; src: url("fonts/heebo-600.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
    @font-face { font-family: "Heebo"; src: url("fonts/heebo-700.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
    @font-face { font-family: "Heebo"; src: url("fonts/heebo-800.ttf") format("truetype"); font-weight: 800; font-style: normal; font-display: swap; }
    :root {
      --ink: #101827;
      --navy: #204D73;
      --paper: #EAF4F8;
      --paper-secondary: #DCECF2;
      --white: #FFFFFF;
      --coral: #FF795F;
      --coral-dark: #D84D38;
      --sky: #AFD5E6;
      --muted: #526171;
      --line: #BFD4DD;
      --focus: #9F2D1D;
      --shadow: 0 28px 80px rgba(16, 24, 39, .14);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-width: 0;
      overflow-x: clip;
      background: var(--paper);
      color: var(--ink);
      font-family: "Heebo", "Segoe UI", Arial, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    .wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
    :focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

    .skip-link {
      position: fixed;
      top: 12px;
      right: 12px;
      z-index: 100;
      transform: translateY(-180%);
      min-height: 44px;
      padding: 10px 16px;
      border-radius: 12px;
      background: var(--ink);
      color: var(--white);
      font-weight: 700;
    }
    .skip-link:focus { transform: none; }

    .notice {
      min-height: 38px;
      display: grid;
      place-items: center;
      padding: 7px 20px;
      background: var(--ink);
      color: var(--white);
      text-align: center;
      font-size: 13px;
      font-weight: 700;
    }
    .notice span { color: #ffc2b4; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      border-bottom: 1px solid rgba(30, 81, 69, .13);
      background: rgba(234, 244, 248, .94);
      backdrop-filter: blur(16px);
    }
    .nav-shell {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 44px;
      text-decoration: none;
      font-size: 23px;
      font-weight: 800;
      letter-spacing: -.04em;
    }
    .brand-mark {
      width: 42px;
      height: 34px;
      padding: 7px;
      border-radius: 12px;
      background: var(--navy);
      color: var(--coral);
      box-shadow: 0 5px 0 rgba(19, 58, 49, .18);
    }
    .nav-links { display: flex; align-items: center; gap: 22px; }
    .nav-links a {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
    }
    .nav-links a:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 6px; }
    .nav-links [aria-current="page"] { color: var(--navy); border-bottom: 3px solid var(--coral); }

    .hero {
      position: relative;
      padding: 88px 0 70px;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      left: -170px;
      top: -170px;
      border: 76px solid rgba(232, 111, 81, .15);
      border-radius: 50%;
    }
    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr);
      gap: 72px;
      align-items: end;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
    }
    .eyebrow::before { content: ""; width: 34px; height: 4px; border-radius: 99px; background: var(--coral); }
    h1 {
      max-width: 760px;
      margin: 16px 0 20px;
      font-size: clamp(52px, 7vw, 92px);
      line-height: .94;
      letter-spacing: -.065em;
    }
    .hero-lead { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(18px, 2vw, 23px); }
    .catalog-note {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 28px 28px 8px 28px;
      background: var(--white);
      box-shadow: 0 12px 32px rgba(16, 24, 39, .08);
    }
    .catalog-note strong { display: block; font-size: 28px; line-height: 1; color: var(--navy); }
    .catalog-note span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; }

    .shop-categories { padding: 18px 0 72px; scroll-margin-top: 84px; }
    .shop-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
    .shop-category { min-height: 170px; padding: 21px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.74); display: flex; flex-direction: column; gap: 18px; }
    .shop-category.active { background: var(--white); border-color: var(--navy); box-shadow: 0 12px 32px rgba(16,24,39,.09); }
    .category-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--paper-secondary); color: var(--navy); font-size: 21px; font-weight: 800; }
    .shop-category.active .category-icon { background: var(--coral); color: var(--ink); }
    .shop-category h3 { margin: auto 0 3px; font-size: 22px; line-height: 1.1; }
    .shop-category p { margin: 0; color: var(--muted); font-size: 14px; }

    .collection { padding: 28px 0 108px; }
    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 26px;
    }
    .section-heading h2 { margin: 0; font-size: clamp(32px, 4.4vw, 52px); line-height: 1; letter-spacing: -.045em; }
    .section-heading p { max-width: 470px; margin: 0; color: var(--muted); }

    .product-card {
      position: relative;
      display: grid;
      grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
      min-height: 590px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 36px;
      background: var(--white);
      box-shadow: var(--shadow);
    }
    .product-visual {
      position: relative;
      min-height: 560px;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: linear-gradient(145deg, #edf5f4, var(--sky));
    }
    .product-visual::before {
      content: "";
      position: absolute;
      width: 370px;
      height: 370px;
      border-radius: 50%;
      background: rgba(255, 253, 248, .72);
      box-shadow: 0 0 0 46px rgba(255, 253, 248, .28);
    }
    .product-visual::after {
      content: "";
      position: absolute;
      width: 170px;
      height: 18px;
      bottom: 80px;
      border-radius: 50%;
      background: rgba(23, 49, 44, .14);
      filter: blur(10px);
    }
    .product-visual img {
      position: relative;
      z-index: 2;
      width: min(62%, 335px);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 26px 24px rgba(23, 49, 44, .18));
    }
    .product-info { padding: clamp(34px, 5vw, 70px); display: flex; flex-direction: column; justify-content: center; }
    .product-status {
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 6px 12px;
      border: 1px solid #b9d2cc;
      border-radius: 999px;
      background: #edf7f4;
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
    }
    .product-info h3 { margin: 18px 0 12px; font-size: clamp(34px, 4.4vw, 58px); line-height: 1; letter-spacing: -.05em; }
    .product-description { max-width: 580px; margin: 0 0 25px; color: var(--muted); font-size: 18px; }
    .use-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 28px; padding: 0; list-style: none; }
    .use-list li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper-secondary); font-size: 14px; font-weight: 700; }
    .offer-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 22px;
    }
    .offer {
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: var(--white);
    }
    .offer.preferred { border: 2px solid var(--navy); background: #f2f8f6; }
    .offer small { display: block; color: var(--muted); font-size: 12px; }
    .offer strong { display: block; margin-top: 3px; font-size: 21px; }
    .offer .flag { color: var(--focus); font-weight: 800; }
    .cta {
      min-height: 56px;
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 26px;
      border-radius: 16px;
      background: var(--coral);
      color: var(--ink);
      box-shadow: 0 6px 0 var(--coral-dark);
      text-decoration: none;
      font-weight: 800;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .cta:hover { transform: translateY(-2px); background: #f07e62; box-shadow: 0 8px 0 var(--coral-dark); }
    .cta:active { transform: translateY(4px); box-shadow: 0 2px 0 var(--coral-dark); }
    .shipping-note { margin: 20px 0 0; color: var(--muted); font-size: 13px; }
    .shipping-note strong { color: var(--ink); }

    .promise { padding: 72px 0; background: var(--navy); color: var(--white); }
    .promise-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
    .promise h2 { margin: 0; font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -.05em; }
    .promise p { margin: 0; color: #d6e4e0; font-size: 17px; }

    footer { padding: 58px 0 34px; background: var(--ink); color: var(--white); }
    .footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 48px; }
    .footer-brand { font-size: 28px; font-weight: 800; }
    .footer-note { max-width: 420px; margin: 9px 0 0; color: #b9c8c4; font-size: 14px; }
    .footer-col strong { display: block; margin-bottom: 12px; }
    .footer-col a { min-height: 44px; display: flex; align-items: center; color: #cad5d2; text-decoration: none; font-size: 14px; }
    .footer-col a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 5px; }
    .copyright { margin-top: 42px; padding-top: 20px; border-top: 1px solid #36514b; color: #91a6a0; font-size: 12px; direction: ltr; text-align: right; }

    @media (max-width: 900px) {
      .hero-grid, .product-card, .promise-grid { grid-template-columns: 1fr; }
      .shop-category-grid { grid-template-columns: 1fr 1fr; }
      .catalog-note { max-width: 520px; }
      .product-visual { min-height: 470px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > div:first-child { grid-column: 1 / -1; }
    }

    @media (max-width: 700px) {
      .wrap { width: min(var(--max), calc(100% - 28px)); }
      .notice { font-size: 11px; }
      .nav-shell { min-height: 60px; }
      .brand { font-size: 19px; }
      .brand-mark { width: 36px; height: 30px; }
      .nav-links a:not([aria-current="page"]):not(.product-nav) { display: none; }
      .nav-links { gap: 12px; }
      .nav-links a { font-size: 12px; }
      .hero { padding: 58px 0 42px; }
      .hero-grid { gap: 28px; }
      h1 { font-size: clamp(44px, 14vw, 61px); }
      .hero-lead { font-size: 17px; }
      .shop-categories { padding-bottom: 54px; }
      .shop-category-grid { grid-template-columns: 1fr; }
      .shop-category { min-height: 140px; }
      .catalog-note { padding: 19px; }
      .collection { padding: 12px 0 72px; }
      .section-heading { display: block; }
      .section-heading p { margin-top: 12px; }
      .product-card { border-radius: 26px; min-height: 0; }
      .product-visual { min-height: 360px; }
      .product-visual::before { width: 260px; height: 260px; }
      .product-visual::after { bottom: 48px; }
      .product-visual img { width: min(57%, 240px); }
      .product-info { padding: 28px 20px 31px; }
      .product-description { font-size: 16px; }
      .offer-row { grid-template-columns: 1fr; }
      .cta { width: 100%; }
      .promise { padding: 54px 0; }
      .promise-grid { gap: 20px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-grid > div:first-child { grid-column: auto; }
    }

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