/* ─────────────────────────────────────────────
   2K Proffs — Mobile-first design system
   ───────────────────────────────────────────── */

:root{
  /* derived from 2K Proffs logo */
  --bone: #1a2128;
  --bone-2: #232a31;
  --bone-3: #2c343c;
  --cream: #f5f1ea;
  --cream-2: #e9e4d8;
  --cream-3: #d8d2c2;
  --gold: #d4a017;
  --gold-2: #b88a0a;
  --ink: #3a444b;
  --muted: #7d858c;
  --muted-l: rgba(245,241,234,0.58);
  --line: rgba(245,241,234,0.10);
  --line-d: rgba(58,68,75,0.14);

  --f-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --f-body: "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* mobile defaults */
  --pad: 20px;
  --r: 4px;

  --nav-h: 60px;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; background: var(--bone); -webkit-text-size-adjust: 100%; }
body{
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--cream);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
em{ font-family: var(--f-display); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
img{ display:block; max-width:100%; }
button{ font: inherit; }

::selection{ background: var(--gold); color: var(--bone); }

/* ───────── atoms (mobile baseline) ───────── */
.kicker{
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.h2{
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 11vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 14px 0 0;
}
.h2--light{ color: var(--cream); }
.h2 em{ color: var(--gold); }

.lede{
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 48ch;
  margin: 20px 0 0;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border .25s ease;
  white-space: nowrap;
  min-height: 48px;
}
.btn--gold{
  background: var(--gold);
  color: var(--bone);
  border-color: var(--gold);
}
.btn--gold:hover{ background: var(--cream); border-color: var(--cream); transform: translateY(-2px); }
.btn--ghost{
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover{ background: var(--cream); color: var(--bone); border-color: var(--cream); }
.btn--ghost-light{
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,239,230,0.18);
}
.btn--ghost-light:hover:not(:disabled){ background: rgba(244,239,230,0.06); }
.btn:disabled{ opacity: 0.35; cursor: not-allowed; }

/* ───────── NAV (mobile-first) ───────── */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px var(--pad);
  background: linear-gradient(180deg, rgba(14,14,12,0.92), rgba(14,14,12,0.55) 70%, rgba(14,14,12,0));
  transition: padding .3s ease, background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
  height: var(--nav-h);
}
.nav.is-scrolled{
  padding: 10px var(--pad);
  background: rgba(14,14,12,0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__brand{
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--cream);
  line-height: 0;
}
.nav__logo{
  height: 32px;
  width: auto;
  display: block;
}

/* Desktop nav links hidden on mobile */
.nav__links{ display: none; }

/* Mobile burger */
.nav__burger{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  color: var(--cream);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
  margin-left: auto;
  flex-shrink: 0;
}
.nav__burger:hover{ background: rgba(244,239,230,0.06); }
.nav__burger svg{ display: block; transition: transform .3s ease; }
.nav__burger[aria-expanded="true"] svg{ transform: rotate(90deg); }

/* Mobile menu sheet */
.nav__sheet{
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bone);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 28px) var(--pad) 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s ease;
}
.nav__sheet.is-open{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__sheet a{
  display: block;
  padding: 18px 0;
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav__sheet a:last-of-type{ border-bottom: 0; }
.nav__sheet .sheet__cta{
  margin-top: 28px;
  align-self: flex-start;
}
.nav__sheet .sheet__meta{
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.nav__sheet .sheet__meta a{
  display: inline;
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--gold);
  border: 0;
  padding: 0;
}

/* Top-right CTA on desktop only */
.nav__cta{ display: none; }

/* ───────── HERO (mobile-first) ───────── */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 32px) var(--pad) 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  background:
    radial-gradient(80vw 50vh at 80% 20%, rgba(201,168,120,0.10), transparent 60%),
    radial-gradient(80vw 50vh at 10% 80%, rgba(201,168,120,0.04), transparent 60%),
    var(--bone);
  overflow: hidden;
}

.hero__meta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-l);
}
.hero__meta .dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,120,0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  50%{ box-shadow: 0 0 0 7px rgba(201,168,120,0.0); }
}

