
  :root{
    --bg:#FFFFFF;
    --bg-alt:#FFFFFF;
    --text:#1A191C;
    --peru:#A87F55;
    --peru-dark:#896A4E;
    --silk:#D8C7B5;
    --radius-lg:28px;
    --radius-sm:20px;
    --pad-mobile:18px;
    --pad-desktop:40px;
    --max-w:1240px;
    --header-h-mobile:60px;
    --header-h-desktop:74px;
    --ease:cubic-bezier(.22,.61,.36,1);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
  }

  body{
    margin:0;
    font-family:'Montserrat',-apple-system,BlinkMacSystemFont,sans-serif;
    background:var(--bg);
    color:var(--text);
    -webkit-font-smoothing:antialiased;
    line-height:1.5;
  }

  img{max-width:100%;display:block;height:auto;}

  h1,h2,h3{margin:0;font-weight:600;letter-spacing:-0.01em;}

  a{color:inherit;}

  .container{
    width:100%;
    max-width:var(--max-w);
    margin:0 auto;
    padding-left:var(--pad-mobile);
    padding-right:var(--pad-mobile);
  }
  @media (min-width:1024px){
    .container{padding-left:var(--pad-desktop);padding-right:var(--pad-desktop);}
  }

  .section{
    padding-top:80px;
    padding-bottom:80px;
  }
  @media (min-width:1024px){
    .section{padding-top:130px;padding-bottom:130px;}
  }

  .section-alt{background:var(--bg-alt);border-top:1px solid rgba(26,25,28,0.07);}
  .section-tight-top{padding-top:50px;}
  @media (min-width:1024px){
    .section-tight-top{padding-top:80px;}
  }

  .eyebrow{
    font-size:13px;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--peru-dark);
    font-weight:600;
    margin-bottom:16px;
    display:block;
  }

  h2{
    font-size:28px;
    line-height:1.1;
  }
  @media (min-width:1024px){
    h2{font-size:44px;}
  }

  h3{
    font-size:21px;
    line-height:1.15;
  }
  @media (min-width:1024px){
    h3{font-size:27px;}
  }

  p{font-size:16px;line-height:1.6;margin:0;}
  @media (min-width:1024px){
    p{font-size:18px;}
  }

  .small{font-size:13px;line-height:1.5;}

  /* Skip link */
  .skip-link{
    position:absolute;
    left:-9999px;
    top:0;
    background:var(--text);
    color:#fff;
    padding:12px 20px;
    z-index:1000;
    border-radius:0 0 10px 0;
    font-weight:500;
    text-decoration:none;
  }
  .skip-link:focus{left:0;}

  :focus-visible{
    outline:2px solid var(--peru);
    outline-offset:3px;
  }

  /* Header */
  header{
    position:sticky;
    top:0;
    z-index:100;
    height:var(--header-h-mobile);
    background:rgba(255,255,255,0.9);
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(26,25,28,0.06);
  }
  @media (min-width:1024px){
    header{height:var(--header-h-desktop);}
  }
  .header-inner{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .logo{
    display:flex;
    align-items:center;
    height:36px;
  }
  .logo img{height:100%;width:auto;aspect-ratio:1/1;}

  nav.desktop-nav{
    display:none;
  }
  @media (min-width:1024px){
    nav.desktop-nav{
      display:flex;
      align-items:center;
      gap:36px;
    }
    nav.desktop-nav a.nav-link{
      font-size:15px;
      font-weight:500;
      text-decoration:none;
      color:var(--text);
      position:relative;
      padding:4px 0;
    }
    nav.desktop-nav a.nav-link:after{
      content:"";
      position:absolute;
      left:0;bottom:0;
      width:0;
      height:1px;
      background:var(--peru);
      transition:width .25s var(--ease);
    }
    nav.desktop-nav a.nav-link:hover:after{width:100%;}
    .header-phone{
      font-weight:600;
      color:var(--peru-dark);
      white-space:nowrap;
    }
    .header-phone:after{display:none;}
  }

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-family:inherit;
    font-weight:600;
    font-size:15px;
    border-radius:100px;
    padding:14px 28px;
    cursor:pointer;
    text-decoration:none;
    border:1px solid transparent;
    transition:transform .2s var(--ease),background .2s var(--ease),color .2s var(--ease),border-color .2s var(--ease);
  }
  .btn:hover{transform:translateY(-1px);}
  .btn-outline{
    border-color:var(--text);
    background:transparent;
    color:var(--text);
  }
  .btn-outline:hover{
    background:var(--text);
    color:#fff;
  }
  .btn-primary{
    background:var(--peru);
    color:#fff;
  }
  .btn-primary:hover{background:var(--peru-dark);}

  .header-cta{display:none;}
  @media (min-width:1024px){
    .header-cta{display:inline-flex;}
  }

  .hamburger{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
  }
  @media (min-width:1024px){.hamburger{display:none;}}
  .hamburger span{
    display:block;
    width:22px;height:2px;background:var(--text);position:relative;
    transition:transform .25s var(--ease),opacity .25s var(--ease);
  }
  .hamburger span:before,.hamburger span:after{
    content:"";
    position:absolute;
    left:0;width:22px;height:2px;background:var(--text);
    transition:transform .25s var(--ease);
  }
  .hamburger span:before{top:-7px;}
  .hamburger span:after{top:7px;}
  .hamburger[aria-expanded="true"] span{background:transparent;}
  .hamburger[aria-expanded="true"] span:before{transform:translateY(7px) rotate(45deg);}
  .hamburger[aria-expanded="true"] span:after{transform:translateY(-7px) rotate(-45deg);}

  .mobile-menu{
    position:fixed;
    inset:var(--header-h-mobile) 0 0 0;
    background:#fff;
    transform:translateX(100%);
    transition:transform .3s var(--ease);
    z-index:99;
    padding:32px var(--pad-mobile);
    overflow-y:auto;
  }
  .mobile-menu.open{transform:translateX(0);}
  .mobile-menu a{
    display:block;
    font-size:22px;
    font-weight:500;
    text-decoration:none;
    color:var(--text);
    padding:16px 0;
    border-bottom:1px solid rgba(26,25,28,0.08);
  }
  .mobile-menu .btn{width:100%;margin-top:28px;}
  body.menu-open{overflow:hidden;}
  @media (min-width:1024px){.mobile-menu{display:none;}}

  /* HERO — logo+wordmark overlaid on photo, headline+subtitle+CTA below photo */
  .hero-banner{
    position:relative;
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    overflow:hidden;
  }
  .hero-banner img{
    width:100%;
    display:block;
    aspect-ratio:3/4;
    object-fit:cover;
  }
  @media (min-width:1024px){
    .hero-banner img{aspect-ratio:16/9;max-height:780px;}
  }
  .hero-banner-overlay{
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:auto;
    max-width:88%;
    background:rgba(255,255,255,0.72);
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    padding:10px 20px 10px 12px;
    border-radius:20px;
  }
  .hero-banner-overlay img{
    width:26px;height:26px;
    aspect-ratio:1/1;
    object-fit:contain;
    flex-shrink:0;
  }
  .hero-banner-overlay .overlay-text{
    display:flex;
    flex-direction:column;
    align-items:center;
    line-height:1.25;
  }
  .hero-banner-overlay .overlay-name{
    font-size:16px;
    font-weight:600;
    letter-spacing:0.03em;
    color:var(--text);
    white-space:nowrap;
  }
  .hero-banner-overlay .overlay-sub{
    font-size:11px;
    font-weight:500;
    letter-spacing:0.02em;
    color:rgba(26,25,28,0.6);
    white-space:nowrap;
  }
  @media (min-width:1024px){
    .hero-banner-overlay{top:36px;padding:13px 26px 13px 16px;border-radius:24px;}
    .hero-banner-overlay img{width:34px;height:34px;}
    .hero-banner-overlay .overlay-name{font-size:20px;}
    .hero-banner-overlay .overlay-sub{font-size:13px;}
  }

  .hero-text-block{
    max-width:680px;
    margin:0 auto;
    text-align:center;
    padding-top:44px;
    padding-bottom:8px;
  }
  @media (min-width:1024px){
    .hero-text-block{padding-top:64px;}
  }
  .hero-text-block h1{
    font-size:34px;
    line-height:1.08;
    font-weight:700;
  }
  @media (min-width:1024px){
    .hero-text-block h1{font-size:52px;}
  }
  .hero-text-block p.hero-sub{
    margin-top:22px;
    color:rgba(26,25,28,0.75);
    max-width:560px;
    margin-left:auto;
    margin-right:auto;
  }
  .hero-cta{
    margin-top:32px;
    display:flex;
    flex-direction:column;
    gap:16px;
    align-items:center;
  }
  .hero-cta .btn{width:100%;}
  @media (min-width:480px){.hero-cta .btn{width:auto;}}
  .hero-cta .more-link{
    font-size:15px;
    font-weight:500;
    text-decoration:none;
    color:var(--peru-dark);
    border-bottom:1px solid rgba(168,127,85,0.4);
    padding-bottom:2px;
  }

  /* Section 2 - Video */
  .video-block{
    background:var(--bg-alt);
    border:1px solid rgba(26,25,28,0.08);
    border-radius:32px;
    padding:28px;
    display:grid;
    gap:32px;
  }
  @media (min-width:1024px){
    .video-block{
      grid-template-columns:35% 1fr;
      padding:56px;
      align-items:center;
    }
  }
  .video-wrap{
    position:relative;
    border-radius:var(--radius-sm);
    overflow:hidden;
    background:#000;
    max-width:340px;
    margin:0 auto;
  }
  .video-wrap video{
    width:100%;
    display:block;
    aspect-ratio:9/16;
    object-fit:contain;
  }
  @media (min-width:1024px){
    .video-wrap{max-width:380px;}
  }

  /* Philosophy — the "emotions" section, made to stand out */
  .philosophy-section{
    background:linear-gradient(180deg,#FFFFFF 0%,#F7F1E9 50%,#FFFFFF 100%);
  }
  .philosophy{
    max-width:760px;
    margin:0 auto;
    text-align:center;
  }
  .philosophy h2{margin-top:8px;}
  .philosophy p{margin-top:26px;color:rgba(26,25,28,0.75);}
  .philosophy .quote-mark{
    display:block;
    font-family:Georgia,serif;
    font-size:90px;
    line-height:1;
    color:var(--peru);
    opacity:0.55;
    margin-bottom:-10px;
  }
  .philosophy .big-line{
    margin-top:36px;
    font-size:30px;
    font-weight:700;
    line-height:1.25;
    color:var(--peru-dark);
    background:linear-gradient(90deg,var(--peru-dark),var(--peru) 55%,var(--peru-dark));
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
  }
  @media (min-width:1024px){.philosophy .big-line{font-size:42px;}}
  .philosophy .gold-rule{
    width:64px;
    height:3px;
    background:var(--peru);
    border:none;
    margin:32px auto 0;
    border-radius:4px;
  }

  /* Collection */
  .collection-head{max-width:640px;}
  .collection-head p{margin-top:18px;color:rgba(26,25,28,0.75);}
  .price-line{
    margin-top:22px;
    font-weight:600;
    color:var(--peru-dark);
    font-size:15px;
  }

  .product-scroll{
    margin-top:48px;
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:8px;
    margin-left:calc(var(--pad-mobile) * -1);
    margin-right:calc(var(--pad-mobile) * -1);
    padding-left:var(--pad-mobile);
    padding-right:var(--pad-mobile);
    -webkit-overflow-scrolling:touch;
  }
  .product-scroll::-webkit-scrollbar{display:none;}
  @media (min-width:1024px){
    .product-scroll{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      margin-left:0;margin-right:0;padding-left:0;padding-right:0;
      overflow:visible;
    }
  }
  .product-card{
    flex:0 0 82%;
    scroll-snap-align:start;
    background:#fff;
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid rgba(26,25,28,0.07);
    transition:transform .3s var(--ease),box-shadow .3s var(--ease);
  }
  @media (min-width:480px){.product-card{flex-basis:60%;}}
  @media (min-width:1024px){
    .product-card{flex-basis:auto;}
    .product-card:hover{transform:translateY(-4px);box-shadow:0 20px 40px rgba(26,25,28,0.08);}
  }
  .product-card img{width:100%;aspect-ratio:4/3;object-fit:cover;}
  .product-card-body{padding:24px;}
  .product-edition{
    font-size:13px;
    color:var(--peru-dark);
    font-weight:600;
    letter-spacing:0.04em;
    text-transform:uppercase;
  }
  .product-card-body h3{margin-top:8px;}
  .product-price{
    margin-top:10px;
    font-weight:600;
    font-size:17px;
    display:flex;
    align-items:baseline;
    gap:10px;
  }
  .product-price .price-old{
    font-weight:500;
    font-size:15px;
    color:rgba(26,25,28,0.4);
    text-decoration:line-through;
    text-decoration-color:rgba(26,25,28,0.4);
  }
  .product-price .price-new{
    color:var(--peru-dark);
    font-weight:700;
    font-size:19px;
  }
  .product-specs{
    margin-top:16px;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
  }
  .product-specs span{
    font-size:13px;
    background:#F7F5F1;
    border-radius:100px;
    padding:6px 12px;
    color:rgba(26,25,28,0.7);
  }
  .product-select{
    display:block;
    width:100%;
    margin-top:18px;
    text-align:center;
    font-size:14px;
    padding:12px 20px;
  }

  /* Per-model video carousel — stays swipeable at every breakpoint */
  .model-video-scroll{
    margin-top:48px;
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:8px;
    margin-left:calc(var(--pad-mobile) * -1);
    margin-right:calc(var(--pad-mobile) * -1);
    padding-left:var(--pad-mobile);
    padding-right:var(--pad-mobile);
    -webkit-overflow-scrolling:touch;
  }
  .model-video-scroll::-webkit-scrollbar{display:none;}
  @media (min-width:1024px){
    .model-video-scroll{
      margin-left:0;margin-right:0;padding-left:0;padding-right:0;
    }
  }
  .model-video-card{
    flex:0 0 74%;
    scroll-snap-align:start;
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid rgba(26,25,28,0.07);
    background:#fff;
  }
  @media (min-width:480px){.model-video-card{flex-basis:52%;}}
  @media (min-width:768px){.model-video-card{flex-basis:36%;}}
  @media (min-width:1024px){.model-video-card{flex-basis:27%;}}
  .model-video-card video{
    width:100%;
    display:block;
    aspect-ratio:9/16;
    object-fit:contain;
    background:#000;
  }
  .model-video-label{
    padding:16px 18px;
  }
  .model-video-label span.name{font-weight:600;font-size:15px;}
  .selected-model-badge{
    display:none;
    background:#F7F5F1;
    border-radius:100px;
    padding:8px 16px;
    font-size:13px;
    font-weight:600;
    color:var(--peru-dark);
    margin-bottom:18px;
  }
  .selected-model-badge.visible{display:inline-block;}
  .product-card.coming-soon{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#F7F5F1;
    border:1px dashed rgba(26,25,28,0.2);
    min-height:300px;
  }
  .coming-soon-inner{
    text-align:center;
    padding:40px 24px;
  }
  .coming-soon-inner .lock-icon{
    width:32px;height:32px;
    color:var(--peru);
    margin:0 auto 16px;
    display:block;
  }
  .coming-soon-inner .product-edition{
    font-size:13px;
    color:var(--peru-dark);
    font-weight:600;
    letter-spacing:0.04em;
    text-transform:uppercase;
  }
  .coming-soon-inner h3{color:rgba(26,25,28,0.6);margin-top:8px;}
  .coming-soon-inner p{margin-top:10px;color:rgba(26,25,28,0.5);}
  .coming-soon-inner .product-specs{
    justify-content:center;
    margin-top:18px;
  }
  .coming-soon-inner .product-specs span{background:#FFFFFF;}

  /* Lead form */
  .lead-block{
    background:var(--bg-alt);
    border:1px solid rgba(26,25,28,0.08);
    border-radius:32px;
    padding:36px 24px;
  }
  @media (min-width:1024px){
    .lead-block{padding:72px;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
  }
  .lead-block h2{margin-top:8px;}
  .lead-block > .lead-copy p{margin-top:18px;color:rgba(26,25,28,0.75);}

  form.lead-form{margin-top:28px;}
  @media (min-width:1024px){form.lead-form{margin-top:0;}}
  .field{margin-bottom:20px;}
  .field label{
    display:block;
    font-size:14px;
    font-weight:500;
    margin-bottom:8px;
  }
  .field input{
    width:100%;
    font-family:inherit;
    font-size:16px;
    padding:15px 16px;
    border-radius:14px;
    border:1px solid rgba(26,25,28,0.18);
    background:#fff;
    transition:border-color .2s var(--ease);
  }
  .field input:focus{border-color:var(--peru);}
  .field.error input{border-color:#B3261E;}
  .field-error-msg{
    display:none;
    color:#B3261E;
    font-size:13px;
    margin-top:6px;
  }
  .field.error .field-error-msg{display:block;}
  form.lead-form .btn{width:100%;margin-top:6px;}
  .form-note{margin-top:14px;color:rgba(26,25,28,0.55);}
  .form-success{
    display:none;
    background:#EDF6EE;
    border:1px solid #BFE1C4;
    color:#1E5B2A;
    padding:18px;
    border-radius:14px;
    font-size:15px;
  }
  .form-success.visible{display:block;}

  /* Why StackRise / exploded */
  .why-grid{display:grid;gap:36px;}
  .why-text{max-width:720px;}
  .why-text p{margin-top:18px;color:rgba(26,25,28,0.75);}
  .why-media img{border-radius:var(--radius-lg);}
  .layers-gallery{
    display:grid;
    gap:14px;
    grid-template-columns:1fr;
  }
  @media (min-width:640px){
    .layers-gallery{grid-template-columns:repeat(3,1fr);}
  }
  .layers-video-card{
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid rgba(26,25,28,0.07);
    background:#fff;
  }
  .layers-video-card video{
    width:100%;
    display:block;
    aspect-ratio:9/16;
    object-fit:contain;
    background:#000;
  }
  .layers-video-label{padding:16px 18px;}
  .layers-video-label span.name{font-weight:600;font-size:15px;}

  /* Materials cards */
  .materials-grid{
    margin-top:48px;
    display:grid;
    gap:20px;
    grid-template-columns:1fr;
  }
  @media (min-width:640px){.materials-grid{grid-template-columns:1fr 1fr;}}
  @media (min-width:1024px){.materials-grid{grid-template-columns:repeat(4,1fr);}}
  .material-card{
    padding:28px 22px;
    border-radius:var(--radius-sm);
    background:#fff;
    border:1px solid rgba(26,25,28,0.07);
  }
  .material-card svg{width:32px;height:32px;color:var(--peru);}
  .material-card h3{margin-top:18px;font-size:18px;}
  .material-card p{margin-top:10px;font-size:15px;color:rgba(26,25,28,0.7);}

  /* Interior gallery */
  .interior-gallery{
    margin-top:48px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }
  @media (min-width:768px){
    .interior-gallery{grid-template-columns:repeat(3,1fr);}
  }
  .interior-gallery img{
    border-radius:var(--radius-sm);
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    display:block;
  }

  /* Gift */
  .gift-grid{display:grid;gap:36px;}
  @media (min-width:1024px){
    .gift-grid{grid-template-columns:1fr 1fr;align-items:center;gap:70px;}
  }
  .gift-text p{margin-top:18px;color:rgba(26,25,28,0.75);}
  .gift-text .btn{margin-top:28px;}
  .gift-media img{border-radius:var(--radius-lg);}

  /* B2B */
  .b2b-grid{display:grid;gap:36px;}
  @media (min-width:1024px){
    .b2b-grid{grid-template-columns:1fr 1fr;align-items:center;gap:70px;}
  }
  .b2b-text p{margin-top:18px;color:rgba(26,25,28,0.75);}
  .b2b-text .btn{margin-top:28px;}
  .b2b-media img{border-radius:var(--radius-lg);}

  /* Story */
  .story-grid{display:grid;gap:36px;}
  @media (min-width:1024px){
    .story-grid{grid-template-columns:1fr 1fr;align-items:center;gap:70px;}
  }
  .story-text p{margin-top:18px;color:rgba(26,25,28,0.75);}
  .story-media img{border-radius:var(--radius-lg);}

  /* FAQ */
  .faq-list{margin-top:44px;max-width:820px;}
  details{
    border-bottom:1px solid rgba(26,25,28,0.12);
    padding:22px 0;
  }
  summary{
    cursor:pointer;
    list-style:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    font-weight:600;
    font-size:17px;
  }
  summary::-webkit-details-marker{display:none;}
  summary .plus{
    flex:0 0 auto;
    width:22px;height:22px;
    position:relative;
  }
  summary .plus:before,summary .plus:after{
    content:"";
    position:absolute;
    background:var(--text);
    transition:transform .25s var(--ease);
  }
  summary .plus:before{left:0;top:50%;width:100%;height:2px;transform:translateY(-50%);}
  summary .plus:after{top:0;left:50%;width:2px;height:100%;transform:translateX(-50%);}
  details[open] summary .plus:after{transform:translateX(-50%) rotate(90deg);opacity:0;}
  details p{margin-top:16px;color:rgba(26,25,28,0.72);padding-right:20px;}

  /* Footer */
  footer{
    background:var(--text);
    color:#fff;
    padding:56px 0 32px;
  }
  .footer-top{
    display:flex;
    flex-direction:column;
    gap:32px;
  }
  @media (min-width:1024px){
    .footer-top{flex-direction:row;justify-content:space-between;align-items:flex-start;}
  }
  .footer-logo img{height:26px;filter:brightness(0) invert(1);}
  .footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:20px 32px;
  }
  .footer-links a{
    color:rgba(255,255,255,0.75);
    text-decoration:none;
    font-size:15px;
  }
  .footer-links a:hover{color:#fff;}
  .footer-social{
    display:flex;
    gap:14px;
  }
  .footer-social a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;height:38px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.25);
    color:rgba(255,255,255,0.85);
    transition:border-color .2s var(--ease),color .2s var(--ease);
  }
  .footer-social a:hover{border-color:#fff;color:#fff;}
  .footer-social svg{width:18px;height:18px;}
  .footer-bottom{
    margin-top:44px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,0.14);
    font-size:13px;
    color:rgba(255,255,255,0.5);
  }

  /* reveal animation — visible by default (progressive enhancement).
     Only html.js (set by an early inline script) hides elements until
     IntersectionObserver reveals them. If JS is blocked or fails
     (e.g. some email-client HTML viewers strip <script>), content
     stays fully visible instead of being stuck at opacity:0. */
  .reveal{opacity:1;transform:none;}
  html.js .reveal{
    opacity:0;
    transform:translateY(18px);
    transition:opacity .7s var(--ease),transform .7s var(--ease);
  }
  html.js .reveal.visible{opacity:1;transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){
    html.js .reveal{opacity:1;transform:none;transition:none;}
  }

  .visually-hidden{
    position:absolute;
    width:1px;height:1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    white-space:nowrap;
  }  /* Sticky bottom offer bar */
  .sticky-offer{
    position:fixed;
    left:0;right:0;bottom:0;
    z-index:90;
    background:rgba(255,255,255,0.92);
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    border-top:1px solid rgba(26,25,28,0.08);
    padding:12px var(--pad-mobile);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    transform:translateY(120%);
    transition:transform .35s var(--ease);
  }
  .sticky-offer.visible{transform:translateY(0);}
  .sticky-offer-text{
    font-size:13px;
    font-weight:600;
    color:var(--text);
    line-height:1.25;
  }
  .sticky-offer-text span{
    display:block;
    font-weight:400;
    font-size:12px;
    color:rgba(26,25,28,0.6);
    margin-top:2px;
  }
  .sticky-offer .btn{
    flex-shrink:0;
    padding:12px 20px;
    font-size:14px;
    white-space:nowrap;
  }
  @media (min-width:1024px){
    .sticky-offer{padding:16px 40px;}
    .sticky-offer-text{font-size:15px;}
    .sticky-offer-text span{font-size:13px;}
  }

/* ============ US SITE ADDITIONS ============ */

/* Breadcrumbs */
.breadcrumbs{
  font-size:13px;
  color:rgba(26,25,28,0.55);
  margin-bottom:20px;
}
.breadcrumbs a{color:rgba(26,25,28,0.55);text-decoration:none;}
.breadcrumbs a:hover{color:var(--peru-dark);}
.breadcrumbs .sep{margin:0 8px;color:rgba(26,25,28,0.3);}
.breadcrumbs .current{color:var(--text);font-weight:500;}

/* Page hero (non-home pages) */
.page-hero{
  padding-top:120px;
  padding-bottom:20px;
}
@media (min-width:1024px){.page-hero{padding-top:150px;}}
.page-hero h1{
  font-size:32px;
  line-height:1.12;
  font-weight:700;
  max-width:820px;
}
@media (min-width:1024px){.page-hero h1{font-size:48px;}}
.page-hero .lede{
  margin-top:18px;
  font-size:17px;
  color:rgba(26,25,28,0.7);
  max-width:640px;
}

/* Price placeholder */
.price-todo{
  font-weight:700;
  font-size:19px;
  color:var(--peru-dark);
}

/* Spec badges reused with inch-first display */
.spec-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.spec-badges span{
  font-size:13px;
  background:#F7F5F1;
  border-radius:100px;
  padding:6px 14px;
  color:rgba(26,25,28,0.75);
}

/* Collection grid (automotive / layered-art pages) */
.collection-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  margin-top:40px;
}
@media (min-width:640px){.collection-grid{grid-template-columns:repeat(2,1fr);}}
@media (min-width:1024px){.collection-grid{grid-template-columns:repeat(3,1fr);}}

/* Product page sections */
.product-section{
  padding-top:64px;
  padding-bottom:64px;
  border-top:1px solid rgba(26,25,28,0.07);
}
.product-section h2{margin-bottom:16px;}
.product-section p{color:rgba(26,25,28,0.75);max-width:720px;}

.pdp-gallery{
  display:grid;
  gap:14px;
  grid-template-columns:1fr;
}
@media (min-width:768px){.pdp-gallery{grid-template-columns:1.3fr 1fr;}}
.pdp-gallery img{width:100%;border-radius:var(--radius-lg);display:block;}

.pdp-specs-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 24px;
}
.pdp-specs-row span{
  font-size:13px;
  font-weight:600;
  background:#F7F5F1;
  border-radius:100px;
  padding:8px 16px;
  color:var(--text);
}

