@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
  --dark:       #0F0F0F;
  --navy:       #1A1A1A;
  --gold:       #2C7A4B;
  --gold-light: #389960;
  --bg:         #F4F4F4;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --muted:      #6B7280;
  --border:     #E0E0E0;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.10);
  --shadow-md:  0 4px 18px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.16);
  --r:          6px;
  --r-lg:       12px;
  --ease:       .3s ease;
  --font-h:     'Montserrat', sans-serif;
  --font-b:     'Open Sans', sans-serif;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Type ────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-h); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* ── Layout ──────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 88px 0; }
.section-sm { padding: 52px 0; }
.bg-light  { background: var(--bg); }
.bg-dark   { background: var(--dark); color: var(--white); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r);
  font-family: var(--font-h); font-weight: 700; font-size: .875rem;
  letter-spacing: .4px; transition: var(--ease); cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary  { background: var(--gold); color: var(--white); }
.btn-primary:hover  { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover  { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-dark     { background: var(--dark); color: var(--white); }
.btn-dark:hover     { background: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: .95rem; }

/* ── Labels + Section heads ──────────────────────── */
.eyebrow {
  font-family: var(--font-h); font-size: .7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: block;
}
.section-head { margin-bottom: 52px; }
.section-head p { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin-top: 12px; }
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.text-white { color: var(--white) !important; }
.muted-white { color: rgba(255,255,255,.7) !important; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--dark); box-shadow: var(--shadow-md);
  transition: box-shadow var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 24px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-family: var(--font-h); font-size: .8rem; font-weight: 600;
  letter-spacing: .4px;
}
.nav-links a { color: rgba(255,255,255,.88); transition: color var(--ease); }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: var(--font-h); font-size: .8rem; font-weight: 700;
  color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.3);
  padding: 8px 18px; border-radius: var(--r); transition: var(--ease);
}
.nav-phone:hover { border-color: var(--gold); color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--ease); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,.75) 0%, rgba(15,15,15,.55) 100%);
}
.hero-body { position: relative; z-index: 2; color: var(--white); max-width: 680px; padding-top: 80px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.5);
  border-radius: 100px; padding: 6px 18px;
  font-family: var(--font-h); font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white);
  margin-bottom: 24px;
}
.hero-badge svg { width:14px; height:14px; }
.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.82); margin-bottom: 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.15); }
.stat-num { font-family: var(--font-h); font-size: 2.25rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.85); margin-top: 4px; letter-spacing: .3px; }

/* ── TRUST BAR ───────────────────────────────────── */
.trust-bar { background: var(--dark); padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.trust-list { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-h); font-size: .78rem; font-weight: 700; letter-spacing: .4px; color: rgba(255,255,255,.82); }
.trust-icon { color: var(--gold); display: flex; }

/* ── SERVICES GRID ───────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.svc-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 32px; transition: var(--ease); }
.svc-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.svc-icon { width: 52px; height: 52px; background: rgba(44,122,75,.1); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gold); }
.svc-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.svc-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-h); font-size: .78rem; font-weight: 700; color: var(--gold); margin-top: 16px; transition: gap var(--ease); }
.svc-link:hover { gap: 10px; }

/* Featured service card */
.svc-card-featured { border-color: var(--gold); background: linear-gradient(135deg, rgba(44,122,75,.04), rgba(44,122,75,.09)); position: relative; }
.svc-badge-label { display: inline-block; background: var(--gold); color: var(--white); font-family: var(--font-h); font-size: .65rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; }

/* Jump navigation on services page */
.svc-jumpnav { background: var(--bg); border-bottom: 1px solid var(--border); padding: 14px 0; }
.svc-jumpnav .container { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.svc-jumpnav-label { font-family: var(--font-h); font-size: .75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; white-space: nowrap; }
.svc-jumpnav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-jumpnav-links a { font-family: var(--font-h); font-size: .78rem; font-weight: 600; color: var(--text); background: var(--white); border: 1.5px solid var(--border); padding: 6px 14px; border-radius: 20px; transition: var(--ease); }
.svc-jumpnav-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ── WHY US ──────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-img-wrap { position: relative; border-radius: var(--r-lg); overflow: visible; }
.why-img-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.why-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); border-radius: var(--r); padding: 20px 24px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.why-badge-num { font-family: var(--font-h); font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.why-badge-txt { font-family: var(--font-h); font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.8); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }
.features { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.feature { display: flex; gap: 16px; }
.feat-check { width: 30px; height: 30px; min-width: 30px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); margin-top: 2px; }
.feat-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.feat-body p { font-size: .88rem; color: var(--muted); }

