
    :root{
      --green:#263D2F;
      --green-deep:#1B3024;
      --green-soft:#365142;
      --secondary:#FFF9F2;
      --cream:var(--secondary);
      --cream-soft:#F8E7D4;
      --ink:#24352B;
      --muted:#68756E;
      --line:rgba(38,61,47,.16);
      --header-height:92px;
      --ease:cubic-bezier(.16,1,.3,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:var(--cream);
      color:var(--ink);
      font-family:Arial,Helvetica,sans-serif;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    img,video{display:block;max-width:100%}
    a{text-decoration:none;color:inherit}
    button,input{font:inherit}
    ::selection{background:var(--green);color:var(--cream)}

    .shell{
      width:min(1360px,calc(100% - 72px));
      margin-inline:auto;
    }

    /* ------------------------------------------------------------------ */
    /* Loader */
    /* ------------------------------------------------------------------ */
    .loader{
      position:fixed;
      inset:0;
      z-index:999;
      display:grid;
      place-items:center;
      background:var(--green);
      transition:transform 1.05s var(--ease);
    }
    .loader.done{transform:translateY(-100%)}
    .loader img{
      width:min(330px,66vw);
      opacity:0;
      transform:translateY(20px);
      animation:loaderIn .8s var(--ease) .12s forwards;
    }
    @keyframes loaderIn{to{opacity:1;transform:none}}

    /* ------------------------------------------------------------------ */
    /* Header */
    /* ------------------------------------------------------------------ */
    .header{
      position:fixed;
      inset:0 0 auto;
      z-index:500;
      width:100%;
      color:var(--cream);
      border-bottom:1px solid rgba(255,249,242,.16);
      background:linear-gradient(to bottom,rgba(9,18,13,.34),rgba(9,18,13,0));
      transition:background-color .35s ease,color .35s ease,border-color .35s ease,box-shadow .35s ease;
    }
    .home-page .header.is-scrolled{
      color:var(--green);
      border-bottom-color:var(--line);
      background:var(--secondary);
      box-shadow:0 8px 28px rgba(27,48,36,.08);
    }
    .home-page .header.is-scrolled .menu{
      color:var(--green);
    }
    .nav{
      height:var(--header-height);
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:28px;
    }
    .nav-group{
      display:flex;
      align-items:center;
      gap:30px;
      font-size:10px;
      letter-spacing:.18em;
      text-transform:uppercase;
    }
    .nav-group.right{justify-content:flex-end}
    .nav-group a{
      opacity:.82;
      transition:opacity .3s ease;
    }
    .nav-group a:hover{opacity:1}
    .brand img{
      width:174px;
      height:auto;
      max-height:60px;
      object-fit:contain;
    }
    .menu{
      display:none;
      border:0;
      background:none;
      color:var(--cream);
      text-transform:uppercase;
      letter-spacing:.17em;
      font-size:10px;
      padding:8px 0;
    }

    /* ------------------------------------------------------------------ */
    /* HERO — video only */
    /* ------------------------------------------------------------------ */
    .hero{
      position:relative;
      min-height:100svh;
      height:100svh;
      overflow:hidden;
      isolation:isolate;
      background:var(--green-deep);
      color:var(--cream);
    }
    .hero-video{
      position:absolute;
      inset:0;
      z-index:0;
      overflow:hidden;
    }
    .hero-video video{
      width:100%;
      height:100%;
      object-fit:cover;

      /* The necklace diamond sits lower in the original square footage.
         This positioning keeps the pendant fully visible on wide screens. */
      object-position:50% 60%;
      transform:scale(1.015);
    }
    .hero-overlay{
      position:absolute;
      inset:0;
      z-index:1;
      pointer-events:none;
      background:
        linear-gradient(to bottom,rgba(9,20,14,.46) 0%,rgba(9,20,14,.08) 36%,rgba(9,20,14,.08) 70%,rgba(9,20,14,.42) 100%),
        linear-gradient(90deg,rgba(9,20,14,.48) 0%,rgba(9,20,14,.13) 38%,transparent 63%);
    }
    .hero-content{
      position:relative;
      z-index:4;
      height:100%;
      display:flex;
      align-items:flex-start;

      /* Keep text high so the necklace/diamond remains unobstructed. */
      padding-top:clamp(175px,21vh,245px);
    }
    .hero-copy{
      width:min(610px,55vw);
    }
    .hero-kicker{
      display:flex;
      align-items:center;
      gap:13px;
      margin-bottom:20px;
      font-size:9px;
      letter-spacing:.24em;
      text-transform:uppercase;
      color:rgba(255,249,242,.7);
    }
    .hero-kicker:before{
      content:"";
      width:35px;
      height:1px;
      background:currentColor;
    }
    .hero h1{
      margin:0;
      max-width:640px;
      font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;
      font-size:clamp(62px,7.4vw,120px);
      line-height:.86;
      letter-spacing:-.055em;
      font-weight:400;
      text-wrap:balance;
    }
    .hero h1 em{
      display:block;
      font-weight:400;
      color:var(--cream);
    }
    .hero-sub{
      margin:23px 0 0;
      font-size:12px;
      line-height:1.7;
      letter-spacing:.04em;
      color:rgba(255,249,242,.76);
    }
    .hero-link{
      display:inline-flex;
      align-items:center;
      gap:14px;
      margin-top:27px;
      padding-bottom:7px;
      border-bottom:1px solid rgba(255,249,242,.62);
      font-size:9px;
      letter-spacing:.2em;
      text-transform:uppercase;
      transition:gap .45s var(--ease),opacity .3s ease;
    }
    .hero-link:hover{gap:22px;opacity:.78}

    .hero-bottom{
      position:absolute;
      z-index:5;
      bottom:34px;
      left:0;
      right:0;
      color:rgba(255,249,242,.58);
    }
    .hero-bottom-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:30px;
      font-size:8px;
      text-transform:uppercase;
      letter-spacing:.22em;
    }
    .hero-line{
      width:84px;
      height:1px;
      background:rgba(255,249,242,.35);
      display:inline-block;
      vertical-align:middle;
      margin:0 12px;
    }

    /* ------------------------------------------------------------------ */
    /* Brand statement */
    /* ------------------------------------------------------------------ */
    .statement{
      padding:132px 0 118px;
    }
    .statement-grid{
      display:grid;
      grid-template-columns:.55fr 1.45fr;
      gap:100px;
      align-items:start;
    }
    .section-index{
      font-size:9px;
      letter-spacing:.2em;
      text-transform:uppercase;
      color:#758078;
      padding-top:11px;
    }
    .statement h2{
      margin:0;
      max-width:940px;
      font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;
      font-size:clamp(46px,5.6vw,84px);
      line-height:.98;
      letter-spacing:-.045em;
      font-weight:400;
    }
    .statement h2 span{color:#66756D}
    .statement-copy{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:50px;
      margin-top:42px;
      max-width:870px;
    }
    .statement-copy p{
      margin:0;
      color:#67736C;
      font-size:13px;
      line-height:1.85;
    }

    /* ------------------------------------------------------------------ */
    /* Categories — supplied photos only */
    /* ------------------------------------------------------------------ */
    .categories{
      padding:0 0 145px;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:30px;
      margin-bottom:34px;
    }
    .section-head h2{
      margin:0;
      font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;
      font-size:clamp(42px,4.7vw,68px);
      line-height:1;
      letter-spacing:-.04em;
      font-weight:400;
    }
    .section-head a{
      font-size:9px;
      text-transform:uppercase;
      letter-spacing:.19em;
      padding-bottom:6px;
      border-bottom:1px solid var(--ink);
    }

    .category-grid{
      display:grid;
      grid-template-columns:1.16fr .84fr;
      gap:18px;
    }
    .category-column{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
    .category-card{
      position:relative;
      overflow:hidden;
      min-height:760px;
      background:var(--green);
      color:var(--cream);
    }
    .category-column .category-card{min-height:371px}
    .category-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform 1.3s var(--ease),filter .6s ease;
    }
    .category-card:hover img{
      transform:scale(1.035);
      filter:saturate(.94);
    }
    .category-card:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to top,rgba(13,27,19,.68),transparent 52%);
      pointer-events:none;
    }
    .category-info{
      position:absolute;
      z-index:2;
      left:27px;
      right:27px;
      bottom:25px;
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:22px;
    }
    .category-number{
      display:block;
      margin-bottom:8px;
      font-size:8px;
      text-transform:uppercase;
      letter-spacing:.19em;
      color:rgba(255,249,242,.63);
    }
    .category-title{
      margin:0;
      font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;
      font-size:clamp(28px,2.7vw,44px);
      font-weight:400;
      line-height:1;
    }
    .category-arrow{
      width:38px;
      height:38px;
      flex:0 0 38px;
      border:1px solid rgba(255,249,242,.45);
      border-radius:50%;
      display:grid;
      place-items:center;
      font-size:12px;
      transition:background .3s ease,color .3s ease,transform .4s var(--ease);
    }
    .category-card:hover .category-arrow{
      background:var(--cream);
      color:var(--green);
      transform:rotate(45deg);
    }

    /* ------------------------------------------------------------------ */
    /* Authenticity */
    /* ------------------------------------------------------------------ */
    .authenticity{
      background:var(--green);
      color:var(--cream);
      padding:138px 0;
    }
    .auth-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:110px;
      align-items:end;
    }
    .authenticity h2{
      margin:0;
      font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;
      font-size:clamp(54px,6.8vw,102px);
      line-height:.88;
      letter-spacing:-.05em;
      font-weight:400;
    }
    .authenticity h2 em{
      display:block;
      font-weight:400;
    }
    .auth-copy{
      max-width:510px;
      padding-bottom:5px;
    }
    .auth-copy p{
      margin:0 0 34px;
      color:rgba(255,249,242,.68);
      font-size:13px;
      line-height:1.85;
    }
    .auth-points{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:20px;
      border-top:1px solid rgba(255,249,242,.17);
      padding-top:24px;
    }
    .auth-points small{
      display:block;
      margin-bottom:8px;
      font-size:8px;
      text-transform:uppercase;
      letter-spacing:.19em;
      color:rgba(255,249,242,.45);
    }
    .auth-points strong{
      font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;
      font-size:19px;
      font-weight:400;
    }

    /* ------------------------------------------------------------------ */
    /* Quiet CTA */
    /* ------------------------------------------------------------------ */
    .atelier{
      padding:150px 0;
      text-align:center;
    }
    .atelier-label{
      font-size:9px;
      letter-spacing:.2em;
      text-transform:uppercase;
      color:#7A847E;
      margin-bottom:22px;
    }
    .atelier h2{
      margin:0 auto;
      max-width:920px;
      font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;
      font-size:clamp(50px,6.1vw,88px);
      line-height:.96;
      letter-spacing:-.045em;
      font-weight:400;
    }
    .atelier p{
      max-width:530px;
      margin:27px auto 31px;
      color:#69746E;
      font-size:13px;
      line-height:1.85;
    }
    .dark-link{
      display:inline-flex;
      align-items:center;
      gap:14px;
      padding-bottom:7px;
      border-bottom:1px solid var(--ink);
      font-size:9px;
      letter-spacing:.2em;
      text-transform:uppercase;
    }

    /* ------------------------------------------------------------------ */
    /* Footer */
    /* ------------------------------------------------------------------ */
    footer{
      background:var(--green-deep);
      color:var(--cream);
      padding:88px 0 30px;
    }
    .footer-top{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:110px;
      padding-bottom:76px;
    }
    .footer-brand img{
      width:250px;
      margin-bottom:28px;
    }
    .footer-brand p{
      max-width:450px;
      margin:0;
      color:rgba(255,249,242,.58);
      font-size:12px;
      line-height:1.8;
    }
    .footer-links{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:40px;
    }
    .footer-links strong{
      display:block;
      margin-bottom:16px;
      font-size:8px;
      text-transform:uppercase;
      letter-spacing:.19em;
      color:rgba(255,249,242,.4);
    }
    .footer-links a{
      display:block;
      margin:10px 0;
      color:rgba(255,249,242,.82);
      font-size:11px;
    }
    .footer-bottom{
      padding-top:25px;
      border-top:1px solid rgba(255,249,242,.12);
      display:flex;
      justify-content:space-between;
      gap:25px;
      font-size:8px;
      text-transform:uppercase;
      letter-spacing:.17em;
      color:rgba(255,249,242,.38);
    }

    /* ------------------------------------------------------------------ */
    /* Reveal motion */
    /* ------------------------------------------------------------------ */
    [data-reveal]{
      opacity:0;
      transform:translateY(27px);
      transition:opacity 1s var(--ease),transform 1s var(--ease);
    }
    [data-reveal].show{opacity:1;transform:none}
    [data-delay="1"]{transition-delay:.12s}
    [data-delay="2"]{transition-delay:.22s}
    [data-delay="3"]{transition-delay:.32s}

    .hero-copy > *{
      opacity:0;
      transform:translateY(22px);
    }
    body.loaded .hero-copy > *{
      animation:heroIntro .9s var(--ease) forwards;
    }
    body.loaded .hero-copy > *:nth-child(2){animation-delay:.08s}
    body.loaded .hero-copy > *:nth-child(3){animation-delay:.16s}
    body.loaded .hero-copy > *:nth-child(4){animation-delay:.24s}
    @keyframes heroIntro{to{opacity:1;transform:none}}

    /* ------------------------------------------------------------------ */
    /* Responsive */
    /* ------------------------------------------------------------------ */
    @media(max-width:1000px){
      .shell{width:calc(100% - 38px)}
      .nav{
        height:76px;
        grid-template-columns:1fr auto;
      }
      .nav-group{display:none}
      .brand{justify-self:start}
      .brand img{width:145px;max-height:51px}
      .menu{display:block;justify-self:end}

      .hero-video video{
        object-position:50% 56%;
      }
      .hero-content{
        padding-top:150px;
      }
      .hero-copy{
        width:min(600px,83vw);
      }
      .hero h1{
        font-size:clamp(60px,12vw,92px);
      }

      .statement-grid,
      .auth-grid,
      .footer-top{
        grid-template-columns:1fr;
        gap:45px;
      }
      .statement-copy{max-width:none}
      .category-grid{grid-template-columns:1fr}
      .category-card{min-height:650px}
      .category-column .category-card{min-height:420px}
    }

    @media(max-width:640px){
      .shell{width:calc(100% - 28px)}

      .hero{
        min-height:100svh;
        height:100svh;
      }
      .hero-video video{
        /* Mobile keeps the pendant in frame while leaving the upper-left clean for copy. */
        object-position:50% 57%;
      }
      .hero-overlay{
        background:
          linear-gradient(to bottom,rgba(9,20,14,.5) 0%,rgba(9,20,14,.08) 42%,rgba(9,20,14,.16) 68%,rgba(9,20,14,.52) 100%);
      }
      .hero-content{
        padding-top:132px;
      }
      .hero-copy{width:94%}
      .hero-kicker{
        font-size:8px;
        letter-spacing:.19em;
        margin-bottom:16px;
      }
      .hero-kicker:before{width:24px}
      .hero h1{
        font-size:clamp(54px,17.8vw,76px);
        line-height:.88;
      }
      .hero-sub{
        max-width:270px;
        font-size:11px;
      }
      .hero-bottom{bottom:22px}
      .hero-bottom-inner{
        font-size:7px;
        align-items:flex-end;
      }
      .hero-bottom-inner span:last-child{display:none}

      .statement{padding:95px 0 85px}
      .statement-grid{gap:23px}
      .statement h2{font-size:45px}
      .statement-copy{
        grid-template-columns:1fr;
        gap:17px;
        margin-top:30px;
      }

      .categories{padding-bottom:95px}
      .section-head{
        align-items:flex-start;
        flex-direction:column;
        margin-bottom:24px;
      }
      .category-card{min-height:500px}
      .category-column{
        grid-template-columns:1fr;
      }
      .category-column .category-card{min-height:440px}
      .category-info{
        left:20px;right:20px;bottom:20px;
      }
      .category-title{font-size:34px}

      .authenticity{padding:95px 0}
      .auth-grid{gap:40px}
      .authenticity h2{font-size:58px}
      .auth-points{grid-template-columns:1fr}

      .atelier{padding:100px 0}
      .atelier h2{font-size:50px}

      footer{padding-top:70px}
      .footer-links{
        grid-template-columns:1fr 1fr;
        row-gap:35px;
      }
      .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
      }
    }

    @media(prefers-reduced-motion:reduce){
      *,*:before,*:after{
        animation:none!important;
        transition:none!important;
        scroll-behavior:auto!important;
      }
      .loader{display:none}
      [data-reveal],
      .hero-copy > *{opacity:1;transform:none}
    }

    /* Buyer stories, gift presentation and the Dreambling experience. */
    .editorial-section{padding:120px 0}
    .eyebrow{margin:0 0 22px;font-size:12px;letter-spacing:.17em;text-transform:uppercase;line-height:1.6}
    .editorial-title{margin:0;font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;font-size:clamp(44px,5.5vw,80px);font-weight:400;letter-spacing:-.045em;line-height:1.02}
    .editorial-title em{font-weight:400}
    .section-intro{max-width:440px;font-size:16px;line-height:1.8;color:var(--muted);margin:0}
    .sample-note{display:inline-block;font-size:12px;line-height:1.6;letter-spacing:.02em;color:var(--muted);margin:20px 0 0}
    .round-control{width:46px;height:46px;border:1px solid var(--line);border-radius:50%;background:transparent;color:var(--green);cursor:pointer;transition:background .3s,color .3s}
    .round-control:hover{background:var(--green);color:var(--cream)}
    .round-control:disabled{opacity:.3;cursor:default;background:transparent;color:var(--green)}
    .gift-section{background:var(--cream-soft);padding:100px 0}
    .gift-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(40px,7vw,110px);align-items:center}
    .gift-presentation{margin:0;background:var(--green);color:var(--cream);min-height:620px;display:flex;flex-direction:column;justify-content:space-between;padding:42px;text-align:center}
    .presentation-top{display:flex;justify-content:space-between;gap:20px;text-align:left;font-size:12px;line-height:1.5;letter-spacing:.09em;text-transform:uppercase;color:rgba(255,249,242,.75)}
    .presentation-center{padding:65px 0}
    .presentation-center img{width:min(270px,90%);margin:0 auto 42px}
    .presentation-center p{font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;font-size:clamp(34px,3.7vw,54px);line-height:1.1;letter-spacing:-.035em;margin:0 auto;max-width:340px}
    .presentation-bottom{border-top:1px solid rgba(255,249,242,.25);padding-top:22px;font-size:12px;line-height:1.7;letter-spacing:.04em;color:rgba(255,249,242,.75)}
    .gift-copy .section-intro{margin-top:25px}
    .gift-details{margin:30px 0}
    .gift-details details{border-top:1px solid var(--line)}
    .gift-details details:last-child{border-bottom:1px solid var(--line)}
    .gift-details summary{display:flex;align-items:center;gap:20px;padding:23px 0;list-style:none;cursor:pointer;font-size:16px;line-height:1.4}
    .gift-details summary::-webkit-details-marker{display:none}
    .gift-details summary span{font-size:12px;color:var(--muted);letter-spacing:.06em}
    .gift-details summary:after{content:'+';margin-left:auto;font-size:22px;font-weight:400}
    .gift-details details[open] summary:after{content:'−'}
    .gift-details details p{font-size:16px;line-height:1.8;color:var(--muted);margin:0 0 25px;padding-left:37px}
    .gift-link{display:inline-flex;align-items:center;gap:20px;border-bottom:1px solid currentColor;padding:8px 0;font-size:14px}
    .gift-link span{transition:transform .4s var(--ease)}
    .gift-link:hover span{transform:translate(3px,-3px)}
    .experience-head{max-width:740px;margin-bottom:50px}
    .experience-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:48px}
    .experience-item{border-top:1px solid var(--line);padding-top:24px}
    .experience-number{font-size:12px;letter-spacing:.14em;color:var(--muted)}
    .experience-item h3{font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;font-weight:400;font-size:34px;letter-spacing:-.025em;margin:34px 0 15px}
    .experience-item p{font-size:16px;line-height:1.8;color:var(--muted);margin:0;max-width:340px}
    .experience-section{border-bottom:1px solid var(--line)}
    :focus-visible{outline:2px solid currentColor;outline-offset:6px}
    section[id]{scroll-margin-top:116px}
    .mobile-links[hidden]{display:none}
    .mobile-links{display:none}
    @media(max-width:1000px){
          .gift-grid{gap:40px}
      .gift-presentation{min-height:560px;padding:28px}
      .experience-grid{gap:28px}
      .mobile-links{display:grid;gap:4px;padding:15px 20px 25px;background:var(--green-deep);border-top:1px solid rgba(255,249,242,.2)}
      .mobile-links a{font-size:16px;padding:11px 0}
    }
    @media(max-width:760px){
      .editorial-section{padding:80px 0}
                .gift-section{padding:70px 0}
      .gift-grid{grid-template-columns:1fr;gap:48px}
      .gift-presentation{min-height:500px}
      .experience-grid{grid-template-columns:1fr;gap:34px}
      .experience-item{display:grid;grid-template-columns:38px 1fr;gap:0 16px}
      .experience-number{padding-top:11px}
      .experience-item h3{margin:0 0 12px}
      .experience-item p{grid-column:2;max-width:none}
      .experience-head{margin-bottom:35px}
    }


    /* Revamp: framed testimonial cards, readable navigation, clear actions. */
    .nav-group{font-size:12px;letter-spacing:.13em;gap:28px}
    .nav-group a{opacity:.95;padding:14px 0}
    .menu{font-size:12px;min-height:44px;letter-spacing:.13em}
    .section-index,.hero-kicker,.atelier-label{font-size:12px;line-height:1.6}
    .hero-sub{font-size:16px;line-height:1.65;max-width:390px;color:rgba(255,249,242,.86)}
    .hero-bottom-inner{font-size:12px;letter-spacing:.12em}
    .statement-copy p,.auth-copy p,.atelier p{font-size:16px;line-height:1.8}
    .auth-points small{font-size:12px;color:rgba(255,249,242,.7)}
    .category-number{font-size:12px;letter-spacing:.12em;color:rgba(255,249,242,.83)}
    .section-head .text-action{font-size:14px;letter-spacing:.01em;text-transform:none;min-height:44px;display:inline-flex;align-items:center;gap:15px}
    .hero-link,.gift-link,.dark-link,.cta-button{display:inline-flex;align-items:center;justify-content:center;gap:26px;min-height:54px;padding:17px 27px;border:1px solid var(--green);border-radius:3px;background:var(--green);color:var(--cream);font-size:14px;line-height:1.3;letter-spacing:.045em;text-transform:none;font-weight:500;transition:background .3s,color .3s,transform .4s var(--ease),box-shadow .3s;cursor:pointer}
    .hero-link{background:var(--cream);color:var(--green);border-color:var(--cream);margin-top:25px}
    .hero-link:hover{opacity:1;gap:26px;background:#fff8ef;transform:translateY(-2px)}
    .gift-link:hover,.dark-link:hover,.cta-button:hover{background:var(--green-deep);box-shadow:0 7px 20px rgba(27,48,36,.13);transform:translateY(-2px)}
    .cta-button-light{background:var(--cream);color:var(--green);border-color:var(--cream)}
    .cta-button-light:hover{background:#fff8ef;color:var(--green)}
    .text-action{font-size:14px;line-height:1.5;display:inline-flex;align-items:center;gap:16px;min-height:44px;padding:10px 0;border-bottom:1px solid currentColor}
    .stories-section{background:#f5e5d1}
    .stories-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:60px;margin-bottom:46px}
    .stories-heading .editorial-title{font-size:clamp(42px,4.5vw,65px);line-height:1.08;max-width:710px}
    .reviews-intro{max-width:320px;padding-bottom:4px}
    .reviews-intro p{font-size:16px;line-height:1.8;color:#5b6b61;margin:0 0 17px}
    .stories-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;padding:6px 0 16px}
    .buyer-story{margin:0;padding:30px;min-height:375px;display:flex;flex-direction:column;min-width:0;background:#fff5e8;border:1px solid rgba(38,61,47,.14);border-radius:8px;box-shadow:0 8px 22px rgba(27,48,36,.035);color:var(--green);transition:box-shadow .4s,border-color .4s}
    .buyer-story:hover{box-shadow:0 15px 34px rgba(27,48,36,.085);border-color:rgba(38,61,47,.3)}
    .buyer-story-featured{background:var(--green);color:var(--cream);border-color:var(--green)}
    .review-topline{display:flex;align-items:center;justify-content:space-between;gap:10px}
    .review-stars{font-size:14px;letter-spacing:.1em;color:#82643d;white-space:nowrap}
    .review-origin{font-size:12px;line-height:1.5;color:#637367}
    .buyer-story blockquote{font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;font-size:clamp(26px,2.55vw,36px);line-height:1.22;letter-spacing:-.025em;margin:34px 0 22px;flex:1}
    .review-product{font-size:12px;line-height:1.6;color:#637367;margin:0 0 24px}
    .buyer-story figcaption{display:flex;align-items:center;gap:13px;padding:22px 0 0;border-top:1px solid rgba(38,61,47,.15);font-size:14px;line-height:1.5}
    .review-initial{width:44px;height:44px;flex:0 0 44px;display:grid;place-items:center;border-radius:50%;background:#ece0cc;color:var(--green);font-family:Georgia,serif;font-size:20px}
    .review-person strong{display:block;font-size:16px;font-weight:500;margin-bottom:3px}
    .review-person a{font-size:12px;color:#637367;border-bottom:1px solid transparent}
    .review-person a:hover{border-bottom-color:currentColor}
    .review-footer{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:24px;font-size:12px;line-height:1.5;color:#637367}
    .review-footer a{display:inline-flex;gap:8px;align-items:center;padding:8px 0;text-decoration:underline;text-underline-offset:4px;color:var(--green)}
    .buyer-story-featured .review-stars{color:#d7bd91}
    .buyer-story-featured .review-origin,.buyer-story-featured .review-product,.buyer-story-featured .review-person a,.buyer-story-featured .review-footer{color:#d7dfd7}
    .buyer-story-featured .review-footer a{color:var(--cream)}
    .buyer-story-featured figcaption{border-color:rgba(255,249,242,.22)}
    .buyer-story-featured .review-initial{background:rgba(255,249,242,.12);color:var(--cream)}
    .reviews-bottom{display:flex;align-items:center;justify-content:space-between;gap:20px}
    .review-source-note{font-size:12px;line-height:1.7;color:#637367;margin:15px 0 0}
    .story-controls{display:none;align-items:center;justify-content:space-between;gap:25px}
    .story-controls div{display:flex;gap:10px}
    .story-count{font-size:12px;letter-spacing:.12em;white-space:nowrap}
    .gift-copy .editorial-title,.experience-head .editorial-title{font-size:clamp(42px,4.5vw,66px)}
    .gift-copy .section-intro{max-width:400px}
    .gift-details{margin:28px 0 32px}
    .experience-item h3{font-size:30px}
    .atelier{padding:105px 0}
    .atelier h2{max-width:770px;font-size:clamp(44px,5.1vw,72px)}
    .atelier-actions{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:20px 32px;margin-top:34px}
    .footer-top{grid-template-columns:.9fr 1.1fr;gap:80px}
    .footer-brand p{font-size:16px;line-height:1.8;color:rgba(255,249,242,.78);max-width:350px}
    .footer-brand .cta-button{margin-top:28px}
    .footer-links{grid-template-columns:1.2fr 1fr 1fr;gap:32px}
    .footer-links strong{font-size:13px;letter-spacing:.12em;margin-bottom:17px;color:rgba(255,249,242,.7)}
    .footer-links a{font-size:16px;line-height:1.55;margin:0;padding:9px 0;min-height:42px;color:rgba(255,249,242,.92)}
    .footer-links a:hover{text-decoration:underline;text-underline-offset:5px;color:var(--secondary)}
    .footer-bottom{font-size:12px;line-height:1.7;letter-spacing:.075em;color:rgba(255,249,242,.67)}
    @media(max-width:1100px){
      .stories-heading{gap:30px}
      .buyer-story{padding:24px;min-height:360px}
      .stories-grid{gap:18px}
      .footer-top{grid-template-columns:1fr;gap:50px}
      .footer-links{grid-template-columns:repeat(3,minmax(0,1fr))}
    }
    @media(max-width:760px){
      .stories-heading{align-items:flex-start;flex-direction:column;gap:24px;margin-bottom:30px}
      .reviews-intro p br{display:none}
      .reviews-intro{max-width:390px}
      .stories-grid{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:thin;scrollbar-color:var(--green-soft) transparent;padding-bottom:18px}
      .buyer-story{flex:0 0 88%;min-height:365px;scroll-snap-align:start;scroll-snap-stop:always;padding:26px}
      .buyer-story blockquote{font-size:32px;margin-top:28px}
      .story-controls{display:flex}
      .reviews-bottom{align-items:flex-start;flex-direction:column-reverse;gap:5px}
      .story-controls{width:100%;margin-top:8px}
      .hero-sub{font-size:14px;max-width:285px;line-height:1.6}
      .hero-link{font-size:14px;min-height:50px;padding:15px 22px}
      .hero-bottom-inner{font-size:12px;letter-spacing:.055em}
      .hero-line{width:24px;margin:0 7px}
      .footer-links{grid-template-columns:repeat(2,minmax(0,1fr));gap:32px 24px}
      .footer-links a{font-size:16px}
      .footer-bottom{font-size:12px;letter-spacing:.04em}
      .atelier{padding:80px 0}
      .atelier-actions{gap:18px}
    }
    @media(max-width:380px){.buyer-story{padding:22px}.buyer-story blockquote{font-size:29px}.review-topline{flex-wrap:wrap}.hero-bottom-inner{font-size:12px}.hero-bottom-inner>span:first-child{max-width:260px;line-height:1.8}}

  