/* Simple numbered steps (How It Works) */
.steps-list{
  display:grid;
  gap:32px;
  margin-top:48px;
}
@media (min-width:768px){.steps-list{grid-template-columns:repeat(2,1fr);}}
.step-item{display:flex;gap:18px;align-items:flex-start;}
.step-number{
  font-size:14px;
  font-weight:700;
  color:var(--peru);
  border:1px solid var(--peru);
  border-radius:50%;
  width:36px;height:36px;
  flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.step-item h3{font-size:18px;margin-bottom:6px;}
.step-item p{color:rgba(26,25,28,0.7);font-size:15px;}

/* Newsletter */
.newsletter-block{
  background:var(--bg-alt);
  border:1px solid rgba(26,25,28,0.08);
  border-radius:32px;
  padding:40px 24px;
  text-align:center;
}
@media (min-width:1024px){.newsletter-block{padding:56px;}}
.newsletter-form{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:420px;
  margin:24px auto 0;
}
@media (min-width:480px){.newsletter-form{flex-direction:row;}}
.newsletter-form input[type="email"]{
  flex:1;
  font-family:inherit;
  font-size:16px;
  padding:14px 18px;
  border-radius:100px;
  border:1px solid rgba(26,25,28,0.18);
}
.newsletter-note{margin-top:12px;font-size:13px;color:rgba(26,25,28,0.55);}

/* Business form */
.b2b-form{max-width:560px;margin:32px auto 0;}
.b2b-form .field{margin-bottom:18px;}
.b2b-form textarea{
  width:100%;
  font-family:inherit;
  font-size:16px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(26,25,28,0.18);
  min-height:110px;
  resize:vertical;
}

/* 404 */
.error-page{
  min-height:70vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:120px 24px 80px;
}
.error-page h1{font-size:32px;margin-bottom:14px;}
@media (min-width:1024px){.error-page h1{font-size:42px;}}
.error-page p{color:rgba(26,25,28,0.65);margin-bottom:32px;}
.error-page .btn-row{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;}

/* FAQ short list on home / full page reuse */
.faq-note{font-size:14px;color:rgba(26,25,28,0.55);margin-top:24px;}
