/* ============================================================
   Tuscany Pavers - production stylesheet
   Flattened from the approved Knockout draft. Values preserved
   from the source design; responsive layer added.
   ============================================================ */

:root{
  --ink:#17150f;
  --ink-soft:#2a2519;
  --paper:#ece7dd;
  --paper-2:#efe9de;
  --paper-3:#e9e3d6;
  --paper-4:#e2dccf;
  --cream:#f4f0e8;
  --dark:#15140f;
  --footer:#1a1813;
  --gold:#c2a766;
  --gold-hover:#b29456;
  --gold-bright:#d2b572;
  --gold-light:#d8c184;
  --gold-deep:#a08a52;
  --gold-mute:#8a8164;
  --muted:#5f594c;
  --muted-dark:#c4bba8;
  --nav-ink:#3a352b;
  --font-display:'Oswald',sans-serif;
  --font-body:'Archivo',sans-serif;
  --header-h:81px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
}
::selection{ background:var(--gold); color:#fff; }
img{ max-width:100%; }
[id]{ scroll-margin-top:calc(var(--header-h) + 14px); }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
}

.page{
  background:var(--paper);
  color:var(--ink);
  min-height:100vh;
  overflow-x:hidden;
}
.container{ max-width:1240px; margin:0 auto; }

.skip-link{
  position:absolute; left:12px; top:-60px; z-index:200;
  background:var(--gold); color:var(--ink);
  font-size:13px; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  padding:10px 16px; border-radius:2px; text-decoration:none;
  transition:top .15s ease;
}
.skip-link:focus{ top:12px; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(236,231,221,0.85);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(194,167,102,0.5);
  box-shadow:0 9px 28px rgba(23,21,15,0.11);
}
.site-header__inner{
  max-width:1240px; margin:0 auto; padding:14px 32px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.site-header__brand{ display:flex; align-items:center; text-decoration:none; flex:none; }
.site-header__brand img{ height:52px; width:auto; display:block; }

.header-phone{
  display:flex; flex-direction:column; align-items:center;
  line-height:1.1; text-decoration:none; flex:none;
}
.header-phone__label{
  font-size:10px; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold-mute); margin-bottom:3px;
}
.header-phone__number{
  font-family:var(--font-display); font-weight:500; font-size:21px;
  letter-spacing:.02em; color:var(--ink); transition:color .18s ease;
}
.header-phone:hover .header-phone__number{ color:var(--gold-deep); }

.site-nav{ display:flex; align-items:center; gap:34px; }
.site-nav__link{
  font-size:13px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--nav-ink); text-decoration:none; padding-bottom:4px;
  border-bottom:2px solid transparent; transition:border-color .18s ease, color .18s ease;
}
.site-nav__link:hover{ color:var(--ink); border-bottom-color:var(--gold); }
.site-nav__link--active{ color:var(--ink); border-bottom-color:var(--gold); }