/* ── HARDIE SECTION ──────────────────────────────── */
.hardie-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.hardie-img { border-radius: var(--r-lg); overflow: hidden; }
.hardie-img img { width: 100%; height: 520px; object-fit: cover; }
.hardie-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.h-feat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 18px; }
.h-feat-title { font-family: var(--font-h); font-size: .8rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.h-feat-desc { font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.6; }

/* ── PROCESS ─────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(44,122,75,.2) 100%);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.2rem; font-weight: 900; color: var(--white);
  margin: 0 auto 20px; border: 4px solid var(--white); box-shadow: var(--shadow-md);
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── GALLERY PREVIEW ─────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 12px; }
.g-item { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; }
.g-item.tall { grid-row: span 2; aspect-ratio: auto; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-placeholder { width: 100%; height: 100%; min-height: 200px; background: linear-gradient(135deg, #c9cfd9, #e2e6ec); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #8a95a3; }
.g-placeholder svg { opacity: .4; }
.g-placeholder span { font-family: var(--font-h); font-size: .72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: .6; }

/* ── TESTIMONIALS ────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: .92rem; color: var(--text); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .88rem; }
.testi-loc { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ── AREAS ───────────────────────────────────────── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-top: 40px; }
.area-chip {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 12px 16px; text-align: center;
  font-family: var(--font-h); font-size: .78rem; font-weight: 600;
  color: var(--text); transition: var(--ease);
}
.area-chip:hover { border-color: var(--gold); color: var(--gold); }

/* ── CTA BANNER ──────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.68); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.75; max-width: 280px; }
.footer-col h5 { font-family: var(--font-h); font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .875rem; transition: color var(--ease); }
.footer-col ul a:hover { color: var(--gold); }
.fc-item { display: flex; gap: 10px; font-size: .875rem; margin-bottom: 12px; align-items: flex-start; }
.fc-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: .78rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a:hover { color: var(--gold); }

/* ── INNER PAGE HERO ─────────────────────────────── */
.page-hero { background: var(--dark); padding: 140px 0 72px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.45); font-family: var(--font-h); font-weight: 600; letter-spacing: .3px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── ABOUT PAGE ──────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-img { border-radius: var(--r-lg); overflow: hidden; }
.story-img img { width: 100%; height: 480px; object-fit: cover; }
.cert-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.cert-chip { background: var(--white); border: 2px solid var(--gold); border-radius: var(--r); padding: 8px 18px; font-family: var(--font-h); font-size: .75rem; font-weight: 700; color: var(--dark); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.val-card { text-align: center; padding: 36px 24px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); transition: var(--ease); }
.val-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.val-icon { width: 60px; height: 60px; background: rgba(44,122,75,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--gold); }
.val-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.val-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.team-photo { height: 260px; background: linear-gradient(135deg, #c9d4e0, #dde5ef); display: flex; align-items: center; justify-content: center; color: #8a95a3; }
.team-info { padding: 24px; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-info p { font-size: .82rem; color: var(--gold); font-weight: 600; font-family: var(--font-h); }
.team-bio { font-size: .85rem; color: var(--muted); margin-top: 8px; line-height: 1.65; }

/* ── SERVICES PAGE ───────────────────────────────── */
.svc-detail { padding: 80px 0; border-bottom: 1px solid var(--border); }
.svc-detail.alt { background: var(--bg); }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.svc-detail.alt .svc-detail-img { order: -1; }
.svc-detail-img { border-radius: var(--r-lg); overflow: hidden; }
.svc-detail-img img { width: 100%; height: 380px; object-fit: cover; }
.svc-detail-img-placeholder { width: 100%; height: 380px; background: linear-gradient(135deg, #c9d4e0, #dde5ef); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; color: #8a95a3; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.benefit-list li { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.benefit-list li::before { content: ''; width: 18px; height: 18px; min-width: 18px; background: var(--gold); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 13 4 10'%3E%3C/polyline%3E%3C/svg%3E"); background-size: 11px; background-repeat: no-repeat; background-position: center; }

/* ── GALLERY PAGE ────────────────────────────────── */
.full-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fg-item { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; }
.fg-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.fg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.fg-item:hover img { transform: scale(1.04); }
.fg-placeholder { width: 100%; height: 100%; min-height: 240px; background: linear-gradient(135deg, #c9cfd9, #e2e6ec); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #8a95a3; }
.fg-placeholder svg { opacity: .35; }
.fg-placeholder span { font-family: var(--font-h); font-size: .7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

/* ── CONTACT PAGE ────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; }
.cinfo-block { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 32px; }
.cinfo-item { display: flex; gap: 16px; margin-bottom: 28px; }
.cinfo-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(44,122,75,.1); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.cinfo-label { font-family: var(--font-h); font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cinfo-value { font-weight: 600; color: var(--dark); }
.cinfo-value a { color: var(--dark); transition: color var(--ease); }
.cinfo-value a:hover { color: var(--gold); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; margin-top: 6px; font-size: .85rem; }
.form-block { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 40px; }
.form-block h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-block .form-intro { font-size: .9rem; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-h); font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: var(--font-b); font-size: .92rem;
  color: var(--text); background: var(--white); transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(44,122,75,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; }
.alert-success { background: #ecfdf5; border: 1.5px solid #6ee7b7; color: #065f46; border-radius: var(--r); padding: 14px 18px; font-size: .9rem; margin-bottom: 20px; display: none; }
.alert-success.show { display: block; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid, .hardie-wrap, .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .hardie-img { order: -1; }
  .why-badge { bottom: 16px; right: 16px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-phone, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--dark); padding: 32px 24px; flex-direction: column; gap: 24px;
    font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; overflow-y: auto;
    z-index: 800;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: 20px; }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu .btn { align-self: flex-start; }
  .testi-grid { grid-template-columns: 1fr; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-detail.alt .svc-detail-img { order: 0; }
  .full-gallery { grid-template-columns: 1fr 1fr; }
  .fg-item.wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-list { gap: 20px; justify-content: flex-start; }
  .hardie-feats { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .process-steps { grid-template-columns: 1fr; }
  .full-gallery { grid-template-columns: 1fr; }
  .fg-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}
