  :root{
    --terracotta:#CB5A2E;
    --clay:#C4693A;
    --sand:#F7F2E8;
    --olive:#5E7A3E;
    --sky:#BFE0EF;
    --earth:#3D2B1A;
    --white:#FFFFFF;
    --ink:#161311;
  }
  *{margin:0;padding:0;box-sizing:border-box; -webkit-tap-highlight-color:transparent;}
  html{-webkit-text-size-adjust:100%; text-size-adjust:100%;}
  body{font-family:'Hanken Grotesk', sans-serif; color:var(--ink); background:var(--white); line-height:1.5; -webkit-font-smoothing:antialiased;}
  h1,h2,h3{font-family:'Bricolage Grotesque', sans-serif; font-weight:500;}
  .mono{font-family:'IBM Plex Mono', monospace;}
  a{text-decoration:none; color:inherit;}
  button{font-family:inherit; cursor:pointer;}

  /* ===== HEADER ===== */
  html{scroll-padding-top:112px;}
  @media (max-width:640px){html{scroll-padding-top:96px;}}
  .utility-bar{
    display:block;
    background:#F6EEDD; color:#2B211B;
    text-align:center; font-size:13px; padding:9px 20px;
    letter-spacing:.02em; font-weight:600;
    border-bottom:1px solid #e2d5bc;
  }
  .utility-bar:hover{background:#efe4cd; text-decoration:underline; text-underline-offset:3px;}
  .site-header{position:sticky; top:0; z-index:50;}
  .nav-row{
    background:#2B211B;
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 40px;
    border-bottom:1px solid #3d2f24;
  }
  .brand img{height:44px; width:auto; display:block;}
  .right-controls{display:flex; align-items:center; gap:12px; position:relative;}
  .nav-cta{
    background:#fff; color:#2B211B;
    padding:12px 24px; border-radius:7px; font-weight:600; font-size:14px;
    border:none;
  }
  .nav-cta:hover{background:#efe6d6;}

  /* Secondary section-link row: solid brand color (consistent on every page, no background lottery
     from whatever photo happens to be underneath), whole bar deepens on hover like SKIMS' nav reveal */
  .nav-row-secondary{
    background:#2B211B;
    display:flex; align-items:center; justify-content:flex-start; gap:22px;
    padding:7px 40px;
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:background .2s ease;
  }
  .nav-row-secondary:hover{background:#3a2d22;}
  @media (max-width:640px){.nav-row-secondary{display:none;}}
  .nav-link-visible{
    color:rgba(255,255,255,.7); font-weight:600; font-size:13.5px;
    padding:6px 0; position:relative; transition:color .15s ease;
  }
  .nav-link-visible::after{
    content:''; position:absolute; left:1px; right:1px; bottom:2px; height:1.5px;
    background:var(--sand); transform:scaleX(0); transform-origin:left;
    transition:transform .2s ease;
  }
  .nav-link-visible:hover{color:var(--sand);}
  .nav-link-visible:hover::after{transform:scaleX(1);}
  @media (max-width:640px){.nav-link-visible{display:none;}}

  /* Hamburger: mobile-only now that section links live in the always-visible row 2 on desktop */
  .hamburger{
    display:none;
    width:42px; height:42px; border-radius:7px;
    border:1px solid #4a3a2c; background:transparent;
    align-items:center; justify-content:center;
    flex-direction:column; gap:5px;
  }
  .hamburger span{display:block; width:18px; height:2px; background:var(--white);}
  .hamburger:hover{background:#3a2d22;}
  @media (max-width:640px){.hamburger{display:flex;}}
  .menu-panel{
    position:absolute; top:calc(100% + 10px); right:0; width:220px;
    background:#2B211B; border:1px solid #453729; border-radius:8px; overflow:hidden;
    box-shadow:0 12px 24px rgba(0,0,0,.4); display:none; z-index:20;
  }
  .menu-panel.open{display:block;}
  .menu-panel a{display:block; padding:16px 22px; font-size:15px; font-weight:600; color:var(--white); border-bottom:1px solid #3d2f24;}
  .menu-panel a:last-child{border-bottom:none;}
  .menu-panel a:hover{background:#3a2d22; color:#F6EEDD;}
  .menu-cta-mobile{display:none;}

  /* Contact: the real CTA in row 1 - terracotta, matching every other "take action" button on the
     site (hero, estimator, pricing), so it reads as an action rather than a utility control. */
  .nav-contact{
    height:42px; box-sizing:border-box; display:inline-flex; align-items:center; justify-content:center;
    background:var(--terracotta); color:#fff; border:none;
    padding:0 22px; border-radius:7px; font-weight:600; font-size:14px;
    font-family:'Hanken Grotesk', sans-serif; cursor:pointer;
  }
  .nav-contact:hover{background:#B14D24;}

  /* Language toggle: deliberately minimal - it's a utility, not a conversion action, so it shouldn't
     compete with Contact for attention in this crucial header space. */
  .lang-switch{
    height:42px; box-sizing:border-box; display:inline-flex; align-items:center;
    background:transparent; color:var(--sand); border:none; border-bottom:1px solid rgba(247,242,232,.3);
    padding:0 4px; border-radius:0; font-weight:600; font-size:13px;
    font-family:'Hanken Grotesk', sans-serif; cursor:pointer; -webkit-appearance:none; appearance:none;
    transition:border-color .15s ease;
  }
  .lang-switch:hover{border-color:var(--sand);}
  .lang-switch option{background:#2B211B; color:#fff;}
  @media (max-width:640px){
    .nav-contact{height:38px; padding:0 16px;}
    .lang-switch{height:38px; font-size:12.5px;}
  }

  /* Contact modal */
  .modal-overlay{
    position:fixed; inset:0; background:rgba(22,19,17,.55);
    display:none; align-items:center; justify-content:center; z-index:100;
    padding:20px;
  }
  .modal-overlay.open{display:flex;}
  .modal{
    background:var(--white); border-radius:12px; max-width:440px; width:100%;
    padding:32px 30px; position:relative; max-height:90vh; overflow-y:auto;
  }
  .modal h3{font-size:22px; margin-bottom:6px;}
  .modal .modal-phone{
    font-family:'IBM Plex Mono'; font-size:15px; color:#8a6f52; font-weight:500;
    margin-bottom:22px; display:block;
  }
  .modal .modal-phone a{color:#8a6f52; text-decoration:none; border-bottom:1px solid #8a6f52;}
  .modal-close{
    position:absolute; top:16px; right:16px; background:none; border:none;
    font-size:22px; color:#8a8377; cursor:pointer; line-height:1; padding:4px;
  }
  .modal .calc-field label{font-size:13px;}
  .modal textarea{
    width:100%; padding:12px 14px; border:1.5px solid #e7dcc2; border-radius:7px;
    font-family:'Hanken Grotesk', sans-serif; font-size:16px; color:#161311;
    min-height:100px; resize:vertical;
  }
  .modal textarea:focus{outline:none; border-color:#8a6f52;}

  /* Newsletter popup */
  .nl-overlay{
    position:fixed; inset:0; background:rgba(22,19,17,.55);
    display:none; align-items:center; justify-content:center; z-index:110;
    padding:20px;
  }
  .nl-overlay.open{display:flex;}
  .nl-card{
    background:var(--white); border-radius:12px; max-width:420px; width:100%;
    padding:36px 32px; position:relative; max-height:90vh; overflow-y:auto; text-align:center;
  }
  .nl-close{
    position:absolute; top:16px; right:16px; background:none; border:none;
    font-size:22px; color:#8a8377; cursor:pointer; line-height:1; padding:4px;
  }
  .nl-card .tag{justify-content:center; display:flex;}
  .nl-card h3{
    font-family:'Fraunces', serif; font-style:italic; font-weight:500;
    font-size:28px; line-height:1.2; margin-bottom:12px; color:var(--ink);
  }
  .nl-card p{font-size:15px; line-height:1.6; color:#5c574e; margin-bottom:24px;}
  .nl-card .calc-field{margin-bottom:16px; text-align:left;}

  @media (max-width:640px){
    .nav-row{padding:12px 20px;}
    .brand img{height:34px;}
    .nav-cta{display:none;}
    .nav-contact{display:none;}
    .menu-cta-mobile{
      display:block !important; background:var(--white); color:#000 !important;
      text-align:center; font-weight:700; margin:10px; border-radius:7px;
      width:auto; border-bottom:none !important;
    }
    .menu-panel{width:min(260px, calc(100vw - 40px));}
  }

  /* ===== HERO ===== */
  .hero{
    position:relative; min-height:calc(100vh - 143px); min-height:calc(100dvh - 143px); display:flex; flex-direction:column; justify-content:center; align-items:center; padding:60px 48px; text-align:center;
    background-size:cover; background-position:center 55%;
  }
  @media (max-width:640px){.hero{min-height:calc(100vh - 96px); min-height:calc(100dvh - 96px); padding:70px 24px;}}
  @media (max-height:520px) and (max-width:900px){.hero{min-height:auto; padding:60px 24px;}}
  .hero h1{
    font-family:'Bricolage Grotesque', sans-serif;
    font-weight:500; font-size:clamp(20px,4.4vw,50px); line-height:1.16;
    max-width:1100px; margin:0 auto 22px; color:#fff;
    letter-spacing:-0.01em; white-space:nowrap;
    text-shadow:0 2px 18px rgba(22,15,10,.45);
  }
  @media (max-width:480px){.hero h1{font-size:clamp(15px,7.6vw,20px);}}
  .hero p{font-size:19.5px; max-width:740px; margin:0 auto 36px; color:#f4ead9; text-shadow:0 1px 12px rgba(22,15,10,.5);}
  .hero-ctas{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}
  .btn-primary{background:var(--terracotta); color:#fff; padding:16px 30px; font-weight:600; font-size:15px; border-radius:8px; border:1px solid var(--terracotta); transition:background .18s ease;}
  .btn-primary:hover{background:#B14D24;}
  .btn-secondary{background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.85) !important; transition:background .18s ease; padding:16px 30px; font-weight:600; font-size:15px; border-radius:8px;}
  .btn-secondary:hover{background:rgba(255,255,255,.22);}

  /* ===== SHARED SECTION ===== */
  .section{padding:80px 48px; max-width:1180px; margin:0 auto;}
  .tag{font-family:'IBM Plex Mono'; text-transform:uppercase; letter-spacing:.12em; font-size:12px; color:#8a6f52; font-weight:500; margin-bottom:16px;}
  .tag--title{font-family:'IBM Plex Mono', monospace; text-transform:uppercase; letter-spacing:.09em; font-weight:500; font-size:15px; color:var(--ink); text-decoration:underline; text-underline-offset:5px; text-decoration-thickness:1.25px; margin-bottom:18px;}

  /* ===== HOW IT'S MADE ===== */
  .two-col{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; margin-bottom:70px;}
  .two-col h2{font-weight:700; font-size:34px; line-height:1.2; margin-bottom:20px;}
  .two-col p{font-size:17.5px; line-height:1.72; color:#5c574e; max-width:520px;}
  .photo{width:100%; border-radius:6px; overflow:hidden; aspect-ratio:4/3; background:var(--sand);}
  .made-heritage-row{margin-top:-30px;}
  .photo--portrait{aspect-ratio:auto;}
  .photo--portrait img{object-fit:contain; height:auto;}
  .made-scale-photo{aspect-ratio:16/10; margin-top:20px;}
  .photo img{width:100%; height:100%; object-fit:cover; display:block;}

  /* ===== MADE CAROUSEL ===== */
  .made-carousel{
    display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory;
    margin-top:44px; padding-bottom:4px; -webkit-overflow-scrolling:touch; scrollbar-width:none;
  }
  .made-carousel::-webkit-scrollbar{display:none;}
  .made-carousel .carousel-slide{
    flex:0 0 280px; scroll-snap-align:start; border-radius:8px; overflow:hidden;
    aspect-ratio:4/3; background:var(--sand); cursor:grab;
  }
  .made-carousel .carousel-slide img{width:100%; height:100%; object-fit:cover; display:block; pointer-events:none;}
  .carousel-dots{display:flex; gap:8px; justify-content:center; margin-top:16px;}
  .carousel-dots .dot{width:7px; height:7px; border-radius:50%; background:#e0d3b8; border:none; padding:0; cursor:pointer; transition:background .2s ease;}
  .carousel-dots .dot.active{background:#8a6f52;}
  @media (max-width:640px){.made-carousel .carousel-slide{flex-basis:76%;}}
  .made-carousel--side{margin-top:0;}
  .made-carousel--side .carousel-slide{flex:0 0 100%;}
  @media (max-width:640px){.made-split{grid-template-columns:1fr;}}
  #made{padding-top:44px; padding-bottom:44px;}
  .timeline{border-top:1px solid #e7dcc2; padding-top:48px; display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
  .step{text-align:center;}
  .step .icon-wrap{width:70px; height:70px; border-radius:50%; border:1.5px solid #e7dcc2; display:flex; align-items:center; justify-content:center; margin:0 auto 16px;}
  .step .icon-wrap svg{width:34px; height:34px; stroke:var(--ink); fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round;}
  .step .step-num{font-family:'IBM Plex Mono'; font-size:11px; color:#8a8377; margin-bottom:6px; letter-spacing:.05em;}
  .step h3{font-size:16px; margin-bottom:6px; font-weight:600;}
  .step p{font-size:13px; color:#8a8377;}

  .gallery-band{max-width:1180px; margin:0 auto; padding:0 48px 80px;} .gallery-band .gallery-item{height:auto; border-radius:8px; overflow:hidden; aspect-ratio:1142/894;} .gallery-band .gallery-item img{width:100%; height:100%; object-fit:cover;}
  .gallery-item{overflow:hidden; background:var(--sand);}
  .gallery-item img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease;}
  .gallery-item:hover img{transform:scale(1.03);}
  @media (max-width:700px){.gallery-band{grid-template-columns:1fr; height:auto;} .gallery-item{height:220px;}}

  /* ===== CALLOUT ===== */
  .callout{
    background-size:cover; background-position:center;
    padding:90px 48px; text-align:center;
  }
  .callout p{
    font-family:'Bricolage Grotesque', sans-serif; font-size:23px; line-height:1.55;
    max-width:760px; margin:0 auto; color:#f7efe0; font-weight:500;
    text-shadow:0 1px 10px rgba(22,15,10,.5);
  }

  /* ===== FOUNDERS ===== */
  .founders{background:var(--white); text-align:center; border-radius:0;}
  .founders h2{font-size:28px; margin-bottom:16px;}
  .founders .tag{justify-content:center; display:flex;}
  .founders p{font-size:16px; max-width:620px; margin:0 auto; color:#5c574e; line-height:1.7;}

  /* ===== WHY ADOBE ===== */
  .why-adobe{background:var(--sand);}
  .why-intro-centered{text-align:left; margin:0 auto 48px; max-width:1040px;}
  .why-intro-centered .tag{justify-content:flex-start; display:flex;}
  .why-intro-centered .lede{text-align:left; color:#5c574e; margin:0 0 14px; font-size:17.5px; line-height:1.68; max-width:760px;}
  .why-intro-centered .lede:last-child{margin-bottom:0;}
  .who-we-are{padding-bottom:40px;}
  .why-adobe h2{font-size:32px; margin:0 0 14px;}
  .why-list--grid{display:grid; grid-template-columns:1fr 1fr; gap:28px; max-width:1040px; margin:0 auto;}
  .why-item{background:#fff; border-radius:10px; padding:34px 34px 32px; box-shadow:0 6px 20px rgba(43,33,27,.08); border-top:3px solid var(--terracotta);}
  .why-item h3{font-size:19px; margin-bottom:9px; font-weight:500;}
  .why-item p{font-size:16.5px; color:#5c574e; line-height:1.68;}
  @media (max-width:860px){.why-list--grid{grid-template-columns:1fr;}}

  /* ===== PRICING ===== */
  .pricing{background:var(--sand);}
  .pricing h2{font-size:32px; text-align:center; margin-bottom:10px;}
  .pricing .tag{justify-content:center; display:flex;}
  .pricing > p.lede{text-align:center; color:#5c574e; margin:0 auto 44px; font-size:15px; max-width:720px;}
  .price-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
  .price-card{background:var(--white); border:1px solid #e7dcc2; border-radius:6px; padding:26px 20px; text-align:center; position:relative;}
  .price-card .name{font-weight:600; font-size:14px; margin-bottom:12px; display:flex; align-items:center; justify-content:center; gap:6px;}
  .price-card .price{font-family:'IBM Plex Mono'; font-size:26px; color:#2B211B; margin-bottom:4px;}
  .price-card .unit{font-size:11px; color:#8a8377;}
  .info-icon{
    width:16px; height:16px; border-radius:50%; border:1.3px solid #b9a688; background:none;
    color:#8a6f52; font-family:'IBM Plex Mono'; font-size:10.5px; line-height:1;
    display:inline-flex; align-items:center; justify-content:center; cursor:pointer; padding:0; flex:0 0 auto;
  }
  .info-icon:hover, .info-icon.open{background:#8a6f52; border-color:#8a6f52; color:var(--white);}
  @media (max-width:640px){
    .info-icon{width:26px; height:26px; font-size:13px;}
    .info-pop{width:min(240px, 78vw);}
  }
  .info-pop{
    display:none; position:absolute; top:calc(100% - 4px); left:50%; transform:translateX(-50%);
    width:220px; background:#2B211B; color:var(--sand); border-radius:8px; padding:14px 16px;
    font-size:12.5px; line-height:1.6; text-align:left; z-index:10; box-shadow:0 10px 24px rgba(0,0,0,.25);
  }
  .info-pop.open{display:block;}
  .info-pop .info-size{font-family:'IBM Plex Mono'; font-size:11.5px; color:#e0c9a3; margin-bottom:6px; display:block;}

  /* ===== ESTIMATOR CTA ===== */
  .price-group-label{font-size:19px; font-weight:600; margin-bottom:6px; text-align:center;}
  .price-group-sub{font-size:14px; color:#5c574e; text-align:center; max-width:520px; margin:0 auto 24px;}
  .price-note{font-family:'IBM Plex Mono'; font-size:11px; color:#8a6f52; margin-top:8px;}
  .price-caveat{font-family:'IBM Plex Mono'; font-size:11.5px; color:#8a8377; text-align:center; margin-top:26px;}
  .pricing-panel{display:none;}
  .pricing-panel.active{display:block;}
  .pricing-order-cta{display:flex; justify-content:center; margin-top:36px;}
  .calc-submit.pricing-order-btn{
    display:inline-block; width:auto; padding:16px 34px; text-decoration:none;
    background:var(--terracotta); color:#fff; border:1px solid var(--terracotta);
    box-shadow:0 2px 10px rgba(43,33,27,.06); text-align:center;
  }
  .calc-submit.pricing-order-btn:hover{background:#B14D24;}
  .calc-submit--accent{background:var(--terracotta) !important;}
  .calc-submit--accent:hover{background:#B14D24 !important;}

  .estimator{background:var(--white); padding:80px 48px;}
  .estimator-inner{max-width:1080px; margin:0 auto;}
  .estimator h2{font-size:30px; margin:0 0 10px; text-align:center;}
  .estimator .tag{justify-content:center; display:flex;}
  .estimator > .estimator-inner > p.lede{max-width:720px; margin:0 auto 40px; color:#5c574e; font-size:15px; text-align:center;}
  .calc-card{
    background:var(--white); border:1px solid #d3ab84; border-radius:10px;
    display:grid; grid-template-columns:1.1fr 0.9fr; overflow:hidden;
    box-shadow:0 8px 28px rgba(43,33,27,.10);
  }
  .calc-form{padding:36px 34px;}
  .calc-results{background:#FAF7F0; border-left:1px solid #e7dcc2; padding:36px 34px; display:flex; flex-direction:column; justify-content:center;}
  .calc-field{margin-bottom:20px;}
  .calc-field label{display:block; font-size:13px; font-weight:600; margin-bottom:8px; color:#161311;}
  .field-hint{font-size:12px; color:#8a8377; margin:-4px 0 8px; line-height:1.5;}
  .calc-field select, .calc-field input[type=number], .calc-field input[type=email], .calc-field input[type=text]{
    width:100%; padding:12px 14px; border:1.5px solid #e7dcc2; border-radius:7px;
    font-family:'Hanken Grotesk', sans-serif; font-size:16px; color:#161311; background:var(--white);
  }
  .calc-field select:focus, .calc-field input:focus{outline:none; border-color:#8a6f52;}
  .seg-control{display:flex; gap:8px; flex-wrap:wrap;}
  .seg-btn{
    flex:1 1 auto; min-width:100px; padding:11px 12px;
    border:1.5px solid #e7dcc2; background:var(--white); border-radius:7px;
    font-family:'Hanken Grotesk', sans-serif; font-size:13.5px; font-weight:600;
    color:#5c574e; cursor:pointer; transition:all .15s ease; text-align:center;
  }
  .seg-btn:hover{border-color:#8a6f52; color:#161311;}
  .seg-btn.active{background:#2B211B; border-color:#2B211B; color:var(--white);}
  .mode-toggle{max-width:440px; margin:0 auto 28px;}
  .mode-toggle .seg-btn{background:transparent; border-color:#c49a73;}
  .mode-toggle .seg-btn.active{background:#2B211B; border-color:#2B211B;}
  .advanced-toggle{
    display:flex; align-items:center; gap:7px; background:none; border:none;
    padding:6px 0; margin:2px 0 8px; font-family:'Hanken Grotesk', sans-serif;
    font-size:13.5px; font-weight:600; color:#8a6f52; cursor:pointer;
  }
  .advanced-toggle svg{width:13px; height:13px; stroke:#8a6f52; transition:transform .2s ease;}
  .advanced-toggle.open svg{transform:rotate(180deg);}
  .advanced-panel{border-top:1px solid #eee2cd; padding-top:18px; margin-top:4px; display:none;}
  .advanced-panel.open{display:block;}
  .result-big{font-family:'IBM Plex Mono'; font-size:44px; color:#2B211B; line-height:1;}
  .result-label{font-size:13px; color:#8a8377; margin-bottom:26px; margin-top:6px;}
  .result-row{display:flex; justify-content:space-between; font-size:14px; padding:9px 0; border-bottom:1px solid #eee2cd;}
  .result-row .val{font-family:'IBM Plex Mono'; font-weight:500;}
  .calc-disclaimer{font-size:12px; color:#8a8377; margin-top:20px; line-height:1.55;}
  .calc-confirm-note{font-size:12px; color:#8a6f52; margin-top:10px; text-align:center; line-height:1.5;}
  .calc-submit{
    width:100%; background:#2B211B; color:var(--white); border:none;
    padding:14px; border-radius:7px; font-weight:600; font-size:14.5px;
    font-family:'Hanken Grotesk', sans-serif; cursor:pointer; margin-top:8px;
  }
  .calc-submit:hover{background:#3a2d22;}
  .calc-status{font-size:13px; margin-top:10px; text-align:center;}

  /* Wall length helper */
  .length-helper-link{
    background:none; border:none; padding:0; margin-top:6px; display:block;
    font-family:'Hanken Grotesk', sans-serif; font-size:13px; font-weight:600;
    color:#8a6f52; cursor:pointer; text-decoration:underline; text-underline-offset:3px;
  }
  .length-helper-link:hover{color:#6b5847;}
  .length-modal .seg-control{margin-bottom:22px;}
  .length-panel{display:none;}
  .length-panel.active{display:block;}
  .length-note{font-size:12.5px; color:#8a8377; line-height:1.55; margin-top:-6px; margin-bottom:20px;}
  .seg-row-fields{display:flex; gap:8px; align-items:center;}
  .seg-row-fields input{flex:1;}
  .seg-remove{
    flex:0 0 auto; width:38px; height:38px; border:1.5px solid #e7dcc2; border-radius:7px;
    background:var(--white); color:#8a8377; font-size:18px; cursor:pointer; line-height:1;
  }
  .seg-remove:hover{border-color:#CB5A2E; color:#CB5A2E;}
  .length-add-btn{
    background:none; border:1.5px dashed #c49a73; border-radius:7px; width:100%;
    padding:11px; font-family:'Hanken Grotesk', sans-serif; font-size:13.5px; font-weight:600;
    color:#8a6f52; cursor:pointer; margin-bottom:20px;
  }
  .length-add-btn:hover{border-color:#8a6f52; color:#6b5847;}
  .length-result{
    background:#F6EEDD; border-radius:7px; padding:14px 16px; text-align:center;
    font-size:14px; color:#5c574e; margin-bottom:16px;
  }
  .length-result strong{font-family:'IBM Plex Mono'; font-size:18px; color:#161311;}

  @media (max-width:820px){
    .calc-card{grid-template-columns:1fr;}
    .calc-results{border-left:none; border-top:1px solid #e7dcc2;}
  }

  /* ===== NOTES CAPTURE ===== */
  .notes-capture{background-size:cover; background-position:center; padding:90px 48px; text-align:center;}
  .notes-inner{max-width:560px; margin:0 auto;}
  .notes-capture .tag{justify-content:center; display:flex; color:#e8d9be;}
  .notes-capture h2{font-size:28px; margin-bottom:14px; color:#fff; text-shadow:0 1px 10px rgba(22,15,10,.5);}
  .notes-capture p{font-size:15.5px; color:#f0e7d6; line-height:1.65; margin-bottom:26px; text-shadow:0 1px 8px rgba(22,15,10,.5);}
  .notes-form{display:flex; gap:10px; max-width:580px; margin:0 auto;}
  .notes-form input, .notes-form select{
    flex:1; padding:14px 16px; border:1.5px solid #e7dcc2; border-radius:8px;
    font-family:'Hanken Grotesk', sans-serif; font-size:16px; color:#161311; background:#fff;
  }
  .notes-form select{flex:0 0 170px;}
  .notes-form input:focus, .notes-form select:focus{outline:none; border-color:#8a6f52;}
  .notes-form button{
    background:#fff; color:#2B211B; border:none; padding:14px 22px; border-radius:8px;
    font-family:'Hanken Grotesk', sans-serif; font-weight:600; font-size:14.5px; cursor:pointer;
    transition:background .18s ease;
  }
  .notes-form button:hover{background:#efe6d6;}
  @media (max-width:520px){.notes-form{flex-direction:column;}}

  /* ===== FOOTER ===== */
  footer{background:#2B211B; color:var(--sand); padding:56px 48px 28px;}
  .footer-inner{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; padding-bottom:36px; border-bottom:1px solid rgba(242,234,216,.2);}
  .footer-brand{display:flex; align-items:center; gap:10px; margin-bottom:14px;}
  .footer-brand img{height:32px;}
  .footer-brand .wordmark{font-family:'Bricolage Grotesque'; font-weight:500; font-size:15px; letter-spacing:.03em; text-transform:uppercase; color:var(--sand);}
  footer p.desc{font-size:13.5px; opacity:.6; max-width:280px;}
  footer h4{font-size:12px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px; opacity:.6; font-weight:500;}
  footer ul{list-style:none;}
  footer li{margin-bottom:9px; font-size:13.5px; opacity:.85;}
  .footer-bottom{max-width:1180px; margin:22px auto 0; font-size:11.5px; opacity:.5; display:flex; justify-content:space-between;}

  @media (max-width:860px){
    .why-list, .price-grid, .footer-inner{grid-template-columns:1fr;}
  }

  @media (max-width:640px){
    .pricing-order-btn{font-size:14px; padding:14px 20px; line-height:1.4;}
  }
  @media (max-width:640px){
    .two-col{grid-template-columns:1fr;}

    .section, .estimator{padding-left:24px; padding-right:24px;}
    .photo{aspect-ratio:16/10; max-height:280px;}
    .photo--portrait{aspect-ratio:auto; max-height:none;}
    .made-heritage-row{margin-top:0;}
  }
  @media (min-width:641px) and (max-width:860px){
    .two-col{gap:32px;}
    .two-col h2{font-size:26px;}
    .two-col p{font-size:14.5px;}
    .section{padding:60px 28px;}
  }

  script-hidden{display:none;}