.btn{
  font-family:var(--font-body); font-weight:600; text-transform:uppercase;
  color:var(--ink); background:var(--gold); border:none; border-radius:2px;
  text-decoration:none; cursor:pointer; display:inline-flex; align-items:center;
  justify-content:center; gap:10px;
  transition:background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:active{ transform:translateY(0); }

.btn--nav{
  font-size:13px; letter-spacing:.08em; padding:12px 22px;
  box-shadow:0 6px 16px rgba(194,167,102,0.28);
}
.btn--nav:hover{
  background:var(--gold-hover); transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(194,167,102,0.38);
}

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; padding:10px; flex:none;
  background:transparent; border:1px solid rgba(23,21,15,0.18); border-radius:2px;
  cursor:pointer;
}
.nav-toggle span{
  display:block; height:2px; width:100%; background:var(--ink);
  transition:transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-nav{
  display:none;
  background:rgba(236,231,221,0.97);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(194,167,102,0.5);
  box-shadow:0 18px 30px rgba(23,21,15,0.14);
  padding:10px 24px 22px;
}
.mobile-nav.is-open{ display:block; }
.mobile-nav a{ display:block; }
.mobile-nav__link{
  font-size:15px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--nav-ink); text-decoration:none; padding:14px 2px;
  border-bottom:1px solid rgba(23,21,15,0.1);
}
.mobile-nav__link:hover{ color:var(--ink); }
.mobile-nav .btn{ width:100%; margin-top:16px; padding:15px; font-size:13px; letter-spacing:.08em; }

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:90vh; min-height:90svh; overflow:hidden;
  background:var(--dark); display:flex; flex-direction:column; align-items:stretch;
}
.hero__bg{
  position:absolute; inset:0;
  background-image:url('assets/hero-driveway.webp');
  background-repeat:no-repeat; background-size:cover; background-position:50% 50%;
  filter:saturate(1.02) contrast(1.02);
  z-index:0;
}
.hero__scrim{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(13,11,8,0.23) 0%, rgba(15,14,10,0.2) 45%, rgba(11,9,6,0.4) 100%);
}
.hero__content{
  position:relative; z-index:3; flex:1; width:100%; max-width:1320px; margin:0 auto;
  padding:clamp(40px,6vh,80px) clamp(28px,5vw,64px) clamp(10px,1.5vh,20px);
  display:flex; flex-direction:column; justify-content:flex-start; color:var(--paper);
}
.hero__word-block{
  flex:1; display:flex; flex-direction:column; justify-content:center; align-items:center;
}
.hero__wordmark{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(95px,19.3vw,370px);
  line-height:.8; letter-spacing:.015em; margin:0; width:max-content;
  color:rgba(249,244,235,1);
  text-shadow:0 10px 32px rgba(0,0,0,0.4);
}
.hero__subword-row{ text-align:center; margin-top:clamp(5px,1vh,12px); }
.hero__subword{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(34px,5.15vw,87px);
  letter-spacing:.4em; text-transform:uppercase;
  color:rgba(244,239,228,1); padding-left:.4em;
}
.hero__ctas{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap:22px; margin-top:clamp(28px,5vh,56px);
}
.btn--hero{
  font-size:14px; letter-spacing:.06em; padding:16px 32px;
  box-shadow:0 10px 26px rgba(0,0,0,0.4);
}
.btn--hero:hover{
  background:var(--gold-bright); transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(0,0,0,0.5);
}
.hero__ghost{
  font-size:14px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  color:var(--paper); text-decoration:none; display:inline-flex; align-items:center; gap:9px;
  border-bottom:1px solid rgba(236,231,221,0.35); padding-bottom:3px;
  transition:color .18s ease, border-color .18s ease;
}
.hero__ghost:hover{ color:#f1ece0; border-bottom-color:var(--gold); }

/* ---------- Trust strip ---------- */
.trust-strip{
  position:relative; z-index:3;
  background:rgba(15,13,9,0.72);
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  border-top:1px solid rgba(194,167,102,0.28);
  color:var(--paper); padding:20px 24px;
}
.trust-strip__inner{
  max-width:1240px; margin:0 auto;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:14px 46px;
}
.trust-strip__item{ display:flex; align-items:center; gap:11px; padding:6px 0; }
.trust-strip__dot{ width:7px; height:7px; border-radius:50%; background:var(--gold); flex:none; }
.trust-strip__label{
  font-size:13px; font-weight:600; letter-spacing:.07em; text-transform:uppercase;
  color:var(--paper);
}
.trust-strip__label-short{ display:none; }

/* ---------- Shared section furniture ---------- */
.eyebrow{
  font-size:13px; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold-deep); margin:0 0 16px;
}
.eyebrow--gold{ color:var(--gold); }
.hairline{ height:1px; background:rgba(23,21,15,0.14); margin:0 0 40px; }
.section-title{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(32px,4.2vw,52px); line-height:1.04; letter-spacing:.01em;
  text-transform:uppercase; margin:0;
}

/* ---------- Trusted leader split ---------- */
.split{
  background:var(--paper-2);
  display:grid; grid-template-columns:1fr 1fr; align-items:stretch;
}
.split__text{
  display:flex; flex-direction:column; justify-content:center;
  padding:clamp(48px,7vw,104px) clamp(32px,5vw,90px);
  max-width:760px; margin-left:auto; width:100%;
}
.split__text .eyebrow{ letter-spacing:.22em; margin-bottom:26px; }
.split__title{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(34px,4.4vw,62px); line-height:1.02; letter-spacing:.01em;
  text-transform:uppercase; margin:0 0 32px; text-wrap:balance;
}
.split__copy{ font-size:17px; line-height:1.7; color:var(--muted); margin:0 0 22px; text-wrap:pretty; }
.split__copy:last-child{ margin-bottom:0; }
.split__media{ position:relative; min-height:clamp(420px,52vw,760px); overflow:hidden; }
.split__media img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
  filter:saturate(1.08) brightness(1.13);
}

