/* ============================================================
   Illawarra Asphalt & Services — Home
   Recreated from the Claude Design handoff (Home.dc.html)
   ============================================================ */

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #17130F;
  color: #F3EDE3;
  font-family: 'Instrument Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
a { color: #C16A33; text-decoration: none; }
a:hover { color: #D58A4B; }
[id] { scroll-margin-top: 92px; }
::selection { background: #C16A33; color: #17130F; }

.font-display { font-family: 'Bricolage Grotesque', sans-serif; }

/* ---------- Keyframes ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes kb { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(18px); opacity: 0; } }
@keyframes dashmove { to { background-position: 200px 0; } }

/* ---------- Layout scaffold ---------- */
.page-root { position: relative; background: #100D0A; }
.hero-canvas {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  z-index: 0; display: block; pointer-events: none;
}
.content { position: relative; z-index: 1; }

/* ---------- Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  height: 80px;
  background: #14100C;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .logo { display: flex; align-items: center; }
.site-header .logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: #CFC6B8; font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: #F3EDE3; }
.nav-actions { display: flex; align-items: center; gap: 28px; }
.nav-phone { color: #F3EDE3; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.nav-phone:hover { color: #F3EDE3; }
.btn-quote {
  display: inline-flex; align-items: center;
  padding: 13px 22px; background: #C16A33; color: #17130F;
  font-weight: 700; font-size: 14px;
}
.btn-quote:hover { color: #17130F; background: #D58A4B; }
.nav-toggle { display: none; color: #F3EDE3; font-size: 22px; }

/* ---------- Mobile drawer ---------- */
.mobile-drawer {
  position: fixed; inset: 78px 0 0 0; z-index: 89;
  background: rgba(20,16,12,0.98); backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
  padding: 30px clamp(20px,4vw,56px); gap: 6px;
}
.mobile-drawer[hidden] { display: none; }
.mobile-drawer a {
  color: #F3EDE3; font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px; font-weight: 700; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer a.drawer-cta {
  margin-top: 20px; display: inline-flex; justify-content: center;
  padding: 16px; background: #C16A33; color: #17130F; font-weight: 700; border-bottom: none;
}

/* ---------- Buttons (generic) ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 30px; background: #C16A33; color: #17130F;
  font-weight: 700; font-size: 16px; border-radius: 2px;
}
.btn-primary:hover { color: #17130F; background: #D58A4B; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 30px; border: 1px solid rgba(255,255,255,0.22);
  color: #F3EDE3; font-weight: 600; font-size: 16px; border-radius: 2px;
}
.btn-outline:hover { color: #F3EDE3; border-color: rgba(255,255,255,0.4); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: #D58A4B; font-weight: 600; white-space: nowrap;
  padding-bottom: 6px; border-bottom: 1px solid rgba(193,106,51,0.4);
}
.eyebrow { font-size: 13px; color: #C16A33; font-weight: 600; margin-bottom: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  padding: 128px clamp(20px,4vw,56px) 60px;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px,4vw,64px); align-items: center;
  background: transparent; overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 90% at 15% 0%, rgba(34,28,21,0.35) 0%, rgba(23,19,15,0.55) 60%);
  pointer-events: none;
}
.hero-dashes {
  position: absolute; top: 0; left: 0; right: 0; height: 6px; z-index: 2;
  background-image: repeating-linear-gradient(90deg, #C16A33 0 46px, transparent 46px 78px);
  opacity: 0.9;
}
.hero-copy {
  position: relative; z-index: 1; max-width: 660px;
  animation: fadeUp 0.9s cubic-bezier(.2,.7,.2,1) both;
}
.hero-kicker { font-size: 14px; letter-spacing: -0.01em; color: #A79E90; font-weight: 500; margin-bottom: 26px; }
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(48px, 6.6vw, 104px); line-height: 0.92;
  letter-spacing: -0.03em; color: #F7F2E9; text-wrap: balance;
}
.hero h1 .accent { color: #C16A33; }
.hero-lead { margin-top: 26px; font-size: clamp(17px,1.35vw,20px); line-height: 1.55; color: #C4BAAC; max-width: 500px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 46px; }
.hero-stats .num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 34px; color: #F7F2E9; }
.hero-stats .lbl { font-size: 13px; color: #9A9186; letter-spacing: 0.04em; }
.hero-stats .rule { width: 1px; background: rgba(255,255,255,0.12); }
.hero-media {
  position: relative; z-index: 1; height: min(76vh, 680px);
  animation: fadeUp 1.1s cubic-bezier(.2,.7,.2,1) 0.15s both;
}
.hero-media .frame { position: absolute; inset: 0; overflow: hidden; border-radius: 3px; }
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; animation: kb 8s ease-out both; }
.hero-media .border { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.1); pointer-events: none; }
.hero-media .caption {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  padding: 18px 20px; background: rgba(20,16,12,0.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 3px;
}
.hero-media .caption .tag { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #C16A33; font-weight: 600; margin-bottom: 5px; }
.hero-media .caption .txt { font-size: 15px; color: #E8E0D4; }

/* ---------- Credentials strip ---------- */
.creds {
  background: rgba(20,16,12,0.82);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.creds-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.creds .cell { padding: 26px clamp(16px,2vw,28px); }
.creds .cell + .cell { border-left: 1px solid rgba(255,255,255,0.08); }
.creds .cell .t { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px; color: #F3EDE3; }
.creds .cell .s { font-size: 13px; color: #8A8178; margin-top: 3px; }

/* ---------- Section shell ---------- */
.section { padding: clamp(80px,10vw,140px) clamp(20px,4vw,56px); }
.section-narrow { max-width: 1240px; margin: 0 auto; }
.bg-a { background: rgba(23,19,15,0.78); }
.bg-b { background: rgba(20,16,12,0.84); }

/* ---------- Services ---------- */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px; margin-bottom: 60px;
}
.section-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: clamp(34px,4.4vw,64px); line-height: 0.98;
  letter-spacing: -0.025em; color: #F7F2E9; max-width: 720px;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.service-card {
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  background: #1C1710; min-height: 460px; display: flex; flex-direction: column;
}
.service-card .media { position: relative; height: 210px; overflow: hidden; }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.service-card .media .fade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, #1C1710 100%); }
.service-card .media .num {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 700;
  color: #17130F; background: #C16A33; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center; border-radius: 2px;
}
.service-card .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 25px; color: #F7F2E9; line-height: 1.05; }
.service-card .desc { margin-top: 12px; font-size: 15px; line-height: 1.55; color: #A79E90; }
.service-card ul { margin-top: 18px; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-card li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #C9BCA9; }
.service-card li .dash { width: 14px; height: 1px; background: #C16A33; flex-shrink: 0; }

/* ---------- Before / After ---------- */
.center-head { text-align: center; margin-bottom: 50px; }
.center-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: clamp(32px,4.2vw,58px); line-height: 1;
  letter-spacing: -0.025em; color: #F7F2E9;
}
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 16/9; max-height: 620px;
  overflow: hidden; border-radius: 4px; cursor: ew-resize;
  user-select: none; touch-action: none; border: 1px solid rgba(255,255,255,0.1);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute; top: 20px; padding: 7px 14px; border-radius: 2px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.ba-label.before { left: 20px; background: rgba(20,16,12,0.8); border: 1px solid rgba(255,255,255,0.15); color: #C9BCA9; }
.ba-label.after { right: 20px; background: #C16A33; color: #17130F; font-weight: 700; }
.ba-after { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #C16A33; transform: translateX(-50%); }
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 999px; background: #C16A33;
  display: flex; align-items: center; justify-content: center;
  color: #17130F; font-weight: 700; box-shadow: 0 6px 22px rgba(0,0,0,0.4);
}

/* ---------- Stats ---------- */
.stats {
  padding: clamp(70px,8vw,120px) clamp(20px,4vw,56px);
  background: rgba(23,19,15,0.78); border-top: 1px solid rgba(255,255,255,0.06);
}
.stats-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.stat { text-align: center; }
.stat .num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(48px,5vw,76px); color: #C16A33; line-height: 1; }
.stat .lbl { margin-top: 8px; font-size: 15px; color: #A79E90; letter-spacing: 0.02em; }

/* ---------- Estimator ---------- */
.estimate { background: linear-gradient(180deg, rgba(20,16,12,0.84) 0%, rgba(28,23,16,0.84) 100%); }
.estimate-inner {
  max-width: 1180px; margin: 0 auto; display: grid;
  grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px,5vw,80px); align-items: center;
}
.estimate-inner h2 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: clamp(32px,4vw,56px); line-height: 1; letter-spacing: -0.025em; color: #F7F2E9;
}
.estimate-inner .lead { margin-top: 20px; font-size: 17px; line-height: 1.55; color: #A79E90; max-width: 420px; }
.estimate-inner .link-arrow { margin-top: 26px; }
.estimator-card {
  background: #17130F; border: 1px solid rgba(255,255,255,0.12); border-radius: 6px;
  padding: clamp(26px,3vw,40px); box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.estimator-fields { display: flex; flex-direction: column; gap: 22px; }
.field-label {
  display: block; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #9A9186; font-weight: 600; margin-bottom: 10px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 11px 16px; border-radius: 2px; font-size: 14px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.14); background: #14100C; color: #A79E90;
  transition: background .18s, border-color .18s, color .18s;
}
.chip:hover { border-color: rgba(193,106,51,0.6); color: #F3EDE3; }
.chip.active { background: rgba(193,106,51,0.15); border-color: #C16A33; color: #F3EDE3; }
.estimate-out {
  margin-top: 6px; padding: 22px 24px; background: #C16A33; border-radius: 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.estimate-out .lbl { font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(23,19,15,0.7); font-weight: 700; }
.estimate-out .val { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(28px,3.4vw,42px); color: #17130F; line-height: 1.05; }
.estimate-out .cta {
  display: inline-flex; align-items: center; padding: 13px 20px; background: #17130F;
  color: #F3EDE3; font-weight: 700; font-size: 14px; border-radius: 2px; white-space: nowrap;
}
.estimate-out .cta:hover { color: #F3EDE3; }

/* ---------- Gallery ---------- */
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 44px; }
.gallery-head h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(32px,4.2vw,58px); line-height: 1; letter-spacing: -0.025em; color: #F7F2E9; }
.gallery-head .hint { font-size: 14px; color: #9A9186; }
.gallery { columns: 3 300px; column-gap: 14px; }
.gallery button {
  display: block; width: 100%; margin: 0 0 14px; padding: 0; overflow: hidden;
  border-radius: 4px; break-inside: avoid; border: 1px solid rgba(255,255,255,0.08);
}
.gallery img { width: 100%; height: auto; display: block; transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.gallery button:hover img { transform: scale(1.05); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(10,8,6,0.92);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 5vw;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 4px; box-shadow: 0 30px 90px rgba(0,0,0,0.6); }
.lightbox .close {
  position: absolute; top: 24px; right: 30px; width: 46px; height: 46px; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #F3EDE3; font-size: 20px;
}

/* ---------- Testimonials ---------- */
.reviews-head { margin-bottom: 54px; }
.reviews-head h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(32px,4.2vw,58px); line-height: 1; letter-spacing: -0.025em; color: #F7F2E9; max-width: 800px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.review {
  background: #1C1710; border: 1px solid rgba(255,255,255,0.1); border-radius: 5px;
  padding: 32px; display: flex; flex-direction: column; gap: 18px;
}
.review .stars { color: #C16A33; font-size: 17px; letter-spacing: 3px; }
.review blockquote { font-size: 18px; line-height: 1.55; color: #E3DACC; font-weight: 400; }
.review figcaption { margin-top: auto; display: flex; align-items: center; gap: 13px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.review .avatar {
  width: 42px; height: 42px; border-radius: 999px; background: #C16A33; color: #17130F;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px;
}
.review .name { font-weight: 600; color: #F3EDE3; font-size: 15px; }
.review .role { font-size: 13px; color: #9A9186; }

/* ---------- Service area ---------- */
.area-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.area-inner h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(32px,4vw,54px); line-height: 1; letter-spacing: -0.025em; color: #F7F2E9; }
.area-inner .lead { margin-top: 20px; font-size: 17px; line-height: 1.55; color: #A79E90; max-width: 460px; }
.suburbs { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.suburbs span { padding: 8px 14px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; font-size: 14px; color: #C9BCA9; }
.map-wrap { position: relative; aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); background: #14100C; }
.map-wrap .map { position: absolute; inset: 0; z-index: 1; }
.map-badge {
  position: absolute; z-index: 2; left: 16px; top: 16px; pointer-events: none;
  padding: 14px 18px; background: rgba(15,12,9,0.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(193,106,51,0.35); border-radius: 4px;
}
.map-badge .tag { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #D58A4B; font-weight: 700; margin-bottom: 3px; }
.map-badge .t { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 20px; color: #F7F2E9; line-height: 1; }
.map-badge .s { font-size: 13px; color: #9A9186; margin-top: 4px; }
.leaflet-popup-content b { color: #17130F; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; background: #1C1710; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 26px; text-align: left;
}
.faq-q .q { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 18px; color: #F3EDE3; }
.faq-q .icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 999px;
  border: 1px solid rgba(193,106,51,0.5); color: #D58A4B;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.faq-a { padding: 0 26px 24px; font-size: 16px; line-height: 1.6; color: #A79E90; }
.faq-a[hidden] { display: none; }

/* ---------- Contact ---------- */
.contact { position: relative; background: linear-gradient(180deg, rgba(23,19,15,0.80) 0%, rgba(15,12,9,0.92) 100%); }
.contact .top-dashes { position: absolute; top: 0; left: 0; right: 0; height: 6px; background-image: repeating-linear-gradient(90deg, #C16A33 0 46px, transparent 46px 78px); }
.contact-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,72px); }
.contact-inner h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(34px,4.4vw,62px); line-height: 0.98; letter-spacing: -0.025em; color: #F7F2E9; }
.contact-inner .lead { margin-top: 20px; font-size: 17px; line-height: 1.55; color: #A79E90; max-width: 440px; }
.contact-methods { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.contact-method { display: flex; align-items: center; gap: 16px; }
.contact-method .ic {
  width: 52px; height: 52px; border-radius: 4px; border: 1px solid rgba(193,106,51,0.4);
  color: #D58A4B; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.contact-method .k { display: block; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #9A9186; font-weight: 600; }
.contact-method .v-lg { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 24px; color: #F3EDE3; }
.contact-method .v { display: block; font-weight: 600; font-size: 17px; color: #F3EDE3; }
.contact-method .v.break { word-break: break-all; }
.contact-method .v-sm { display: block; font-weight: 600; font-size: 16px; color: #F3EDE3; }

.quote-form {
  background: #1C1710; border: 1px solid rgba(255,255,255,0.12); border-radius: 6px;
  padding: clamp(24px,3vw,38px); display: flex; flex-direction: column; gap: 18px;
}
.quote-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: flex; flex-direction: column; gap: 8px; }
.quote-form label > span { font-size: 13px; color: #9A9186; font-weight: 600; }
.quote-form input, .quote-form textarea {
  padding: 14px; background: #14100C; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 3px; color: #F3EDE3; outline: none;
}
.quote-form input:focus, .quote-form textarea:focus { border-color: #C16A33; }
.quote-form textarea { resize: vertical; }
.quote-form .submit { margin-top: 6px; padding: 17px; background: #C16A33; color: #17130F; font-weight: 700; font-size: 16px; border-radius: 3px; }
.quote-form .submit:hover { background: #D58A4B; }
.quote-form .fineprint { text-align: center; font-size: 13px; color: #7C7468; }

.quote-success {
  min-height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 16px; background: #1C1710; border: 1px solid rgba(193,106,51,0.4);
  border-radius: 6px; padding: 40px;
}
.quote-success[hidden] { display: none; }
.quote-success .check { width: 64px; height: 64px; border-radius: 999px; background: #C16A33; color: #17130F; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.quote-success h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 28px; color: #F7F2E9; }
.quote-success p { font-size: 16px; color: #A79E90; max-width: 320px; }

/* ---------- Footer ---------- */
.site-footer { background: rgba(15,12,9,0.9); padding: clamp(50px,6vw,80px) clamp(20px,4vw,56px) 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-cols img { height: 58px; width: auto; margin-bottom: 18px; }
.footer-cols .about { font-size: 15px; line-height: 1.6; color: #8A8178; max-width: 280px; }
.footer-cols .col-title { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #C16A33; font-weight: 600; margin-bottom: 16px; }
.footer-cols .links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-cols .links a { color: #C9BCA9; }
.footer-cols .links a.strong { color: #F3EDE3; font-weight: 600; }
.footer-cols .links a:hover { color: #D58A4B; }
.footer-cols .links span { color: #8A8178; }
.footer-cols .links .break { word-break: break-all; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; font-size: 13px; color: #6E665C; }

/* ---------- Reveal-on-scroll (JS toggles .is-visible) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive — the prototype relied on clamp() with no media
   queries; these breakpoints make the layout production-ready.
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-actions .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { grid-template-columns: 1fr; padding-top: 116px; }
  .hero-media { height: min(60vh, 460px); margin-top: 8px; }
  .creds-inner { grid-template-columns: 1fr 1fr; }
  .creds .cell:nth-child(3) { border-left: none; }
  .creds .cell:nth-child(odd) { border-left: none; }
  .creds .cell:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.08); }
  .creds .cell:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .estimate-inner { grid-template-columns: 1fr; }
  .area-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .btn-quote { display: none; }
  .creds-inner { grid-template-columns: 1fr; }
  .creds .cell { border-left: none !important; }
  .creds .cell + .cell { border-top: 1px solid rgba(255,255,255,0.08); }
  .hero-stats { gap: 18px; }
  .footer-cols { grid-template-columns: 1fr; }
  .quote-form .row2 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
