/* ===== Marlin Glass Fencing — coastal premium ===== */
:root {
  --navy: #0A2540;
  --navy-deep: #071A30;
  --ocean: #1276B8;
  --ocean-dark: #0C5A8E;
  --aqua: #7DD3E8;
  --aqua-soft: #EAF7FB;
  --grey: #5B6B7B;
  --line: #E3ECF2;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(10, 37, 64, 0.10);
  --shadow-sm: 0 8px 22px rgba(10, 37, 64, 0.08);
  --font-head: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ocean); }

.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: clamp(70px, 9vw, 120px) 0; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

.kicker {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 14px;
}
.kicker.light { color: var(--aqua); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-sub { color: var(--grey); margin-top: 12px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%); color: #fff; box-shadow: 0 10px 26px rgba(18, 118, 184, 0.35); }
.btn-primary:hover { box-shadow: 0 14px 32px rgba(18, 118, 184, 0.45); }
.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.24); }
.btn-ghost { color: #fff; border-color: transparent; text-decoration: underline; text-underline-offset: 5px; }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; text-align: center; }

/* ---- Header ---- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 4px 24px rgba(10,37,64,0.08); padding: 10px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; border-radius: 10px; }
.brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.06rem; color: #fff; transition: color 0.3s; }
.brand-text em { font-style: normal; font-weight: 500; opacity: 0.85; }
.scrolled .brand-text { color: var(--navy); }
.main-nav { display: flex; gap: 26px; }
.main-nav a { font-weight: 600; font-size: 0.9rem; text-decoration: none; color: rgba(255,255,255,0.92); transition: color 0.3s; }
.scrolled .main-nav a { color: var(--navy); }
.main-nav a:hover { color: var(--aqua); }
.scrolled .main-nav a:hover { color: var(--ocean); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; text-decoration: none; color: #fff; transition: color 0.3s; }
.scrolled .header-phone { color: var(--navy); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }
.scrolled .nav-toggle span { background: var(--navy); }

/* ---- Hero ---- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 65%; transform: scale(1.05); animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(7, 26, 48, 0.82) 0%, rgba(10, 37, 64, 0.55) 45%, rgba(18, 118, 184, 0.18) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; padding: 140px 0 120px; max-width: 760px; }
.hero-kicker { font-family: var(--font-head); letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.8rem; font-weight: 600; color: var(--aqua); margin-bottom: 20px; }
.hero h1 .accent { background: linear-gradient(90deg, var(--aqua), #B9EBF7); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: rgba(255,255,255,0.88); margin: 22px 0 34px; max-width: 580px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-ctas.center { justify-content: center; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; }
.hero-wave svg { display: block; width: 100%; height: clamp(36px, 6vw, 90px); }

/* ---- Trust bar ---- */
.trust-bar { background: #fff; padding: 34px 0 10px; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.trust-item { text-align: center; padding: 18px 10px; border-radius: var(--radius); background: var(--aqua-soft); }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--navy); }
.trust-item span { font-size: 0.82rem; color: var(--grey); }

/* ---- Split layout ---- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-text p { color: var(--grey); margin-bottom: 16px; }
.split-text h2 { margin-bottom: 20px; }
.split-media { position: relative; }
.media-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-card img { width: 100%; height: 460px; object-fit: cover; }
.media-card.tall img { height: 540px; }
.floating-chip {
  position: absolute; bottom: 22px; left: -18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--navy);
  padding: 14px 22px; border-radius: 14px; box-shadow: var(--shadow-sm);
}
.check-list { list-style: none; margin: 6px 0 28px; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 10px; color: var(--navy); font-weight: 600; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--aqua-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231276B8" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/11px no-repeat;
}

/* ---- Services ---- */
.services { background: linear-gradient(180deg, #F6FBFD 0%, #fff 100%); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-media { height: 170px; overflow: hidden; cursor: pointer; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 22px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { margin-bottom: 8px; }
.service-body p { color: var(--grey); font-size: 0.92rem; flex: 1; }
.service-links { margin-top: 16px; display: flex; gap: 16px; flex-wrap: wrap; }
.link-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--ocean);
  text-decoration: none; border-bottom: 2px solid var(--aqua); padding-bottom: 2px;
  transition: color 0.2s;
}
.link-btn:hover { color: var(--navy); }
.link-btn.strong { color: var(--navy); }
.service-card-feature {
  background: linear-gradient(150deg, var(--navy) 0%, var(--ocean-dark) 100%);
  border: 0; color: #fff; justify-content: center;
}
.service-card-feature h3 { color: #fff; font-size: 1.3rem; }
.service-card-feature p { color: rgba(255,255,255,0.85); }
.service-card-feature .link-btn { color: var(--aqua); border-color: rgba(125,211,232,0.5); }
.service-card-feature .link-btn.strong { color: #fff; }

/* ---- Why glass ---- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit {
  background: var(--aqua-soft); border-radius: var(--radius); padding: 30px 28px;
  border: 1px solid rgba(125, 211, 232, 0.35);
}
.benefit h3 { margin-bottom: 8px; color: var(--navy); }
.benefit p { color: var(--grey); font-size: 0.94rem; }

/* ---- Quote banner ---- */
.quote-banner {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 45%, var(--ocean-dark) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.quote-banner::after {
  content: ""; position: absolute; right: -140px; top: -140px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(125,211,232,0.22) 0%, transparent 70%);
}
.quote-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.quote-inner h2 { color: #fff; margin-bottom: 14px; }
.quote-inner p { color: rgba(255,255,255,0.85); max-width: 560px; }
.quote-ctas { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.quote-ctas .btn { text-align: center; }

/* ---- Why us ---- */
.why-us { background: #F6FBFD; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-item { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 30px 28px; }
.why-num { font-family: var(--font-head); font-weight: 800; font-size: 0.85rem; color: var(--aqua); letter-spacing: 0.1em; }
.why-item h3 { margin: 10px 0 8px; }
.why-item p { color: var(--grey); font-size: 0.94rem; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); margin: 0; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 34px 18px 14px;
  background: linear-gradient(transparent, rgba(7,26,48,0.75));
  color: #fff; font-size: 0.85rem; font-weight: 600; font-family: var(--font-head);
}
.placeholder-tile { background: var(--aqua-soft); border: 1.5px dashed rgba(18,118,184,0.35); box-shadow: none; cursor: default; }
.gallery-grid .placeholder-tile:last-child { grid-column: span 2; }
.tile-inner { height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.tile-inner span { font-family: var(--font-head); font-weight: 700; color: var(--ocean-dark); }
.tile-inner small { color: var(--grey); }

/* ---- Reviews ---- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.review-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--aqua); margin-bottom: 12px; font-family: var(--font-head); }
.review-card p:not(.review-tag) { color: var(--navy); font-size: 0.97rem; margin-bottom: 16px; }
.review-author { font-size: 0.8rem; color: var(--grey); font-style: italic; }

/* ---- FAQ ---- */
.faq { background: #F6FBFD; }
.faq-list { max-width: 820px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--navy);
  position: relative; padding-right: 52px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: var(--aqua-soft);
  color: var(--ocean-dark); font-weight: 700; text-align: center; line-height: 26px;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { color: var(--ocean-dark); }
.faq-item p { padding: 0 22px 20px; color: var(--grey); margin: 0; }

/* ---- Service area ---- */
.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 20px; padding: 0; }
.area-list li {
  background: var(--aqua-soft); border: 1px solid rgba(125,211,232,0.4);
  padding: 8px 18px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; color: var(--ocean-dark);
}
.map-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: 440px; border: 0; display: block; }

/* ---- Final CTA ---- */
.final-cta {
  background: linear-gradient(120deg, var(--ocean-dark) 0%, var(--ocean) 55%, #2FA5D8 100%);
  color: #fff; text-align: center; padding: clamp(70px, 8vw, 110px) 0;
}
.final-cta h2 { color: #fff; margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 30px; }

/* ---- Contact / form ---- */
.contact { background: #F6FBFD; }
.contact-list { list-style: none; margin-top: 24px; }
.contact-list li { display: flex; gap: 14px; align-items: baseline; margin-bottom: 14px; }
.contact-list strong { font-family: var(--font-head); min-width: 110px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ocean-dark); }
.contact-list a { font-weight: 700; color: var(--navy); text-decoration: none; }
.contact-list a:hover { color: var(--ocean); }
.opening-hours { margin-top: 30px; }
.opening-hours h3 { font-family: var(--font-head); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ocean-dark); margin-bottom: 12px; }
.hours-list { margin: 0; }
.hours-list div { display: flex; justify-content: space-between; gap: 14px; padding: 5px 0; border-bottom: 1px dashed rgba(18,118,184,0.18); max-width: 340px; }
.hours-list dt { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.hours-list dd { margin: 0; font-size: 0.9rem; color: var(--ink); }
.hours-note { margin-top: 10px; font-size: 0.82rem; color: var(--ink-soft, #5b6c78); max-width: 340px; }
.quote-form {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 40px); border-top: 5px solid var(--ocean);
}
.quote-form h3 { font-size: 1.3rem; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; color: var(--navy); margin-bottom: 14px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--navy);
  background: #FBFDFE; transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(18,118,184,0.14);
}
.file-label input { padding: 10px; background: var(--aqua-soft); border-style: dashed; }
.form-note { margin-top: 12px; font-size: 0.88rem; font-weight: 600; color: var(--ocean-dark); min-height: 1.2em; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 12px; }
.footer-brand em { font-style: normal; font-weight: 500; opacity: 0.8; }
.footer-seo { font-size: 0.9rem; max-width: 320px; margin-bottom: 16px; }
.footer-social { color: var(--aqua); font-weight: 700; text-decoration: none; font-size: 0.9rem; }
.site-footer h4 { color: #fff; font-size: 0.92rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; font-size: 0.9rem; }
.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
.site-footer a:hover { color: var(--aqua); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; font-size: 0.82rem; }

/* ---- Sticky mobile CTA ---- */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: none; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 24px rgba(10,37,64,0.18);
}
.mobile-cta a {
  text-align: center; padding: 16px 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; text-decoration: none;
}
.mobile-cta-call { background: var(--navy); color: #fff; }
.mobile-cta-quote { background: linear-gradient(135deg, var(--ocean), var(--ocean-dark)); color: #fff; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(7, 26, 48, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox[hidden] { display: none; }
.lightbox-figure { max-width: min(1100px, 90vw); margin: 0; text-align: center; }
.lightbox-figure img { max-width: 100%; max-height: 78vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); margin: 0 auto; }
.lightbox-figure figcaption { color: rgba(255,255,255,0.85); margin-top: 16px; font-family: var(--font-head); font-weight: 600; }
.lightbox-close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: 0; color: #fff; font-size: 2.6rem; cursor: pointer; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 2rem; line-height: 1;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav.prev { left: 26px; }
.lightbox-nav.next { right: 26px; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.no-anim { transition: none; }
/* No-JS fallback: never hide content when scripts don't run */
@media (scripting: none) { .reveal { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- Responsive ---- */
@media (max-width: 1020px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid, .why-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 82vw);
    background: var(--navy-deep); flex-direction: column; gap: 8px;
    padding: 100px 34px 34px; transform: translateX(100%); transition: transform 0.35s ease;
    z-index: 55;
  }
  .main-nav.open { transform: none; box-shadow: -20px 0 60px rgba(0,0,0,0.35); }
  .main-nav a { color: #fff !important; font-size: 1.1rem; padding: 10px 0; }
  .nav-toggle { display: block; position: relative; z-index: 65; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: #fff; }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: #fff; }
  .header-phone, .header-actions .btn { display: none; }
  .split, .quote-inner { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .contact .split-media, .service-area .split-media { order: 1; }
  .media-card img, .media-card.tall img { height: 340px; }
  .floating-chip { left: 14px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .mobile-cta { display: grid; }
  body { padding-bottom: 56px; }
  .hero-content { padding-top: 120px; }
}
@media (max-width: 560px) {
  .services-grid, .benefit-grid, .why-grid, .review-grid, .trust-grid, .gallery-grid, .form-row { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item img, .tile-inner { height: 240px; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .map-card iframe { height: 320px; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
}