/* ---------- Gallery ---------- */
.gallery{ background:linear-gradient(180deg,var(--paper-2) 0%,var(--paper-3) 100%); padding:64px 24px 20px; }
.gallery__head{
  display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between;
  gap:20px; margin-bottom:30px;
}
.gallery__head-copy{ max-width:620px; }
.gallery__grid{ display:grid; grid-template-columns:1.55fr 1fr; gap:16px; align-items:stretch; }
.gallery__stack{ display:grid; grid-template-rows:1fr 1fr; gap:16px; min-height:0; }
.tile{ position:relative; border-radius:3px; overflow:hidden; display:block; text-decoration:none; }
.tile--lead{ aspect-ratio:16/11; }
.tile--stack{ min-height:0; }
.tile img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
  filter:saturate(0.84) contrast(1.02) brightness(0.96) sepia(0.1);
  transition:transform .6s cubic-bezier(.2,.7,.2,1);
}
.tile:hover img{ transform:scale(1.05); }
.tile__caption{
  position:absolute; left:20px; bottom:20px;
  font-size:14px; font-weight:600; letter-spacing:.03em; color:#fff;
  background:rgba(23,21,15,0.5);
  backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
  padding:9px 15px; border-radius:2px;
}
.tile--stack .tile__caption{ left:16px; bottom:16px; font-size:12px; letter-spacing:.04em; padding:7px 12px; }
.gallery__more{ display:flex; justify-content:center; margin-top:30px; }
.btn--wide{
  font-size:14px; letter-spacing:.06em; padding:16px 36px;
  box-shadow:0 8px 22px rgba(194,167,102,0.3);
}
.btn--wide:hover{
  background:var(--gold-bright); transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(194,167,102,0.42);
}

/* ---------- Services ---------- */
.services{ background:linear-gradient(180deg,var(--paper-3) 0%,var(--paper-4) 100%); padding:64px 24px 54px; }
.services__intro{ max-width:700px; margin:0 0 36px; }
.services__intro .section-title{ margin-bottom:22px; }
.services__lede{ font-size:17px; line-height:1.6; color:var(--muted); margin:0; text-wrap:pretty; }
.services__title-short{ display:none; }
.services__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.svc-card{
  background:var(--cream); border:1px solid rgba(23,21,15,0.08); border-radius:3px;
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 34px rgba(23,21,15,0.14);
  border-color:rgba(194,167,102,0.5);
}
.svc-card__media{ aspect-ratio:4/3; overflow:hidden; }
.svc-card__media img{
  width:100%; height:100%; object-fit:cover; display:block;
  filter:saturate(0.84) contrast(1.02) brightness(0.96) sepia(0.1);
  transition:transform .55s cubic-bezier(.2,.7,.2,1);
}
.svc-card:hover .svc-card__media img{ transform:scale(1.06); }
.svc-card__body{ padding:28px; display:flex; flex-direction:column; flex:1; }
.svc-card__title{
  font-family:var(--font-display); font-weight:600; font-size:24px;
  letter-spacing:.01em; text-transform:uppercase; margin:0 0 12px;
}
.svc-card__copy{ font-size:15px; line-height:1.6; color:var(--muted); margin:0; }

/* ---------- About ---------- */
.about{ background:var(--ink); color:var(--paper); padding:54px 24px; }
.about__grid{
  max-width:1240px; margin:0 auto;
  display:grid; grid-template-columns:0.82fr 1fr; gap:60px; align-items:center;
}
.about__photo{ aspect-ratio:4/5; border-radius:3px; overflow:hidden; }
.about__photo img{
  width:100%; height:100%; object-fit:cover; object-position:center top; display:block;
  filter:saturate(0.84) contrast(1.02) brightness(0.96) sepia(0.1);
}
.about__title{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(32px,4.2vw,52px); line-height:1.04; letter-spacing:.01em;
  text-transform:uppercase; margin:0 0 24px;
}
.about__copy{ font-size:17px; line-height:1.65; color:var(--muted-dark); margin:0 0 18px; text-wrap:pretty; }
.about__copy--last{ margin-bottom:24px; }
.about__quote{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(20px,2.3vw,28px); line-height:1.3; color:var(--paper);
  border-left:3px solid var(--gold); padding-left:22px; margin:0;
}

