
  :root{
    --bg-deep:#0f0f0b;
    --bg-section:#17170f;
    --bg-card:#1e1d14;
    --bg-card-2:#242216;
    --ink:#f3efe3;
    --ink-muted:#a9a48d;
    --ink-faint:#8a8570;
    --copper:#c98a46;
    --copper-soft:#8c5f30;
    --rule:rgba(243,239,227,.12);
    --rule-strong:rgba(243,239,227,.22);
    --serif:Georgia, 'Times New Roman', serif;
    --grotesk:'Segoe UI', Arial, sans-serif;
    --mono:'Cascadia Mono', 'Courier New', monospace;
    --maxw:1180px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--bg-deep);
    color:var(--ink);
    font-family:var(--grotesk);
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
  }
  img,svg{display:block;max-width:100%;}
  a{color:inherit;}
  h1,h2,h3{margin:0;font-weight:600;letter-spacing:-.01em;}
  p{margin:0;}
  ul{margin:0;padding:0;list-style:none;}
  .wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}

  .skip-link{
    position:absolute; left:-999px; top:auto;
    background:var(--copper); color:var(--bg-deep);
    padding:12px 18px; z-index:999; font-family:var(--mono); font-size:13px;
  }
  .skip-link:focus{left:16px; top:16px;}

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

  .eyebrow{
    font-family:var(--mono); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
    display:flex; align-items:center; gap:10px; color:var(--ink-muted);
  }
  .eyebrow::before{content:""; width:22px; height:1px; background:currentColor; opacity:.7;}

  .btn{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--mono); font-size:12.5px; letter-spacing:.06em; text-transform:uppercase;
    text-decoration:none; padding:13px 22px; border:1px solid transparent; cursor:pointer;
    transition:background .15s ease, color .15s ease, border-color .15s ease;
  }
  .btn-copper{background:var(--copper); color:var(--bg-deep); font-weight:500;}
  .btn-copper:hover{background:#dda05e;}
  .btn-outline{border-color:var(--rule-strong); color:var(--ink);}
  .btn-outline:hover{border-color:var(--copper); color:var(--copper);}

  /* ============ HEADER / NAV ============ */
  header.site{
    position:sticky; top:0; z-index:50;
    background:rgba(15,15,11,.9);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--rule);
  }
  .navbar{
    max-width:var(--maxw); margin:0 auto; padding:16px 32px;
    display:flex; align-items:center; justify-content:space-between; gap:24px;
  }
  /* LOGO — real artwork at assets/logo.png (background removed, cropped tight).
     Height is fixed here and width follows automatically, so a future redesign
     just needs the same filename swapped for new artwork of a similar shape. */
  .logo-link{display:flex; align-items:center; gap:12px; text-decoration:none;}
  .logo-img{height:40px; width:auto; display:block;}
  footer .logo-img{height:34px;}

  nav.links{display:flex; align-items:center; gap:30px;}
  nav.links a{
    font-family:var(--mono); font-size:12px; letter-spacing:.07em; text-transform:uppercase;
    color:var(--ink-muted); text-decoration:none; transition:color .15s ease;
  }
  nav.links a:hover{color:var(--ink);}

  .nav-toggle-input{display:none;}
  .nav-toggle-btn{display:none;}

  /* ============ HERO ============ */
  .hero{background:var(--bg-deep); position:relative; overflow:hidden; padding:76px 0 0;}
  .hero-grid{
    max-width:var(--maxw); margin:0 auto; padding:0 32px;
    display:grid; grid-template-columns:1.15fr .85fr; gap:32px; align-items:center;
  }
  .hero-eyebrow{margin-bottom:24px;}
  .hero h1{font-size:clamp(34px,4.8vw,54px); line-height:1.1; max-width:16ch;}
  .hero-sub{
    font-family:var(--serif); font-size:19px; line-height:1.6; color:var(--ink-muted);
    max-width:48ch; margin:24px 0 36px;
  }
  .hero-cta{display:flex; align-items:center; gap:18px; flex-wrap:wrap;}
  .hero-tagline{
    margin-top:34px; font-family:var(--serif); font-style:italic; font-size:15px;
    color:var(--ink-faint); letter-spacing:.02em;
  }

  /* Hero visual placeholder.
     TO REPLACE WITH A REAL PHOTOGRAPH:
     delete the <svg class="hero-art">…</svg> block and put this on .hero-visual instead:
       style="background-image:url('your-photo.jpg'); background-size:cover; background-position:center;"
     Keep the aspect-ratio on .hero-visual so the layout doesn't shift. */
  .hero-visual{
    position:relative; aspect-ratio:4/5; border:1px solid var(--rule-strong);
    background:linear-gradient(160deg,#1b1a12,#0f0f0b 70%);
    display:flex; align-items:center; justify-content:center;
  }
  .hero-art{width:72%; height:auto;}
  .draw{stroke-dasharray:1700; stroke-dashoffset:1700; animation:draw-line 1.1s ease forwards;}
  .d1{animation-delay:.1s; animation-duration:.7s;}
  .d2{animation-delay:.4s; animation-duration:1.05s;}
  .d3{animation-delay:.95s; animation-duration:.9s;}
  .d4{animation-delay:1.5s; animation-duration:.55s;}
  @keyframes draw-line{to{stroke-dashoffset:0;}}
  @media (prefers-reduced-motion: reduce){ .draw{animation:none; stroke-dashoffset:0;} }

  .dim-strip{border-top:1px solid var(--rule); background:var(--bg-section); margin-top:64px;}
  .dim-row{
    max-width:var(--maxw); margin:0 auto; padding:18px 32px;
    display:flex; flex-wrap:wrap;
    font-family:var(--mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase;
    color:var(--ink-muted);
  }
  .dim-row span{padding:0 20px; border-right:1px solid var(--rule);}
  .dim-row span:first-child{padding-left:0;}
  .dim-row span:last-child{border-right:none;}

  /* ============ GENERIC SECTION SHELL ============ */
  section{padding:92px 0;}
  section.alt{background:var(--bg-section);}
  .section-head{display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:44px; flex-wrap:wrap;}
  .section-head h2{font-size:clamp(26px,3.2vw,38px); margin-top:12px;}
  .section-head .lede{font-family:var(--serif); font-style:italic; font-size:17px; color:var(--ink-muted); max-width:32ch; text-align:right;}

  .reveal{opacity:1; transform:none; transition:opacity .6s ease, transform .6s ease;}
  html.js .reveal{opacity:0; transform:translateY(16px);}
  html.js .reveal.is-visible{opacity:1; transform:none;}

  /* ============ INTRO ============ */
  .intro-body{font-family:var(--serif); font-size:22px; line-height:1.6; max-width:62ch; color:var(--ink);}
  .intro-note{margin-top:20px; font-size:15px; color:var(--ink-muted); max-width:62ch; line-height:1.6;}

  /* ============ SERVICES / SCHEDULE ============ */
  .svc-group + .svc-group{margin-top:44px;}
  .svc-group h3{
    font-family:var(--mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase;
    color:var(--copper); margin-bottom:4px;
  }
  .sched{border-top:1px solid var(--rule);}
  .sched-row{
    display:grid; grid-template-columns:1fr 150px; gap:20px; align-items:baseline;
    padding:16px 0; border-bottom:1px solid var(--rule);
  }
  .sched-item{font-size:16px;}
  .sched-delivery{
    font-family:var(--mono); font-size:11.5px; letter-spacing:.06em; text-transform:uppercase;
    color:var(--ink-muted); text-align:right;
  }
  .sched-delivery.house{color:var(--copper);}

  /* ============ PROCESS ============ */
  .process-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--rule); border:1px solid var(--rule);}
  .process-card{background:var(--bg-section); padding:30px 24px; min-height:200px;}
  section.alt .process-card{background:var(--bg-deep);}
  .process-num{font-family:var(--mono); font-size:13px; color:var(--copper); letter-spacing:.08em;}
  .process-card h3{font-size:18px; margin-top:16px; line-height:1.3;}
  .process-note{margin-top:40px; font-family:var(--serif); font-style:italic; font-size:15.5px; color:var(--ink-muted); max-width:60ch;}

  /* ============ PROJECTS ============ */
  .proj-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--rule); border:1px solid var(--rule);}
  .proj-card{background:var(--bg-section); display:flex; flex-direction:column;}
  section:not(.alt) .proj-card{background:var(--bg-card);}
  .proj-photo{
    aspect-ratio:16/10; position:relative; overflow:hidden;
    background:
      repeating-linear-gradient(135deg, rgba(201,138,70,.07) 0 2px, transparent 2px 26px),
      linear-gradient(160deg,#201f16,#141410);
    display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px;
    border-bottom:1px solid var(--rule);
  }
  /* PROJECT PHOTOGRAPHY PLACEHOLDER
     Replace the .proj-photo block's background with:
       style="background-image:url('project-photo.jpg'); background-size:cover; background-position:center;"
     and remove the placeholder label span. Aspect ratio is fixed at 16/10 so cards stay aligned. */
  .proj-photo svg{width:34px; height:34px; opacity:.55;}
  .proj-photo .ph-label{font-family:var(--mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-faint);}
  .proj-photo.has-photo{background-size:cover; background-position:center;}
  .proj-photo.split{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--rule); padding:0;}
  .proj-photo.split .half{position:relative; background-size:cover; background-position:center;}
  .proj-photo.split .half .tag{
    position:absolute; left:9px; bottom:9px; font-family:var(--mono); font-size:9.5px; letter-spacing:.12em;
    text-transform:uppercase; color:#f3efe3; background:rgba(15,15,11,.62); padding:4px 8px;
  }
  .proj-extra{display:flex; gap:8px; margin-top:18px;}
  .proj-extra .thumb{flex:1; aspect-ratio:4/3; background-size:cover; background-position:center; border:1px solid var(--rule);}
  .proj-body{padding:26px 26px 30px;}
  .proj-num{font-family:var(--mono); font-size:11px; color:var(--ink-faint); letter-spacing:.1em;}
  .proj-loc{font-size:20px; font-weight:600; margin-top:10px;}
  .proj-type{font-family:var(--mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--copper); margin-top:8px;}
  .proj-desc{font-family:var(--serif); font-size:15.5px; color:var(--ink-muted); margin-top:10px; line-height:1.55;}
  .proj-more{margin-top:36px; font-family:var(--mono); font-size:12.5px; letter-spacing:.06em; text-transform:uppercase;
    color:var(--ink-muted); text-decoration:none; border-bottom:1px solid var(--rule-strong); padding-bottom:2px;}
  .proj-more:hover{color:var(--copper); border-color:var(--copper);}

  /* ============ WHY US ============ */
  .why-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:36px 28px;}
  .why-item .num{font-family:var(--mono); font-size:11px; color:var(--copper); letter-spacing:.08em;}
  .why-item h3{font-size:16.5px; margin-top:10px; line-height:1.35;}

  /* ============ ABOUT ============ */
  .about-grid{display:grid; grid-template-columns:.6fr 1fr; gap:56px; align-items:start;}
  .avatar{
    width:104px; height:104px; border-radius:50%; border:1px solid var(--rule-strong);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--serif); font-style:italic; font-size:30px; color:var(--copper);
    background:var(--bg-card);
  }
  .about-copy p{font-family:var(--serif); font-size:18px; line-height:1.7; color:var(--ink); max-width:62ch;}
  .about-copy p + p{margin-top:18px;}

  /* ============ CREDENTIALS ============ */
  .cred-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--rule); border:1px solid var(--rule);}
  .cred-item{background:var(--bg-deep); padding:20px 22px; font-family:var(--mono); font-size:12.5px; letter-spacing:.03em; color:var(--ink-muted);}
  .cred-item strong{display:block; color:var(--ink); font-family:var(--grotesk); font-size:14.5px; font-weight:600; margin-bottom:4px; letter-spacing:0;}

  /* ============ CONTACT ============ */
  .contact-grid{display:grid; grid-template-columns:1fr .8fr; gap:56px; align-items:start;}
  .field{margin-bottom:18px;}
  .field label{display:block; font-family:var(--mono); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-muted); margin-bottom:8px;}
  .field input, .field select, .field textarea{
    width:100%; background:var(--bg-card); border:1px solid var(--rule-strong); color:var(--ink);
    font-family:var(--grotesk); font-size:15px; padding:12px 14px;
  }
  .field input:focus, .field select:focus, .field textarea:focus{outline:2px solid var(--copper); outline-offset:1px; border-color:var(--copper);}
  .field textarea{resize:vertical; min-height:120px;}
  .field-row{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
  .field-file{font-family:var(--mono); font-size:12.5px; color:var(--ink-muted);}
  .form-note{margin-top:6px; font-size:12.5px; color:var(--ink-faint); line-height:1.5;}
  .contact-direct .datablock{font-family:var(--mono); font-size:14px; line-height:2.3; margin-top:24px;}
  .contact-direct .k{color:var(--ink-faint); display:inline-block; width:64px;}
  .contact-direct a{color:var(--ink); text-decoration:none; border-bottom:1px solid var(--rule-strong);}
  .contact-direct a:hover{color:var(--copper); border-color:var(--copper);}

  /* ============ FOOTER ============ */
  footer.site{background:var(--bg-deep); border-top:1px solid var(--rule); padding:56px 0 0;}
  .footer-top{display:flex; justify-content:space-between; align-items:flex-start; gap:32px; flex-wrap:wrap; padding-bottom:36px;}
  .footer-legal a{font-family:var(--mono); font-size:12px; color:var(--ink-muted); text-decoration:none; margin-left:24px;}
  .footer-legal a:first-child{margin-left:0;}
  .footer-legal a:hover{color:var(--copper);}
  .bottom-bar{
    border-top:1px solid var(--rule); padding:22px 0; display:flex; justify-content:space-between;
    flex-wrap:wrap; gap:10px; font-family:var(--mono); font-size:11px; letter-spacing:.04em; color:var(--ink-faint);
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width:980px){
    .hero-grid{grid-template-columns:1fr;}
    .hero-visual{max-width:360px; margin:36px auto 0;}
    .process-grid{grid-template-columns:repeat(2,1fr);}
    .why-grid{grid-template-columns:repeat(2,1fr);}
    .about-grid, .contact-grid{grid-template-columns:1fr;}
    .cred-grid{grid-template-columns:repeat(2,1fr);}
  }
  @media (max-width:760px){
    .navbar, .hero-grid, .dim-row, .wrap, .bottom-bar{padding-left:20px; padding-right:20px;}
    section{padding:64px 0;}
    .proj-grid{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr;}
    .cred-grid{grid-template-columns:1fr;}
    .field-row{grid-template-columns:1fr;}
    .section-head{flex-direction:column; align-items:flex-start;}
    .section-head .lede{text-align:left;}

    nav.links{
      position:fixed; inset:64px 0 0 0; background:var(--bg-deep);
      flex-direction:column; align-items:flex-start; gap:0; padding:20px;
      transform:translateY(-8px); opacity:0; pointer-events:none;
      transition:opacity .18s ease, transform .18s ease;
    }
    nav.links a{width:100%; padding:16px 4px; border-bottom:1px solid var(--rule); font-size:14px;}
    .nav-toggle-input:checked ~ nav.links{opacity:1; transform:none; pointer-events:auto;}
    .nav-toggle-btn{
      display:flex; flex-direction:column; gap:5px; width:26px; cursor:pointer; background:none; border:none; padding:6px;
    }
    .nav-toggle-btn span{display:block; height:1.5px; width:100%; background:var(--ink);}
  }


/* Website additions */
.hero-visual.has-photo{background-size:cover;background-position:center;min-height:440px;}
.hero-visual.has-photo::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,15,11,.02),rgba(15,15,11,.25));pointer-events:none;}
.proj-photo img{width:100%;height:100%;object-fit:cover;}
.proj-photo.has-photo{background-repeat:no-repeat;}
.form-consent{display:flex;gap:10px;align-items:flex-start;margin:8px 0 18px;color:var(--ink-muted);font-size:13px;line-height:1.5;}
.form-consent input{width:auto;margin-top:3px;}
.form-status{margin-top:14px;font-size:13px;color:var(--ink-muted);line-height:1.5;}
.legal-page{min-height:70vh;padding:72px 0 96px;}
.legal-page h1{font-size:clamp(32px,4vw,48px);margin-top:14px;}
.legal-page h2{font-size:22px;margin:40px 0 12px;}
.legal-page h3{font-size:17px;margin:26px 0 8px;}
.legal-page p,.legal-page li{font-family:var(--serif);font-size:17px;line-height:1.7;color:var(--ink-muted);}
.legal-page p+p{margin-top:14px;}
.legal-page ul{list-style:disc;padding-left:22px;margin-top:10px;}
.legal-page a{color:var(--copper);}
.legal-meta{font-family:var(--mono)!important;font-size:12px!important;letter-spacing:.04em;text-transform:uppercase;color:var(--ink-faint)!important;margin-top:12px!important;}
.notice-box{border:1px solid var(--rule-strong);background:var(--bg-card);padding:20px 22px;margin:28px 0;}
.cookie-banner{position:fixed;left:20px;right:20px;bottom:20px;z-index:1000;max-width:760px;margin:0 auto;background:#1e1d14;border:1px solid var(--rule-strong);padding:20px;box-shadow:0 14px 50px rgba(0,0,0,.45);display:none;}
.cookie-banner.is-visible{display:block;}
.cookie-banner p{font-family:var(--serif);font-size:15px;line-height:1.5;color:var(--ink-muted);}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px;}
.cookie-actions button{font-family:var(--mono);font-size:11.5px;letter-spacing:.05em;text-transform:uppercase;padding:10px 14px;cursor:pointer;border:1px solid var(--rule-strong);background:transparent;color:var(--ink);}
.cookie-actions .accept{background:var(--copper);color:var(--bg-deep);border-color:var(--copper);}
@media (max-width:760px){.hero-visual.has-photo{min-height:360px;}.legal-page{padding:54px 0 72px;}.cookie-banner{left:10px;right:10px;bottom:10px;}}


