
    :root {
      --cream:     #f0ebe1;
      --stone:     #e3dbd0;
      --ink:       #1a1714;
      --ink-soft:  #241f19;
      --orange:    #c9873c;
      --orange-lt: #e3ab63;
      --orange-dk: #a06a26;
      --slate:     #5f574d;
      --warmwhite: #fbf9f6;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Manrope', system-ui, sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }
    img { max-width: 100%; }

    body::after {
      content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1000;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 180px 180px; transform: translateZ(0);
    }

    /* ─── NAV ─── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 1.1rem 1.4rem; display: flex; align-items: center; justify-content: space-between;
      transition: padding .35s ease, background .35s ease, box-shadow .35s ease;
    }
    #nav.scrolled { padding: .55rem 1.4rem; background: rgba(244,240,233,.94); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(20,17,14,.09); }
    #nav-logo { display: flex; align-items: center; text-decoration: none; position: relative; height: 52px; flex-shrink: 0; }
    #nav.scrolled #nav-logo { height: 44px; }
    #nav-logo img { height: 100%; width: auto; display: block; transition: opacity .35s ease, height .35s ease; }
    #nav-logo .lg-dark { position: absolute; left: 0; top: 0; opacity: 0; }
    #nav.scrolled #nav-logo .lg-white { opacity: 0; }
    #nav.scrolled #nav-logo .lg-dark  { opacity: 1; }
    #nav.menu-open #nav-logo .lg-white { opacity: 0; }
    #nav.menu-open #nav-logo .lg-dark  { opacity: 1; }

    #nav-links { display: none; gap: 2.1rem; list-style: none; }
    #nav-links a { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); text-decoration: none; transition: color .2s ease; }
    #nav-links a:hover { color: var(--orange-dk); }
    #nav-cta {
      display: none; padding: .65rem 1.4rem; background: var(--orange); color: var(--ink);
      font-size: .76rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
      text-decoration: none; border-radius: 3px; border: 1.5px solid var(--orange);
      transition: transform .2s ease, background .3s ease, color .3s ease; min-height: 44px; align-items: center;
    }
    #nav-cta:hover { transform: translateY(-2px); background: var(--orange-lt); }
    #nav-icons { display: flex; align-items: center; gap: .15rem; }
    #nav-icons a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--slate); text-decoration: none; border-radius: 50%; transition: color .2s ease, background .2s ease; }
    #nav-icons a:hover { color: var(--orange-dk); background: rgba(247,146,30,.12); }
    #nav:not(.scrolled) #nav-links a { color: rgba(251,249,246,.78); }
    #nav:not(.scrolled) #nav-links a:hover { color: var(--orange-lt); }
    #nav:not(.scrolled) #nav-icons a { color: rgba(251,249,246,.8); }
    #nav:not(.scrolled) #nav-icons a:hover { color: #fff; background: rgba(251,249,246,.12); }
    #nav.menu-open #nav-icons a { color: var(--slate); }
    #hamburger { width: 44px; height: 44px; display: flex; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 10px; background: none; border: none; appearance: none; -webkit-tap-highlight-color: transparent; }
    #hamburger span { display: block; height: 1.6px; background: var(--warmwhite); border-radius: 2px; transform-origin: center; transition: transform .3s ease, opacity .3s ease, background .3s ease; }
    #nav.scrolled #hamburger span, #nav.menu-open #hamburger span { background: var(--ink); }
    #hamburger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
    #hamburger.open span:nth-child(2) { opacity: 0; }
    #hamburger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
    #mobile-menu {
      position: fixed; inset: 0; z-index: 99; background: var(--cream);
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
      transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
    }
    #mobile-menu.open { transform: translateX(0); }
    #mobile-menu a { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 7vw, 2.4rem); color: var(--ink); text-decoration: none; }
    @media (min-width: 1000px) { #nav-links { display: flex; } #nav-cta { display: inline-flex; } #hamburger { display: none; } #nav { padding: 1.1rem 2.4rem; } #nav.scrolled { padding: .55rem 2.4rem; } }

    /* ─── SCROLL REVEAL ─── */
    [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease-out, transform .7s ease-out; }
    [data-reveal].visible { opacity: 1; transform: none; }

    /* ─── HERO ─── */
    #hero { position: relative; min-height: 100svh; display: flex; align-items: center; background: var(--ink); overflow: hidden; padding-top: 6rem; }
    #hero-img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%;
      z-index: 0; pointer-events: none; animation: kenburns 24s ease-in-out infinite alternate;
    }
    @keyframes kenburns { from { transform: scale(1.01); } to { transform: scale(1.09); } }
    #hero-overlay {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background:
        linear-gradient(105deg, rgba(12,10,8,.88) 0%, rgba(12,10,8,.74) 34%, rgba(12,10,8,.46) 66%, rgba(12,10,8,.34) 100%),
        linear-gradient(to bottom, rgba(12,10,8,.30) 0%, rgba(12,10,8,.12) 40%, rgba(12,10,8,.72) 100%);
    }
    .hero-content { position: relative; z-index: 4; max-width: 1180px; margin: 0 auto; width: 100%; padding: 0 1.4rem 5.5rem; }
    .eyebrow { display: flex; align-items: center; gap: .8rem; }
    .eyebrow i { display: block; width: 26px; height: 1px; background: currentColor; opacity: .45; flex-shrink: 0; }
    .eyebrow span { font-size: .66rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
    .h1-kicker {
      display: flex; align-items: center; gap: .8rem;
      font-family: 'Manrope', sans-serif; font-size: .66rem; font-weight: 800;
      letter-spacing: .22em; text-transform: uppercase; color: rgba(251,249,246,.6);
      margin-bottom: 2rem;
    }
    .h1-kicker i { display: block; width: 26px; height: 1px; background: currentColor; opacity: .45; flex-shrink: 0; }
    @media (max-width: 560px) { .h1-kicker { font-size: .6rem; letter-spacing: .16em; margin-bottom: 1.5rem; } }
    h1.hero-h1 {
      font-family: 'DM Serif Display', serif; font-weight: 500;
      font-size: clamp(3rem, 9vw, 7rem); line-height: .96; letter-spacing: -.025em;
      color: var(--warmwhite); margin-bottom: 1.6rem;
    }
    .sheen {
      display: inline-block; font-style: italic;
      background: linear-gradient(112deg,#ffd9a8 0%,#c9873c 22%,#ffe0bb 40%,#a06a26 58%,#ffc178 76%,#c9873c 100%);
      background-size: 300% 300%; -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; animation: sheenmove 7s ease-in-out infinite; padding: .1em .04em;
    }
    @keyframes sheenmove { 0%{background-position:0% 40%} 50%{background-position:100% 60%} 100%{background-position:0% 40%} }

    .btn-primary {
      display: inline-flex; align-items: center; gap: .7rem; padding: 1rem 2rem;
      background: var(--orange); color: var(--ink); font-size: .82rem; font-weight: 800;
      letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border-radius: 3px;
      min-height: 52px; transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }
    .btn-primary:hover { transform: translateY(-2px); background: var(--orange-lt); box-shadow: 0 10px 30px rgba(247,146,30,.32); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: .6rem; padding: .9rem 1.7rem; color: var(--warmwhite);
      font-size: .95rem; font-weight: 700; text-decoration: none; border-radius: 3px; min-height: 52px;
      border: 1.5px solid rgba(251,249,246,.3); background: rgba(251,249,246,.06);
      transition: background .25s ease, border-color .25s ease, transform .22s ease;
    }
    .btn-ghost:hover { background: rgba(251,249,246,.14); border-color: rgba(251,249,246,.55); transform: translateY(-2px); }
    .hero-trust { display: flex; align-items: center; flex-wrap: wrap; gap: .1rem .2rem; }
    .hero-trust b { font-size: .72rem; font-weight: 700; color: rgba(251,249,246,.72); white-space: nowrap; }
    .hero-trust i { color: var(--orange); padding: 0 .6rem; font-size: .5rem; font-style: normal; }

    /* ─── SECTION SHELL ─── */
    section { position: relative; }
    .wrap { max-width: 1180px; margin: 0 auto; }
    h2.sec-h2 { font-family: 'DM Serif Display', serif; font-weight: 500; font-size: clamp(2.1rem, 5.2vw, 4rem); letter-spacing: -.02em; line-height: 1.04; }
    h2.sec-h2 em { font-style: italic; color: var(--orange-dk); }
    .on-dark h2.sec-h2 em { color: var(--orange); }
    .lede { font-size: clamp(.98rem,1.6vw,1.08rem); font-weight: 500; color: var(--slate); line-height: 1.8; max-width: 62ch; }
    .on-dark .lede { color: rgba(251,249,246,.66); }

    /* ─── MARQUEE ─── */
    .marquee { overflow: hidden; position: relative;
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
              mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); }
    .marquee__track { display: flex; align-items: center; width: max-content; animation: mq var(--mq,40s) linear infinite; }
    .mq-group { display: flex; align-items: center; flex-shrink: 0; }
    @keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .marquee--text { background: var(--ink); border-top: 1px solid rgba(247,146,30,.26); border-bottom: 1px solid rgba(247,146,30,.26); padding: 1.5rem 0; --mq: 44s; }
    .mq-word { font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem,4vw,2.8rem); line-height: 1; white-space: nowrap; color: var(--cream); padding: 0 1.4rem; }
    .mq-word--o { color: transparent; -webkit-text-stroke: 1px var(--orange); }
    .mq-star { color: var(--orange); font-size: clamp(.8rem,1.8vw,1.2rem); transform: translateY(-.1em); flex-shrink: 0; }
    .marquee--pics { width: 100vw; margin-left: calc(50% - 50vw); --mq: 55s; }
    .mq-pic { flex-shrink: 0; width: clamp(210px,24vw,310px); height: clamp(150px,18vw,220px); margin-right: 1rem; border-radius: 12px; overflow: hidden; box-shadow: 0 14px 34px rgba(20,17,14,.16); position: relative; cursor: zoom-in; }
    .mq-pic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
    .marquee--pics:hover .mq-pic img { transform: scale(1.05); }

    /* ─── SERVICES ─── */
    .svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px,1fr)); gap: 1.1rem; }
    @media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3,1fr); } }
    .svc-card {
      background: var(--warmwhite); border: 1px solid rgba(20,17,14,.08); border-radius: 12px;
      overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .svc-card:hover { transform: translateY(-4px); border-color: rgba(247,146,30,.45); box-shadow: 0 18px 46px rgba(20,17,14,.14); }
    .svc-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--stone); }
    .svc-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s cubic-bezier(.25,.46,.45,.94); }
    .svc-card:hover .svc-media img { transform: scale(1.06); }
    .svc-body { padding: 0 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
    .svc-ico {
      width: 46px; height: 46px; border-radius: 12px; background: var(--warmwhite);
      display: flex; align-items: center; justify-content: center;
      margin: -1.55rem 0 .9rem; position: relative; z-index: 1;
      box-shadow: 0 4px 14px rgba(20,17,14,.16); border: 1px solid rgba(20,17,14,.06);
    }
    .svc-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.28rem; font-weight: 500; margin-bottom: .5rem; }
    .svc-card p { font-size: .88rem; font-weight: 500; color: var(--slate); line-height: 1.66; }
    .svc-more {
      display: flex; align-items: center; gap: .4rem; margin-top: auto; padding-top: 1rem;
      font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--orange-dk);
    }
    .sm-mini { display: none; }
    .sm-arrow { flex-shrink: 0; transition: transform .25s ease; }
    .svc-card:hover .sm-arrow { transform: translateX(4px); }
    .svc-card { -webkit-tap-highlight-color: transparent; }
    .svc-card:active { transform: translateY(-1px) scale(.99); }
    @media (max-width: 620px) {
      .svc-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
      .svc-grid > :last-child { grid-column: 1 / -1; }
      .svc-grid > :last-child .svc-media { aspect-ratio: 16 / 7; }
      .svc-body { padding: 0 .95rem 1.1rem; }
      .svc-card p { display: none; }
      .svc-card h3 { font-size: .96rem; line-height: 1.22; margin-bottom: .1rem; overflow-wrap: anywhere; }
      .svc-more { padding-top: .6rem; font-size: .66rem; letter-spacing: .07em; gap: .3rem; }
      .sm-full { display: none; }
      .sm-mini { display: inline; }
      .sm-arrow { width: 11px; height: 11px; }
      .svc-ico { width: 36px; height: 36px; margin: -1.25rem 0 .7rem; border-radius: 10px; }
      .svc-ico svg { width: 19px; height: 19px; }
    }

    /* ─── STATS ─── */
    .stat-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(251,249,246,.12); border: 1px solid rgba(251,249,246,.12); border-radius: 14px; overflow: hidden; }
    @media (min-width: 800px) { .stat-strip { grid-template-columns: repeat(4,1fr); } }
    .stat { background: var(--ink); padding: 2rem 1.2rem; text-align: center; }
    .stat b { display: block; font-family: 'DM Serif Display', serif; font-weight: 500; font-size: clamp(2.1rem,4.4vw,3.1rem); color: var(--orange); line-height: 1; }
    .stat span { display: block; margin-top: .6rem; font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(251,249,246,.55); }

    /* ─── GALLERY ─── */
    /* 18 tiles: divides evenly into 2 and 3 columns, so no orphan row */
    .gal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
    @media (min-width: 1024px) { .gal-grid { grid-template-columns: repeat(3,1fr); gap: 14px; } }
    .gal-tile { position: relative; aspect-ratio: 4 / 5; border-radius: 8px; overflow: hidden; cursor: zoom-in; background: var(--stone); }
    .gal-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
    .gal-tile:hover img { transform: scale(1.04); }
    .gal-tile::after { content: ''; position: absolute; inset: 0; background: rgba(20,17,14,0); transition: background .3s ease; pointer-events: none; }
    .gal-tile:hover::after { background: rgba(20,17,14,.14); }

    /* ─── LIGHTBOX ─── */
    #lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(14,12,10,.95); display: none; align-items: center; justify-content: center; padding: 1rem; }
    #lightbox.open { display: flex; }
    #lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 6px; object-fit: contain; }
    #lb-close { position: absolute; top: 1.2rem; right: 1.2rem; width: 44px; height: 44px; cursor: pointer; background: none; border: none; display: flex; align-items: center; justify-content: center; }

    /* ─── CREW ─── */
    .crew-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1rem; }
    @media (min-width: 1000px) { .crew-grid { grid-template-columns: repeat(3,1fr); } }
    .crew-card { background: var(--warmwhite); border: 1px solid rgba(20,17,14,.08); border-radius: 12px; padding: 1.6rem 1.4rem; transition: transform .25s ease, box-shadow .25s ease; }
    .crew-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(20,17,14,.1); }
    .crew-ini { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--orange); font-family: 'DM Serif Display',serif; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
    .crew-card h3 { font-family: 'DM Serif Display',serif; font-size: 1.15rem; font-weight: 500; }
    .crew-role { font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--orange-dk); margin: .35rem 0 .7rem; }
    .crew-card p { font-size: .86rem; font-weight: 500; color: var(--slate); line-height: 1.65; }

    /* ─── PROCESS ─── */
    .step { position: relative; padding-left: 0; }
    .step-num { font-family: 'DM Serif Display', serif; font-size: clamp(4rem,10vw,7rem); color: rgba(20,17,14,.055); line-height: .8; position: absolute; top: -.16em; left: -.06em; user-select: none; pointer-events: none; }
    .step-head { display: flex; align-items: center; gap: .75rem; margin-bottom: .8rem; }
    .step-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .step h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; font-weight: 500; }
    .step p { font-size: .93rem; font-weight: 500; color: var(--slate); line-height: 1.78; max-width: 58ch; margin-left: 3rem; }
    @media (max-width: 560px) { .step p { margin-left: 0; } }

    /* ─── AREA ─── */
    .area-list { display: flex; flex-wrap: wrap; gap: .55rem; }
    .area-chip { display: inline-flex; align-items: center; gap: .45rem; padding: .6rem 1.05rem; border: 1px solid rgba(251,249,246,.2); border-radius: 999px; font-size: .84rem; font-weight: 600; color: rgba(251,249,246,.88); background: rgba(251,249,246,.045); }
    .area-chip svg { color: var(--orange); flex-shrink: 0; }

    /* ─── REVIEWS ─── */
    .rv-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); }
    .rv-track { display: flex; gap: 1rem; width: max-content; animation: rvL 62s linear infinite; }
    .rv-track.right { animation: rvR 68s linear infinite; }
    @keyframes rvL { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
    @keyframes rvR { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
    .rv-card {
      width: 330px; flex-shrink: 0; background: linear-gradient(158deg, rgba(244,240,233,.11) 0%, rgba(244,240,233,.04) 100%);
      border: 1px solid rgba(244,240,233,.15); border-radius: 16px; padding: 1.7rem 1.6rem;
      box-shadow: 0 14px 38px rgba(0,0,0,.3); position: relative; overflow: hidden;
      transition: transform .28s cubic-bezier(.22,1,.36,1), border-color .28s ease;
    }
    .rv-card::before { content:'\201C'; position:absolute; top:.25rem; right:1.2rem; font-family:'DM Serif Display',serif; font-size:4.2rem; line-height:1; color:rgba(247,146,30,.16); pointer-events:none; }
    .rv-card:hover { transform: translateY(-5px); border-color: rgba(247,146,30,.42); }
    .rv-stars { display:flex; gap:3px; margin-bottom:.9rem; }
    .rv-stars svg { fill: var(--orange); width:15px; height:15px; }
    .rv-quote { font-size:.92rem; font-weight:500; color:rgba(251,249,246,.94); line-height:1.72; margin-bottom:1.2rem; font-style:italic; position:relative; z-index:1; }
    .rv-name { font-size:.86rem; font-weight:700; color:var(--warmwhite); }
    .rv-tag { font-size:.66rem; color:var(--orange-lt); letter-spacing:.08em; margin-top:.2rem; text-transform:uppercase; }
    .rv-avatar { width:34px; height:34px; border-radius:50%; flex-shrink:0; background:rgba(247,146,30,.16); border:1px solid rgba(247,146,30,.32); display:flex; align-items:center; justify-content:center; font-family:'DM Serif Display',serif; font-size:.95rem; color:var(--orange-lt); }

    /* ─── LEAVE A REVIEW ─── */
    .btn-review {
      display: inline-flex; align-items: center; gap: .55rem; min-height: 50px;
      padding: .85rem 1.7rem; border-radius: 999px; text-decoration: none;
      background: var(--orange); color: var(--ink);
      font-size: .8rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
      transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .btn-review:hover { transform: translateY(-2px); background: var(--orange-lt); box-shadow: 0 10px 30px rgba(247,146,30,.3); }
    .btn-review:active { transform: translateY(0) scale(.98); }

    /* ─── FORM SENT STATE ─── */
    #form-sent { display: none; text-align: center; padding: 1.5rem .5rem; }
    #form-sent.show { display: block; }
    #form-sent .fs-tick {
      width: 62px; height: 62px; border-radius: 50%; background: rgba(247,146,30,.14);
      display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem;
    }
    #form-sent h4 { font-family: 'DM Serif Display', serif; font-weight: 500; font-size: 1.5rem; color: var(--ink); margin-bottom: .6rem; }
    #form-sent p { font-size: .9rem; font-weight: 500; color: var(--slate); line-height: 1.7; max-width: 34ch; margin: 0 auto; }
    .fbtn[disabled] { opacity: .6; cursor: default; }

    /* ─── FORM ─── */
    #book-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
    @media (min-width: 900px) { #book-grid { grid-template-columns: 1fr 1.05fr; gap: 4.5rem; align-items: center; } }
    .form-card { background: linear-gradient(165deg,#f8f5ef 0%,var(--cream) 100%); border-radius: 16px; padding: 2.2rem 1.9rem; box-shadow: 0 24px 60px rgba(0,0,0,.34); }
    .quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
    @media (max-width: 620px) { .quote-form { grid-template-columns: 1fr; } .quote-form .form-field { grid-column: 1/-1 !important; } .form-card { padding: 1.6rem 1.25rem; } }
    .form-field label { display: block; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-bottom: .45rem; }
    .form-field input, .form-field select, .form-field textarea {
      width: 100%; padding: .85rem .95rem; background: var(--warmwhite); border: 1.5px solid rgba(20,17,14,.14);
      border-radius: 5px; font-family: 'Manrope', sans-serif; font-size: 16px; color: var(--ink); outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247,146,30,.16); }
    .form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%235f574d' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .7rem center; background-size: 1.2rem; padding-right: 2.4rem; }
    .fbtn { width: 100%; padding: 1.05rem 2rem; background: var(--ink); color: var(--cream); font-family: 'Manrope',sans-serif; font-size: .85rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; border: none; border-radius: 6px; cursor: pointer; min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: .6rem; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
    .fbtn:hover { transform: translateY(-2px); background: var(--ink-soft); box-shadow: 0 10px 30px rgba(20,17,14,.26); }

    /* ─── FAQ ─── */
    .faq-item { border-bottom: 1px solid rgba(20,17,14,.1); }
    .faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 0; background: none; border: none; cursor: pointer; text-align: left; gap: 1.2rem; }
    .faq-q { font-family: 'DM Serif Display', serif; font-size: 1.04rem; color: var(--ink); transition: color .2s ease; line-height: 1.4; }
    .faq-btn:hover .faq-q, .faq-item.open .faq-q { color: var(--orange-dk); }
    .faq-icon { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; border: 1.5px solid rgba(20,17,14,.18); display: flex; align-items: center; justify-content: center; transition: background .25s ease, border-color .25s ease, transform .32s ease, color .25s ease; color: var(--slate); }
    .faq-item.open .faq-icon { background: var(--orange); border-color: var(--orange); transform: rotate(45deg); color: var(--ink); }
    .faq-body { max-height: 0; overflow: hidden; transition: max-height .42s cubic-bezier(.4,0,.2,1); }
    .faq-item.open .faq-body { max-height: 420px; }
    .faq-ans { padding-bottom: 1.4rem; font-size: .92rem; font-weight: 500; color: var(--slate); line-height: 1.82; max-width: 70ch; }

    /* ─── STICKY CTA ─── */
    #sticky-cta {
      position: fixed; bottom: 1.4rem; left: 50%; z-index: 90;
      transform: translateX(-50%) translateY(200%); opacity: 0; pointer-events: none;
      background: var(--orange); color: var(--ink); padding: .95rem 1.8rem; border-radius: 999px;
      display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; font-size: .8rem;
      letter-spacing: .08em; text-transform: uppercase; text-decoration: none; white-space: nowrap;
      box-shadow: 0 14px 36px rgba(20,17,14,.34);
      transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .45s ease;
    }
    #sticky-cta.show { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
    @media (max-width: 600px) { #sticky-cta { bottom: 1rem; padding: .9rem 1.5rem; font-size: .76rem; } }

    /* ─── FOOTER ─── */
    footer { background: #0e0c0a; color: rgba(251,249,246,.62); padding: 4.5rem 1.4rem 2rem; }
    .ft-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 1180px; margin: 0 auto; }
    @media (min-width: 760px) { .ft-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
    .ft-h { font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.1rem; }
    footer a { color: rgba(251,249,246,.62); text-decoration: none; transition: color .2s ease; }
    footer a:hover { color: var(--orange-lt); }
    .ft-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; font-size: .88rem; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
      #hero-img { animation: none; }
    }
  
  /* Ed has no logo file, so the nav mark is a wordmark */
  #nav-logo{font-family:'DM Serif Display',serif;font-size:1.32rem;font-weight:600;letter-spacing:-.01em;
    color:var(--warmwhite);text-decoration:none;white-space:nowrap;transition:color .3s ease}
  #nav.scrolled #nav-logo{color:var(--ink)}
  /* Services, AR Masonry pattern: photo card, dark gradient, content pinned to the bottom. */
  .svc-grid-arm{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:1.25rem}
  .svc-grid-arm > div{border:1px solid rgba(255,255,255,.13);border-radius:12px;padding:1.85rem;
    min-height:300px;display:flex;flex-direction:column;justify-content:flex-end;cursor:pointer;
    background-origin:border-box;position:relative;overflow:hidden;
    transition:transform .25s ease,box-shadow .25s ease}
  .svc-grid-arm > div:hover{transform:translateY(-4px);box-shadow:0 16px 48px rgba(0,0,0,.34)}
  .svc-arm-ico{width:46px;height:46px;border-radius:11px;background:rgba(250,248,245,.92);
    box-shadow:0 2px 10px rgba(0,0,0,.12);display:flex;align-items:center;justify-content:center;
    margin-bottom:1.15rem}
  .svc-arm-ico svg{stroke:var(--orange-dk)}
  .svc-grid-arm h3{font-family:'DM Serif Display',serif;font-size:1.3rem;font-weight:400;
    color:var(--warmwhite);margin-bottom:.55rem;line-height:1.2}
  .svc-grid-arm p{font-size:.88rem;color:rgba(250,248,245,.9);line-height:1.65}
  .svc-grid-arm a{display:inline-flex;align-items:center;gap:6px;margin-top:.85rem;font-size:.72rem;
    font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--orange-lt);text-decoration:none}
  .svc-grid-arm a:hover{color:var(--warmwhite)}
  @media(max-width:600px){
    .svc-grid-arm{grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:.75rem}
    .svc-grid-arm > div{padding:1.15rem 1rem;min-width:0;min-height:150px}
    .svc-grid-arm p{display:none}
    .svc-grid-arm h3{font-size:.98rem;margin-bottom:0;overflow-wrap:anywhere}
    .svc-arm-ico{width:38px;height:38px;margin-bottom:.85rem}
    .svc-arm-ico svg{width:20px;height:20px}
  }

  /* (superseded) plain service cards He only has 6 usable photos and none of them show
     plumbing, a water heater or a bathroom, so stock was doing the pretending. Icon-led
     instead, and the real photos carry the Our Work section. */
  .svc-card--plain{display:flex;flex-direction:column;justify-content:flex-start;min-height:236px;
    background:linear-gradient(158deg,rgba(26,23,20,.045),rgba(26,23,20,.015));}
  .svc-card--plain .svc-body{padding-top:1.9rem;}
  .svc-card--plain .svc-ico{position:static;margin-bottom:1.05rem;width:46px;height:46px;
    border-radius:12px;background:var(--ink);display:flex;align-items:center;justify-content:center;}
  .svc-card--plain .svc-ico svg{stroke:var(--orange);}
  .svc-card--plain h3{margin-bottom:.5rem;}

  /* Gallery: marquee of the best, then every photo as a compact clickable tile.
     Both .mq-pic and .gal-tile are already bound to the lightbox by the shared script. */
  .thumb-head{display:flex;align-items:baseline;gap:.7rem;margin-top:2.6rem;margin-bottom:.9rem}
  .thumb-head span:first-child{font-size:.66rem;font-weight:800;letter-spacing:.18em;
    text-transform:uppercase;color:var(--slate)}
  .thumb-count{font-size:.72rem;font-weight:700;color:var(--orange-dk)}
  .thumb-strip{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:10px}
  .thumb-strip .gal-tile{aspect-ratio:4/5;border-radius:10px}
  .thumb-strip .gal-tile:hover img{transform:scale(1.06)}
  /* collapsed until "show all" is pressed. display:none also stops the browser
     fetching the hidden tiles, so the initial load only pulls what is visible. */
  .thumb-strip .gal-tile:nth-child(n+11){display:none}
  .thumb-strip.all .gal-tile{display:block}
  .thumb-more{display:inline-flex;align-items:center;gap:.5rem;margin-top:1.4rem;cursor:pointer;
    background:transparent;border:1px solid rgba(26,23,20,.22);border-radius:999px;
    padding:.8rem 1.5rem;font-family:'Manrope',sans-serif;font-size:.74rem;font-weight:800;
    letter-spacing:.1em;text-transform:uppercase;color:var(--ink);transition:.22s}
  .thumb-more:hover{background:var(--ink);color:var(--cream);border-color:var(--ink)}
  .thumb-more svg{transition:transform .25s ease}
  .thumb-more[aria-expanded="true"] svg{transform:rotate(180deg)}
  @media(max-width:600px){
    .thumb-strip{grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:8px}
    .thumb-strip .gal-tile:nth-child(n+7){display:none}
    .thumb-strip.all .gal-tile{display:block}
  }

  /* photo on the right for this one. `order` does not move an item between grid
     tracks reliably, so place both children explicitly. */
  .trex-card.trex-card--steps{grid-template-columns:1fr 220px;margin-top:-.4rem}
  .trex-card.trex-card--steps .trex-card-body{grid-column:1;grid-row:1}
  .trex-card.trex-card--steps .trex-card-pic{grid-column:2;grid-row:1}
  @media(max-width:700px){
    .trex-card.trex-card--steps{grid-template-columns:1fr}
    .trex-card.trex-card--steps .trex-card-pic{grid-column:1;grid-row:1}
    .trex-card.trex-card--steps .trex-card-body{grid-column:1;grid-row:2}
  }

  /* Trex credential card, promised in contract section 1. A photo + credential module
     rather than a full-width banner, which read as generic. */
  .trex-card{display:grid;grid-template-columns:220px 1fr;gap:0;text-decoration:none;
    background:var(--warmwhite);border:1px solid rgba(26,23,20,.1);border-radius:16px;
    overflow:hidden;margin-bottom:2.2rem;max-width:880px;box-shadow:0 10px 30px rgba(26,23,20,.07);
    transition:transform .25s ease,box-shadow .25s ease}
  .trex-card:hover{transform:translateY(-3px);box-shadow:0 18px 44px rgba(26,23,20,.13)}
  .trex-card-pic{position:relative;min-height:170px}
  .trex-card-pic img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
  .trex-card-body{padding:1.7rem 1.9rem}
  .trex-card-eyebrow{display:flex;align-items:center;gap:.5rem;color:var(--orange-dk);
    font-size:.66rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase;margin-bottom:.7rem}
  .trex-card h3{font-family:'DM Serif Display',serif;font-weight:400;font-size:1.45rem;
    color:var(--ink);margin-bottom:.5rem}
  .trex-card p{font-size:.9rem;line-height:1.7;color:var(--slate);max-width:60ch;margin-bottom:.9rem}
  .trex-card-go{display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:800;
    letter-spacing:.09em;text-transform:uppercase;color:var(--orange-dk)}
  .trex-card:hover .trex-card-go{color:var(--ink)}
  @media(max-width:700px){
    .trex-card{grid-template-columns:1fr}
    .trex-card-pic{height:170px}
    .trex-card-body{padding:1.35rem 1.3rem}
  }

/* subpage hero: same language as the home hero, shorter so the content starts sooner */
.sub-hero{position:relative;min-height:62svh;display:flex;align-items:flex-end;background:var(--ink);
  overflow:hidden;padding-top:6rem}
.sub-hero > img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;pointer-events:none}
.sub-hero .ov{position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(105deg,rgba(12,10,8,.94) 0%,rgba(12,10,8,.86) 38%,rgba(12,10,8,.62) 70%,rgba(12,10,8,.44) 100%),
             linear-gradient(to bottom,rgba(12,10,8,.55) 0%,rgba(12,10,8,.25) 40%,rgba(12,10,8,.78) 100%)}
.sub-hero .hero-h1{font-size:clamp(2.4rem,6.4vw,4.6rem)}
.crumb{position:relative;z-index:4;margin-top:.4rem;font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;
  color:rgba(251,249,246,.45);margin-bottom:1.2rem}
.crumb a{color:rgba(251,249,246,.72);text-decoration:none}
.crumb a:hover{color:var(--orange)}
/* feature cards for the sub-points of a service (no photography for these) */
.feat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.25rem;margin-top:2.6rem}
.feat-card{background:var(--warmwhite);border:1px solid rgba(26,23,20,.09);border-radius:14px;padding:1.6rem 1.5rem;
  box-shadow:0 4px 18px rgba(26,23,20,.05)}
.feat-ico{width:44px;height:44px;border-radius:11px;background:var(--ink);display:flex;align-items:center;
  justify-content:center;margin-bottom:1rem}
.feat-ico svg{stroke:var(--orange)}
.feat-card h3{font-family:'DM Serif Display',serif;font-weight:400;font-size:1.22rem;color:var(--ink);margin-bottom:.5rem}
.feat-card p{font-size:.89rem;line-height:1.7;color:var(--slate)}
.other-links{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:2rem}
.other-links a{font-size:.78rem;font-weight:700;padding:.6rem 1.1rem;border-radius:999px;
  border:1px solid rgba(251,249,246,.22);color:rgba(251,249,246,.88);text-decoration:none;transition:.2s}
.other-links a:hover{background:var(--orange);border-color:var(--orange);color:var(--ink)}