/* ---------- Quote / contact ---------- */
.quote{ background:var(--ink); border-top:1px solid rgba(194,167,102,0.22); padding:46px 24px; }
.quote__grid{
  max-width:1240px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start;
}
.quote__title{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(32px,4.4vw,52px); line-height:1.04; letter-spacing:.01em;
  text-transform:uppercase; margin:0 0 22px; color:var(--paper);
}
.quote__lede{
  font-size:17px; line-height:1.6; color:var(--muted-dark);
  margin:0 0 40px; max-width:44ch; text-wrap:pretty;
}
.contact-rows{ display:flex; flex-direction:column; gap:22px; }
.contact-row{ display:flex; align-items:flex-start; gap:16px; }
.contact-row__dot{ width:8px; height:8px; background:var(--gold); border-radius:50%; margin-top:7px; flex:none; }
.contact-row__label{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold-mute); margin-bottom:4px;
}
.contact-row__value{ font-size:18px; font-weight:600; color:var(--paper); }
a.contact-row__value{ text-decoration:none; transition:color .18s ease; }
a.contact-row__value:hover{ color:var(--gold-light); }

.quote-card{
  background:var(--cream); border:1px solid rgba(23,21,15,0.1);
  border-radius:3px; padding:36px;
}
.quote-form{ display:flex; flex-direction:column; gap:18px; }
.field label{
  display:block; font-size:12px; font-weight:600; letter-spacing:.1em;
  text-transform:uppercase; color:var(--gold-mute); margin-bottom:7px;
}
.field input, .field select, .field textarea{
  width:100%; padding:13px 14px; border:1px solid rgba(23,21,15,0.18);
  background:var(--paper); color:var(--ink);
  font-family:var(--font-body); font-size:15px; border-radius:2px; outline:none;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--gold); }
.field textarea{ resize:vertical; }
.field-row{ display:flex; gap:14px; }
.field-row .field{ flex:1; }
.btn--submit{
  font-size:14px; letter-spacing:.06em; padding:16px; margin-top:4px; width:100%;
  box-shadow:0 8px 20px rgba(194,167,102,0.3);
}
.btn--submit:hover{
  background:var(--gold-hover); transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(194,167,102,0.4);
}
.quote-success{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding:40px 12px;
}
.quote-success__badge{
  width:56px; height:56px; border-radius:50%; background:var(--gold); color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-size:28px; font-weight:700; margin-bottom:22px;
}
.quote-success__title{
  font-family:var(--font-display); font-weight:600; font-size:24px;
  text-transform:uppercase; letter-spacing:.01em; margin:0 0 10px;
}
.quote-success__copy{ font-size:16px; line-height:1.6; color:var(--muted); margin:0; max-width:34ch; }

/* ---------- Page hero (FAQ / Our Work) ---------- */
.page-hero{ position:relative; overflow:hidden; background:var(--ink); color:var(--paper); padding:72px 24px 64px; }
.page-hero--plain{ padding:64px 24px 56px; }
.page-hero__bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
  opacity:0.5; filter:saturate(0.84) contrast(1.02) brightness(0.82) sepia(0.08);
}
.page-hero__scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(23,21,15,0.42) 0%, rgba(23,21,15,0.66) 100%);
}
.page-hero__content{ position:relative; z-index:2; max-width:1240px; margin:0 auto; }
.back-link{
  font-size:12px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold-light); text-decoration:none;
  display:inline-flex; align-items:center; gap:8px; margin-bottom:26px;
  transition:color .18s ease;
}
.back-link:hover{ color:var(--paper); }
.back-link--deep{ color:var(--gold-deep); }
.back-link--deep:hover{ color:var(--gold-light); }
.page-hero__title{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(38px,5.6vw,76px); line-height:1.0; letter-spacing:.01em;
  text-transform:uppercase; margin:0 0 22px; max-width:17ch; text-wrap:balance;
}
.page-hero__title--work{ font-size:clamp(40px,6vw,82px); line-height:.98; max-width:16ch; }
.page-hero__lede{
  font-size:clamp(16px,1.4vw,19px); line-height:1.65; color:var(--muted-dark);
  margin:0; max-width:58ch; text-wrap:pretty;
}
.page-hero__lede--work{ max-width:60ch; }