.hero__title{
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(54px, 16vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 28px 0 0;
  color: var(--cream);
  position: relative;
  z-index: 2;
}
.hero__line{ display: block; }
.hero__line em{ color: var(--gold); }
.hero__line--small{
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: -0.005em;
  line-height: 1.5;
  color: var(--muted-l);
  margin-top: 14px;
  max-width: 26ch;
}

.hero__lower{
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0 32px;
  padding-bottom: 16px;
  position: relative;
  z-index: 2;
}
.hero__desc{
  max-width: 38ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-l);
  margin: 0;
}
.hero__actions{ display: flex; gap: 10px; flex-wrap: wrap; }
.hero__actions .btn{ flex: 1 1 auto; min-width: 0; }

/* 3D granite paver patio — three.js + GLB */
.hero__3d{
  position: relative;
  width: 320px;
  height: 280px;
  max-width: 100%;
  margin: -90px auto -20px;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.55));
}
.patio-3d{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.patio-3d canvas{
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Marquee strip */
.strip{
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 calc(-1 * var(--pad));
  padding: 14px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.strip__track{
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-l);
  width: max-content;
}
.strip__track i{ color: var(--gold); font-style: normal; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ───────── PROOF (mobile-first) ───────── */
.proof{
  background: var(--bone);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof__cell{
  padding: 28px var(--pad);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.proof__cell:nth-child(2n){ border-right: 0; }
.proof__cell:nth-last-child(-n+2){ border-bottom: 0; }
.proof__num{
  font-family: var(--f-display);
  font-size: clamp(34px, 8vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.proof__lbl{
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ───────── SERVICES (mobile-first) ───────── */
.services{
  background: var(--cream);
  color: var(--ink);
  padding: 72px var(--pad);
  position: relative;
}
.services__head{ max-width: 880px; margin-bottom: 40px; }
.services__head .h2{ margin-top: 14px; }
.services__head .lede{ color: rgba(26,24,23,0.65); }

.srv{
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-d);
  position: relative;
}
.srv__row{
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: baseline;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-d);
  cursor: pointer;
  position: relative;
  transition: padding .35s ease, color .25s ease;
}
.srv__num{
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.srv__name{
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 8vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  transition: color .25s ease, transform .35s ease;
}
.srv__desc{
  display: none;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26,24,23,0.6);
  margin: 0;
}
.srv__arrow{
  font-size: 20px;
  color: var(--ink);
  justify-self: end;
  transition: transform .3s ease, color .3s ease;
}

/* Peek hidden on touch */
.srv__peek{
  display: none;
}

/* ───────── FEATURE IMAGE ───────── */
.feature{
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
  background: var(--bone-2);
}
.feature__img{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform .8s ease;
  filter: brightness(0.85) contrast(1.02);
}
.feature__cap{
  position: absolute;
  left: var(--pad);
  bottom: 20px;
  right: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.feature::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55));
  pointer-events: none;
}

/* ───────── ABOUT ───────── */
.about{
  background: var(--bone);
  padding: 72px var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.about__left .h2{ margin-top: 14px; }
.about__right{
  color: var(--muted-l);
  font-size: 15px;
  line-height: 1.6;
}
.about__right p{ margin: 0 0 16px; }
.about__right p:first-child{ font-size: 17px; color: var(--cream); }
.about__list{
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.about__list li{
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted-l);
  line-height: 1.5;
}
.about__list b{ color: var(--gold); font-weight: 500; font-family: var(--f-body); }

/* ───────── PROCESS ───────── */
.process{
  background: var(--cream);
  color: var(--ink);
  padding: 72px var(--pad);
}
.process > .kicker{ display: inline-block; }
.process > .h2{ margin: 14px 0 40px; }
.steps{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.step{
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  position: relative;
}
.step:last-child{ border-bottom: 1px solid var(--line-d); }
.step__n{
  font-family: var(--f-display);
  font-size: 44px;
  color: var(--gold-2);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.step h4{
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.step p{
  font-size: 14px;
  color: rgba(26,24,23,0.62);
  margin: 0 0 16px;
  line-height: 1.5;
}
.step__when{
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--line-d);
  border-radius: 999px;
  color: var(--ink);
}

/* ───────── QUOTE ───────── */
.quote{
  background: var(--bone);
  color: var(--cream);
  padding: 72px var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}
.quote::before{
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  width: 140px; height: 140px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  transform: translateX(-50%);
}
.quote__left .h2{ margin-top: 14px; }
.quote__lede{
  font-size: 15px;
  color: var(--muted-l);
  max-width: 36ch;
  margin: 22px 0 28px;
}
.quote__feat{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote__feat li{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--cream);
}
.quote__feat svg{ color: var(--gold); flex-shrink: 0; }

/* form */
.quote__form{
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.quote__form::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form__intro{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 4px;
}
.form__intro h3{
  font-family: var(--f-display);
  font-size: clamp(26px, 5vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 4px 0 0;
}
.form__intro p{
  font-size: 14px;
  color: var(--muted-l);
  margin: 0;
  line-height: 1.5;
}

.form__section{
  border: 0;
  padding: 22px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
}
.form__section legend{
  display: block;
  padding: 0;
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.step__tag{
  display: inline-block;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.opts{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.opts--grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.opts label{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  font-size: 14px;
  color: var(--cream);
  min-height: 48px;
}
.opts label:hover{ border-color: rgba(201,168,120,0.4); background: rgba(201,168,120,0.04); }
.opts input{
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--muted);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}
.opts input[type="radio"]{ border-radius: 50%; }
.opts input:checked{
  border-color: var(--gold);
  background: var(--gold);
}
.opts input:checked + span{ color: var(--cream); font-weight: 500; }
.opts input[type="checkbox"]:checked::after{
  content: '';
  position: absolute;
  top: 2px; left: 6px;
  width: 4px; height: 9px;
  border: solid var(--bone);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.opts input[type="radio"]:checked::after{
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--bone);
  border-radius: 50%;
}
.opts label:has(input:checked){
  border-color: var(--gold);
  background: rgba(201,168,120,0.08);
}

.field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field > span{
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.field > input, .field > textarea{
  font-family: var(--f-body);
  font-size: 16px; /* avoid iOS zoom */
  color: var(--cream);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  transition: border-color .2s ease;
  resize: vertical;
  width: 100%;
  min-height: 44px;
}
.field > input:focus, .field > textarea:focus{
  outline: none;
  border-bottom-color: var(--gold);
}
.field > input::placeholder, .field > textarea::placeholder{ color: rgba(244,239,230,0.25); }

.row{ display: grid; grid-template-columns: 1fr; gap: 16px; }

.range{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 0;
}
.range input[type="range"]{
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  background: rgba(244,239,230,0.10);
  border-radius: 4px;
  outline: none;
  min-width: 0;
}
.range input[type="range"]::-webkit-slider-thumb{
  appearance: none;
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 0 0 6px rgba(201,168,120,0.15);
  transition: box-shadow .2s ease;
}
.range input[type="range"]::-webkit-slider-thumb:hover{ box-shadow: 0 0 0 10px rgba(201,168,120,0.18); }
.range input[type="range"]::-moz-range-thumb{
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  border: 0;
  cursor: grab;
}
.range output{
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold);
  min-width: 80px;
  text-align: right;
  white-space: nowrap;
}

.checkline{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--muted-l);
  cursor: pointer;
  line-height: 1.4;
}
.checkline input{
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--muted);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  margin: 1px 0 0;
}
.checkline input:checked{ background: var(--gold); border-color: var(--gold); }
.checkline input:checked::after{
  content: '';
  position: absolute;
  top: 2px; left: 6px;
  width: 4px; height: 9px;
  border: solid var(--bone);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.step-panel--done, .done{
  text-align: center;
  padding: 12px 0;
  animation: stepIn 0.4s ease both;
}
.done__mark{
  color: var(--gold);
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.done h3{
  font-family: var(--f-display);
  font-size: 26px;
  margin: 0 0 10px;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.done p{
  font-size: 14px;
  color: var(--muted-l);
  max-width: 36ch;
  margin: 0 auto;
  line-height: 1.6;
}
.done b{ color: var(--gold); font-weight: 500; }

.form__nav{
  display: flex;
  justify-content: stretch;
  gap: 10px;
  margin-top: 8px;
}
.form__nav .btn{ flex: 1 1 auto; padding: 16px 24px; font-size: 15px; }

.form__error{
  padding: 12px 14px;
  border: 1px solid rgba(255, 120, 90, 0.35);
  background: rgba(255, 120, 90, 0.08);
  color: #ff9c8a;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  animation: stepIn 0.3s ease both;
}

/* ───────── CONTACT ───────── */
.contact{
  background: var(--bone);
  padding: 72px var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  border-top: 1px solid var(--line);
}
.contact__info .h2{ color: var(--cream); margin-top: 14px; }
.contact__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.contact__grid h5{
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
  font-weight: 500;
}
.contact__grid p{
  margin: 0;
  font-size: 14px;
  color: var(--cream);
  line-height: 1.5;
}
.contact__grid a{ color: var(--cream); border-bottom: 1px solid var(--line); transition: color .2s ease, border-color .2s ease; }
.contact__grid a:hover{ color: var(--gold); border-color: var(--gold); }
.map{
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
  height: 60vh;
  max-height: 460px;
  border: 1px solid var(--line);
}
.map svg{ width: 100%; height: 100%; display: block; }

/* ───────── FOOTER ───────── */
.footer{
  background: var(--bone);
  color: var(--muted-l);
  padding: 60px var(--pad) 0;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.footer__top{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer__brand p{
  font-size: 14px;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.55;
}
.footer__col{ display: flex; flex-direction: column; gap: 10px; }
.footer__col h6{
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
  font-weight: 500;
}
.footer__col a, .footer__col span{
  font-size: 14px;
  color: var(--muted-l);
  transition: color .2s ease;
}
.footer__col a:hover{ color: var(--cream); }

.footer__bot{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0 24px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer__giant{
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(80px, 28vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--bone-3);
  text-align: center;
  margin: 0 0 -12px;
  user-select: none;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(201,168,120,0.18), rgba(244,239,230,0.04));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ───────── REVEAL ───────── */
[data-reveal]{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].is-revealed{ opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"]{ transition-delay: 0.06s; }
[data-reveal-delay="2"]{ transition-delay: 0.12s; }
[data-reveal-delay="3"]{ transition-delay: 0.18s; }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity: 1; transform: none; transition: none; }
  .strip__track{ animation: none; }
}

/* ─────────────────────────────────────────────
   ≥ 560px — phablet
   ───────────────────────────────────────────── */
@media (min-width: 560px){
  :root{ --pad: 32px; }
  .opts--grid{ grid-template-columns: 1fr 1fr; }
  .row{ grid-template-columns: auto 1fr; gap: 20px; }
  .contact__grid{ grid-template-columns: 1fr 1fr 1fr 1fr; gap: 28px; }
  .hero__actions .btn{ flex: 0 0 auto; }
}

/* ─────────────────────────────────────────────
   ≥ 760px — tablet
   ───────────────────────────────────────────── */
@media (min-width: 760px){
  :root{ --pad: 48px; --nav-h: 72px; }
  body{ font-size: 16px; }

  .h2{ font-size: clamp(56px, 7.5vw, 80px); }
  .lede{ font-size: 17px; }

  .nav__burger{ display: none; }
  .nav__sheet{ display: none; }
  .nav__links{
    display: flex;
    gap: 28px;
    font-size: 14px;
    color: var(--muted-l);
  }
  .nav__links a{ position: relative; padding: 4px 0; transition: color .2s ease; }
  .nav__links a:hover{ color: var(--cream); }
  .nav__links a::after{
    content: '';
    position: absolute; left: 0; bottom: -2px;
    width: 0; height: 1px; background: var(--gold);
    transition: width .25s ease;
  }
  .nav__links a:hover::after{ width: 100%; }
  .nav__cta{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    background: var(--gold);
    color: var(--bone);
    border-radius: 999px;
    transition: transform .2s ease, background .2s ease;
  }
  .nav__cta:hover{ background: var(--cream); transform: translateY(-1px); }
  .nav__brand{ font-size: 22px; }
  .nav__logo{ height: 38px; }

  .hero__title{ font-size: clamp(80px, 11vw, 120px); }

  .proof{ grid-template-columns: 1fr 1fr 1fr 1fr; }
  .proof__cell{ padding: 40px var(--pad); border-bottom: 0; }
  .proof__cell:last-child{ border-right: 0; }
  .proof__cell:nth-child(2n){ border-right: 1px solid var(--line); }

  .srv__row{
    grid-template-columns: 70px 1fr 1.2fr 40px;
    gap: 32px;
    padding: 32px 0;
  }
  .srv__name{ font-size: 42px; }
  .srv__desc{ display: block; }
  .srv__row:hover{ padding-left: 12px; padding-right: 12px; }
  .srv__row:hover .srv__name{ color: var(--gold-2); }
  .srv__row:hover .srv__arrow{ transform: translateX(8px); color: var(--gold-2); }
  .srv__peek{
    display: block;
    position: absolute;
    pointer-events: none;
    width: 280px;
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 5;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    background: var(--bone);
  }
  .srv__peek.is-on{ opacity: 1; transform: translate(-50%, -50%) scale(1); }
  .srv__peekimg{
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .25s ease;
  }
  .srv__peekimg.is-on{ opacity: 1; }

  .feature{ height: 60vh; min-height: 440px; }
  .feature__cap{
    flex-direction: row;
    justify-content: space-between;
    bottom: 32px;
    font-size: 12px;
  }

  .about{
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 96px var(--pad);
  }
  .about__right{ padding-top: 40px; font-size: 16px; }
  .about__right p:first-child{ font-size: 18px; }

  .process{ padding: 96px var(--pad); }
  .process > .h2{ margin-bottom: 60px; }
  .steps{ grid-template-columns: 1fr 1fr; gap: 0; }
  .step{ padding: 32px 24px 32px 0; }
  .step:nth-child(2){ padding-left: 24px; border-left: 1px solid var(--line-d); }
  .step:nth-child(4){ padding-left: 24px; border-left: 1px solid var(--line-d); }
  .step__n{ font-size: 56px; margin-bottom: 16px; }
  .step h4{ font-size: 26px; }
  .step:last-child{ border-bottom: 0; }

  .quote{
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    padding: 96px var(--pad);
  }
  .quote__form{ padding: 32px; }

  .services{ padding: 96px var(--pad); }
  .services__head{ margin-bottom: 60px; }

  .contact{
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    padding: 96px var(--pad);
  }
  .contact__grid{ grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 40px; }
  .map{ height: auto; max-height: none; }

  .footer{ padding-top: 80px; }
  .footer__top{
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
  }
  .footer__bot{
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 0 32px;
    font-size: 12px;
  }

  /* Re-introduce 3D paver patio — bigger on tablet */
  .hero__3d{
    position: absolute;
    top: 22%;
    left: auto;
    right: 2%;
    transform: none;
    margin: 0;
    width: 360px;
    height: 320px;
    max-width: 38vw;
  }

  .hero__lower{
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin: 60px 0 32px;
    padding-bottom: 24px;
  }
}

/* ─────────────────────────────────────────────
   ≥ 1080px — desktop
   ───────────────────────────────────────────── */
@media (min-width: 1080px){
  :root{ --pad: 72px; }

  .h2{ font-size: clamp(72px, 7vw, 112px); }
  .lede{ font-size: 19px; }

  .hero{ padding-top: clamp(140px, 14vh, 180px); }
  .hero__title{ font-size: clamp(96px, 10vw, 160px); }
  .hero__line--small{ font-size: 22px; }
  .hero__3d{
    width: 480px;
    height: 420px;
    max-width: 34vw;
    top: 20%;
    right: 4%;
  }

  .proof__num{ font-size: 60px; }
  .proof__cell{ padding: 48px var(--pad); }

  .srv__row{
    grid-template-columns: 90px 1fr 1.2fr 40px;
    gap: 60px;
    padding: 36px 0;
  }
  .srv__num{ font-size: 18px; }
  .srv__name{ font-size: 52px; }

  .feature{ height: 70vh; min-height: 480px; }

  .about{ gap: 100px; padding: 140px var(--pad); }
  .about__right{ padding-top: 80px; }

  .process{ padding: 140px var(--pad); }
  .process > .h2{ margin-bottom: 80px; }
  .steps{ grid-template-columns: 1fr 1fr 1fr 1fr; }
  .step{ padding: 32px 24px 32px 0; }
  .step + .step{ padding-left: 24px; border-left: 1px solid var(--line-d); }
  .step__n{ font-size: 64px; }
  .step h4{ font-size: 28px; }

  .quote{ gap: 100px; padding: 140px var(--pad); }
  .quote__form{ padding: 40px; }
  .services{ padding: 140px var(--pad); }
  .services__head{ margin-bottom: 80px; }

  .contact{ gap: 80px; padding: 120px var(--pad); }
  .contact__grid{ gap: 36px; }
  .map{ min-height: 460px; }
}
