  :root{
    --cream: #f6efe3;
    --cream-2: #f1e8d7;
    --bone: #ece2d1;
    --paper: #efe6d4;
    --parchment: #e7dcc6;
    --terracotta: #b4593a;
    --terracotta-deep: #8f4227;
    --bronze: #8a6a3b;
    --bronze-light: #b08a52;
    --walnut: #2f2117;
    --walnut-soft: #4a3626;
    --ink: #1e140c;
    --sepia: #7a5a3a;
    --rule: #d8c7a7;
    --rule-soft: #e6d9bf;
    --shadow-sm: 0 10px 30px rgba(47,33,23,0.08);
    --shadow-md: 0 24px 60px rgba(47,33,23,0.12);
    --shadow-lg: 0 40px 100px rgba(47,33,23,0.18);
    --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --display: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  *{box-sizing:border-box;margin:0;padding:0}
  /* Standard CSS-reset rule: the HTML `hidden` attribute must always win.
     Without this, any `display: flex/grid/...` rule beats the UA default
     [hidden]{display:none}, leaving elements visible when we set .hidden=true. */
  [hidden]{ display: none !important; }
  html{scroll-behavior:smooth}
  body{
    font-family: var(--sans);
    color: var(--walnut);
    background: var(--cream);
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x:hidden;
    font-weight:400;
    position:relative;
  }
  /* Very subtle grain — more refined than original */
  body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index: 9999;
    opacity:0.18;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.28 0 0 0 0 0.20 0 0 0 0 0.12 0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  img{max-width:100%;display:block}
  a{color:inherit;text-decoration:none}
  button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}

  /* ---------- GRID CONTAINERS ---------- */
  .container{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .container-narrow{
    max-width: 960px;
    margin: 0 auto;
    padding: 0 48px;
  }

  /* Editorial small-caps eyebrow */
  .eyebrow{
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    font-weight: 500;
    display: inline-flex;
    align-items:center;
    gap: 14px;
  }
  .eyebrow::before{
    content:"";
    width: 36px; height:1px;
    background: var(--terracotta-deep);
  }
  .eyebrow.centered{ justify-content:center; }
  .eyebrow.centered::after{
    content:"";
    width: 36px; height:1px;
    background: var(--terracotta-deep);
  }
  .eyebrow.on-dark{ color: var(--bronze-light); }
  .eyebrow.on-dark::before, .eyebrow.on-dark::after{ background: var(--bronze-light); }

  /* Section titles */
  .h-display{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(40px, 5.2vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.015em;
    color: var(--walnut);
  }
  .h-display em{
    font-style: italic;
    color: var(--terracotta-deep);
    font-weight: 400;
  }

  /* ---------- TOP MARQUEE / ANNOUNCE ---------- */
  .announce{
    background: var(--walnut);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 16px;
    position: relative;
    z-index: 101;
  }
  .announce span{ color: var(--bronze-light); margin: 0 10px; }

  /* ---------- NAV ---------- */
  .nav{
    position: sticky;
    top:0;
    z-index: 100;
    background: rgba(246,239,227,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(138,106,59,0.14);
    transition: all .4s ease;
  }
  .nav-inner{
    display:grid;
    grid-template-columns: auto 1fr auto;
    align-items:center;
    gap: 40px;
    padding: 20px 48px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .brand{
    display:flex; align-items:center; gap:14px;
  }
  .brand-logo{
    height: 56px;
    width: auto;
    display: block;
    /* Darken the gold so it reads strongly against the cream nav background. */
    filter: brightness(0.7) contrast(1.15) saturate(1.1);
  }
  .brand-text{
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .brand-name{
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: 0.04em;
    color: var(--walnut);
    font-weight: 500;
  }
  .brand-sub{
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--sepia);
    margin-top: 4px;
  }
  .nav-links{
    display:flex; gap: 40px;
    list-style:none;
    justify-self: center;
  }
  .nav-links a{
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--walnut-soft);
    transition: color .3s;
    font-weight: 500;
  }
  .nav-links a:hover{ color: var(--terracotta-deep); }
  .nav-links a.nav-link-accent{
    color: var(--terracotta-deep);
    position: relative;
    padding-bottom: 3px;
  }
  .nav-links a.nav-link-accent::after{
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--terracotta-deep);
    opacity: 0.55;
    transform: scaleX(0.6);
    transform-origin: left;
    transition: transform .3s, opacity .3s;
  }
  .nav-links a.nav-link-accent:hover::after{ transform: scaleX(1); opacity: 1; }
  .nav-links a.nav-link-accent::before{
    content: "✦";
    font-size: 8px;
    margin-right: 6px;
    vertical-align: 1px;
    color: var(--bronze-light);
  }
  .nav-actions{
    display:flex; align-items:center; gap: 20px;
  }
  .nav-call{
    display:flex; align-items:center; gap: 10px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--walnut);
    font-weight: 500;
    transition: color .3s;
  }
  .nav-call .icon-phone{
    width: 14px; height: 14px;
    display:inline-block;
    color: var(--terracotta-deep);
  }
  .nav-call:hover{ color: var(--terracotta-deep); }
  .nav-call small{
    display:block;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--sepia);
    font-weight: 400;
    margin-bottom: 2px;
  }
  .nav-cta{
    display:inline-flex;
    font-family: var(--sans);
    font-size: 11.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 13px 22px;
    background: var(--walnut);
    color: var(--cream);
    border: 1px solid var(--walnut);
    transition: all .3s;
    font-weight: 500;
  }
  .nav-cta:hover{
    background: var(--terracotta-deep);
    border-color: var(--terracotta-deep);
  }
  .nav-toggle{ display:none; }

  /* ---------- HERO ---------- */
  .hero{
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid{
    display:grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .hero-content{ position: relative; }
  .hero-eyebrow{ margin-bottom: 36px; }
  .hero h1{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(48px, 6.6vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.022em;
    color: var(--walnut);
    margin-bottom: 32px;
  }
  .hero h1 em{
    font-style: italic;
    color: var(--terracotta-deep);
    font-weight: 400;
  }
  .hero-tagline{
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.25;
    color: var(--terracotta-deep);
    margin: -16px 0 28px;
    max-width: 540px;
    font-weight: 400;
  }
  .hero-lede{
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.7;
    color: var(--walnut-soft);
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 300;
  }
  .hero-lede strong{
    color: var(--walnut);
    font-weight: 500;
  }

  .hero-cta-row{
    display:flex; gap:16px; flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 10px;
    padding: 18px 30px;
    background: var(--walnut);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid var(--walnut);
    transition: all .35s;
    font-weight: 500;
    cursor: pointer;
  }
  .btn-primary:hover{
    background: var(--terracotta-deep);
    border-color: var(--terracotta-deep);
    transform: translateY(-1px);
  }
  .btn-primary.on-bronze{
    background: var(--bronze-light);
    color: var(--walnut);
    border-color: var(--bronze-light);
  }
  .btn-primary.on-bronze:hover{
    background: transparent;
    color: var(--bronze-light);
  }
  .btn-ghost{
    display:inline-flex; align-items:center; gap:10px;
    padding: 18px 4px;
    color: var(--walnut);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--walnut);
    transition: all .3s;
    font-weight: 500;
  }
  .btn-ghost:hover{ color: var(--terracotta-deep); border-color: var(--terracotta-deep); }

  .hero-reassure{
    font-family: var(--serif);
    font-style: italic;
    font-size: 14.5px;
    color: var(--sepia);
    font-weight: 300;
    max-width: 440px;
  }

  .hero-image-wrap{
    position: relative;
  }
  .hero-image{
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .hero-image img{
    width:100%; height:100%;
    object-fit: cover;
    object-position: center center;
    filter: sepia(0.08) saturate(1.02) brightness(1.02);
  }
  .hero-badge{
    position: absolute;
    top: 28px; left: -42px;
    padding: 18px 22px 16px;
    background: var(--cream);
    border: 1px solid var(--rule);
    box-shadow: var(--shadow-sm);
    text-align: left;
    z-index: 2;
  }
  .hero-badge .line-1{
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--sepia);
    margin-bottom: 6px;
  }
  .hero-badge .line-2{
    font-family: var(--display);
    font-style: italic;
    font-size: 28px;
    color: var(--terracotta-deep);
    line-height: 1;
  }
  .hero-badge .line-3{
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--walnut);
    margin-top: 4px;
  }
  .hero-caption{
    position: absolute;
    bottom: -32px; right: -32px;
    background: var(--cream);
    padding: 22px 26px;
    border: 1px solid var(--rule);
    font-family: var(--display);
    font-style: italic;
    font-size: 17px;
    color: var(--walnut-soft);
    max-width: 280px;
    box-shadow: var(--shadow-sm);
    line-height: 1.4;
  }
  .hero-caption::before{
    content:"“";
    position: absolute;
    top: -10px; left: 16px;
    font-family: var(--display);
    font-size: 52px;
    color: var(--terracotta);
    line-height: 1;
    background: var(--cream);
    padding: 0 6px;
  }
  .hero-caption cite{
    display:block;
    margin-top: 10px;
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sepia);
    font-style: normal;
  }

  /* ---------- TRUST STRIP ---------- */
  .trust-strip{
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--cream-2);
    padding: 28px 0;
  }
  .trust-row{
    display:grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
  }
  .trust-item{
    display:flex;
    flex-direction: column;
    gap: 4px;
    text-align:center;
    padding: 0 12px;
    border-right: 1px solid var(--rule);
  }
  .trust-item:last-child{ border-right: none; }
  .trust-headline{
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    color: var(--walnut);
    font-style: italic;
    line-height: 1;
  }
  .trust-headline .stars{
    color: var(--terracotta);
    font-style: normal;
    letter-spacing: -0.05em;
  }
  .trust-sub{
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sepia);
    font-weight: 500;
  }

  /* ---------- MATERIALS MARQUEE ---------- */
  .marquee{
    padding: 24px 0;
    background: var(--walnut);
    color: var(--cream);
    overflow: hidden;
    position: relative;
  }
  .marquee-track{
    display:flex;
    gap: 56px;
    animation: slide 55s linear infinite;
    white-space: nowrap;
  }
  .marquee-item{
    font-family: var(--display);
    font-style: italic;
    font-size: 20px;
    color: var(--cream);
    display:flex; align-items:center; gap: 56px;
    font-weight: 300;
  }
  .marquee-item::after{
    content: "✦";
    color: var(--bronze-light);
    font-style: normal;
    font-size: 11px;
  }
  @keyframes slide{
    from{transform: translateX(0)}
    to{transform: translateX(-50%)}
  }

  /* ---------- STORY / HERITAGE ---------- */
  .story{
    padding: 160px 0 140px;
    background: var(--cream);
    position: relative;
  }
  .story-grid{
    display:grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 120px;
    align-items: center;
  }
  .story-body .eyebrow{ margin-bottom: 28px; }
  .story-body h2{ margin-bottom: 44px; }
  .story-body p{
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.85;
    color: var(--walnut-soft);
    margin-bottom: 22px;
    font-weight: 300;
  }
  .story-body p:first-of-type::first-letter{
    font-family: var(--display);
    font-size: 74px;
    float: left;
    line-height: 0.85;
    margin-right: 14px;
    margin-top: 8px;
    color: var(--terracotta-deep);
    font-style: italic;
    font-weight: 500;
  }
  .story-signature{
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    display:flex; align-items:center; gap: 24px;
  }
  .sig-portrait{
    width: 64px; height: 64px;
    border-radius: 50%;
    overflow:hidden;
    border: 1px solid var(--rule);
  }
  .sig-portrait img{ width:100%;height:100%;object-fit:cover;filter: sepia(0.2);}
  .story-signature .who{
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sepia);
    line-height: 1.7;
  }
  .story-signature .who strong{
    display:block;
    color: var(--walnut);
    font-weight: 500;
    font-family: var(--display);
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-bottom: 4px;
  }

  .story-images{
    position: relative;
    height: 680px;
  }
  .story-img-1, .story-img-2{
    position: absolute;
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .story-img-1{
    width: 64%; height: 78%;
    top: 0; left: 0;
  }
  .story-img-2{
    width: 54%; height: 52%;
    bottom: 0; right: 0;
    border: 10px solid var(--cream);
  }
  .story-img-1 img, .story-img-2 img{
    width:100%; height:100%; object-fit: cover;
    filter: sepia(0.1) saturate(0.98);
  }
  .story-numeric{
    position: absolute;
    top: 10%; right: -30px;
    background: var(--cream);
    border: 1px solid var(--rule);
    padding: 24px 26px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    max-width: 180px;
  }
  .story-numeric .big{
    font-family: var(--display);
    font-style: italic;
    font-size: 48px;
    color: var(--terracotta-deep);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 500;
  }
  .story-numeric .tag{
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--walnut);
    font-weight: 500;
  }

  /* ---------- MATERIALS ---------- */
  .materials{
    padding: 160px 0 140px;
    background: var(--cream-2);
  }
  .materials-header{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 90px;
  }
  .materials-header h2{ margin-bottom: 0; }
  .materials-header p{
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.75;
    color: var(--walnut-soft);
    font-weight: 300;
    max-width: 460px;
    justify-self: end;
  }
  .materials-header .eyebrow{ margin-bottom: 28px; }

  .materials-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
  }
  .material-card{
    position: relative;
    transition: transform .6s;
  }
  .material-card:hover{ transform: translateY(-4px); }
  .material-img{
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
  }
  .material-img img{
    width:100%; height:100%; object-fit: cover;
    transition: transform 1.2s;
  }
  .material-card:hover .material-img img{ transform: scale(1.04); }
  .material-number{
    position: absolute;
    top: 20px; left: 20px;
    font-family: var(--display);
    font-style: italic;
    font-size: 26px;
    color: var(--cream);
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
    font-weight: 500;
  }
  .material-origin{
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin-bottom: 10px;
    font-weight: 500;
  }
  .material-name{
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
    color: var(--walnut);
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .material-name em{
    font-style: italic;
    color: var(--terracotta-deep);
  }
  .material-desc{
    font-family: var(--serif);
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--walnut-soft);
    font-weight: 300;
    margin-bottom: 20px;
  }
  .material-spec{
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sepia);
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    display:flex; justify-content:space-between;
    font-weight: 500;
  }

  .materials-footnote{
    margin-top: 72px;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--sepia);
    font-weight: 300;
  }
  .materials-footnote a{
    color: var(--terracotta-deep);
    border-bottom: 1px solid var(--terracotta-deep);
    padding-bottom: 2px;
  }

  /* ---------- CRAFT / PROCESS ---------- */
  .craft{
    padding: 160px 0 140px;
    background: var(--walnut);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .craft::before{
    content:"";
    position:absolute; inset:0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.88 0 0 0 0 0.78 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.5;
    pointer-events:none;
  }
  .craft-inner{ position: relative; z-index: 1; }
  .craft-header{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items:end;
    margin-bottom: 110px;
  }
  .craft .h-display{ color: var(--cream); }
  .craft .h-display em{ color: var(--bronze-light); }
  .craft-lede{
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.8;
    color: rgba(246,239,227,0.72);
    font-weight: 300;
  }

  .craft-steps{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px;
  }
  .craft-step{
    position: relative;
  }
  .craft-step-num{
    font-family: var(--display);
    font-style: italic;
    font-size: 60px;
    color: var(--bronze-light);
    line-height:1;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(176,138,82,.3);
    font-weight: 500;
  }
  .craft-step-title{
    font-family: var(--display);
    font-size: 26px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 14px;
    line-height:1.2;
  }
  .craft-step-title em{ font-style: italic; color: var(--bronze-light); }
  .craft-step-desc{
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(246,239,227,0.7);
    font-weight: 300;
  }
  .craft-step-meta{
    margin-top: 18px;
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--bronze-light);
    font-weight: 500;
  }

  .craft-cta-row{
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(176,138,82,.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .craft-quote{
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--cream);
    font-weight: 300;
    max-width: 560px;
  }
  .craft-quote cite{
    display:block;
    margin-top: 14px;
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--bronze-light);
    font-weight: 500;
  }

  /* ---------- PROJECTS ---------- */
  .projects{
    padding: 160px 0 140px;
    background: var(--cream);
  }
  .projects-header{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 90px;
  }
  .projects-header p{
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.75;
    color: var(--walnut-soft);
    font-weight: 300;
    justify-self: end;
    max-width: 460px;
  }
  .projects-header .eyebrow{ margin-bottom: 28px; }
  .projects-grid{
    display:grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
  }
  .project{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--parchment);
  }
  .project-img{
    aspect-ratio: 16/11;
    overflow: hidden;
  }
  .project-img img{
    width:100%; height:100%; object-fit: cover;
    transition: transform 1.2s;
    filter: sepia(0.05);
  }
  .project:hover .project-img img{ transform: scale(1.05); }
  .project-tall .project-img{ aspect-ratio: 4/5.4; }
  .project-meta{
    padding: 28px 32px 32px;
    background: var(--parchment);
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .project-type{
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    font-weight: 500;
  }
  .project-name{
    font-family: var(--display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--walnut);
  }
  .project-name em{ font-style: italic; color: var(--terracotta-deep); }
  .project-detail{
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--walnut-soft);
    font-weight: 300;
  }
  .projects-row-2{
    display:grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    margin-top: 40px;
  }
  .projects-row-2.projects-single{
    grid-template-columns: 1fr;
  }
  .projects-single .project-img{
    aspect-ratio: 16/9;
  }
  .projects-cta{
    margin-top: 72px;
    text-align: center;
  }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials{
    padding: 160px 0;
    background: var(--parchment);
    position: relative;
  }
  .testimonials-header{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
  }
  .testimonials-header h2{ margin-top: 20px; }

  .testimonial-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .testimonial-card{
    background: var(--cream);
    padding: 48px 44px;
    border: 1px solid var(--rule);
    position: relative;
  }
  .testimonial-card.featured{
    grid-column: 1 / -1;
    padding: 60px 72px;
    text-align: center;
  }
  .testimonial-card .stars{
    color: var(--terracotta);
    letter-spacing: 0.1em;
    font-size: 16px;
    margin-bottom: 18px;
  }
  .testimonial-card blockquote{
    font-family: var(--display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    color: var(--walnut);
    font-style: italic;
    margin-bottom: 28px;
  }
  .testimonial-card.featured blockquote{
    font-size: clamp(24px, 2.6vw, 32px);
    max-width: 820px;
    margin: 0 auto 36px;
  }
  .testimonial-card blockquote span{ color: var(--terracotta-deep); }
  .testimonial-attr{
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
  }
  .testimonial-card.featured .testimonial-attr{
    justify-content: center;
    border-top: none;
    padding-top: 0;
  }
  .attr-portrait{
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--rule);
    flex-shrink: 0;
  }
  .attr-portrait img{ width:100%;height:100%;object-fit:cover;filter: sepia(0.15);}
  .attr-text strong{
    display:block;
    font-family: var(--display);
    font-style: italic;
    font-size: 17px;
    color: var(--walnut);
    font-weight: 500;
    margin-bottom: 2px;
  }
  .attr-text span{
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sepia);
    font-weight: 400;
  }

  /* ---------- FAQ ---------- */
  .faq{
    padding: 160px 0 140px;
    background: var(--cream);
  }
  .faq-grid{
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: start;
  }
  .faq-intro .eyebrow{ margin-bottom: 28px; }
  .faq-intro h2{ margin-bottom: 28px; }
  .faq-intro p{
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.75;
    color: var(--walnut-soft);
    font-weight: 300;
    margin-bottom: 32px;
  }
  .faq-intro-card{
    background: var(--parchment);
    border: 1px solid var(--rule);
    padding: 28px 30px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .faq-intro-card .ico{
    width: 36px; height: 36px;
    background: var(--walnut);
    color: var(--cream);
    border-radius: 50%;
    display: flex; align-items:center; justify-content:center;
    flex-shrink: 0;
    font-family: var(--display);
    font-style: italic;
    font-size: 18px;
  }
  .faq-intro-card strong{
    display: block;
    font-family: var(--display);
    font-style: italic;
    font-size: 20px;
    color: var(--walnut);
    margin-bottom: 4px;
    font-weight: 500;
  }
  .faq-intro-card a{
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--terracotta-deep);
    font-weight: 500;
  }

  .faq-list{
    border-top: 1px solid var(--rule);
  }
  .faq-item{
    border-bottom: 1px solid var(--rule);
  }
  .faq-q{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 4px;
    cursor: pointer;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    color: var(--walnut);
    line-height: 1.3;
    transition: color .25s;
  }
  .faq-q:hover{ color: var(--terracotta-deep); }
  .faq-q .plus{
    font-family: var(--sans);
    font-size: 22px;
    color: var(--terracotta-deep);
    font-weight: 300;
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 24px;
  }
  .faq-item.open .faq-q .plus{ transform: rotate(45deg); }
  .faq-a{
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
  }
  .faq-a-inner{
    padding: 0 4px 28px;
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.8;
    color: var(--walnut-soft);
    font-weight: 300;
    max-width: 640px;
  }
  .faq-item.open .faq-a{ max-height: 400px; }

  /* ---------- SHOWROOM ---------- */
  .showroom{
    padding: 160px 0 140px;
    background: var(--cream-2);
  }
  .showroom-grid{
    display:grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 100px;
    align-items: stretch;
  }
  .showroom-img{
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .showroom-img img{
    width:100%; height:100%;
    object-fit: cover;
    min-height: 640px;
    filter: sepia(0.06);
  }
  .showroom-info{
    padding: 12px 0;
  }
  .showroom-info .eyebrow{ margin-bottom: 28px; }
  .showroom-info h2{ margin-bottom: 28px; }
  .showroom-info > p{
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.8;
    color: var(--walnut-soft);
    margin-bottom: 40px;
    font-weight: 300;
  }

  .address-card{
    background: var(--cream);
    padding: 40px 36px;
    border: 1px solid var(--rule);
    position: relative;
    margin-bottom: 24px;
  }
  .address-card h4{
    font-family: var(--display);
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: var(--walnut);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
  }
  .addr-block{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px 20px;
    font-family: var(--serif);
    font-size: 15.5px;
    color: var(--walnut-soft);
    line-height: 1.6;
    font-weight: 300;
  }
  .addr-block dt{
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    font-weight: 500;
    padding-top: 4px;
  }
  .addr-block dd{
    margin: 0;
  }
  .addr-block dd a{
    color: var(--walnut);
    border-bottom: 1px solid var(--rule);
    padding-bottom: 2px;
    transition: border-color .25s;
  }
  .addr-block dd a:hover{ border-color: var(--terracotta-deep); }

  .addr-hours{
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--rule);
  }
  .addr-hours h5{
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin-bottom: 14px;
    font-weight: 500;
  }
  .addr-hours-row{
    display:flex; justify-content: space-between;
    font-family: var(--serif);
    font-size: 14.5px;
    color: var(--walnut-soft);
    padding: 6px 0;
    font-weight: 300;
  }
  .addr-hours-row span:first-child{ color: var(--walnut); }

  .contact-person{
    background: var(--parchment);
    padding: 28px 30px;
    border: 1px solid var(--rule);
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .contact-person-img{
    width: 72px; height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--cream);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .contact-person-img img{ width:100%;height:100%;object-fit:cover;filter:sepia(0.12);}
  .contact-person strong{
    display:block;
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    color: var(--walnut);
    margin-bottom: 2px;
    font-weight: 500;
  }
  .contact-person .role{
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sepia);
    margin-bottom: 10px;
    font-weight: 500;
  }
  .contact-person a.phone-link{
    font-family: var(--display);
    font-size: 20px;
    color: var(--terracotta-deep);
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .contact-person a.phone-link:hover{ text-decoration: underline; }

  /* ---------- CONSULTATION / CONTACT ---------- */
  .capture{
    padding: 160px 0 140px;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .capture::before{
    content:"";
    position:absolute; inset:0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.7 0 0 0 0 0.4 0 0 0 0.1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.4;
    pointer-events:none;
  }
  .capture-inner{
    position: relative;
    z-index: 1;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .capture-left .kicker{
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 22px;
    display:flex; align-items:center; gap: 14px;
  }
  .capture-left .kicker::before{
    content:""; width:32px; height:2px; background: var(--terracotta);
  }
  .capture-left h2{
    font-family: var(--display);
    font-size: clamp(44px, 6vw, 80px);
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 32px;
  }
  .capture-left h2 em{ font-style: italic; color: var(--bronze-light); font-weight: 500; }
  .capture-left > p{
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.75;
    color: rgba(246,239,227,0.78);
    margin-bottom: 36px;
    font-weight: 300;
    max-width: 520px;
  }
  .capture-promise{
    list-style: none;
    display:grid; gap: 18px;
    padding: 24px 0;
    border-top: 1px solid rgba(176,138,82,.25);
    border-bottom: 1px solid rgba(176,138,82,.25);
    margin-bottom: 30px;
  }
  .capture-promise li{
    list-style: none;
    font-family: var(--serif);
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(246,239,227,0.85);
    padding-left: 30px;
    position: relative;
    font-weight: 300;
  }
  .capture-promise li::before{
    content: "✦";
    position: absolute;
    left: 0; top: 1px;
    color: var(--bronze-light);
    font-size: 15px;
  }
  .capture-promise li strong{ color: var(--cream); font-weight: 500; }
  .capture-person{
    display:flex; align-items:center; gap: 16px;
    padding: 20px 0 0;
  }
  .capture-person img{
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--bronze-light);
  }
  .capture-person .txt{
    font-family: var(--display);
    font-style: italic;
    font-size: 17px;
    color: rgba(246,239,227,0.85);
    line-height: 1.4;
    font-weight: 300;
  }
  .capture-person .txt strong{
    color: var(--bronze-light);
    font-weight: 500;
    font-style: normal;
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: var(--sans);
  }
  .capture-person .txt a{
    color: var(--bronze-light);
    border-bottom: 1px solid rgba(176,138,82,0.45);
  }

  .capture-form{
    background: var(--cream);
    color: var(--walnut);
    padding: 48px 44px 42px;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .capture-form h3{
    font-family: var(--display);
    font-size: 30px;
    line-height: 1.1;
    color: var(--walnut);
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
  }
  .capture-form h3 em{ font-style: italic; color: var(--terracotta-deep); }
  .capture-form .sub{
    font-family: var(--display);
    font-size: 15px;
    color: var(--sepia);
    margin-bottom: 28px;
    font-style: italic;
    font-weight: 400;
  }
  .step-dots{
    display:flex; gap: 6px; margin-bottom: 24px;
  }
  .step-dot{
    flex: 1; height: 3px; background: var(--rule);
    transition: background .3s;
  }
  .step-dot.active{ background: var(--terracotta-deep); }
  .form-step{ display: none; }
  .form-step.active{ display: block; }
  .form-title-small{
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .tile-row{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  .tile{
    padding: 24px 12px;
    border: 1.5px solid var(--rule);
    background: var(--cream);
    font-family: var(--display);
    font-size: 17px;
    color: var(--walnut);
    cursor: pointer;
    transition: all .25s;
    font-weight: 500;
    text-align: center;
    font-style: italic;
  }
  .tile:hover{ border-color: var(--terracotta-deep); color: var(--terracotta-deep); }
  .tile.selected{
    border-color: var(--terracotta-deep);
    background: var(--terracotta-deep);
    color: var(--cream);
  }
  .radio-row{
    display:flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 20px;
  }
  .radio-pill{
    padding: 10px 16px;
    border: 1px solid var(--rule);
    background: transparent;
    font-family: var(--sans);
    font-size: 12px;
    color: var(--walnut-soft);
    cursor: pointer;
    transition: all .25s;
    font-weight: 500;
    letter-spacing: 0.03em;
  }
  .radio-pill:hover{ border-color: var(--terracotta-deep); color: var(--terracotta-deep); }
  .radio-pill.selected{
    background: var(--terracotta-deep);
    border-color: var(--terracotta-deep);
    color: var(--cream);
  }
  .form-row{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-field{
    margin-bottom: 18px;
  }
  .form-field.full{ grid-column: 1 / -1; }
  .form-field label{
    display:block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .form-field input,
  .form-field textarea,
  .form-field select{
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--rule);
    padding: 10px 0 12px;
    font-family: var(--serif);
    font-size: 16px;
    color: var(--walnut);
    font-weight: 400;
    outline: none;
    transition: border-color .3s;
    appearance: none;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder{
    color: var(--sepia);
    opacity: 0.55;
    font-style: italic;
  }
  .form-field select{
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%238f4227' stroke-width='1.2' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 24px;
  }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus{
    border-bottom-color: var(--terracotta-deep);
  }
  .form-consent{
    font-family: var(--sans);
    font-size: 11px;
    color: var(--sepia);
    line-height: 1.55;
    margin: 14px 0 22px;
    display:flex; gap: 10px; align-items: flex-start;
  }
  .form-consent input{
    margin-top: 3px;
    accent-color: var(--terracotta-deep);
    flex-shrink: 0;
  }
  .form-nav{
    display:flex; justify-content: space-between; gap: 12px; align-items: center;
    margin-top: 22px;
  }
  .form-back{
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--walnut-soft);
    font-weight: 500;
    cursor: pointer;
  }
  .form-back:hover{ color: var(--terracotta-deep); }
  .form-next{
    padding: 16px 28px;
    background: var(--terracotta-deep);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--terracotta-deep);
    transition: all .3s;
    cursor: pointer;
    margin-left: auto;
  }
  .form-next:hover{ background: var(--walnut); border-color: var(--walnut); }
  .form-success{
    display: none;
    text-align: center;
    padding: 40px 0 20px;
  }
  .form-success.show{ display: block; }
  .form-success .big{
    font-family: var(--display);
    font-size: 28px;
    color: var(--terracotta-deep);
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 500;
  }
  .form-success p{
    font-family: var(--serif);
    font-size: 15px;
    color: var(--walnut-soft);
    line-height: 1.6;
  }

  /* ---------- FOOTER ---------- */
  .footer{
    background: var(--ink);
    color: rgba(246,239,227,0.6);
    padding: 90px 0 40px;
    position: relative;
    border-top: 1px solid rgba(176,138,82,.2);
  }
  .footer-grid{
    display:grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
  }
  .footer-brand-logo{
    height: 52px;
    width: auto;
    margin-bottom: 22px;
    display: block;
    /* Flatten the gold mark to the same cream-at-60% the body copy uses. */
    filter: brightness(0) invert(1) opacity(0.6);
  }
  .footer-brand p{
    font-family: var(--serif);
    font-style: italic;
    font-size: 14.5px;
    color: rgba(246,239,227,0.5);
    max-width: 320px;
    margin-top: 14px;
    line-height: 1.75;
    font-weight: 300;
  }
  .footer-contact-block{
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(176,138,82,.15);
  }
  .footer-contact-block .name{
    font-family: var(--display);
    font-style: italic;
    font-size: 20px;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 2px;
  }
  .footer-contact-block .label{
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bronze-light);
    margin-bottom: 10px;
    font-weight: 500;
  }
  .footer-contact-block a.phone{
    font-family: var(--display);
    font-size: 22px;
    color: var(--bronze-light);
    font-weight: 500;
    display: block;
    letter-spacing: 0.01em;
  }
  .footer-col h5{
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--bronze-light);
    margin-bottom: 22px;
    font-weight: 600;
  }
  .footer-col ul{ list-style: none; }
  .footer-col li{
    padding: 6px 0;
  }
  .footer-col li a, .footer-col li{
    font-family: var(--serif);
    font-size: 15px;
    color: rgba(246,239,227,0.55);
    font-weight: 300;
    transition: color .25s;
  }
  .footer-col a:hover{ color: var(--bronze-light); }
  .footer-bottom{
    padding-top: 36px;
    border-top: 1px solid rgba(176,138,82,.15);
    display:flex; justify-content:space-between; flex-wrap: wrap; gap: 20px;
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    color: rgba(246,239,227,0.38);
    text-transform: uppercase;
    font-weight: 400;
  }
  .footer-crest{
    font-family: var(--display);
    font-style: italic;
    font-size: 18px;
    color: var(--bronze-light);
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 400;
  }

  /* ---------- STICKY MOBILE CTA ---------- */
  .sticky-cta{
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 120;
    background: var(--walnut);
    border-top: 1px solid var(--bronze);
    padding: 10px;
    gap: 8px;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
  }
  .sticky-cta a{
    flex: 1;
    padding: 14px 8px;
    font-family: var(--sans);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .sticky-call{
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--bronze-light);
  }
  .sticky-book{
    background: var(--bronze-light);
    color: var(--walnut);
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1080px){
    .nav-links{ gap: 28px; }
    .container, .container-narrow{ padding: 0 32px; }
    .trust-row{ grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .trust-item:nth-child(4), .trust-item:nth-child(5){ display: none; }
    .hero-grid{ gap: 60px; }
    .story-grid{ gap: 80px; }
    .materials-grid{ gap: 36px; }
    .craft-steps{ gap: 36px; }
  }

  @media (max-width: 860px){
    .announce{ font-size: 10px; letter-spacing: 0.16em; }
    .nav{
      background: rgba(246,239,227,0.98);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
    .nav-inner{ padding: 12px 20px; grid-template-columns: auto 1fr auto; gap: 12px; }
    .nav-links{ display:none; }
    .nav-cta{ display:none; }
    .nav-call small{ display:none; }
    .nav-call{ font-size: 0; padding: 0; border: 1px solid var(--walnut); border-radius: 50%; width: 48px; height: 48px; justify-content: center; align-items: center; }
    .nav-call .icon-phone{ width: 18px; height: 18px; color: var(--walnut); }
    .nav-actions{ gap: 8px; align-items: center; }
    .nav-toggle{
      display:flex; flex-direction:column; gap:6px;
      width: 48px; height: 48px; padding: 0;
      align-items: center; justify-content: center;
      background: transparent; border: none; cursor: pointer;
    }
    .nav-toggle span{
      width: 22px; height: 1.5px; background: var(--walnut);
      transition: transform .25s ease, opacity .2s ease;
    }
    body.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
    body.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }
    .brand-logo{ height: 44px; }
    .brand-text{ display: none; }

    /* Mobile full-screen menu drawer */
    body.nav-open{ overflow: hidden; }
    body.nav-open .nav-links{
      display: flex !important;
      flex-direction: column;
      position: fixed;
      top: var(--nav-bottom, 64px); left: 0; right: 0; bottom: 0;
      width: 100vw;
      max-width: 100vw;
      box-sizing: border-box;
      background: var(--cream);
      padding: 32px 32px 120px;
      gap: 0;
      z-index: 99;
      overflow-y: auto;
      animation: navSlideIn .25s ease;
    }
    body.nav-open .nav-links li{
      border-bottom: 1px solid var(--rule-soft);
    }
    body.nav-open .nav-links li:last-child{ border-bottom: none; }
    body.nav-open .nav-links a{
      display: flex;
      align-items: center;
      padding: 22px 4px;
      font-size: 16px;
      letter-spacing: 0.2em;
      min-height: 64px;
      color: var(--walnut);
    }
    @keyframes navSlideIn {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Bigger tap targets in the footer */
    .footer-col li{ padding: 12px 0; }
    .footer-col li a{ display: inline-block; padding: 4px 0; }
    .footer-contact-block a.phone{ padding: 6px 0; display: inline-block; }

    .container, .container-narrow{ padding: 0 24px; }

    .hero{ padding: 48px 0 40px; }
    .hero-grid{ grid-template-columns: 1fr; gap: 56px; }
    .hero-image-wrap{ order: -1; }
    .hero-badge{ top: 16px; left: 16px; }
    .hero-caption{ position: static; margin-top: 20px; max-width: 100%; }

    .trust-strip{ padding: 20px 0; }
    .trust-row{ grid-template-columns: 1fr; gap: 14px; }
    .trust-item{ border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 14px; flex-direction: row; align-items: baseline; justify-content: center; gap: 12px; }
    .trust-item:last-child{ border-bottom: none; padding-bottom: 0; }

    .story{ padding: 100px 0 90px; }
    .story-grid{ grid-template-columns: 1fr; gap: 60px; }
    .story-images{ height: 520px; }
    .story-numeric{ top: auto; bottom: 20%; right: -12px; }

    .materials{ padding: 100px 0 90px; }
    .materials-header{ grid-template-columns: 1fr; gap: 28px; margin-bottom: 60px; }
    .materials-header p{ justify-self: start; }
    .materials-grid{ grid-template-columns: 1fr; gap: 56px; }

    .craft{ padding: 100px 0 90px; }
    .craft-header{ grid-template-columns: 1fr; gap: 28px; margin-bottom: 80px; }
    .craft-steps{ grid-template-columns: 1fr 1fr; gap: 40px; }
    .craft-cta-row{ flex-direction: column; align-items: flex-start; }

    .projects{ padding: 100px 0 90px; }
    .projects-header{ grid-template-columns: 1fr; gap: 28px; margin-bottom: 60px; }
    .projects-header p{ justify-self: start; }
    .projects-grid, .projects-row-2{ grid-template-columns: 1fr; gap: 32px; }

    .testimonials{ padding: 100px 0; }
    .testimonials-header{ margin-bottom: 56px; }
    .testimonial-grid{ grid-template-columns: 1fr; gap: 32px; }
    .testimonial-card{ padding: 36px 32px; }
    .testimonial-card.featured{ padding: 44px 32px; }

    .faq{ padding: 100px 0 90px; }
    .faq-grid{ grid-template-columns: 1fr; gap: 48px; }

    .showroom{ padding: 100px 0 90px; }
    .showroom-grid{ grid-template-columns: 1fr; gap: 48px; }
    .showroom-img img{ min-height: 400px; }

    .capture{ padding: 100px 0; }
    .capture-inner{ grid-template-columns: 1fr; gap: 50px; }
    .capture-form{ padding: 40px 28px 36px; }
    .tile-row{ grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .tile{ padding: 18px 6px; font-size: 14px; }
    .form-row{ grid-template-columns: 1fr; gap: 0; }

    .footer{ padding: 70px 0 120px; }
    .footer-grid{ grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer-brand{ grid-column: 1 / -1; }

    .sticky-cta{ display: flex; }
    body{ padding-bottom: 64px; }
  }

  @media (max-width: 520px){
    .craft-steps{ grid-template-columns: 1fr; }
    .footer-grid{ grid-template-columns: 1fr; }
    .tile-row{ grid-template-columns: 1fr; }
    .story-img-1{ width: 80%; height: 70%; }
    .story-img-2{ width: 65%; height: 48%; }
    .hero-cta-row{ flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost{ text-align:center; justify-content:center; }
    .hero h1{ font-size: clamp(40px, 10vw, 56px); }
    .testimonial-card.featured blockquote{ font-size: 22px; }
    .project-meta{ padding: 22px 24px 24px; }
    .project-name{ font-size: 24px; }
  }

  /* ========== VISUALIZER ========== */
  .vis-section{
    padding: 120px 0 130px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
  }
  .vis-header{
    display:grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
  }
  .vis-header .eyebrow{ margin-bottom: 22px; }
  .vis-lede{
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.7;
    color: var(--walnut-soft);
    font-weight: 300;
    max-width: 480px;
  }

  .vis-workspace{
    display:grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }
  .vis-workspace-left{
    display:flex;
    flex-direction: column;
    gap: 22px;
  }

  /* Step bar */
  .vis-step-bar{
    display:flex;
    gap: 10px;
    align-items: center;
    padding: 0 4px;
    flex-wrap: wrap;
  }
  .vis-step{
    display:flex; align-items:center; gap: 10px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sepia);
    padding: 10px 16px 10px 12px;
    border: 1px solid var(--rule);
    background: var(--cream);
    transition: all .35s;
    font-weight: 500;
    opacity: 0.6;
  }
  .vis-step[data-state="active"]{
    color: var(--cream);
    background: var(--terracotta-deep);
    border-color: var(--terracotta-deep);
    opacity: 1;
    box-shadow: 0 6px 18px rgba(143, 66, 39, 0.18);
  }
  .vis-step[data-state="active"] .vis-step-num{ color: var(--cream); }
  .vis-step[data-state="done"]{
    color: var(--walnut-soft);
    background: var(--bone);
    border-color: var(--rule);
    opacity: 1;
  }
  .vis-step[data-state="done"]::before{
    content: "✓";
    display: inline-block;
    width: 16px; height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    background: var(--terracotta-deep);
    color: var(--cream);
    font-size: 10px;
    margin-right: 2px;
  }
  .vis-step[data-state="done"] .vis-step-num{ display: none; }
  .vis-step-num{
    font-family: var(--display);
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0;
    color: var(--terracotta-deep);
    min-width: 16px;
    text-align: center;
  }

  /* Stage */
  .vis-stage{
    background: var(--cream);
    border: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
    position: relative;
    min-height: 460px;
    display:flex;
    align-items:stretch;
    justify-content:stretch;
    overflow: hidden;
  }

  /* Upload zone (empty state) */
  .vis-upload-zone{
    flex:1;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 40px;
    margin: 24px;
    border: 1.5px dashed var(--rule);
    text-align: center;
    transition: all .3s;
    position: relative;
    background:
      radial-gradient(circle at 30% 20%, rgba(176,138,82,0.05), transparent 60%),
      radial-gradient(circle at 70% 80%, rgba(180,89,58,0.04), transparent 60%);
  }
  .vis-upload-zone.is-dragover{
    border-color: var(--terracotta-deep);
    background: var(--bone);
  }
  .vis-upload-icon{
    color: var(--bronze-light);
    width: 54px; height: 54px;
    margin-bottom: 4px;
  }
  .vis-upload-icon svg{ width:100%; height:100%; }
  .vis-upload-title{
    font-family: var(--display);
    font-size: 26px;
    font-style: italic;
    color: var(--walnut);
    font-weight: 400;
    line-height: 1.2;
    max-width: 420px;
  }
  .vis-upload-sub{
    font-family: var(--serif);
    font-size: 15px;
    color: var(--sepia);
    font-weight: 300;
    font-style: italic;
    max-width: 380px;
  }
  .vis-upload-btn{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 15px 28px;
    margin-top: 10px;
    background: var(--walnut);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    border: 1px solid var(--walnut);
    transition: all .3s;
    font-weight: 500;
    cursor: pointer;
  }
  .vis-upload-btn:hover{
    background: var(--terracotta-deep);
    border-color: var(--terracotta-deep);
  }
  .vis-upload-privacy{
    margin-top: 18px;
    font-family: var(--serif);
    font-size: 12.5px;
    color: var(--sepia);
    font-style: italic;
    font-weight: 300;
    display:flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .vis-eyebrow-mini{
    font-family: var(--sans);
    font-style: normal;
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    font-weight: 500;
  }

  /* Preview area — single <img> shows either the uploaded photo or the result.
     Container has a fixed min-height so it never collapses to zero, regardless
     of img load state. Image content inside is centred + letterboxed via
     object-fit: contain. */
  .vis-canvas-wrap{
    flex: 1;
    position: relative;
    display:flex;
    align-items: stretch;
    justify-content: stretch;
    background: #1a1208;
    overflow: hidden;
    min-height: 400px;
  }
  .vis-canvas-wrap[hidden]{ display: none; }
  .vis-photo-img{
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: contain;
    background: #1a1208;
  }
  .vis-canvas-wrap.is-result-mode .vis-photo-img{
    /* When showing the AI result, swap to a subtle outer glow so the user
       can tell something happened. */
    filter: drop-shadow(0 0 0.5rem rgba(255,255,255,0.06));
  }
  .vis-canvas-badge{
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 7px 10px;
    background: rgba(15, 10, 5, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  }
  .vis-canvas-badge[hidden]{ display: none; }
  .vis-badge-check{
    display: inline-flex; align-items: center; justify-content: center;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--terracotta-deep);
    color: var(--cream);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
  }
  .vis-canvas-loader{
    position: absolute; inset: 0;
    z-index: 4;
    background: rgba(30, 20, 12, 0.78);
    backdrop-filter: blur(4px);
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--cream);
    font-family: var(--serif);
    font-style: italic;
    line-height: 1.5;
  }
  .vis-spinner{
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(246,239,227,0.25);
    border-top-color: var(--bronze-light);
    animation: visSpin 1s linear infinite;
  }
  @keyframes visSpin{ to { transform: rotate(360deg); } }
  .vis-loader-copy{
    font-size: 20px;
    letter-spacing: 0.01em;
  }
  .vis-loader-sub{
    font-family: var(--sans);
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bronze-light);
  }
  .vis-dots span{
    opacity: 0;
    animation: visDot 1.4s infinite;
  }
  .vis-dots span:nth-child(2){ animation-delay: .2s; }
  .vis-dots span:nth-child(3){ animation-delay: .4s; }
  @keyframes visDot{
    0%, 20%{ opacity: 0; }
    50%{ opacity: 1; }
    100%{ opacity: 0; }
  }

  /* Toolbar */
  .vis-toolbar{
    display:flex;
    align-items: center;
    gap: 24px;
    padding: 14px 18px;
    background: var(--cream);
    border: 1px solid var(--rule);
    flex-wrap: wrap;
  }
  .vis-tool-group{ display:flex; align-items:center; gap: 8px; }
  .vis-tool-group-right{ margin-left: auto; gap: 20px; }
  .vis-tool-label{
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sepia);
    margin-right: 4px;
    font-weight: 500;
  }
  .vis-tool-filename{
    font-family: var(--display);
    font-style: italic;
    font-size: 15px;
    color: var(--walnut);
    max-width: 340px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .vis-tool-link{
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--walnut-soft);
    font-weight: 500;
    padding: 8px 2px;
    border-bottom: 1px solid transparent;
    transition: all .25s;
    background: none;
  }
  .vis-tool-link:hover{ color: var(--terracotta-deep); border-bottom-color: var(--terracotta-deep); }

  /* Generate actions */
  .vis-actions{
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
    background: var(--bone);
    border: 1px solid var(--rule);
    flex-wrap: wrap;
  }
  .vis-hint{
    font-family: var(--serif);
    font-size: 15px;
    color: var(--walnut);
    font-weight: 400;
    line-height: 1.4;
  }
  .vis-hint::before{
    content: "→";
    display: inline-block;
    margin-right: 8px;
    color: var(--terracotta-deep);
    font-style: normal;
    font-weight: 500;
  }
  /* Free-preview counter shown after first generation. */
  .vis-usage{
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sepia);
    line-height: 1.4;
    flex: 1 1 auto;
    text-align: right;
  }
  .vis-usage.is-limit{
    color: var(--terracotta-deep);
    font-weight: 500;
  }
  /* Limit-reached CTA replaces the generate button after 5 uses. */
  .vis-limit-cta{
    text-decoration: none;
    background: var(--terracotta-deep);
    color: var(--cream);
  }
  .vis-limit-cta:hover{
    background: var(--terracotta);
    transform: translateY(-1px);
  }
  .vis-limit-cta:hover .vis-arrow{ transform: translateX(4px); }
  .vis-generate-btn:disabled{
    opacity: 0.42;
    cursor: not-allowed;
    background: var(--walnut);
    color: var(--cream);
    transform: none;
  }
  .vis-generate-btn:disabled:hover{
    background: var(--walnut);
    border-color: var(--walnut);
    transform: none;
  }
  .vis-arrow{
    display:inline-block;
    transition: transform .3s;
  }
  .vis-generate-btn:not(:disabled):hover .vis-arrow,
  .vis-consult-btn:hover .vis-arrow{ transform: translateX(4px); }

  /* Result actions block */
  .vis-result-actions{
    display:flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px 24px;
    background: var(--cream);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--terracotta-deep);
  }
  .vis-disclaimer{
    font-family: var(--serif);
    font-size: 13.5px;
    font-style: italic;
    color: var(--sepia);
    line-height: 1.6;
    font-weight: 300;
    display:flex;
    flex-direction: column;
    gap: 4px;
  }
  .vis-result-btn-row{
    display:flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .vis-result-btn-row .vis-consult-btn{ margin-left: auto; padding: 14px 24px; }

  /* Library (right side) */
  .vis-library{
    background: var(--cream);
    border: 1px solid var(--rule);
    padding: 28px 28px 24px;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    display:flex;
    flex-direction: column;
  }
  .vis-library-header{
    padding-bottom: 22px;
    border-bottom: 1px solid var(--rule-soft);
    margin-bottom: 22px;
  }
  .vis-library-header .eyebrow{ margin-bottom: 14px; }
  .vis-library-title{
    font-family: var(--display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1;
    color: var(--walnut);
    font-style: italic;
    margin-bottom: 10px;
  }
  .vis-library-sub{
    font-family: var(--serif);
    font-size: 14px;
    color: var(--walnut-soft);
    font-weight: 300;
    line-height: 1.55;
  }
  .vis-library-groups{
    overflow-y: auto;
    flex: 1;
    padding-right: 6px;
    margin-right: -6px;
  }
  .vis-library-groups::-webkit-scrollbar{ width: 6px; }
  .vis-library-groups::-webkit-scrollbar-track{ background: transparent; }
  .vis-library-groups::-webkit-scrollbar-thumb{ background: var(--rule); border-radius: 3px; }

  .vis-group{
    margin-bottom: 22px;
  }
  .vis-group-header{
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0 10px;
    cursor: pointer;
    border-bottom: 1px solid var(--rule-soft);
    margin-bottom: 14px;
    user-select: none;
  }
  .vis-group-header:hover .vis-group-title{ color: var(--terracotta-deep); }
  .vis-group-title{
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--walnut);
    font-weight: 600;
    transition: color .25s;
  }
  .vis-group-caret{
    font-family: var(--display);
    font-style: italic;
    color: var(--bronze-light);
    font-size: 16px;
    transition: transform .3s;
  }
  .vis-group.is-collapsed .vis-group-caret{ transform: rotate(-90deg); }
  .vis-group.is-collapsed .vis-group-grid{ display: none; }

  .vis-group-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .vis-swatch{
    position: relative;
    background: var(--cream);
    border: 1px solid var(--rule-soft);
    padding: 0;
    text-align: left;
    cursor: pointer;
    transition: all .25s;
    overflow: hidden;
  }
  .vis-swatch:hover{
    border-color: var(--bronze-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }
  .vis-swatch.is-selected{
    border-color: var(--terracotta-deep);
    box-shadow: 0 0 0 2px var(--terracotta-deep), var(--shadow-sm);
  }
  .vis-swatch-img{
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    background: var(--bone);
  }
  .vis-swatch-meta{
    padding: 10px 12px 12px;
  }
  .vis-swatch-name{
    font-family: var(--display);
    font-size: 15px;
    font-style: italic;
    color: var(--walnut);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 3px;
  }
  .vis-swatch-type{
    font-family: var(--sans);
    font-size: 8.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sepia);
    font-weight: 500;
  }
  .vis-swatch-check{
    position: absolute;
    top: 8px; right: 8px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--terracotta-deep);
    color: var(--cream);
    display:flex; align-items:center; justify-content:center;
    font-size: 12px;
    opacity: 0;
    transition: opacity .2s;
    z-index: 2;
  }
  .vis-swatch.is-selected .vis-swatch-check{ opacity: 1; }

  .vis-library-footnote{
    font-family: var(--serif);
    font-size: 13px;
    color: var(--sepia);
    font-style: italic;
    font-weight: 300;
    padding-top: 18px;
    margin-top: 14px;
    border-top: 1px solid var(--rule-soft);
  }
  .vis-library-footnote a{
    color: var(--terracotta-deep);
    border-bottom: 1px solid var(--terracotta-deep);
  }

  /* ---------- Visualizer responsive ---------- */
  @media (max-width: 1100px){
    .vis-workspace{ grid-template-columns: 1fr; gap: 32px; }
    .vis-library{
      position: static;
      max-height: none;
    }
    .vis-library-groups{ max-height: none; overflow: visible; }
    .vis-header{ grid-template-columns: 1fr; gap: 28px; }
  }
  @media (max-width: 720px){
    .vis-section{ padding: 80px 0 90px; }
    .vis-upload-zone{ padding: 56px 24px; margin: 16px; }
    .vis-upload-title{ font-size: 22px; }
    .vis-toolbar{ gap: 14px; padding: 12px 14px; }
    .vis-tool-group-right{ margin-left: 0; width: 100%; gap: 18px; }
    .vis-actions{ flex-direction: column; align-items: stretch; }
    .vis-actions .vis-generate-btn{ width: 100%; }
    .vis-result-btn-row{ flex-direction: column; align-items: stretch; gap: 14px; }
    .vis-result-btn-row .vis-consult-btn{ margin-left: 0; width: 100%; justify-content: center; }
    .vis-group-grid{ grid-template-columns: repeat(2, 1fr); }
    .vis-step{ padding: 6px 10px; font-size: 9px; letter-spacing: 0.18em; }
  }
  @media (max-width: 520px){
    .vis-header .h-display{ font-size: clamp(32px, 8vw, 44px); }
    .vis-stage{ min-height: 340px; }
    .vis-upload-zone{ padding: 40px 18px; margin: 12px; gap: 12px; }
    .vis-upload-title{ font-size: 19px; }
    .vis-upload-sub{ font-size: 13px; }
    .vis-library{ padding: 20px 18px; }
    .vis-library-title{ font-size: 26px; }
    .vis-group-grid{ grid-template-columns: 1fr; }
  }

  /* ---------- LEAD GATE MODAL ---------- */
  .vis-gate{
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    animation: visGateFadeIn .28s ease forwards;
  }
  .vis-gate[hidden]{ display: none; }
  .vis-gate.is-closing{ animation: visGateFadeOut .22s ease forwards; }
  @keyframes visGateFadeIn{ to { opacity: 1; } }
  @keyframes visGateFadeOut{ to { opacity: 0; } }

  .vis-gate-backdrop{
    position: absolute;
    inset: 0;
    background: rgba(30, 20, 12, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
  }
  .vis-gate-card{
    position: relative;
    background: var(--cream);
    border: 1px solid var(--rule);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 460px;
    padding: 44px 44px 36px;
    transform: translateY(8px);
    animation: visGateRise .4s ease forwards;
  }
  @keyframes visGateRise{ to { transform: translateY(0); } }
  .vis-gate.is-closing .vis-gate-card{
    animation: none;
    transform: translateY(0);
  }

  .vis-gate-close{
    position: absolute;
    top: 14px; right: 16px;
    width: 36px; height: 36px;
    font-family: var(--display);
    font-size: 28px;
    line-height: 1;
    color: var(--walnut-soft);
    background: none;
    border: none;
    cursor: pointer;
    transition: color .2s;
    padding: 0;
  }
  .vis-gate-close:hover{ color: var(--terracotta-deep); }

  .vis-gate-eyebrow{ margin-bottom: 18px; }
  .vis-gate-headline{
    font-family: var(--display);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.15;
    color: var(--walnut);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }
  .vis-gate-headline em{
    font-style: italic;
    color: var(--terracotta-deep);
  }
  .vis-gate-sub{
    font-family: var(--serif);
    font-size: 15px;
    color: var(--walnut-soft);
    line-height: 1.55;
    font-weight: 300;
    margin-bottom: 24px;
  }

  .vis-gate-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .vis-gate-field{
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .vis-gate-label{
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sepia);
    font-weight: 500;
  }
  .vis-gate-optional{
    letter-spacing: 0.14em;
    font-style: italic;
    text-transform: none;
    color: var(--sepia);
    opacity: 0.75;
    font-weight: 400;
  }
  .vis-gate-field input{
    font-family: var(--sans);
    font-size: 15px;
    color: var(--walnut);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule);
    padding: 8px 0 10px;
    outline: none;
    transition: border-color .25s;
    width: 100%;
  }
  .vis-gate-field input:focus{
    border-bottom-color: var(--terracotta-deep);
  }
  .vis-gate-field input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 1000px var(--cream) inset;
    -webkit-text-fill-color: var(--walnut);
  }

  .vis-gate-consent{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 4px 0 2px;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 13.5px;
    color: var(--walnut-soft);
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
  }
  .vis-gate-consent input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    border: 1px solid var(--sepia);
    background: var(--cream);
    cursor: pointer;
    position: relative;
    transition: all .2s;
  }
  .vis-gate-consent input[type="checkbox"]:hover{ border-color: var(--terracotta-deep); }
  .vis-gate-consent input[type="checkbox"]:checked{
    background: var(--terracotta-deep);
    border-color: var(--terracotta-deep);
  }
  .vis-gate-consent input[type="checkbox"]:checked::after{
    content: "";
    position: absolute;
    left: 4px; top: 1px;
    width: 5px; height: 9px;
    border: solid var(--cream);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
  }
  /* Highlight the consent row when validation fails so it's impossible to miss. */
  .vis-gate-consent.has-error{
    background: rgba(184,84,51,0.08);
    border-radius: 4px;
    padding: 8px 10px;
    margin: 0 -10px;
    animation: visGateShake .35s ease;
  }
  .vis-gate-consent.has-error input[type="checkbox"]{
    border-color: var(--terracotta-deep);
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(184,84,51,0.15);
  }
  @keyframes visGateShake{
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
  }

  .vis-gate-error{
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--terracotta-deep);
    background: rgba(184,84,51,0.08);
    padding: 10px 14px;
    border-left: 3px solid var(--terracotta-deep);
    border-radius: 2px;
    margin-top: 8px;
    line-height: 1.4;
  }
  .vis-gate-typo{
    display: block;
    font-family: var(--sans);
    font-size: 12px;
    color: var(--bronze);
    margin-top: 6px;
    line-height: 1.4;
  }
  .vis-gate-typo button{
    background: none;
    border: none;
    padding: 0;
    color: var(--terracotta-deep);
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
  }
  .vis-gate-typo button:hover{ color: var(--terracotta); }

  .vis-gate-submit{
    margin-top: 8px;
    width: 100%;
    padding: 16px 22px;
  }

  .vis-gate-call{
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 13.5px;
    color: var(--sepia);
    padding: 6px 0 4px;
    transition: color .2s;
  }
  .vis-gate-call:hover{ color: var(--terracotta-deep); }

  .vis-gate-privacy{
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--sepia);
    text-align: center;
    line-height: 1.55;
    padding-top: 6px;
    border-top: 1px solid var(--rule-soft);
    margin-top: 4px;
  }

  @media (max-width: 520px){
    .vis-gate{ padding: 12px; }
    .vis-gate-card{
      max-width: 92vw;
      padding: 36px 24px 28px;
    }
    .vis-gate-headline{ font-size: 24px; }
    .vis-gate-sub{ font-size: 14px; }
  }

  /* ---------- PROJECT LIGHTBOX ---------- */
  .pjx-lightbox{
    position: fixed; inset: 0;
    display: flex; align-items: center; justify-content: center;
    z-index: 1000;
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
  }
  .pjx-lightbox.is-open{ opacity: 1; pointer-events: auto; }
  .pjx-backdrop{
    position: absolute; inset: 0;
    background: rgba(28,18,8,0.86);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .pjx-frame{
    position: relative;
    width: min(1100px, 94vw);
    height: min(86vh, 920px);
    background: var(--cream);
    display: flex; flex-direction: column;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    overflow: hidden;
  }
  .pjx-close{
    position: absolute; top: 14px; right: 14px;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--rule);
    border-radius: 50%;
    font-size: 22px; line-height: 1; padding: 0;
    color: var(--walnut);
    cursor: pointer;
    z-index: 3;
    transition: background .2s, transform .2s;
  }
  .pjx-close:hover{ background: white; transform: rotate(90deg); }
  .pjx-header{
    padding: 24px 64px 14px;
    text-align: center;
    flex-shrink: 0;
  }
  .pjx-type{
    font-family: var(--sans);
    font-size: 10px; letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin-bottom: 10px;
  }
  .pjx-name{
    font-family: var(--display);
    font-size: 28px; line-height: 1.15;
    color: var(--walnut);
    font-weight: 500;
  }
  .pjx-name em{ font-style: italic; color: var(--terracotta-deep); }
  .pjx-detail{
    font-family: var(--sans);
    font-size: 12px; letter-spacing: 0.06em;
    color: var(--sepia);
    margin-top: 8px;
  }
  .pjx-main{
    position: relative;
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    background: var(--bone);
    margin: 0 32px;
    overflow: hidden;
    border-radius: 2px;
    min-height: 0;
  }
  .pjx-main-img{
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    user-select: none;
  }
  .pjx-arrow{
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--rule);
    border-radius: 50%;
    font-family: var(--display);
    font-size: 30px; line-height: 1;
    padding: 0 0 4px 0;
    color: var(--walnut);
    cursor: pointer;
    z-index: 2;
    transition: background .2s, transform .2s;
  }
  .pjx-arrow:hover{ background: white; transform: translateY(-50%) scale(1.08); }
  .pjx-prev{ left: 14px; }
  .pjx-next{ right: 14px; }
  .pjx-thumbs{
    padding: 18px 32px 22px;
    display: flex; gap: 10px;
    justify-content: center;
    overflow-x: auto;
    flex-shrink: 0;
  }
  .pjx-thumb{
    width: 78px; height: 78px;
    border: 2px solid transparent;
    border-radius: 3px;
    background-size: cover; background-position: center;
    background-color: var(--bone);
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.55;
    padding: 0;
    transition: opacity .2s, border-color .2s;
  }
  .pjx-thumb:hover{ opacity: 0.9; }
  .pjx-thumb.is-active{
    border-color: var(--terracotta-deep);
    opacity: 1;
  }
  .pjx-counter{
    position: absolute;
    bottom: 18px; left: 32px;
    font-family: var(--sans);
    font-size: 11px; letter-spacing: 0.16em;
    color: var(--sepia);
    text-transform: uppercase;
  }
  body.pjx-lock{ overflow: hidden; }
  .project[data-project]{ cursor: pointer; }

  @media (max-width: 720px){
    .pjx-frame{ height: 94vh; width: 100vw; border-radius: 0; }
    .pjx-header{ padding: 18px 56px 10px; }
    .pjx-name{ font-size: 22px; }
    .pjx-main{ margin: 0 16px; }
    .pjx-arrow{ width: 38px; height: 38px; font-size: 24px; }
    .pjx-thumbs{ padding: 12px 16px 16px; }
    .pjx-thumb{ width: 60px; height: 60px; }
    .pjx-counter{ left: 16px; bottom: 14px; }
  }

  /* ========== PORTFOLIO PAGE ========== */
  .portfolio-hero{
    padding: 80px 0 50px;
    border-bottom: 1px solid var(--rule);
    text-align: center;
  }
  .portfolio-hero .eyebrow{ margin-bottom: 22px; }
  .portfolio-hero h1{
    font-family: var(--display);
    font-size: clamp(44px, 6.5vw, 72px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--walnut);
    margin-bottom: 24px;
  }
  .portfolio-hero h1 em{ font-style: italic; color: var(--terracotta-deep); }
  .portfolio-hero p{
    max-width: 640px;
    margin: 0 auto;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.6;
    color: var(--sepia);
  }
  .portfolio-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 48px 36px;
    padding: 80px 0 100px;
  }
  @media (max-width: 860px){
    .portfolio-hero{ padding: 56px 0 36px; }
    .portfolio-grid{ grid-template-columns: 1fr; gap: 36px; padding: 56px 0 80px; }
  }

  /* ========== HOMEPAGE PORTFOLIO TEASER ========== */
  .portfolio-teaser{
    padding: 120px 0 130px;
    border-top: 1px solid var(--rule);
  }
  .portfolio-teaser-header{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
  }
  .portfolio-teaser-header p{
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.65;
    color: var(--sepia);
  }
  .portfolio-teaser-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 56px;
  }
  .portfolio-teaser a.project{ display: block; color: inherit; }
  .portfolio-teaser-cta{
    text-align: center;
  }
  .portfolio-teaser-cta a{
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    border-bottom: 1px solid var(--terracotta-deep);
    padding-bottom: 4px;
    font-weight: 600;
  }
  .portfolio-teaser-cta a:hover{ color: var(--walnut); border-bottom-color: var(--walnut); }
  @media (max-width: 860px){
    .portfolio-teaser{ padding: 80px 0 90px; }
    .portfolio-teaser-header{ grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
    .portfolio-teaser-grid{ grid-template-columns: 1fr; gap: 24px; }
  }