/* ---------- FAQ ---------- */
.faq-body{ background:var(--paper); padding:64px 24px 40px; }
.faq-body__inner{ max-width:980px; margin:0 auto; }
.faq-group{ margin-bottom:54px; }
.faq-group--last{ margin-bottom:8px; }
.faq-group__title{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(22px,2.6vw,30px); letter-spacing:.02em; text-transform:uppercase;
  margin:0 0 8px; color:var(--gold-deep);
}
.faq-group .hairline{ margin-bottom:8px; }
.faq-item{ border-bottom:1px solid rgba(23,21,15,0.12); }
.faq-item summary{
  cursor:pointer; display:flex; align-items:center; justify-content:space-between;
  gap:20px; padding:24px 0; list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-q{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(19px,2vw,25px); letter-spacing:.01em; color:var(--ink-soft);
  transition:color .2s ease;
}
.faq-mark{
  font-family:var(--font-display); font-weight:400; font-size:30px;
  color:var(--gold); line-height:1; flex:none;
  transition:transform .22s ease;
}
.faq-item[open] .faq-mark{ transform:rotate(45deg); }
.faq-item[open] .faq-q{ color:var(--ink); }
.faq-a{ padding:0 0 26px; max-width:74ch; }
.faq-a p{ font-size:16.5px; line-height:1.7; color:var(--muted); margin:0 0 14px; }
.faq-a p:last-child{ margin-bottom:0; }

.image-break{ background:var(--paper); padding:0 24px 64px; }
.image-break__frame{
  max-width:1240px; margin:0 auto; position:relative;
  border-radius:3px; overflow:hidden; aspect-ratio:21/8;
}
.image-break__frame img{
  width:100%; height:100%; object-fit:cover; display:block;
  filter:saturate(0.86) contrast(1.02) brightness(0.96) sepia(0.08);
}

/* ---------- Our Work projects ---------- */
.projects{ background:var(--paper); padding:64px 24px 48px; }
.projects__inner{
  max-width:1180px; margin:0 auto;
  display:flex; flex-direction:column; gap:clamp(48px,7vh,86px);
}
.proj{
  display:grid; grid-template-columns:1.1fr 1fr;
  gap:clamp(28px,4vw,60px); align-items:center;
}
.proj__media{
  position:relative; aspect-ratio:4/3; border-radius:3px; overflow:hidden;
  box-shadow:0 18px 40px rgba(23,21,15,0.14);
}
.proj__media img{
  width:100%; height:100%; object-fit:cover; display:block;
  filter:saturate(0.84) contrast(1.02) brightness(0.96) sepia(0.1);
  transition:transform .6s cubic-bezier(.2,.7,.2,1);
}
.proj__media:hover img{ transform:scale(1.05); }
.proj__tag{
  position:absolute; left:18px; top:18px;
  font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  color:var(--ink); background:var(--gold); padding:7px 13px; border-radius:2px;
}
.proj--flip .proj__media{ order:2; }
.proj--flip .proj__text{ order:1; }
.proj__location{
  font-size:12px; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold-deep); margin:0 0 12px;
}
.proj__title{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(26px,3vw,38px); line-height:1.06; letter-spacing:.01em;
  text-transform:uppercase; margin:0 0 16px;
}
.proj__copy{ font-size:16px; line-height:1.65; color:var(--muted); margin:0; text-wrap:pretty; }
.proj__specs{ display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.proj__spec{
  font-size:12px; font-weight:600; letter-spacing:.04em; color:var(--nav-ink);
  background:var(--cream); border:1px solid rgba(23,21,15,0.1);
  padding:7px 13px; border-radius:2px;
}

/* ---------- CTA band ---------- */
.cta-band{ background:var(--ink); color:var(--paper); padding:64px 24px; }
.cta-band__inner{ max-width:900px; margin:0 auto; text-align:center; }
.cta-band__title{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(30px,4vw,52px); line-height:1.04; letter-spacing:.01em;
  text-transform:uppercase; margin:0 0 18px; text-wrap:balance;
}
.cta-band__copy{
  font-size:17px; line-height:1.6; color:var(--muted-dark);
  margin:0 auto 32px; max-width:48ch; text-wrap:pretty;
}
.cta-band__copy--narrow{ max-width:46ch; }
.cta-band__row{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:18px;
}
.btn--cta{
  font-size:14px; letter-spacing:.06em; padding:17px 36px;
  box-shadow:0 10px 26px rgba(0,0,0,0.4);
}
.btn--cta:hover{
  background:var(--gold-bright); transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(0,0,0,0.5);
}
.cta-band__phone{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(20px,2vw,26px); letter-spacing:.02em;
  color:var(--paper); text-decoration:none; transition:color .18s ease;
}
.cta-band__phone:hover{ color:var(--gold-light); }

/* ---------- Footer ---------- */
.site-footer{
  background:var(--footer); color:#9a917f;
  border-top:1px solid rgba(194,167,102,0.3); padding:50px 24px 30px;
}
.site-footer__top{
  max-width:1240px; margin:0 auto;
  display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-start;
  gap:40px; border-bottom:1px solid rgba(236,231,221,0.12); padding-bottom:40px;
}
.site-footer__brand{ max-width:300px; }
.site-footer__brand img{ height:58px; width:auto; display:block; margin:0 0 16px -2px; }
.site-footer__brand p{ font-size:14px; line-height:1.6; margin:0; }
.site-footer__cols{ display:flex; gap:64px; flex-wrap:wrap; }
.site-footer__col-title{
  font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold); margin-bottom:16px;
}
.site-footer__links{ display:flex; flex-direction:column; gap:10px; }
.site-footer__links a, .site-footer__links span{ font-size:15px; color:var(--paper); }
.site-footer__links a{ text-decoration:none; transition:color .18s ease; }
.site-footer__links a:hover{ color:var(--gold); }
.site-footer__bottom{
  max-width:1240px; margin:0 auto; padding-top:24px;
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; font-size:13px;
}

