
    :root {
      --ink: #102218;
      --ink-soft: #213b2c;
      --forest: #174b32;
      --leaf: #6f9274;
      --sage: #c9d8ca;
      --sage-light: #e7eee6;
      --paper: #fffdf8;
      --cream: #f3efe6;
      --clay: #dc9b80;
      --line: rgba(16, 34, 24, .14);
      --muted: #69766d;
      --white: #fff;
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Manrope", Arial, sans-serif;
      --container: 1240px;
      --radius: 26px;
      --shadow: 0 24px 80px rgba(16, 34, 24, .12);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 58px;
    }
    body.locked { overflow: hidden; }
    img { display: block; max-width: 100%; }
    button, input, select, textarea { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    button { color: inherit; }
    a { color: inherit; }
    ::selection { background: var(--sage); color: var(--ink); }
    :focus-visible { outline: 3px solid var(--clay); outline-offset: 4px; }

    .container {
      width: min(calc(100% - 48px), var(--container));
      margin-inline: auto;
    }
    .section { padding: clamp(92px, 11vw, 156px) 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--forest);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
    }
    .display {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(56px, 8vw, 118px);
      font-weight: 500;
      letter-spacing: -.055em;
      line-height: .82;
    }
    .title {
      max-width: 820px;
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(44px, 6.6vw, 82px);
      font-weight: 500;
      letter-spacing: -.045em;
      line-height: .95;
    }
    .lead {
      max-width: 640px;
      margin: 24px 0 0;
      color: var(--muted);
      font-size: clamp(16px, 1.7vw, 19px);
      line-height: 1.8;
    }
    .btn {
      min-height: 52px;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: 999px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .02em;
      text-decoration: none;
      transition: background-color .25s, color .25s, border-color .25s, transform .25s;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-dark { background: var(--ink); color: var(--white); }
    .btn-dark:hover { background: var(--forest); }
    .btn-light { background: var(--paper); color: var(--ink); }
    .btn-light:hover { background: var(--sage-light); }
    .btn-line { border-color: var(--line); background: transparent; color: var(--ink); }
    .btn-line:hover { border-color: var(--ink); }
    .btn-arrow::after { content: "↗"; font-size: 18px; font-weight: 400; }

    .scroll-progress {
      position: fixed;
      inset: 0 auto auto 0;
      z-index: 1002;
      width: 100%;
      height: 3px;
      background: var(--clay);
      transform: scaleX(0);
      transform-origin: left center;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      transition: background-color .3s, border-color .3s, transform .3s;
    }
    .site-header.scrolled {
      background: rgba(255, 253, 248, .88);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(18px);
    }
    .nav {
      min-height: 82px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 34px;
    }
    .logo {
      font-family: var(--serif);
      font-size: 31px;
      font-weight: 600;
      letter-spacing: .16em;
      line-height: 1;
      text-decoration: none;
    }
    .logo span { color: var(--clay); }
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .nav-links a {
      position: relative;
      color: var(--ink-soft);
      font-size: 12px;
      font-weight: 600;
      text-decoration: none;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 100%;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .25s;
    }
    .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .cart-button, .menu-button {
      min-width: 48px;
      min-height: 48px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(255, 253, 248, .66);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
    }
    .cart-button { position: relative; padding: 0 14px; border-radius: 999px; gap: 7px; }
    .cart-count {
      min-width: 21px;
      height: 21px;
      padding: 0 6px;
      border-radius: 999px;
      background: var(--ink);
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }
    .menu-button { display: none; font-size: 21px; }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 1100;
      padding: 28px;
      background: var(--ink);
      color: var(--white);
      display: grid;
      align-content: center;
      gap: 22px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .25s, visibility .25s;
    }
    .mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
    .mobile-menu a {
      font-family: var(--serif);
      font-size: clamp(40px, 12vw, 62px);
      line-height: 1;
      text-decoration: none;
    }
    .mobile-menu-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 52px;
      height: 52px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 50%;
      background: transparent;
      color: var(--white);
      cursor: pointer;
      font-size: 24px;
    }

    .hero {
      min-height: 100svh;
      padding: 120px 0 72px;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 18%, rgba(201,216,202,.7), transparent 27%),
        radial-gradient(circle at 90% 70%, rgba(220,155,128,.16), transparent 25%),
        var(--cream);
    }
    .hero::before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      left: -300px;
      bottom: -290px;
      border: 1px solid rgba(16,34,24,.12);
      border-radius: 50%;
      box-shadow: 0 0 0 70px rgba(16,34,24,.025), 0 0 0 140px rgba(16,34,24,.018);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
      align-items: center;
      gap: clamp(42px, 7vw, 108px);
    }
    .hero-copy { position: relative; z-index: 2; }
    .hero .eyebrow { margin-bottom: 26px; }
    .hero-title { max-width: 740px; }
    .hero-line { display: block; overflow: hidden; padding: 0 .08em .11em 0; }
    .hero-line > span { display: block; will-change: transform; }
    .hero-line:nth-child(2) { color: var(--forest); font-style: italic; margin-left: .42em; }
    .hero-lead {
      max-width: 610px;
      margin: 30px 0 0;
      color: #536158;
      font-size: clamp(16px, 1.7vw, 20px);
      line-height: 1.85;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 26px;
      margin-top: 38px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
    }
    .hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
    .hero-proof i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--leaf);
      box-shadow: 0 0 0 4px rgba(111,146,116,.14);
    }
    .hero-visual {
      position: relative;
      min-height: min(690px, 76vh);
      perspective: 1000px;
    }
    .hero-main {
      position: absolute;
      inset: 4% 0 3% 11%;
      overflow: hidden;
      border-radius: 50% 50% 24px 24px / 42% 42% 24px 24px;
      box-shadow: var(--shadow);
      transform-style: preserve-3d;
      will-change: transform;
    }
    .hero-main::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 58%, rgba(16,34,24,.38));
    }
    .hero-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.04);
      will-change: transform;
    }
    .hero-note {
      position: absolute;
      z-index: 3;
      left: -5%;
      bottom: 12%;
      width: 214px;
      padding: 20px;
      border: 1px solid rgba(255,255,255,.58);
      border-radius: 20px;
      background: rgba(255,253,248,.72);
      box-shadow: 0 20px 54px rgba(16,34,24,.18);
      backdrop-filter: blur(18px);
      will-change: transform;
    }
    .hero-note small {
      color: var(--muted);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .hero-note strong {
      display: block;
      margin-top: 7px;
      font-family: var(--serif);
      font-size: 25px;
      font-weight: 600;
      line-height: 1.05;
    }
    .hero-seal {
      position: absolute;
      z-index: 3;
      top: 7%;
      right: -4%;
      width: 126px;
      aspect-ratio: 1;
      border: 1px solid rgba(16,34,24,.24);
      border-radius: 50%;
      background: var(--paper);
      display: grid;
      place-items: center;
      text-align: center;
      font-family: var(--serif);
      font-size: 17px;
      font-style: italic;
      line-height: 1.08;
      transform: rotate(8deg);
      box-shadow: 0 18px 40px rgba(16,34,24,.12);
    }
    .hero-index {
      position: absolute;
      right: 18px;
      bottom: 7%;
      z-index: 3;
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      writing-mode: vertical-rl;
    }
    .scroll-cue {
      position: absolute;
      left: 24px;
      bottom: 82px;
      color: var(--muted);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      writing-mode: vertical-rl;
    }
    .scroll-cue::after {
      content: "";
      display: inline-block;
      width: 1px;
      height: 42px;
      margin-top: 12px;
      background: var(--ink);
    }

    .marquee {
      overflow: hidden;
      border-block: 1px solid var(--line);
      background: var(--paper);
    }
    .marquee-track {
      width: max-content;
      padding: 18px 0;
      display: flex;
      animation: marquee 28s linear infinite;
      will-change: transform;
    }
    .marquee-track span {
      display: inline-flex;
      align-items: center;
      gap: 28px;
      padding-right: 28px;
      color: var(--ink-soft);
      font-family: var(--serif);
      font-size: 19px;
      font-style: italic;
      white-space: nowrap;
    }
    .marquee-track span::after { content: "✦"; color: var(--clay); font-size: 12px; }
    @keyframes marquee { to { transform: translateX(-50%); } }

    .manifesto { background: var(--ink); color: var(--white); overflow: hidden; }
    .manifesto-grid {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      align-items: stretch;
      gap: 0;
    }
    .manifesto-photo {
      min-height: 720px;
      overflow: hidden;
      position: relative;
    }
    .manifesto-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      will-change: transform;
    }
    .manifesto-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 60%, rgba(16,34,24,.42));
    }
    .manifesto-copy {
      padding: clamp(70px, 9vw, 130px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .manifesto .eyebrow { color: var(--sage); }
    .manifesto .title { color: var(--white); }
    .manifesto .title em { color: var(--sage); font-weight: 500; }
    .manifesto .lead { color: rgba(255,255,255,.62); }
    .values {
      margin-top: 48px;
      border-top: 1px solid rgba(255,255,255,.12);
    }
    .value-row {
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,.12);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
    }
    .value-row span { color: rgba(255,255,255,.5); font-size: 12px; }
    .value-row strong { font-family: var(--serif); font-size: 21px; font-weight: 500; }

    .collection { padding-bottom: 0; background: var(--paper); overflow: clip; }
    .collection-head {
      display: grid;
      grid-template-columns: 1.15fr .7fr;
      align-items: end;
      gap: 64px;
    }
    .collection-head .lead { margin: 0 0 6px; }
    .catalog-stage {
      min-height: 760px;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .catalog-track {
      width: max-content;
      padding-inline: max(24px, calc((100vw - var(--container)) / 2));
      display: flex;
      gap: 24px;
      will-change: transform;
    }
    .product-card {
      flex: 0 0 min(420px, 76vw);
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 16px 54px rgba(16,34,24,.07);
    }
    .product-media {
      height: 470px;
      position: relative;
      overflow: hidden;
      background: var(--sage-light);
    }
    .product-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s cubic-bezier(.2,.8,.2,1);
    }
    .product-card:hover .product-media img { transform: scale(1.045); }
    .product-tag {
      position: absolute;
      z-index: 2;
      top: 18px;
      left: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,253,248,.82);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
    }
    .product-number {
      position: absolute;
      right: 18px;
      bottom: 14px;
      color: var(--white);
      font-family: var(--serif);
      font-size: 48px;
      line-height: 1;
      text-shadow: 0 3px 18px rgba(0,0,0,.3);
    }
    .product-body { padding: 24px; }
    .product-top { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; }
    .product-name { margin: 0; font-family: var(--serif); font-size: 31px; font-weight: 600; line-height: 1; }
    .product-price { flex: 0 0 auto; font-size: 13px; font-weight: 700; }
    .product-desc { min-height: 48px; margin: 14px 0 20px; color: var(--muted); font-size: 12px; line-height: 1.7; }
    .product-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
    .product-actions .btn { min-height: 47px; }
    .add-btn { width: 48px; padding: 0; border-radius: 50%; font-size: 21px; }
    .collection-note {
      flex: 0 0 310px;
      align-self: center;
      padding: 34px;
      border-radius: var(--radius);
      background: var(--sage-light);
    }
    .collection-note strong { display: block; font-family: var(--serif); font-size: 34px; line-height: 1; }
    .collection-note p { color: var(--muted); font-size: 13px; }

    .builder { padding-top: 0; background: var(--paper); }
    .builder-shell {
      overflow: hidden;
      border-radius: 34px;
      background: var(--forest);
      color: var(--white);
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      box-shadow: var(--shadow);
    }
    .builder-photo { min-height: 760px; position: relative; overflow: hidden; }
    .builder-photo img { width: 100%; height: 100%; object-fit: cover; }
    .builder-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(16,34,24,.6));
    }
    .builder-caption {
      position: absolute;
      z-index: 2;
      left: 32px;
      right: 32px;
      bottom: 32px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.36);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: rgba(255,255,255,.8);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .14em;
    }
    .builder-panel { padding: clamp(48px, 7vw, 92px); }
    .builder .eyebrow { color: var(--sage); }
    .builder h2 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(42px, 5vw, 70px);
      font-weight: 500;
      letter-spacing: -.04em;
      line-height: .95;
    }
    .builder-intro { max-width: 600px; color: rgba(255,255,255,.62); font-size: 14px; }
    .builder-fields { margin-top: 38px; display: grid; gap: 24px; }
    .field label {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 10px;
      color: rgba(255,255,255,.68);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .field label strong { color: var(--white); font-size: 14px; letter-spacing: 0; }
    .field input, .field select, .field textarea {
      width: 100%;
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,.28);
      border-radius: 0;
      background: transparent;
      color: var(--white);
      outline: 0;
      padding: 13px 0;
      font-size: 14px;
    }
    .field textarea { min-height: 88px; resize: vertical; }
    .field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
    .field select option { background: var(--ink); }
    .field input[type="range"] {
      height: 28px;
      border: 0;
      padding: 0;
      accent-color: var(--sage);
      cursor: pointer;
    }
    .range-labels { display: flex; justify-content: space-between; color: rgba(255,255,255,.42); font-size: 10px; }
    .builder-total {
      margin-top: 34px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.16);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }
    .builder-total small { color: rgba(255,255,255,.5); }
    .builder-total strong { display: block; margin-top: 2px; font-family: var(--serif); font-size: 33px; font-weight: 500; }

    .moments { background: var(--cream); }
    .moments-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
    .moments-grid {
      margin-top: 54px;
      display: grid;
      grid-template-columns: 1.25fr .75fr .75fr;
      grid-template-rows: repeat(2, 310px);
      gap: 18px;
    }
    .moment {
      min-height: 280px;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      color: var(--white);
    }
    .moment:first-child { grid-row: span 2; }
    .moment img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s cubic-bezier(.2,.8,.2,1);
    }
    .moment:hover img { transform: scale(1.045); }
    .moment::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 48%, rgba(16,34,24,.72));
    }
    .moment-copy { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; }
    .moment h3 { margin: 0; font-family: var(--serif); font-size: 33px; font-weight: 500; line-height: 1; }
    .moment p { margin: 7px 0 0; color: rgba(255,255,255,.72); font-size: 11px; }

    .process { background: var(--paper); }
    .process-grid {
      margin-top: 64px;
      border-top: 1px solid var(--line);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .process-step {
      min-height: 310px;
      padding: 28px 26px;
      border-right: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .process-step:last-child { border-right: 0; }
    .step-no { font-family: var(--serif); font-size: 58px; color: var(--sage); line-height: 1; }
    .process-step h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 29px; font-weight: 600; line-height: 1; }
    .process-step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

    .reviews-section { background: var(--sage-light); }
    .reviews-grid {
      margin-top: 54px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .review {
      padding: 32px;
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 16px 52px rgba(16,34,24,.06);
    }
    .stars { color: #bf7d5f; letter-spacing: .14em; font-size: 12px; }
    .review blockquote {
      margin: 28px 0 34px;
      font-family: var(--serif);
      font-size: 27px;
      line-height: 1.2;
    }
    .review-author { display: flex; align-items: center; gap: 13px; }
    .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--sage);
      display: grid;
      place-items: center;
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 600;
    }
    .review-author strong { display: block; font-size: 12px; }
    .review-author small { color: var(--muted); font-size: 10px; }

    .faq { background: var(--paper); }
    .faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 84px; align-items: start; }
    .faq-list { border-top: 1px solid var(--line); }
    details { border-bottom: 1px solid var(--line); }
    summary {
      min-height: 82px;
      padding: 22px 48px 22px 0;
      position: relative;
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      font-family: var(--serif);
      font-size: 25px;
      font-weight: 600;
      line-height: 1.1;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      position: absolute;
      right: 4px;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--sans);
      font-size: 23px;
      font-weight: 400;
    }
    details[open] summary::after { content: "−"; }
    details p { max-width: 700px; margin: -3px 0 24px; color: var(--muted); font-size: 13px; line-height: 1.8; }

    .final-cta { padding: 32px; background: var(--paper); }
    .cta-card {
      min-height: 670px;
      padding: clamp(60px, 9vw, 120px);
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      color: var(--white);
      display: grid;
      align-content: center;
      justify-items: center;
      text-align: center;
      isolation: isolate;
    }
    .cta-card > img {
      position: absolute;
      inset: 0;
      z-index: -2;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .cta-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: rgba(16,34,24,.72);
    }
    .cta-card .eyebrow { color: var(--sage); }
    .cta-card h2 {
      max-width: 900px;
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(52px, 8vw, 102px);
      font-weight: 500;
      letter-spacing: -.05em;
      line-height: .88;
    }
    .cta-card p { max-width: 560px; margin: 28px auto 0; color: rgba(255,255,255,.68); }
    .cta-card .btn { margin-top: 34px; }

    footer { padding: 78px 0 94px; background: var(--ink); color: var(--white); }
    .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, .6fr); gap: 70px; }
    .footer-brand p { max-width: 360px; color: rgba(255,255,255,.48); font-size: 13px; }
    .footer-col { display: grid; align-content: start; gap: 12px; }
    .footer-col strong { margin-bottom: 8px; color: var(--sage); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
    .footer-col a { color: rgba(255,255,255,.7); font-size: 12px; text-decoration: none; }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom {
      margin-top: 70px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex;
      justify-content: space-between;
      gap: 24px;
      color: rgba(255,255,255,.38);
      font-size: 10px;
    }
    .footer-bottom a { color: var(--sage); }

    .drawer, .order-modal {
      position: fixed;
      inset: 0;
      z-index: 1400;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .28s, visibility .28s;
    }
    .drawer.open, .order-modal.open { opacity: 1; visibility: visible; pointer-events: auto; }
    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(9,20,13,.66);
      backdrop-filter: blur(8px);
    }
    .drawer-panel {
      position: absolute;
      inset: 0 0 0 auto;
      width: min(460px, 100%);
      padding: 30px;
      background: var(--paper);
      transform: translateX(100%);
      transition: transform .38s cubic-bezier(.2,.8,.2,1);
      display: grid;
      grid-template-rows: auto 1fr auto;
    }
    .drawer.open .drawer-panel { transform: translateX(0); }
    .panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .panel-head h3 { margin: 0; font-family: var(--serif); font-size: 40px; font-weight: 600; line-height: 1; }
    .close-button {
      width: 48px;
      height: 48px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      font-size: 22px;
    }
    .cart-list { padding: 32px 0; overflow: auto; }
    .cart-empty { color: var(--muted); font-size: 13px; }
    .cart-item {
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
      display: grid;
      grid-template-columns: 64px 1fr auto;
      gap: 14px;
      align-items: center;
    }
    .cart-item img { width: 64px; height: 72px; border-radius: 12px; object-fit: cover; }
    .cart-item strong { display: block; font-family: var(--serif); font-size: 20px; line-height: 1; }
    .cart-item small { color: var(--muted); font-size: 10px; }
    .remove-item { border: 0; background: transparent; cursor: pointer; font-size: 19px; }
    .drawer-footer { padding-top: 20px; border-top: 1px solid var(--line); }
    .drawer-total { margin-bottom: 14px; display: flex; justify-content: space-between; font-size: 13px; }
    .drawer-total strong { font-family: var(--serif); font-size: 25px; }

    .order-card {
      width: min(650px, calc(100% - 30px));
      max-height: min(880px, calc(100vh - 30px));
      padding: clamp(26px, 5vw, 48px);
      position: absolute;
      top: 50%;
      left: 50%;
      overflow: auto;
      border-radius: 28px;
      background: var(--paper);
      transform: translate(-50%, -47%) scale(.98);
      transition: transform .3s cubic-bezier(.2,.8,.2,1);
    }
    .order-modal.open .order-card { transform: translate(-50%, -50%) scale(1); }
    .order-card .eyebrow { margin-bottom: 10px; }
    .order-card .panel-head { align-items: start; }
    .order-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 7vw, 58px); font-weight: 600; letter-spacing: -.035em; line-height: .95; }
    .order-summary {
      margin: 24px 0;
      padding: 15px 18px;
      border-radius: 16px;
      background: var(--sage-light);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 12px;
    }
    .order-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .order-card .field label { color: var(--muted); }
    .order-card .field input, .order-card .field textarea {
      border-color: var(--line);
      color: var(--ink);
    }
    .order-card .field input::placeholder, .order-card .field textarea::placeholder { color: #9ba39d; }
    .order-card .field.full { grid-column: 1 / -1; }
    .form-note { margin: 16px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
    .form-error { min-height: 20px; margin: 8px 0 0; color: #a44736; font-size: 11px; }

    .mobile-cta {
      position: fixed;
      z-index: 990;
      left: 12px;
      right: 12px;
      bottom: 64px;
      padding: 8px;
      border: 1px solid rgba(255,255,255,.5);
      border-radius: 999px;
      background: rgba(255,253,248,.86);
      box-shadow: 0 10px 40px rgba(16,34,24,.2);
      backdrop-filter: blur(16px);
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .mobile-cta .btn { min-height: 46px; }

    .studio-bar {
      position: fixed;
      z-index: 2000;
      inset: auto 0 0;
      min-height: 58px;
      padding: 8px 54px 8px 16px;
      background: #101014;
      color: var(--white);
      box-shadow: 0 -8px 28px rgba(0,0,0,.28);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      text-align: center;
      font-family: var(--sans);
    }
    .studio-bar strong { font-size: 13px; }
    .studio-bar span { color: rgba(255,255,255,.58); font-size: 11px; }
    .studio-bar a {
      padding: 8px 18px;
      border-radius: 999px;
      background: #ffb01f;
      color: #101014;
      font-size: 12px;
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
    }
    .studio-bar button {
      position: absolute;
      right: 10px;
      width: 36px;
      height: 36px;
      border: 0;
      background: transparent;
      color: rgba(255,255,255,.5);
      cursor: pointer;
      font-size: 20px;
    }

    @media (max-width: 1050px) {
      .nav-links { display: none; }
      .nav { grid-template-columns: auto 1fr auto; }
      .nav-actions { justify-self: end; }
      .menu-button { display: inline-flex; }
      .nav-actions > .btn { display: none; }
      .hero-grid { grid-template-columns: 1fr .8fr; gap: 40px; }
      .hero-visual { min-height: 610px; }
      .hero-note { left: -12%; }
      .manifesto-copy { padding: 72px; }
      .collection-head { grid-template-columns: 1fr; gap: 26px; }
      .moments-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 280px 280px; }
      .moment:first-child { grid-column: span 2; grid-row: auto; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .process-step:nth-child(2) { border-right: 0; }
      .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .reviews-grid { grid-template-columns: 1fr 1fr; }
      .review:last-child { grid-column: span 2; }
    }

    @media (max-width: 800px) {
      body { padding-bottom: 58px; }
      .container { width: min(calc(100% - 30px), var(--container)); }
      .section { padding: 88px 0; }
      .title { font-size: clamp(44px, 14vw, 66px); }
      .nav { min-height: 70px; gap: 14px; }
      .logo { font-size: 27px; }
      .cart-button { min-width: 46px; width: 46px; padding: 0; }
      .cart-button .cart-label { display: none; }
      .cart-count { position: absolute; top: -4px; right: -4px; }
      .hero { min-height: auto; padding: 112px 0 74px; align-items: start; }
      .hero-grid { grid-template-columns: 1fr; gap: 54px; }
      .hero-title { font-size: clamp(62px, 19vw, 92px); }
      .hero-line:nth-child(2) { margin-left: .16em; }
      .hero-lead { margin-top: 22px; font-size: 15px; }
      .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
      .hero-actions .btn { padding-inline: 16px; }
      .hero-proof { margin-top: 28px; }
      .hero-visual { min-height: 610px; width: min(100%, 520px); margin-inline: auto; }
      .hero-main { inset: 0 0 0 8%; }
      .hero-note { left: 0; bottom: 7%; width: 190px; }
      .hero-seal { width: 106px; right: -2%; top: 2%; font-size: 15px; }
      .scroll-cue { display: none; }
      .manifesto-grid { grid-template-columns: 1fr; }
      .manifesto-photo { min-height: 520px; }
      .manifesto-copy { padding: 70px 24px; }
      .catalog-stage { min-height: 0; height: auto; padding: 52px 15px 92px; overflow: visible; }
      .catalog-track {
        width: 100%;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
      }
      .product-card { width: 100%; }
      .product-media { height: min(115vw, 520px); }
      .collection-note { width: 100%; }
      .builder { padding-top: 0; }
      .builder-shell { grid-template-columns: 1fr; border-radius: 26px; }
      .builder-photo { min-height: 520px; }
      .builder-panel { padding: 48px 24px; }
      .builder-total { align-items: stretch; flex-direction: column; }
      .builder-total .btn { width: 100%; }
      .moments-head { align-items: start; flex-direction: column; }
      .moments-grid { grid-template-columns: 1fr; grid-template-rows: none; }
      .moment, .moment:first-child { grid-column: auto; min-height: 390px; }
      .process-grid { grid-template-columns: 1fr; }
      .process-step { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
      .process-step:last-child { border-bottom: 0; }
      .reviews-grid { grid-template-columns: 1fr; }
      .review:last-child { grid-column: auto; }
      .faq-grid { grid-template-columns: 1fr; gap: 48px; }
      .cta-card { min-height: 620px; padding: 58px 22px; border-radius: 24px; }
      .final-cta { padding: 15px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
      .footer-brand { grid-column: span 2; }
      .footer-bottom { flex-direction: column; }
      .order-fields { grid-template-columns: 1fr; }
      .order-card .field.full { grid-column: auto; }
      .mobile-cta { display: grid; }
      .studio-bar { justify-content: flex-start; text-align: left; gap: 10px; }
      .studio-bar span { display: none; }
      .studio-bar strong { flex: 1; }
    }

    @media (max-width: 430px) {
      .hero-actions { grid-template-columns: 1fr; }
      .hero-visual { min-height: 510px; }
      .hero-note { width: 172px; padding: 16px; }
      .hero-note strong { font-size: 22px; }
      .product-body { padding: 20px; }
      .product-name { font-size: 27px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; }
      .studio-bar a { padding-inline: 13px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
      .marquee-track { animation: none; }
    }
  