/* July 2026 photography and launch refinements */
.logo-img{height:54px;}
footer .logo-img{height:42px;}
.btn-copper{color:#0f0f0b!important;font-weight:700;}
.hero-visual.has-photo{aspect-ratio:4/3;min-height:0;background-position:center;}
.hero-visual.has-photo::after{background:linear-gradient(180deg,rgba(15,15,11,.01),rgba(15,15,11,.12));}
.proj-photo.has-photo{background-size:cover;background-repeat:no-repeat;}
.honeypot{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden;}
.field-file{display:block;width:100%;padding:12px 0!important;background:transparent!important;border:0!important;}
@media (max-width:980px){.hero-visual.has-photo{max-width:680px;width:100%;}}
@media (max-width:760px){.logo-img{height:46px}.hero-visual.has-photo{aspect-ratio:4/3;max-width:none;}}

.form-status.is-success{color:#b9d7ad;}
.form-status.is-error{color:#f0a39a;}
#enquiry-submit:disabled{opacity:.65;cursor:wait;}


/* Project image galleries */
.project-gallery{
  aspect-ratio:16/10;
  display:grid;
  gap:2px;
  overflow:hidden;
  background:var(--rule);
  border-bottom:1px solid var(--rule);
}
.gallery-item{
  position:relative;
  display:block;
  min-width:0;
  min-height:0;
  overflow:hidden;
  background:var(--bg-card);
}
.gallery-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .28s ease, filter .28s ease;
}
.gallery-item:hover img{transform:scale(1.025);filter:brightness(1.04);}
.gallery-item .tag{
  position:absolute;
  left:9px;
  bottom:9px;
  z-index:2;
  font-family:var(--mono);
  font-size:9.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#f3efe3;
  background:rgba(15,15,11,.72);
  padding:4px 8px;
}
.gallery-grid-four{grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;}
.gallery-feature-three{grid-template-columns:1.35fr .65fr;grid-template-rows:1fr 1fr;}
.gallery-feature-three .gallery-main{grid-row:1 / span 2;}
.gallery-split-two{grid-template-columns:1fr 1fr;}

.gallery-structural-six{
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:repeat(3,1fr);
  aspect-ratio:16/11;
}
.gallery-structural-six .structural-main{
  grid-column:1 / span 2;
  grid-row:1 / span 2;
}
.gallery-structural-six .gallery-item:nth-child(2){grid-column:3;grid-row:1;}
.gallery-structural-six .gallery-item:nth-child(3){grid-column:3;grid-row:2;}
.gallery-structural-six .gallery-item:nth-child(4){grid-column:1;grid-row:3;}
.gallery-structural-six .gallery-item:nth-child(5){grid-column:2;grid-row:3;}
.gallery-structural-six .gallery-item:nth-child(6){grid-column:3;grid-row:3;}
.gallery-structural-six .gallery-item:nth-child(3) img{object-position:center 35%;}
.gallery-structural-six .gallery-item:nth-child(4) img{object-position:center 34%;}
.gallery-structural-six .gallery-item:nth-child(5) img{object-position:center 40%;}
.gallery-structural-six .gallery-item:nth-child(6) img{object-position:center 58%;}

@media (max-width:760px){
  .project-gallery{aspect-ratio:4/3;}
  .gallery-feature-three{grid-template-columns:1.15fr .85fr;}
  .gallery-structural-six{
    aspect-ratio:4/5;
    grid-template-columns:1fr 1fr;
    grid-template-rows:1.3fr 1fr 1fr 1fr;
  }
  .gallery-structural-six .structural-main{grid-column:1 / span 2;grid-row:1;}
  .gallery-structural-six .gallery-item:nth-child(2){grid-column:1;grid-row:2;}
  .gallery-structural-six .gallery-item:nth-child(3){grid-column:2;grid-row:2;}
  .gallery-structural-six .gallery-item:nth-child(4){grid-column:1;grid-row:3;}
  .gallery-structural-six .gallery-item:nth-child(5){grid-column:2;grid-row:3;}
  .gallery-structural-six .gallery-item:nth-child(6){grid-column:1 / span 2;grid-row:4;}
}

/* Larger, tightly cropped company logo */
.logo-img{
  height:68px;
  width:auto;
  max-width:none;
}
footer .logo-img{height:46px;}
.navbar{padding-top:12px;padding-bottom:12px;}

@media (max-width:760px){
  .logo-img{height:56px;}
  footer .logo-img{height:42px;}
  .navbar{padding-top:10px;padding-bottom:10px;}
}


/* Text wordmark — clearer and more prominent than the compact image logo */
.brand-wordmark{
  display:inline-flex;
  align-items:baseline;
  white-space:nowrap;
  text-decoration:none;
  line-height:1;
  gap:9px;
  flex-shrink:0;
}
.brand-nm{
  font-family:var(--serif);
  font-size:34px;
  font-weight:600;
  letter-spacing:-.055em;
  color:var(--ink);
}
.brand-rest{
  font-family:var(--grotesk);
  font-size:21px;
  font-weight:500;
  letter-spacing:-.015em;
  color:var(--ink);
}
.brand-ltd{
  font-family:var(--mono);
  font-size:10px;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--copper);
  vertical-align:middle;
  margin-left:3px;
}
footer .brand-wordmark{gap:7px;}
footer .brand-nm{font-size:27px;}
footer .brand-rest{font-size:17px;}
footer .brand-ltd{font-size:8px;}

@media (max-width:760px){
  .brand-wordmark{gap:7px;}
  .brand-nm{font-size:28px;}
  .brand-rest{font-size:17px;}
  .brand-ltd{font-size:8px;}
  footer .brand-nm{font-size:24px;}
  footer .brand-rest{font-size:15px;}
}

@media (max-width:390px){
  .brand-nm{font-size:25px;}
  .brand-rest{font-size:15px;}
  .brand-ltd{display:none;}
}


/* July 2026 — restore the original NM Renovations logo artwork */
.logo-link{
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
  text-decoration:none;
}
.logo-img{
  display:block;
  width:auto;
  height:86px;
  max-width:none;
  object-fit:contain;
}
header.site .navbar{
  min-height:102px;
  padding-top:8px;
  padding-bottom:8px;
}
footer .logo-img{height:64px;}

@media (max-width:980px){
  .logo-img{height:76px;}
  header.site .navbar{min-height:92px;}
  nav.links{gap:20px;}
}

@media (max-width:760px){
  .logo-img{height:66px;}
  header.site .navbar{min-height:82px;padding-top:8px;padding-bottom:8px;}
  footer .logo-img{height:54px;}
}

@media (max-width:390px){
  .logo-img{height:60px;}
  footer .logo-img{height:50px;}
}
