    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green:       #44503B;
      --green-mid:   #525E48;
      --green-pale:  #E7EBDD;
      --cream:       #F6F4EE;
      --dark:        #2A2824;
      --mid:         #7A766E;
      --light:       #E7E3DA;
      --white:       #FBFAF6;
      --display:     'Archivo', sans-serif;
      --body:        'DM Sans', sans-serif;
      --max:         1280px;
      --pad:         48px;
      --section:     120px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--body);
      color: var(--dark);
      background: var(--cream);
      overflow-x: hidden;
    }

    /* ── UTILITY ── */
    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--pad);
    }

    .section-label {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 40px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 32px;
      height: 2px;
      background: currentColor;
      opacity: 0.9;
      flex-shrink: 0;
    }

    .link-arrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green);
      text-decoration: none;
      transition: gap 0.3s ease;
    }
    .link-arrow::after { content: '→'; }
    .link-arrow:hover { gap: 16px; }

    .link-arrow--light { color: rgba(255,255,255,0.7); }
    .link-arrow--light:hover { color: #fff; }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .fade-up.in { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }
    .d4 { transition-delay: 0.4s; }

    /* Image mask-reveal: photo uncovers with a soft upward wipe + slow settle */
    .reveal-img {
      overflow: hidden;
      box-shadow: 0 24px 50px -28px rgba(40,40,36,0.45);
    }
    .reveal-img img {
      clip-path: inset(0 0 100% 0);
      transform: scale(1.08);
      transition: clip-path 1.1s cubic-bezier(0.16,0.84,0.32,1),
                  transform 1.3s cubic-bezier(0.16,0.84,0.32,1);
    }
    .reveal-img.in img { clip-path: inset(0 0 0 0); transform: scale(1); }

    /* Hero load-in: staggered rise of headline, sub-line and actions */
    @keyframes heroRise {
      to { opacity: 1; transform: translateY(0); }
    }
    .hero h1,
    .hero-sub,
    .hero-locations,
    .hero-actions {
      opacity: 0;
      transform: translateY(26px);
      animation: heroRise 1s cubic-bezier(0.16,0.84,0.32,1) forwards;
    }
    .hero h1        { animation-delay: 0.20s; }
    .hero-sub       { animation-delay: 0.38s; }
    .hero-locations { animation-delay: 0.52s; }
    .hero-actions   { animation-delay: 0.66s; }

    .hero-scroll-hint { opacity: 0; animation: heroRise 1s ease 1.1s forwards; }

    /* Section-label accent line draws out as the label enters (scroll-driven, works on touch) */
    .section-label::before {
      width: 0;
      transition: width 0.8s cubic-bezier(0.16,0.84,0.32,1) 0.15s;
    }
    .section-label.in::before { width: 28px; }

    /* Large index numbers do a gentle secondary rise after their card reveals */
    .proj-n, .step-n {
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.7s ease 0.25s, transform 0.7s cubic-bezier(0.16,0.84,0.32,1) 0.25s;
    }
    .fade-up.in .proj-n, .fade-up.in .step-n { opacity: 1; transform: none; }

    /* Tactile press feedback — important on mobile where there's no hover */
    .proj-card:active { transform: scale(0.985); }
    .btn:active, .nav-btn:active, .btn-outline-light:active { transform: scale(0.96); }

    /* Thin scroll-progress bar — subtle sense of place, identical on all devices */
    #progress {
      position: fixed;
      top: 0; left: 0;
      height: 2px;
      width: 0%;
      background: var(--green);
      z-index: 200;
      transition: width 0.1s linear;
    }

    /* ─────────── Responsive ─────────── */

    /* Tablet & below */
    @media (max-width: 900px) {
      :root { --pad: 32px; --section: 92px; }

      .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: none;
        border: 0;
        cursor: pointer;
        padding: 0;
        z-index: 110;
      }
      .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform 0.3s ease, opacity 0.3s ease;
      }
      #nav:not(.scrolled) .nav-toggle { color: #fff; }
      #nav.scrolled .nav-toggle, #nav.open .nav-toggle { color: var(--dark); }
      #nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      #nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
      #nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      .nav-links {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(247,245,240,0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 var(--pad);
      }
      #nav.open .nav-links { max-height: 280px; padding: 8px var(--pad) 18px; }
      .nav-links li { width: 100%; border-bottom: 1px solid var(--light); }
      .nav-links li:last-child { border-bottom: none; }
      .nav-links a, #nav:not(.scrolled) .nav-links a {
        display: block;
        padding: 16px 0;
        color: var(--dark);
        font-size: 13px;
      }
      .nav-btn { margin-right: 56px; }

      .promise-grid, .approach-grid, .builds-grid {
        grid-template-columns: 1fr;
        gap: 44px;
      }
      .s-cta { grid-template-columns: 1fr; }
      .cta-photo { min-height: 380px; order: -1; }
      .cta-body { padding: 56px var(--pad); }
      /* Keep the photo below the words on stacked layouts */
      .approach-img { order: 2; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
    }

    /* Phones */
    @media (max-width: 600px) {
      :root { --pad: 22px; --section: 68px; }

      .nav-logo svg { height: 54px; }
      .projects-grid { grid-template-columns: 1fr; gap: 32px; }
      .process-row { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }

      .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
      .hero-actions .btn { width: 100%; text-align: center; }
      .nav-btn { padding: 9px 16px; font-size: 11px; margin-right: 48px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .fade-up, .reveal-img img,
      .hero-slide, .promises li,
      .hero h1, .hero-sub, .hero-locations, .hero-actions, .hero-scroll-hint,
      .section-label::before, .proj-n, .step-n {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
      }
      .section-label::before { width: 28px !important; }
      .promises li::after { width: 38px !important; transition: none !important; }
      .builds-head .love::after { width: 100% !important; transition: none !important; }
      .reel-inner { transition: none !important; transform: translateY(calc(var(--t,0) * -1em)) !important; }
      .pm-step::before { transition: none !important; width: 100% !important; }
      #progress { display: none; }
    }

    /* ── NAV ── */
    #nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px var(--pad);
      transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
      border-bottom: 1px solid transparent;
    }
    #nav.scrolled {
      background: rgba(247,245,240,0.95);
      backdrop-filter: blur(10px);
      padding: 16px var(--pad);
      border-bottom-color: var(--light);
    }

    .nav-logo svg {
      height: 74px;
      width: auto;
      display: block;
      will-change: height;
    }
    #nav:not(.scrolled) .nav-logo svg path { fill: #fff; }
    #nav.scrolled     .nav-logo svg path { fill: var(--green); }

    .nav-toggle { display: none; }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      text-decoration: none;
      transition: opacity 0.25s ease;
    }
    #nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.8); }
    #nav.scrolled       .nav-links a { color: var(--dark); }
    .nav-links a:hover { opacity: 1; }
    #nav:not(.scrolled) .nav-links a:hover { color: #fff; }
    #nav.scrolled       .nav-links a:hover { color: var(--green); }

    .nav-btn {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 10px 22px;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    #nav:not(.scrolled) .nav-btn {
      color: #fff;
      border: 1px solid rgba(255,255,255,0.45);
    }
    #nav:not(.scrolled) .nav-btn:hover {
      background: #fff;
      color: var(--dark);
      border-color: #fff;
    }
    #nav.scrolled .nav-btn {
      color: var(--green);
      border: 1px solid var(--green);
    }
    #nav.scrolled .nav-btn:hover {
      background: var(--green);
      color: #fff;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 680px;
      overflow: hidden;
      background: var(--dark)
        url('images/hero.jpg') center/cover no-repeat;
    }

    .hero-slides { position: absolute; inset: 0; }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.4s ease;
      will-change: opacity, transform;
    }
    .hero-slide.is-active {
      opacity: 1;
      animation: heroKenBurns 7s ease-out forwards;
    }
    @keyframes heroKenBurns {
      from { transform: scale(1.04); }
      to   { transform: scale(1.13); }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(30,28,22,0.12) 0%,
        rgba(30,28,22,0.45) 60%,
        rgba(30,28,22,0.62) 100%
      );
    }

    .hero-body {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 var(--pad) 88px;
      max-width: var(--max);
      margin: 0 auto;
    }

    .hero-locations {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(246,244,238,0.7);
      margin-bottom: 40px;
    }

    .hero h1 {
      font-family: var(--display);
      font-size: clamp(42px, 5.5vw, 80px);
      font-weight: 700;
      line-height: 1.04;
      color: #F6F4EE;
      max-width: 800px;
      margin-bottom: 28px;
      letter-spacing: -0.02em;
    }

    .hero-sub {
      font-size: clamp(20px, 2.1vw, 27px);
      font-weight: 400;
      line-height: 1.6;
      color: rgba(246,244,238,0.9);
      max-width: 540px;
      margin-bottom: 20px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .btn {
      display: inline-block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 15px 34px;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .btn-solid {
      background: var(--green);
      color: #fff;
      border: 1px solid var(--green);
    }
    .btn-solid:hover { background: var(--green-mid); border-color: var(--green-mid); }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.6);
    }
    .btn-outline:hover { background: #fff; color: var(--green); border-color: #fff; }

    /* Hero "View Projects" — lighter green so it reads clearly against the dark hero image */
    .hero-actions .btn-solid {
      background: var(--green-pale);
      color: var(--green);
      border-color: var(--green-pale);
    }
    .hero-actions .btn-solid:hover { background: #fff; color: var(--green); border-color: #fff; }

    .hero-scroll-hint {
      position: absolute;
      right: var(--pad);
      bottom: 44px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.4);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .hero-scroll-hint::after {
      content: '';
      display: block;
      width: 1px;
      height: 44px;
      background: rgba(255,255,255,0.3);
      animation: pulse-line 2.2s ease-in-out infinite;
    }
    @keyframes pulse-line {
      0%,100% { opacity:0.3; transform:scaleY(1); transform-origin:top; }
      50%      { opacity:0.8; transform:scaleY(0.5); transform-origin:top; }
    }

    /* ── PROMISE ── */
    .s-promise {
      padding: var(--section) 0;
      background: var(--green-pale);
    }

    .promise-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 96px;
      align-items: center;
    }

    /* Confident lead statement — the promise itself leads the section */
    .promise-head {
      font-family: var(--display);
      font-size: clamp(32px, 3.6vw, 54px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: var(--dark);
      margin-bottom: 26px;
      max-width: 560px;
    }
    .promise-head .accent { color: var(--green); }

    /* Supporting context — deliberately quieter than the promise above */
    .promise-left p {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.78;
      color: #57524B;
      margin-bottom: 16px;
      max-width: 440px;
    }
    /* Solution line — the confident answer, stronger than the problem above it */
    .promise-left p.solution {
      color: var(--dark);
      font-weight: 500;
    }

    .promises {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      margin-top: 52px;
    }

    .promises li {
      position: relative;
      padding-bottom: 16px;
      white-space: nowrap;
      font-family: var(--display);
      font-size: clamp(19px, 1.9vw, 25px);
      font-weight: 700;
      letter-spacing: -0.015em;
      color: var(--dark);
      /* staggered rise on reveal */
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,0.84,0.32,1);
    }
    .promises.in li { opacity: 1; transform: none; }
    .promises.in li:nth-child(1) { transition-delay: 0.05s; }
    .promises.in li:nth-child(2) { transition-delay: 0.15s; }
    .promises.in li:nth-child(3) { transition-delay: 0.25s; }
    .promises.in li:nth-child(4) { transition-delay: 0.35s; }

    /* Modern animated underline replaces the diamond markers */
    .promises li::after {
      content: '';
      position: absolute;
      left: 0; bottom: 0;
      height: 3px;
      width: 0;
      background: var(--green);
      transition: width 0.7s cubic-bezier(0.16,0.84,0.32,1);
    }
    .promises.in li::after { width: 38px; }
    .promises.in li:nth-child(1)::after { transition-delay: 0.30s; }
    .promises.in li:nth-child(2)::after { transition-delay: 0.40s; }
    .promises.in li:nth-child(3)::after { transition-delay: 0.50s; }
    .promises.in li:nth-child(4)::after { transition-delay: 0.60s; }
    .promises li:hover::after { width: 100%; }

    /* Credential line — reinforces professional quality, conversationally */
    .credential {
      margin-top: 36px;
      padding-top: 26px;
      border-top: 1px solid rgba(68,80,59,0.18);
      font-size: 15px;
      line-height: 1.65;
      color: #57524B;
      max-width: 440px;
    }

    .promise-right img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* ── APPROACH ── */
    .s-approach {
      padding: var(--section) 0;
      background: var(--white);
    }

    .approach-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 96px;
      align-items: center;
    }

    .approach-img img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      display: block;
    }

    .approach-text h2 {
      font-family: var(--display);
      font-size: clamp(30px, 3.1vw, 48px);
      font-weight: 700;
      line-height: 1.06;
      letter-spacing: -0.025em;
      margin-bottom: 26px;
    }

    .approach-text p {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.78;
      color: #57524B;
      margin-bottom: 16px;
      max-width: 460px;
    }
    .approach-text p.lead {
      font-size: clamp(19px, 1.7vw, 23px);
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: -0.01em;
      color: var(--dark);
      margin-bottom: 20px;
    }

    /* ── INTERLUDE (stock timber band) ── */
    .s-interlude {
      position: relative;
      min-height: 460px;
      height: 58vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .s-interlude img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 60%;
    }
    .s-interlude .interlude-overlay {
      position: absolute;
      inset: 0;
      background: rgba(44,50,38,0.58);
    }
    .interlude-inner {
      position: relative;
      z-index: 2;
      max-width: 720px;
      padding: 0 var(--pad);
      color: #fff;
    }
    .interlude-inner h2 {
      font-family: var(--display);
      font-size: clamp(30px, 3.4vw, 50px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.08;
      margin-bottom: 20px;
    }
    .interlude-inner p {
      font-size: clamp(15px, 1.4vw, 17px);
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255,255,255,0.82);
      max-width: 540px;
      margin: 0 auto;
    }

    /* ── BUILDS ── */
    .s-builds {
      padding: var(--section) 0;
      background: var(--green);
    }

    .s-builds .section-label { color: rgba(255,255,255,0.85); }

    .builds-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 96px;
      align-items: center;
    }

    .builds-text h2 {
      font-family: var(--display);
      font-size: clamp(30px, 3.1vw, 48px);
      font-weight: 700;
      line-height: 1.06;
      letter-spacing: -0.025em;
      color: #fff;
      margin-bottom: 28px;
    }

    /* Problem → solution explorer */
    .builds-head {
      margin: 0 auto 56px;
      text-align: center;
    }
    .builds-head .section-label { justify-content: center; }
    .builds-head h2 {
      font-family: var(--display);
      font-size: clamp(30px, 3.6vw, 54px);
      font-weight: 700;
      line-height: 1.04;
      letter-spacing: -0.025em;
      color: #fff;
    }
    @media (min-width: 600px) { .builds-head h2 { white-space: nowrap; } }

    /* Subtle underline draws under "love" as the heading appears */
    .builds-head .love { position: relative; white-space: nowrap; }
    .builds-head .love::after {
      content: '';
      position: absolute;
      left: 0; bottom: 0.04em;
      height: 3px; width: 0;
      background: rgba(255,255,255,0.85);
      transition: width 0.9s cubic-bezier(0.16,0.84,0.32,1) 0.45s;
    }
    .builds-head h2.in .love::after { width: 100%; }
    .builds-hint {
      font-size: clamp(17px, 1.7vw, 21px);
      font-weight: 400;
      line-height: 1.6;
      color: rgba(255,255,255,0.78);
      max-width: 560px;
      margin: 16px auto 0;
    }
    .ps-list { list-style: none; }
    .ps-item {
      cursor: pointer;
      font-family: var(--display);
      font-size: clamp(22px, 2.4vw, 32px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: rgba(255,255,255,0.34);
      padding: 11px 0;
      transition: color 0.3s ease, transform 0.35s cubic-bezier(0.16,0.84,0.32,1);
    }
    .ps-item.is-active { color: #fff; transform: translateX(10px); }

    .builds-show { align-self: stretch; }
    .builds-show-imgs {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      box-shadow: 0 24px 50px -28px rgba(0,0,0,0.55);
    }
    .builds-show-imgs img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.06);
      transition: opacity 0.7s ease, transform 1.4s ease;
    }
    .builds-show-imgs img.is-active { opacity: 1; transform: scale(1); }
    .builds-sol {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
      font-family: var(--display);
      font-size: 18px;
      font-weight: 600;
      color: #fff;
    }
    .builds-sol-arrow { color: rgba(255,255,255,0.55); }

    /* Mobile: image on top so the auto-cycling fix is the focus */
    @media (max-width: 900px) {
      .builds-show { order: -1; margin-bottom: 8px; }
      .ps-item { padding: 9px 0; }
    }

    /* ── PROJECTS ── */
    .s-projects {
      padding: var(--section) 0;
      background: var(--green-pale);
    }

    .projects-hd {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
    }

    .projects-hd h2 {
      font-family: var(--display);
      font-size: clamp(30px, 3vw, 46px);
      font-weight: 600;
      max-width: 420px;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .proj-card {
      display: block;
      text-decoration: none;
      color: inherit;
      transition: transform 0.4s cubic-bezier(0.16,0.84,0.32,1);
    }
    .proj-card:hover { transform: translateY(-6px); }

    .proj-thumb {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
      margin-bottom: 18px;
    }

    .proj-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s cubic-bezier(0.16,0.84,0.32,1);
    }
    .proj-card:hover .proj-thumb img { transform: scale(1.06); }

    /* Hover overlay — fades up a "View project" cue */
    .proj-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      background: linear-gradient(to top, rgba(42,40,36,0.6), rgba(42,40,36,0) 55%);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,0.84,0.32,1);
    }
    .proj-card:hover .proj-overlay { opacity: 1; transform: translateY(0); }

    .proj-meta {
      font-size: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 8px;
    }

    .proj-title {
      font-family: var(--display);
      font-size: 21px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--dark);
      transition: color 0.3s ease;
    }
    .proj-card:hover .proj-title { color: var(--green); }

    /* ── PROCESS ── */
    .s-process {
      padding: var(--section) 0;
      background: var(--white);
    }

    .process-hd {
      margin-bottom: 64px;
      max-width: 860px;
    }
    .process-hd h2 br { display: none; }
    @media (min-width: 720px) {
      .process-hd h2 br { display: inline; }
      .process-hd h2 { white-space: nowrap; }
    }
    .process-intro {
      font-size: clamp(16px, 1.5vw, 18px);
      font-weight: 400;
      line-height: 1.7;
      color: #57524B;
      margin-top: 18px;
      max-width: 600px;
    }

    .process-hd h2 {
      font-family: var(--display);
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 600;
      line-height: 1.12;
      max-width: 560px;
      letter-spacing: -0.02em;
    }

    /* Segmented timeline — a line above each step, aligned to its number */
    .process-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      border-top: 1px solid rgba(68,80,59,0.18);
    }

    .pm-step {
      position: relative;
      padding-top: 32px;
      text-align: center;
    }
    .pm-step::before {
      content: '';
      position: absolute;
      top: -1px; left: 0;
      height: 2px;
      width: 0;
      background: var(--green);
      transition: width 0.85s cubic-bezier(0.16,0.84,0.32,1);
    }
    .pm-step.in::before { width: 100%; }
    .process-row .pm-step:nth-child(1)::before { transition-delay: 0.10s; }
    .process-row .pm-step:nth-child(2)::before { transition-delay: 0.25s; }
    .process-row .pm-step:nth-child(3)::before { transition-delay: 0.40s; }
    .process-row .pm-step:nth-child(4)::before { transition-delay: 0.55s; }

    /* Odometer rolling number */
    .pm-num {
      display: flex;
      justify-content: center;
      font-family: var(--display);
      font-size: clamp(46px, 6.5vw, 84px);
      font-weight: 700;
      line-height: 1;
      color: var(--green);
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .pm-num .reel {
      display: block;
      height: 1em;
      overflow: hidden;
    }
    .pm-num .reel-inner {
      display: flex;
      flex-direction: column;
      transform: translateY(0);
      transition: transform 1.3s cubic-bezier(0.16,0.84,0.32,1);
    }
    .pm-num .reel-inner span { display: block; height: 1em; line-height: 1; }
    .pm-step.in .reel-inner { transform: translateY(calc(var(--t, 0) * -1em)); }
    .process-row .pm-step:nth-child(1) .reel-inner { transition-delay: 0.15s; }
    .process-row .pm-step:nth-child(2) .reel-inner { transition-delay: 0.30s; }
    .process-row .pm-step:nth-child(3) .reel-inner { transition-delay: 0.45s; }
    .process-row .pm-step:nth-child(4) .reel-inner { transition-delay: 0.60s; }

    .step-title {
      font-family: var(--display);
      font-size: 19px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .step-desc {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.78;
      color: var(--mid);
    }

    /* ── Parallax section backgrounds ── */
    .has-bg { position: relative; overflow: hidden; }
    .has-bg > .container { position: relative; z-index: 2; }
    .parallax-bg {
      position: absolute;
      top: -14%; left: 0;
      width: 100%; height: 128%;
      object-fit: cover;
      z-index: 0;
      will-change: transform;
    }
    .section-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
    .overlay-dark  { background: rgba(44,50,38,0.82); }
    .overlay-light { background: rgba(247,245,239,0.90); }

    /* ── TESTIMONIAL ── */
    .s-testimonial {
      padding: var(--section) 0;
      background: var(--cream);
      border-top: 1px solid var(--light);
      border-bottom: 1px solid var(--light);
    }
    /* Image-backed testimonial: flip text to light */
    .s-testimonial.has-bg { background: var(--green); }
    .s-testimonial.has-bg .quote-body { color: rgba(255,255,255,0.88); font-weight: 400; }
    .s-testimonial.has-bg .quote-mark { color: #fff; opacity: 0.4; }
    .s-testimonial.has-bg .quote-attr { color: rgba(255,255,255,0.72); }
    .s-testimonial.has-bg .section-label { color: rgba(255,255,255,0.9); }
    .s-testimonial.has-bg .section-label::before { background: rgba(255,255,255,0.9); }

    .testimonial-inner {
      max-width: 820px;
      margin: 0 auto;
      text-align: center;
    }

    .quote-mark {
      font-family: var(--display);
      font-size: 100px;
      line-height: 0.6;
      color: var(--green);
      opacity: 0.25;
      margin-bottom: 36px;
      display: block;
    }

    .quote-body {
      font-family: var(--display);
      font-size: clamp(21px, 2.4vw, 30px);
      font-weight: 500;
      line-height: 1.4;
      letter-spacing: -0.015em;
      color: var(--dark);
      margin-bottom: 36px;
    }

    .quote-attr {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mid);
    }

    /* Rotating testimonials */
    .t-heading {
      font-family: var(--display);
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 700;
      line-height: 1.04;
      letter-spacing: -0.03em;
      color: #fff;
      margin-bottom: 52px;
    }
    .t-slides { position: relative; }
    .t-slide {
      position: absolute;
      inset: 0;
      margin: 0;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,0.84,0.32,1);
      pointer-events: none;
    }
    .t-slide.is-active {
      position: relative;
      opacity: 1;
      transform: none;
      pointer-events: auto;
    }
    .t-stars {
      display: block;
      font-size: 17px;
      letter-spacing: 4px;
      color: #d9a441;
      margin-bottom: 26px;
    }
    .t-slide .quote-body { margin-bottom: 28px; }

    .t-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 38px;
    }
    .t-dot {
      width: 9px;
      height: 9px;
      padding: 0;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.55);
      background: transparent;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .t-dot.is-active { background: #fff; transform: scale(1.15); }

    /* Google reviews button */
    .t-verify-btn { margin-top: 36px; }

    /* ── CTA BANNER ── */
    .s-cta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 560px;
      background: var(--green);
      overflow: hidden;
    }

    .cta-photo { position: relative; overflow: hidden; }
    .cta-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 18%;
      display: block;
    }

    .cta-eyebrow {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 22px;
    }

    .cta-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: left;
      padding: 80px clamp(36px, 5.5vw, 96px);
    }
    .cta-body .btn-outline-light { align-self: flex-start; }

    .cta-body h2 {
      font-family: var(--display);
      font-size: clamp(34px, 3.6vw, 56px);
      font-weight: 700;
      color: #fff;
      line-height: 1.04;
      letter-spacing: -0.025em;
      margin-bottom: 20px;
    }

    .cta-sub {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,0.8);
      max-width: 430px;
      margin-bottom: 36px;
    }

    .btn-outline-light {
      display: inline-block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 16px 44px;
      border: 1px solid rgba(255,255,255,0.55);
      color: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .btn-outline-light:hover {
      background: #fff;
      color: var(--green);
      border-color: #fff;
    }

    /* Solid light button (for the green CTA panel) */
    .btn-light {
      display: inline-block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 16px 44px;
      border-radius: 2px;
      background: #fff;
      color: var(--green);
      border: 1px solid #fff;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-light:hover { background: transparent; color: #fff; }
    .btn-light:active { transform: scale(0.96); }

    .cta-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

    /* Floating WhatsApp button (site-wide) */
    .wa-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 22px rgba(0,0,0,0.25);
      z-index: 250;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(0,0,0,0.32); }
    .wa-float svg { width: 30px; height: 30px; fill: #fff; }
    @media (max-width: 600px) {
      .wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
      .wa-float svg { width: 27px; height: 27px; }
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      padding: 72px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 56px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      margin-bottom: 36px;
    }

    .ft-logo svg { height: 56px; display: block; }

    .ft-tagline {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,0.35);
      line-height: 1.75;
      margin-top: 18px;
      max-width: 220px;
    }

    .ft-col h4 {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
      margin-bottom: 22px;
    }

    .ft-col ul { list-style: none; }
    .ft-col ul li { margin-bottom: 13px; }
    .ft-col ul a {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.25s ease;
    }
    .ft-col ul a:hover { color: #fff; }

    .ft-contact { display: flex; flex-direction: column; gap: 13px; }
    .ft-contact a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.25s ease;
    }
    .ft-contact a:hover { color: #fff; }
    .ft-contact a .ext { font-size: 11px; opacity: 0.4; }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .ft-legal {
      font-size: 12px;
      color: rgba(255,255,255,0.2);
    }
    .ft-legal a {
      color: rgba(255,255,255,0.2);
      text-decoration: none;
      transition: color 0.25s ease;
    }
    .ft-legal a:hover { color: rgba(255,255,255,0.5); }
/* ═══════════════ SUB-PAGES ═══════════════ */
body.subpage { padding-top: 0; }
.subpage #nav {
  background: rgba(247,245,240,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light);
  padding: 16px var(--pad);
  position: fixed;
}
.subpage #nav .nav-links a { color: var(--dark); }
.subpage #nav .nav-links a:hover { color: var(--green); }
.subpage #nav .nav-btn { background: var(--green); color: #fff; border: 1px solid var(--green); }
.subpage #nav .nav-btn:hover { background: var(--green-mid); }
.subpage #nav .nav-toggle { color: var(--dark); }
.nav-logo-img { height: 40px; width: auto; display: block; }

/* Page hero (interior) */
.page-hero {
  padding: 168px 0 64px;
  background: var(--cream);
  border-bottom: 1px solid var(--light);
}
.page-hero .page-eyebrow {
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 22px;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.02em;
  color: var(--dark); max-width: 760px; margin-bottom: 24px;
}
.page-hero .page-intro {
  font-size: clamp(17px, 1.6vw, 20px); font-weight: 400; line-height: 1.65;
  color: #57524B; max-width: 600px;
}

/* Case-study rows (Projects) */
.cs-band--cream { background: var(--cream); }
.cs-band--sage { background: var(--green-pale); }
.cs-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; padding: var(--section) 0;
  scroll-margin-top: 100px;
}
.about-first .cs-row { grid-template-columns: 0.7fr 1.3fr; gap: 72px; padding-top: 152px; }
.about-first .cs-text p { max-width: none; text-align: left; }
.cs-row:nth-child(even) .cs-media { order: 2; }
/* Projects page: tighten the gap between the hero and the first project */
.page-hero + .cs-band .cs-row { padding-top: 40px; }
.cs-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
/* Ensure the small green eyebrow label wins over .cs-text p / .about-personal p (higher specificity) */
.cs-text p.cs-eyebrow, .about-personal p.cs-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); line-height: 1.4; margin-bottom: 16px; text-align: left;
}
.cs-text h2 { font-family: var(--display); font-size: clamp(28px, 3vw, 42px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px; color: var(--dark); }
.project-spec { font-size: 13px; letter-spacing: 0.06em; color: var(--mid); margin: -8px 0 20px; }
.cs-text p { font-size: 16px; font-weight: 400; line-height: 1.8; color: #57524B; max-width: 480px; margin-bottom: 1em; }
.cs-text p:last-child { margin-bottom: 0; }
.cs-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; box-shadow: 0 24px 50px -28px rgba(40,40,36,0.45); }
.cs-gallery { display: flex; gap: 14px; margin-top: 28px; }
.cs-gallery .reveal-img { flex: 1 1 0; min-width: 0; }
.cs-gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }

/* Process detail page */
.pd-step {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; padding: 72px 0; border-bottom: 1px solid var(--light);
}
.pd-step:nth-child(even) .pd-media { order: 2; }
.pd-num { font-family: var(--display); font-size: clamp(56px, 8vw, 110px); font-weight: 700; color: var(--green); line-height: 1; letter-spacing: -0.03em; margin-bottom: 18px; }
.pd-text h2 { font-family: var(--display); font-size: clamp(24px, 2.6vw, 36px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 18px; color: var(--dark); }
.pd-text p { font-size: 16px; line-height: 1.8; color: #57524B; margin-bottom: 14px; max-width: 520px; }
.pd-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; box-shadow: 0 24px 50px -28px rgba(40,40,36,0.45); }

/* Contact page */
.page-hero--dark { background: var(--green); border-bottom: none; }
.page-hero--dark h1 { color: #F6F4EE; }
.page-hero--dark .page-intro { color: rgba(255,255,255,0.8); }

.contact-booking { padding: var(--section) 0; background: var(--green-pale); }
.contact-message { padding: var(--section) 0; background: var(--cream); }

/* Booking: portrait + chat */
.cb-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.cb-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.cb-text .booking-title { text-align: left; }
.cb-text .booking-text { margin: 0 0 6px; max-width: 440px; }
.cb-text .booking-note { font-size: 15px; color: var(--mid); margin: 0 0 28px; }
.cb-details {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(68,80,59,0.2);
  display: flex; flex-wrap: wrap; gap: 18px 44px;
}
.cb-details .contact-detail { margin-bottom: 0; }

/* Message: form + car */
.cm-grid { max-width: 600px; margin: 0 auto; }
.cm-title { font-family: var(--display); font-size: clamp(28px, 3vw, 42px); font-weight: 700; letter-spacing: -0.025em; color: var(--dark); margin-bottom: 10px; }
.cm-note { font-size: 16px; line-height: 1.6; color: #57524B; margin-bottom: 32px; }
.cm-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.cm-direct {
  margin-top: 72px;
  padding-top: 44px;
  border-top: 1px solid var(--light);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.cm-direct .contact-detail a { font-size: 17px; }
.cm-direct .contact-detail:nth-child(1) { text-align: left; }
.cm-direct .contact-detail:nth-child(2) { text-align: center; }
.cm-direct .contact-detail:nth-child(3) { text-align: center; }
.cm-direct .contact-detail:nth-child(4) { text-align: right; }
@media (max-width: 820px) {
  .cm-direct { grid-template-columns: 1fr 1fr; gap: 28px 32px; }
  .cm-direct .contact-detail:nth-child(odd) { text-align: left; }
  .cm-direct .contact-detail:nth-child(even) { text-align: right; }
}
@media (max-width: 600px) {
  .cm-direct { grid-template-columns: 1fr; gap: 22px; }
  .cm-direct .contact-detail:nth-child(n) { text-align: center; }
}
.cm-photo-note { font-size: 14px; color: var(--mid); line-height: 1.6; margin-top: 16px; }

@media (max-width: 900px) {
  .cb-grid, .cm-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-photos img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) { .contact-photos { grid-template-columns: 1fr; } }
.contact-h1 { max-width: none; }
@media (min-width: 640px) { .contact-h1 { white-space: nowrap; } }

/* Contact page — booking block */
.booking-block { text-align: center; max-width: 620px; margin: 0 auto 72px; }
.booking-title {
  font-family: var(--display); font-size: clamp(28px, 3vw, 42px);
  font-weight: 700; letter-spacing: -0.025em; color: var(--dark); margin-bottom: 16px;
}
.booking-text {
  font-size: 16px; line-height: 1.7; color: #57524B;
  max-width: 480px; margin: 0 auto 28px;
}
.contact-or {
  display: flex; align-items: center; gap: 22px;
  max-width: 620px; margin: 0 auto 50px;
  color: var(--mid); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
}
.contact-or::before, .contact-or::after {
  content: ''; flex: 1; height: 1px; background: var(--light);
}

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: var(--section) 0; align-items: start; }
.contact-info h2 { font-family: var(--display); font-size: clamp(26px, 2.6vw, 38px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 22px; color: var(--dark); }
.contact-info p { font-size: 16px; line-height: 1.8; color: #57524B; max-width: 440px; margin-bottom: 30px; }
.contact-detail { margin-bottom: 18px; }
.contact-detail .lbl { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 5px; }
.contact-detail a, .contact-detail span { font-size: 17px; color: var(--dark); text-decoration: none; }
.contact-detail a:hover { color: var(--green); }
.contact-detail .contact-note { display: block; font-size: 14px; color: var(--mid); margin-top: 6px; line-height: 1.5; }

.c-form { display: flex; flex-direction: column; gap: 22px; }
.c-field label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }
.c-field input, .c-field textarea {
  width: 100%; font-family: var(--body); font-size: 16px; color: var(--dark);
  background: #fff; border: 1px solid var(--light); border-radius: 2px;
  padding: 14px 16px; transition: border-color 0.25s ease;
}
.c-field input:focus, .c-field textarea:focus { outline: none; border-color: var(--green); }
.c-field textarea { resize: vertical; min-height: 130px; }
.c-form button { align-self: flex-start; cursor: pointer; border: 1px solid var(--green); }
.c-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.c-status { font-size: 15px; line-height: 1.5; margin: 4px 0 0; }
.c-status.is-ok { color: var(--green); }
.c-status.is-err { color: #b4452f; }

@media (max-width: 900px) {
  .cs-row, .pd-step, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cs-row:nth-child(even) .cs-media, .pd-step:nth-child(even) .pd-media { order: 0; }
  /* About first section: stack photo above text instead of the desktop narrow-column layout */
  .about-first .cs-row { grid-template-columns: 1fr; gap: 36px; padding-top: 116px; }
  .page-hero { padding: 130px 0 52px; }
}

/* ═══════════════ ACCESSIBILITY & POLISH ═══════════════ */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Visible keyboard focus (only for keyboard users, not mouse clicks) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}
/* On dark backgrounds, use a light ring */
.hero a:focus-visible, .s-cta a:focus-visible,
.s-builds a:focus-visible, .s-testimonial a:focus-visible,
.t-dot:focus-visible { outline-color: #fff; }

/* Skip-to-content link for screen-reader / keyboard users */
.skip-link {
  position: absolute; left: 16px; top: -48px;
  background: var(--green); color: #fff; padding: 10px 18px;
  border-radius: 2px; font-size: 13px; z-index: 300;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 16px; }

/* Make section background images more prominent (lighter overlays) */
.s-projects .section-overlay { background: rgba(247,245,239,0.72); }
.s-process  .section-overlay { background: rgba(247,245,239,0.80); }
.s-testimonial .section-overlay { background: rgba(44,50,38,0.6); }

/* Sub-page footer logo (image version) */
.ft-logo-img { height: 58px; width: auto; filter: invert(1); opacity: 0.55; }
/* About — personal section */
.about-quote { text-align: center; padding: 0 0 48px; border-left: none; margin-top: -24px; }
.about-quote-stars { color: #C9962A; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.about-quote p { font-size: clamp(18px, 2vw, 24px); line-height: 1.6; color: var(--dark); font-style: italic; margin-bottom: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.about-quote cite { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-style: normal; }

.about-personal { background: var(--light); padding: var(--section) 0; }
.about-personal-inner { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 72px; align-items: center; }
.about-personal h2 { font-family: var(--display); font-size: clamp(28px,3vw,44px); font-weight: 700; letter-spacing: -0.025em; color: var(--dark); margin-bottom: 24px; }
.about-personal p { font-size: clamp(16px,1.5vw,18px); line-height: 1.75; color: #57524B; margin-bottom: 16px; }
.about-personal-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; box-shadow: 0 24px 50px -28px rgba(40,40,36,0.45); }
@media (max-width: 900px) { .about-personal-inner { grid-template-columns: 1fr; gap: 40px; } }

/* Legal pages (Privacy / Cookies) */
.legal { padding: 40px 0 var(--section); }
.legal-inner { max-width: 760px; }
.legal-updated { font-size: 14px; color: var(--mid); margin-bottom: 40px; }
.legal h2 { font-family: var(--display); font-size: clamp(20px,2.2vw,26px); font-weight: 600; letter-spacing: -0.015em; color: var(--dark); margin: 44px 0 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { font-size: 16px; line-height: 1.8; color: #57524B; margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--green); }
.legal a:hover { text-decoration: underline; }

/* Projects hero headline — keep on one line where it fits */
.projects-h1 { max-width: none; }
@media (min-width: 640px) { .projects-h1 { white-space: nowrap; } }

/* Projects — mid-page CTA (compact) */
.mid-cta { background: var(--green); text-align: center; padding: 60px 0; }
.mid-cta p { font-family: var(--display); font-weight: 600; font-size: clamp(19px,2vw,26px); letter-spacing: -0.02em; color: #F6F4EE; margin-bottom: 26px; }

/* Projects — inline client review */
.proj-review { background: var(--cream); text-align: center; padding: var(--section) 0; }
.proj-review .stars { color: #C9962A; font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.proj-review blockquote p { font-family: var(--display); font-weight: 600; font-size: clamp(20px,2.4vw,30px); line-height: 1.4; letter-spacing: -0.015em; color: var(--dark); max-width: 760px; margin: 0 auto 18px; }
.proj-review cite { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); font-style: normal; }

/* CTA reassurance note */
.cta-note { color: rgba(255,255,255,0.6); font-size: 13px; letter-spacing: 0.04em; margin-top: 30px; }

/* Closing CTA band on sub-pages */
.page-cta { background: var(--green); padding: var(--section) 0; text-align: center; }
.page-cta h2 { font-family: var(--display); font-size: clamp(28px,3vw,44px); font-weight: 700; letter-spacing: -0.025em; color: #F6F4EE; margin-bottom: 16px; }
.page-cta p { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 30px; line-height: 1.7; }

/* ── Mobile nav fix ──
   The responsive nav rules live near the top of this file, but the base
   .nav-toggle / .nav-links rules are defined later and were overriding them
   at equal specificity. Re-assert here with #nav specificity so the mobile
   dropdown menu works and reads correctly. */
@media (max-width: 900px) {
  #nav .nav-toggle { display: flex; }
  #nav .nav-links { gap: 0; }
  #nav:not(.scrolled) .nav-links a { color: var(--dark); }
}

/* ── Mobile layout fixes ──
   The homepage/footer grids below have base (desktop) rules defined AFTER the
   top responsive block, so the multi-column desktop layout was incorrectly
   winning on mobile. Re-assert the stacked layouts here at the end of the file. */
@media (max-width: 900px) {
  .promise-grid, .builds-grid { grid-template-columns: 1fr; gap: 44px; }
  .s-cta { grid-template-columns: 1fr; }
  .cta-photo { min-height: 380px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
  /* Centre the CTA content when the panel is stacked */
  .cta-body { text-align: center; align-items: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 600px) {
  .projects-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .process-row { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  /* Compact "Get in Touch" button on phones (the top-block rule was overridden) */
  #nav .nav-btn { padding: 8px 14px; font-size: 11px; letter-spacing: 0.06em; margin-right: 46px; }

  /* Hero — declutter on phones: smaller type, more breathing room, centred vertically */
  .hero h1 { font-size: 33px; line-height: 1.08; margin-bottom: 20px; }
  .hero-sub { font-size: 17px; line-height: 1.5; margin-bottom: 20px; }
  .hero-locations { font-size: 11px; letter-spacing: 0.16em; margin-bottom: 34px; }
  .hero-body { justify-content: center; padding-top: 56px; padding-bottom: 40px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(30,28,22,0.34) 0%, rgba(30,28,22,0.42) 45%, rgba(30,28,22,0.66) 100%); }
  /* Hero buttons — pushed lower, separated from the text and from each other */
  .hero-actions { gap: 18px; margin-top: 60px; }
  .hero-actions .btn { padding: 13px 20px; font-size: 12px; }

  /* Selected work heading + link: stack on phones so they don't bunch together */
  .projects-hd { flex-direction: column; align-items: flex-start; gap: 12px; }
  /* Selected work on phones: feature the media wall full-width (strong portrait),
     with the kitchen & office side by side beneath it */
  .projects-grid .proj-card:first-child { grid-column: 1 / -1; }
  .projects-grid .proj-card:first-child .proj-thumb { aspect-ratio: 3 / 4; }
  .projects-grid .proj-card:not(:first-child) .proj-thumb { aspect-ratio: 4 / 3; }
  .projects-grid .proj-thumb { margin-bottom: 12px; }
  .projects-grid .proj-title { font-size: 15px; }
}