/* ---------- Grain overlay ---------- */
.grain{
  position:fixed; inset:0; z-index:9998; pointer-events:none;
  background-image:url('assets/grain.webp'); background-size:190px 190px;
  mix-blend-mode:soft-light; opacity:0.13;
}

/* ---------- Reveal (JS adds motion; content visible without JS) ---------- */
.reveal{ opacity:1; }

/* ---------- 404 ---------- */
.notfound{
  min-height:70vh; display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center;
  background:var(--dark); color:var(--paper); padding:80px 24px;
}
.notfound__code{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(90px,18vw,220px); line-height:1; margin:0 0 8px; color:var(--gold);
}
.notfound__title{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(22px,3vw,34px); text-transform:uppercase; letter-spacing:.02em;
  margin:0 0 14px;
}
.notfound__copy{ font-size:16px; line-height:1.6; color:var(--muted-dark); margin:0 0 30px; max-width:44ch; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width:1100px){
  .services__grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:1024px){
  .site-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .site-header__inner{ padding:12px 20px; gap:16px; }
  .site-header__brand img{ height:44px; }
  .header-phone__number{ font-size:18px; }
}

@media (max-width:768px){
  .hero__bg{ background-image:url('assets/hero-driveway-m.webp'); }
}

@media (max-width:900px){
  :root{ --header-h:69px; }
  .split{ display:none; }

  .gallery__grid{ grid-template-columns:1fr; }
  .gallery__stack{ grid-template-rows:none; grid-template-columns:1fr; }
  .tile--stack{ aspect-ratio:16/11; }

  .about__grid{ grid-template-columns:1fr; gap:36px; }
  .about__photo{ max-width:460px; }

  .quote__grid{ grid-template-columns:1fr; gap:40px; }

  .proj{ grid-template-columns:1fr; gap:22px; }
  .proj--flip .proj__media{ order:0; }
  .proj--flip .proj__text{ order:0; }

  .image-break__frame{ aspect-ratio:16/9; }
}

@media (max-width:640px){
  .hero__wordmark{ font-size:clamp(58px,18vw,95px); }
  .hero__subword{ font-size:clamp(26px,5vw,34px); }
  .hero__content{ padding:32px 20px 12px; }
  .trust-strip__inner{ gap:8px 28px; }
  .trust-strip__label{ font-size:12px; }
  .trust-strip__label-full{ display:none; }
  .trust-strip__label-short{ display:inline; }

  .gallery, .services, .faq-body, .projects{ padding-left:20px; padding-right:20px; }
  .about, .quote, .cta-band, .page-hero{ padding-left:20px; padding-right:20px; }

  .services__grid{ grid-template-columns:1fr; }
  .svc-card__body{ padding:22px; }
  .services__title-full{ display:none; }
  .services__title-short{ display:inline; }

  .quote-card{ padding:24px 20px; }
  .quote{ padding-top:40px; padding-bottom:40px; }

  .site-footer__cols{ gap:36px; }
}

@media (max-width:480px){
  .header-phone__label{ display:none; }
  .field-row{ flex-direction:column; gap:18px; }
  .btn--hero, .btn--cta{ width:100%; }
  .hero__ctas{ gap:16px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; animation:none !important; }
}
