/* ==========================================================================
   Timbr Built - site styles
   Architectural navy + timber. Design led by the brand mark (pitched roof +
   vertical battens). Hand-authored; shared across all pages.
   ========================================================================== */

:root {
  --navy:        #16293A;
  --navy-900:    #0E1A26;
  --navy-800:    #132434;
  --navy-600:    #294A66;
  --timber:      #B08553;
  --timber-600:  #98703F;
  --timber-light:#CDA678;
  --ink:         #1C2833;
  --muted:       #5C6773;
  --surface:     #F6F6F3;
  --stone:       #ECEBE5;
  --line:        #E3E2DB;
  --white:       #FFFFFF;
  --cream:       #EFEADD;
  --maxw:        1200px;
  --radius: 0;
  --shadow-sm:   0 1px 2px rgba(14,26,38,.05), 0 4px 14px rgba(14,26,38,.06);
  --shadow-md:   0 2px 6px rgba(14,26,38,.06), 0 18px 40px rgba(14,26,38,.10);
  --ease:        cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { color: var(--navy); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; }
h1 { letter-spacing: -0.03em; }
p { color: var(--muted); }
strong { color: var(--ink); }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
@media (max-width: 640px){ .container { padding: 0 1.5rem; } }
.section { padding: 5.5rem 0; }
.section--tight { padding: 4rem 0; }
@media (max-width: 640px){ .section { padding: 4rem 0; } .section--tight { padding: 3rem 0; } }
.bg-surface { background: var(--surface); }
.bg-stone   { background: var(--stone); }
.bg-navy    { background: var(--navy-900); color: rgba(255,255,255,.82); }
.bg-navy h1,.bg-navy h2,.bg-navy h3,.bg-navy h4 { color: #fff; }
.bg-navy p  { color: rgba(255,255,255,.72); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .2em; color: var(--timber-600); margin-bottom: 1rem;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--timber); display:inline-block; }
.bg-navy .eyebrow { color: var(--timber-light); }
.bg-navy .eyebrow::before { background: var(--timber-light); }

.h-display { font-size: clamp(2.1rem, 5vw, 3.5rem); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 42rem; }
.bg-navy .lead { color: rgba(255,255,255,.75); }
.section-head { max-width: 44rem; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* batten motif - echoes the logo's vertical strokes */
.battens {
  background-image: repeating-linear-gradient(90deg,
    rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 2px,
    transparent 2px, transparent 13px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: 0; border: 1.5px solid transparent;
  cursor: pointer; transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-600); }
.btn-timber { background: var(--timber); color: #fff; }
.btn-timber:hover { background: var(--timber-600); }
.btn-ghost { background: transparent; color: var(--navy); border-color: rgba(22,41,58,.25); }
.btn-ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--stone); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn:focus-visible { outline: 3px solid var(--timber); outline-offset: 3px; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1rem; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__brand img { height: 26px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--ink); position: relative; padding: .25rem 0; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background: var(--timber); transition: width .2s var(--ease); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.nav__cta { display: flex; align-items: center; gap: 1.25rem; }
.nav__phone { font-weight: 600; font-size: .95rem; color: var(--navy); }
.nav__toggle { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: transform .2s var(--ease), opacity .2s var(--ease); }

@media (max-width: 920px){
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: .5rem 1.5rem 1.5rem;
    transform: translateY(-120%); transition: transform .28s var(--ease); box-shadow: var(--shadow-md);
  }
  body.nav-open .nav__links { transform: translateY(0); display: flex; }
  .nav__links a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links li:last-child a { border-bottom: 0; }
  body.nav-open .nav__toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav__toggle span:nth-child(2){ opacity: 0; }
  body.nav-open .nav__toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero { background: var(--surface); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; padding: 4.5rem 0 5rem; }
.hero__title { font-size: clamp(2.4rem, 5.2vw, 4rem); margin-bottom: 1.4rem; }
.hero__title .accent { color: var(--timber); }
.hero__sub { font-size: 1.15rem; margin-bottom: 2rem; max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; }
.chip { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--ink); font-weight: 500; }
.chip svg { width: 18px; height: 18px; color: var(--timber); flex: none; }
.hero__media { position: relative; }
.hero__media img { width: 100%; height: 560px; object-fit: cover; border-radius: 0; box-shadow: var(--shadow-md); }
.hero__media::after {
  content:""; position:absolute; left:-14px; top:24px; bottom:24px; width:6px;
  background: var(--timber); border-radius: 0;
}
.hero__badge {
  position: absolute; left: 1.25rem; bottom: 1.25rem; background: rgba(14,26,38,.72);
  backdrop-filter: blur(6px); color:#fff; padding: .7rem 1rem; border-radius: 0;
}
.hero__badge span { display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.16em; color: var(--timber-light); }
.hero__badge strong { font-size:.98rem; color:#fff; }
@media (max-width: 900px){
  .hero__grid { grid-template-columns: 1fr; gap: 2.2rem; padding: 3rem 0 3.5rem; }
  .hero__media img { height: 420px; }
  .hero__media::after { display: none; }
}

/* ---------- trust strip ---------- */
.trust { border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.trust__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; padding: 2.2rem 0; text-align: center; }
.trust__grid .k { font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.trust__grid .l { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.6); margin-top: .3rem; }
@media (max-width: 640px){ .trust__grid { grid-template-columns: repeat(2,1fr); gap: 1.6rem 1rem; } }

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
@media (min-width: 900px){ .cards--4 { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 620px){ .cards { grid-template-columns: 1fr; } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 0;
  overflow: hidden; display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.4rem 1.4rem 1.6rem; border-top: 3px solid var(--timber); }
.card__body h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.card__body p { font-size: .92rem; }
.card__link { margin-top: 1rem; font-size: .85rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .08em; display: inline-flex; gap: .4rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- feature rows (services detail) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.feature + .feature { margin-top: 5rem; }
.feature__media img { width: 100%; height: 460px; object-fit: cover; border-radius: 0; box-shadow: var(--shadow-sm); }
.feature--rev .feature__media { order: 2; }
.feature__body h2 { font-size: clamp(1.7rem,3.4vw,2.4rem); margin-bottom: 1rem; }
.feature__list { list-style: none; margin-top: 1.4rem; display: grid; gap: .7rem; }
.feature__list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); font-size: .96rem; }
.feature__list svg { width: 20px; height: 20px; color: var(--timber); flex: none; margin-top: 2px; }
@media (max-width: 860px){
  .feature { grid-template-columns: 1fr; gap: 1.8rem; }
  .feature + .feature { margin-top: 3.5rem; }
  .feature--rev .feature__media { order: 0; }
  .feature__media img { height: 300px; }
}

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.6rem; }
@media (max-width: 760px){ .steps { grid-template-columns: repeat(2,1fr); gap: 1.6rem 1.2rem; } }
.step__n { width: 44px; height: 44px; border-radius: 0; background: rgba(176,133,83,.12); color: var(--timber-600); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-bottom: .9rem; }
.bg-navy .step__n { background: rgba(205,166,120,.16); color: var(--timber-light); }
.step h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.step p { font-size: .9rem; }

/* ---------- why / values ---------- */
.pills { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
@media (max-width: 760px){ .pills { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px){ .pills { grid-template-columns: 1fr; } }
.pill { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-top: 2px solid var(--timber); border-radius: 0; padding: 1.1rem 1.2rem; }
.pill strong { display: block; color: #fff; font-size: .98rem; margin-bottom: .2rem; }
.pill span { font-size: .84rem; color: rgba(255,255,255,.6); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width: 820px){ .gallery { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px){ .gallery { grid-template-columns: 1fr; } }
.gallery figure { position: relative; border-radius: 0; overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1rem .9rem;
  color: #fff; font-weight: 600; font-size: .92rem;
  background: linear-gradient(to top, rgba(14,26,38,.8), transparent);
}
.gallery figcaption span { display:block; font-size:.72rem; font-weight:500; text-transform:uppercase; letter-spacing:.12em; color: var(--timber-light); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem,4vw,2.8rem); margin-bottom: 1rem; }
.cta-band .btn-row { display: flex; justify-content: center; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

/* ---------- form ---------- */
.form-card {
  background: #fff; border-radius: 0; padding: 2rem; border-top: 4px solid var(--navy);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.field label .req { color: var(--timber-600); }
.field .opt { font-weight: 400; color: var(--muted); }
.input {
  width: 100%; padding: .8rem 1rem; font-size: .95rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: 0;
  font-family: inherit; transition: border-color .15s var(--ease), background-color .15s var(--ease);
}
.input:focus { outline: none; border-color: var(--navy); background: #fff; }
textarea.input { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px){ .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .78rem; color: var(--muted); margin-top: .9rem; text-align: center; display:flex; gap:.4rem; align-items:center; justify-content:center; }
.form-note svg { width: 15px; height: 15px; flex: none; }

/* ---------- contact detail list ---------- */
.contact-list { list-style: none; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ic { width: 44px; height: 44px; border-radius: 0; background: rgba(176,133,83,.12); color: var(--timber-600); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list .lbl { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.contact-list .val { font-size: 1.05rem; font-weight: 600; color: var(--navy); }

/* ---------- areas ---------- */
.areas { columns: 4; column-gap: 1.5rem; }
.areas p { color: var(--ink); font-size: .92rem; padding: .15rem 0; break-inside: avoid; }
@media (max-width: 760px){ .areas { columns: 2; } }

/* ---------- footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding: 5.5rem 0 2rem; position: relative; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
.footer__brand img { height: 30px; margin-bottom: 1.1rem; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .92rem; max-width: 22rem; }
.footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.1rem; }
.footer ul { list-style: none; display: grid; gap: .6rem; }
.footer a { color: rgba(255,255,255,.66); font-size: .92rem; }
.footer a:hover { color: #fff; }
.footer__bottom {
  margin-top: 3.5rem; padding-top: 0; border-top: none;
  display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: flex-start; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.5);
}
.footer__bottom .meta { display: flex; flex-wrap: wrap; gap: .4rem 2rem; }
@media (max-width: 760px){ .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- mobile sticky call bar ---------- */
.callbar { display: none; }
@media (max-width: 640px){
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    background: var(--navy-900); box-shadow: 0 -4px 16px rgba(14,26,38,.2);
  }
  .callbar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; color: #fff; font-weight: 600; font-size: .92rem; }
  .callbar a svg { width: 18px; height: 18px; }
  .callbar a:first-child { border-right: 1px solid rgba(255,255,255,.12); }
  .callbar a.is-quote { background: var(--timber); }
  body { padding-bottom: 60px; }
}

/* ---------- misc ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; gap: 2rem; } }
.mt-sm { margin-top: 1.5rem; }
.center { text-align: center; }

/* anchor offset for the sticky header */
[id] { scroll-margin-top: 96px; }

/* ==========================================================================
   Cinematic full-bleed hero (home) - big centered wordmark
   ========================================================================== */
.cine-hero {
  position: relative; height: 100vh; height: 100svh; min-height: 620px; overflow: hidden; background: #2b2f33;
}
.cine-hero__media { position: absolute; inset: 0; }
.cine-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6) contrast(.95) brightness(.9); }
.cine-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,31,36,.40) 0%, rgba(26,31,36,.16) 34%, rgba(18,23,28,.20) 62%, rgba(14,20,26,.55) 100%);
}

.cine-hero__bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2.2rem 2.4rem; color: #fff;
  background: linear-gradient(to bottom, rgba(14,20,26,.62) 0%, rgba(14,20,26,.28) 55%, rgba(14,20,26,0) 100%);
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.cine-menu { display: inline-flex; align-items: center; gap: .7rem; background: none; border: 0; color: #fff; font-size: 1rem; font-weight: 500; cursor: pointer; padding: 0; }
.cine-menu .bars { display: inline-flex; flex-direction: column; gap: 4px; }
.cine-menu .bars span { display: block; width: 22px; height: 2px; background: #fff; }
.cine-hero__nav { display: flex; align-items: center; gap: 1.8rem; }
.cine-hero__nav a { color: rgba(255,255,255,.92); font-size: .95rem; }
.count-pill { display: inline-flex; align-items: center; gap: .5rem; }
.count-pill .n { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); border-radius: 0; padding: .06rem .55rem; font-size: .8rem; font-weight: 600; }
.count-pill .chev { width: 12px; height: 12px; opacity: .65; }

.cine-hero__center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; padding: 1rem; }
.cine-wordmark {
  font-family: Georgia, "Times New Roman", "Iowan Old Style", serif;
  color: #EFEADD; font-weight: 600; letter-spacing: .015em; line-height: .95; text-align: center;
  font-size: clamp(3rem, 13vw, 9.5rem); text-shadow: 0 2px 40px rgba(0,0,0,.22);
}
.cine-hero__tagline { position: absolute; left: 0; right: 0; bottom: 2.4rem; z-index: 2; text-align: center; color: rgba(255,255,255,.9); font-size: 1.02rem; padding: 0 2rem; }
.cine-hero__mark { position: absolute; left: 2.2rem; bottom: 2rem; z-index: 4; display: inline-flex; }
.cine-hero__mark img { width: auto; height: 124px; filter: drop-shadow(0 2px 14px rgba(0,0,0,.35)); }

@media (max-width: 760px){
  .cine-hero__bar { padding: 1.2rem 1.4rem; }
  .menu-overlay { padding: 1.2rem 1.4rem 2.4rem; }
  .cine-hero__nav { display: none; }
  .cine-hero__tagline { bottom: 5rem; font-size: .95rem; padding: 0 1.6rem; }
  .cine-hero__mark { display: none; }
}

/* full-screen menu overlay */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200; background: var(--navy-900); color: #fff; overflow: hidden;
  display: flex; flex-direction: column; padding: 1.5rem 2.2rem 2.4rem;
  transform: translateY(-100%); visibility: hidden; transition: transform .5s var(--ease), visibility .5s;
}
.menu-overlay__brand {
  position: absolute; top: 50%; right: -6%; transform: translateY(-50%);
  width: 60%; opacity: .16; z-index: 0; pointer-events: none;
}
.menu-overlay__top, .menu-overlay__links, .menu-overlay__foot { position: relative; z-index: 1; }
body.menu-open { overflow: hidden; }
body.menu-open .menu-overlay { transform: translateY(0); visibility: visible; }
.menu-overlay__top { display: flex; align-items: center; justify-content: flex-start; }
.menu-overlay__top img { height: 24px; }
.menu-overlay__close { background: none; border: 0; color: #fff; cursor: pointer; font-size: 1rem; display: inline-flex; align-items: center; gap: .6rem; }
.menu-overlay__close svg { width: 20px; height: 20px; }
.menu-overlay__links { margin: auto 0; display: grid; gap: .2rem; }
.menu-overlay__links a { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.1rem, 8vw, 4.2rem); color: #fff; letter-spacing: -.01em; width: max-content; transition: color .2s var(--ease); }
.menu-overlay__links a:hover { color: var(--timber-light); }
.menu-overlay__group summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: .4rem; width: max-content; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.1rem, 8vw, 4.2rem); color: #fff; letter-spacing: -.01em; transition: color .2s var(--ease); }
.menu-overlay__group summary::-webkit-details-marker { display: none; }
.menu-overlay__group summary:hover { color: var(--timber-light); }
.menu-overlay__group summary .chev { width: .42em; height: .42em; margin-top: .1em; opacity: .8; transition: transform .28s var(--ease); }
.menu-overlay__group[open] summary .chev { transform: rotate(180deg); }
.menu-overlay__sub { display: grid; gap: .55rem; padding: 1rem 0 .5rem 1.4rem; }
.menu-overlay__sub a { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: clamp(1.15rem, 3.2vw, 1.5rem); color: rgba(255,255,255,.6); width: max-content; letter-spacing: 0; transition: color .18s var(--ease); }
.menu-overlay__sub a:hover { color: #fff; }
.menu-overlay__foot { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; color: rgba(255,255,255,.66); font-size: .92rem; }
.menu-overlay__foot a { color: rgba(255,255,255,.66); }
.menu-overlay__foot a:hover { color: #fff; }

/* header reveal-on-scroll (home page only) */
.site-header--reveal { position: fixed; top: 0; left: 0; right: 0; transform: translateY(-100%); transition: transform .32s var(--ease); }
.site-header--reveal.show { transform: translateY(0); }

/* ==========================================================================
   Full-bleed image showcase (What We Do) - dark frame, overlaid serif titles
   ========================================================================== */
.showcase { background: var(--navy-900); padding: 5rem 0; }
.showcase__head { padding-bottom: 2.5rem; }
.showcase__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.showpanel { position: relative; display: block; height: 600px; overflow: hidden; background: #10161d; }
.showpanel img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.showpanel:hover img { transform: scale(1.05); }
.showpanel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(8,12,16,.92) 0%, rgba(8,12,16,.55) 26%, rgba(8,12,16,.05) 52%, transparent 68%);
}
.showpanel__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 2rem; color: #fff; }
.showpanel__body h3 { font-family: Georgia, "Times New Roman", serif; color: #fff; font-weight: 600; font-size: clamp(1.4rem, 1.6vw, 1.85rem); line-height: 1.1; letter-spacing: -.01em; margin-bottom: .7rem; }
.showpanel__body p { color: rgba(255,255,255,.78); font-size: .92rem; line-height: 1.55; margin-bottom: 1rem; max-width: 30ch; }
.showpanel__link { display: inline-flex; align-items: center; gap: .45rem; color: #fff; font-weight: 500; font-size: .9rem; }
.showpanel__link svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.showpanel:hover .showpanel__link svg { transform: translateX(4px); }
.showpanel:focus-visible { outline: 3px solid var(--timber-light); outline-offset: -3px; }
@media (max-width: 1100px){ .showcase__row { grid-template-columns: repeat(2, 1fr); } .showpanel { height: 520px; } }
@media (max-width: 600px){ .showcase__row { grid-template-columns: 1fr; } .showpanel { height: 440px; } }

/* ==========================================================================
   Rich footer: nav + services + reach + cream CTA cards
   ========================================================================== */
.footer .container { max-width: none; padding-left: clamp(1.5rem, 4vw, 4rem); padding-right: clamp(1.5rem, 4vw, 4rem); }
.footer__main { display: grid; grid-template-columns: 1fr minmax(320px, 380px); gap: 4rem; align-items: end; }
.footer__brandmark { margin-bottom: 2.5rem; }
.footer__brandmark img { height: 30px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 360px)); gap: 3rem; justify-content: start; }
.footer__nav { display: grid; gap: 1.05rem; margin-bottom: 0; }
.footer__nav a { color: #fff; font-size: 1.5rem; font-weight: 400; letter-spacing: -.01em; }
.footer__nav a:hover { color: var(--timber-light); }
.footer__reg { display: inline-flex; align-items: center; gap: .5rem; width: max-content; border: 1px solid rgba(255,255,255,.3); border-radius: 0; padding: .7rem 1.2rem; color: #fff; font-weight: 600; font-size: .9rem; transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease); }
.footer__reg svg { width: 15px; height: 15px; }
.footer__reg:hover { background: #fff; color: var(--navy); border-color: #fff; }
.footer h4 { color: rgba(255,255,255,.5); font-size: 1.2rem; font-weight: 400; text-transform: none; letter-spacing: 0; margin-bottom: 1.8rem; display: inline-flex; align-items: center; gap: .4rem; }
.footer h4 svg { width: 17px; height: 17px; }
.footer__col ul { list-style: none; display: grid; gap: 1.05rem; padding: 0; margin: 0; }
.footer__col ul a { color: rgba(255,255,255,.82); font-size: 1.5rem; font-weight: 400; }
.footer__col ul a:hover { color: #fff; }
.footer__reach { display: grid; gap: 1.05rem; }
.footer__reach a, .footer__reach span { color: rgba(255,255,255,.88); font-size: 1.5rem; font-weight: 400; }
.footer__reach a:hover { color: #fff; }

.footer__cards { display: grid; gap: 1.1rem; align-content: start; }
.fcard { display: block; background: var(--cream); color: var(--navy); border-radius: 0; padding: 1.9rem; overflow: hidden; }
.fcard__thumb { float: right; width: 120px; height: 88px; border-radius: 0; overflow: hidden; margin: .15rem 0 1rem 1.4rem; }
.fcard__thumb img { width: 100%; height: 100%; object-fit: cover; }
.fcard h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: .7rem; letter-spacing: -.01em; }
.fcard p { color: rgba(22,41,58,.72); font-size: .96rem; line-height: 1.5; margin: 0 0 1.4rem; }
.fcard__btn { display: flex; clear: both; align-items: center; justify-content: center; gap: .5rem; border: 1px solid rgba(22,41,58,.28); border-radius: 0; padding: .78rem 1rem; color: var(--navy); font-weight: 600; font-size: .9rem; transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease); }
.fcard__btn svg { width: 15px; height: 15px; }
.fcard:hover .fcard__btn { background: var(--navy); color: #fff; border-color: var(--navy); }

@media (max-width: 1600px){
  .footer__main { grid-template-columns: 1fr; gap: 3rem; align-items: start; }
  .footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1200px){
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 840px){
  .footer__cols { grid-template-columns: 1fr; gap: 2rem; }
  .footer__cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq { max-width: 880px; margin: 0 auto; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.09); border-radius: 0; padding: .4rem 2.2rem; }
.faq__item { border-bottom: 1px solid rgba(255,255,255,.09); }
.faq__item:last-child { border-bottom: 0; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.55rem 0; color: #fff; font-size: 1.22rem; font-weight: 600; letter-spacing: -.01em; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg { width: 22px; height: 22px; flex: none; color: rgba(255,255,255,.55); transition: transform .25s var(--ease); }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__a { padding: 0 0 1.6rem; color: rgba(255,255,255,.72); max-width: 64ch; }
.faq__a p { line-height: 1.65; font-size: 1.02rem; }
@media (max-width: 600px){
  .faq { padding: .25rem 1.35rem; border-radius: 0; }
  .faq__item summary { font-size: 1.05rem; padding: 1.3rem 0; }
}

/* ==========================================================================
   Feature CTA card (image background)
   ========================================================================== */
.cta-feature-section { padding: 5rem 0; background: var(--surface); }
.cta-feature { position: relative; overflow: hidden; background: var(--navy-900); min-height: 440px; display: flex; align-items: center; box-shadow: 0 34px 70px -28px rgba(14,26,38,.45); }
.cta-feature__media { position: absolute; inset: 0; z-index: 0; }
.cta-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-feature__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,18,24,.95) 0%, rgba(12,18,24,.82) 40%, rgba(12,18,24,.35) 78%, rgba(12,18,24,.12) 100%); }
.cta-feature__body { position: relative; z-index: 1; padding: 4rem; max-width: 46rem; }
.cta-feature__body h2 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 1.3rem; }
.cta-feature__body p { color: rgba(255,255,255,.82); font-size: 1.12rem; line-height: 1.6; max-width: 33rem; margin-bottom: 2.2rem; }
.cta-feature__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.cta-feature__ghost { background: rgba(255,255,255,.10); color: #fff; border: 1px solid rgba(255,255,255,.16); }
.cta-feature__ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.28); }
@media (max-width: 720px){
  .cta-feature { min-height: 380px; }
  .cta-feature__body { padding: 2.6rem 1.7rem; }
  .cta-feature__media::after { background: linear-gradient(180deg, rgba(12,18,24,.68) 0%, rgba(12,18,24,.9) 100%); }
}

/* ==========================================================================
   Why Timbr Built - bento grid
   ========================================================================== */
.bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(3, minmax(220px, auto));
  gap: 10px;
  grid-template-areas:
    "img a b"
    "img c c"
    "img d e";
}
.bento__img { grid-area: img; position: relative; overflow: hidden; background: var(--navy-900); min-height: 620px; }
.bento__img > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento__img::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,13,18,.25) 0%, rgba(8,13,18,.12) 38%, rgba(8,13,18,.82) 100%); }
.bento__title { position: absolute; z-index: 2; left: 0; right: 0; padding: 0 2rem; top: 44%; transform: translateY(-50%); text-align: center; font-family: Georgia, "Times New Roman", serif; color: #EFEADD; font-size: clamp(2.3rem, 4vw, 3.7rem); line-height: 1.02; letter-spacing: .01em; text-wrap: balance; }
.bento__foot { position: absolute; z-index: 2; left: 2.6rem; right: 2.6rem; bottom: 2.4rem; max-width: 26rem; }
.bento__foot h3 { color: #fff; font-size: .95rem; margin-bottom: .4rem; }
.bento__foot p { color: rgba(255,255,255,.78); font-size: .82rem; line-height: 1.5; margin-bottom: 1.1rem; }
.bento__foot .btn { padding: .6rem 1.2rem; font-size: .82rem; }

.bento__card { position: relative; padding: 2.4rem 2.2rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.bento__card .bento__lead, .bento__card .bento__label, .bento__card .bento__note, .bento__card .bento__list li { color: inherit; }
.bento__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; opacity: .6; }
.bento__lead { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.02rem, 1.25vw, 1.3rem); line-height: 1.25; margin: auto 0; }
.b-c .bento__lead { font-size: clamp(1.25rem, 1.8vw, 1.7rem); }
.bento__note { font-size: .76rem; opacity: .8; }
.bento__list { list-style: none; display: grid; gap: .65rem; width: 100%; margin-top: auto; padding: 0; }
.bento__list li { position: relative; padding-left: 1.55rem; font-size: .84rem; line-height: 1.4; text-align: left; }
.bento__list li::before { content: "\2713"; position: absolute; left: 0; top: 0; opacity: .7; }

.b-a { grid-area: a; background: var(--cream); color: var(--timber-600); }
.b-b { grid-area: b; background: var(--timber); color: #fff; }
.b-c { grid-area: c; background: var(--navy-800); color: #EFEADD; }
.b-d { grid-area: d; background: var(--navy-600); color: #fff; align-items: flex-start; text-align: left; }
.b-e { grid-area: e; background: var(--stone); color: var(--navy); }
.b-d .bento__label { text-align: left; }

@media (max-width: 900px){
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "img img"
      "a b"
      "c c"
      "d e";
  }
  .bento__img { min-height: 440px; }
  .bento__card { min-height: 210px; }
  .bento__title { padding: 0 1.5rem; }
  .bento__foot { left: 1.6rem; right: 1.6rem; max-width: none; }
  .bento__foot h3 { font-size: .92rem; margin-bottom: .35rem; }
  .bento__foot p { font-size: .8rem; line-height: 1.45; margin-bottom: 1rem; }
  .bento__foot .btn { padding: .58rem 1.1rem; font-size: .8rem; }
}
@media (max-width: 560px){
  .bento { grid-template-columns: 1fr; grid-template-areas: "img" "a" "b" "c" "d" "e"; }
  .bento__title { top: 2.2rem; bottom: auto; transform: none; text-align: center; font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .bento__img { min-height: 470px; }
  .bento__card { min-height: 200px; }
  .bento__foot h3 { font-size: .88rem; }
  .bento__foot p { font-size: .78rem; margin-bottom: .9rem; }
  .bento__foot .btn { padding: .55rem 1rem; font-size: .78rem; }
}
