/* ============================================================
   FHM – Flynn's Home Maintenance
   Brand: #1BBFDD (cyan), #1E2D2F (dark), #0a0a0a (black)
   Fonts: Bebas Neue (display), Inter (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cyan: #1BBFDD;
  --cyan-dark: #139fb9;
  --dark: #1E2D2F;
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f4f4f2;
  --mid: #6b6b6b;
  --border: rgba(27,191,221,0.22);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 400;
  margin-bottom: 14px;
}

h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; line-height: 1; }
h4 { font-size: 15px; font-weight: 500; margin-bottom: 6px; letter-spacing: 0.02em; }
p { color: rgba(255,255,255,0.58); line-height: 1.8; }
h2 em, h1 em { font-style: normal; color: var(--cyan); }

.hero-title { font-size: clamp(60px, 9vw, 120px); margin-bottom: 22px; }
.section-title { font-size: clamp(38px, 5.5vw, 68px); margin-bottom: 22px; }
h3 { font-size: clamp(22px, 3vw, 34px); margin-bottom: 10px; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 36px; }
.section { padding: 96px 0; }
.section-header { margin-bottom: 52px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block; background: var(--cyan); color: var(--black);
  padding: 13px 34px; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600; font-family: 'Inter', sans-serif;
  transition: background 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--cyan-dark); }

.btn-outline {
  display: inline-block; border: 1px solid var(--cyan); color: var(--cyan);
  padding: 12px 32px; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500; font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--cyan); color: var(--black); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 400; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27,191,221,0.1);
  transition: padding 0.3s;
}
.nav.scrolled { padding: 10px 40px; }

.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 4px; }
.nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 0.06em; color: var(--white); }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.58); font-weight: 400; transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--cyan); transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--cyan); color: var(--black);
  padding: 8px 20px; font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600; font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--cyan-dark); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 0 40px 80px; overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.3) 55%, rgba(10,10,10,0.15) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 750px; }
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 420px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.hero-stats {
  position: absolute; right: 60px; bottom: 80px; z-index: 2;
  display: flex; flex-direction: column; gap: 26px; text-align: right;
}
.stat-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--cyan); line-height: 1; }
.stat-label { display: block; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-top: 3px; }

/* ---- INTRO STRIP ---- */
.intro-strip { background: var(--cyan); padding: 13px 40px; text-align: center; }
.intro-strip p { color: var(--black); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }

/* ---- SERVICES PREVIEW ---- */
.services-preview { background: #0d0d0d; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(27,191,221,0.08); }

.service-card { background: #0d0d0d; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: background 0.3s; }
.service-card:hover { background: #131313; }

.service-img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s; }
.service-card:hover .service-img-wrap img { transform: scale(1.04); }

.service-card-body { padding: 26px 26px 34px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 26px; margin-bottom: 10px; }
.service-card-body p { font-size: 13px; flex: 1; }
.card-link { display: block; margin-top: 18px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); font-weight: 500; }

/* ---- CARE BANNER ---- */
.care-banner { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; }
.care-banner-img { position: absolute; inset: 0; }
.care-banner-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.care-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.95) 45%, rgba(10,10,10,0.25) 100%);
}
.care-banner-content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 80px 36px; }
.care-banner-content h2 { font-size: clamp(38px, 5.5vw, 68px); margin-bottom: 14px; }
.care-banner-content p { max-width: 380px; margin-bottom: 34px; font-size: 14px; }

/* ---- WHY ---- */
.why { background: var(--black); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.why-visual { position: relative; overflow: hidden; }
.why-visual::before {
  content: ''; position: absolute; top: -8px; left: -8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(27,191,221,0.25); z-index: 0;
}
.why-visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 15%; }

.why-points { display: flex; flex-direction: column; margin-bottom: 34px; }
.why-point { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.why-num { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--cyan); padding-top: 1px; }
.why-point p { font-size: 13px; }

/* ---- BEFORE/AFTER ---- */
.before-after-section { background: #0d0d0d; padding: 96px 0; }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 40px; }
.ba-panel { position: relative; overflow: hidden; }
.ba-panel img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 30%; display: block; }
.ba-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); font-weight: 500;
}
.ba-label.after { color: var(--cyan); }

/* ---- TESTIMONIAL ---- */
.testimonial-section { background: var(--dark); padding: 80px 0; border-top: 1px solid rgba(27,191,221,0.08); border-bottom: 1px solid rgba(27,191,221,0.08); }
.testimonial-section blockquote { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 32px; }
.testimonial-section blockquote p { font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px, 3.5vw, 38px); color: var(--white); line-height: 1.2; margin-bottom: 18px; letter-spacing: 0.02em; }
.testimonial-section blockquote cite { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); font-style: normal; }

/* ---- CTA BANNER ---- */
.cta-banner { background: #0d0d0d; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner-inner h2 { font-size: clamp(34px, 4.5vw, 58px); }
.cta-banner-inner p { font-size: 14px; margin-top: 10px; max-width: 360px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: 0.06em; }
.footer-logo-img { width: 30px; height: 30px; object-fit: contain; border-radius: 3px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-nav a:hover { color: var(--cyan); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding: 148px 0 72px; background: var(--black); border-bottom: 1px solid rgba(27,191,221,0.08); }
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.page-hero-img { overflow: hidden; aspect-ratio: 4/3; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail { padding: 96px 0; }
.service-detail:nth-child(odd) { background: #0d0d0d; }
.service-detail:nth-child(even) { background: var(--black); }

.service-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.service-detail-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.service-detail-imgs img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center; }
.service-detail-imgs img:first-child { grid-column: span 2; aspect-ratio: 16/9; }

.service-detail-content p { font-size: 14px; margin-bottom: 18px; }

.includes-list { list-style: none; margin: 22px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.includes-list li { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.62); }
.includes-list li::before { content: ''; width: 20px; height: 1px; background: var(--cyan); flex-shrink: 0; }

/* Care plan */
.care-plan-section { background: var(--dark); padding: 96px 0; }
.care-plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.plan-card { border: 1px solid var(--border); padding: 44px; background: rgba(27,191,221,0.03); }
.plan-badge { display: inline-block; background: var(--cyan); color: var(--black); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 12px; margin-bottom: 22px; font-weight: 600; }
.plan-card > p { font-size: 13px; margin-bottom: 26px; }
.plan-cta { width: 100%; display: block; text-align: center; background: var(--cyan); color: var(--black); padding: 13px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; font-family: 'Inter', sans-serif; margin-top: 28px; transition: background 0.2s; }
.plan-cta:hover { background: var(--cyan-dark); }
.seasons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.season-pill { border: 1px solid var(--border); padding: 6px 16px; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.38); }

/* ============================================================
   COMMERCIAL PAGE
   ============================================================ */
.commercial-hero { position: relative; min-height: 70vh; display: flex; align-items: flex-end; overflow: hidden; }
.commercial-hero-media { position: absolute; inset: 0; }
.commercial-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.commercial-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.1) 100%);
}
.commercial-hero-content { position: relative; z-index: 2; padding: 0 40px 80px; max-width: 700px; }

.commercial-feature { padding: 96px 0; }
.commercial-feature:nth-child(odd) { background: #0d0d0d; }
.commercial-feature:nth-child(even) { background: var(--black); }

.cf-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.cf-inner.reverse { direction: rtl; }
.cf-inner.reverse > * { direction: ltr; }

.cf-img { overflow: hidden; }
.cf-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center; }
.cf-img.landscape img { aspect-ratio: 4/3; }

.cf-content p { font-size: 14px; margin-bottom: 16px; }

.commercial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 48px; }
.commercial-grid-item { overflow: hidden; }
.commercial-grid-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; transition: transform 0.4s; }
.commercial-grid-item:hover img { transform: scale(1.04); }

/* Enquiry types */
.commercial-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(27,191,221,0.08); margin-top: 48px; }
.type-card { background: #0d0d0d; padding: 32px 28px; }
.type-card h4 { color: var(--white); margin-bottom: 8px; font-size: 15px; }
.type-card p { font-size: 13px; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn { background: transparent; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.45); padding: 7px 18px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--cyan); border-color: var(--cyan); color: var(--black); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: #0a0a0a; }
.gallery-item { overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.hidden { display: none; }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.3s; display: flex; align-items: flex-end; padding: 14px; }
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.38); }
.gallery-item-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: white; opacity: 0; transform: translateY(6px); transition: all 0.3s; }
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.96); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 22px; right: 30px; background: none; border: none; color: white; font-size: 30px; cursor: pointer; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: white; font-size: 38px; cursor: pointer; padding: 16px; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { padding: 148px 0 0; background: var(--black); }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; }
.about-hero-img { overflow: hidden; }
.about-hero-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 10%; }
.about-hero-content { padding-bottom: 72px; }
.about-hero-content h1 { font-size: clamp(54px, 7vw, 96px); margin-bottom: 22px; }
.about-hero-content p { font-size: 14px; margin-bottom: 14px; }

.about-values { background: #0d0d0d; padding: 96px 0; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(27,191,221,0.08); margin-top: 48px; }
.value-card { background: #0d0d0d; padding: 36px 32px; }
.value-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: rgba(27,191,221,0.12); line-height: 1; margin-bottom: 10px; }
.value-card h4 { font-size: 15px; margin-bottom: 7px; }
.value-card p { font-size: 13px; }

.action-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: #0d0d0d; }
.action-strip img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 10%; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 148px 0 96px; background: var(--black); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; }
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-method-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); margin-bottom: 5px; display: block; }
.contact-method-value { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--white); display: block; transition: color 0.2s; }
a.contact-method-value:hover { color: var(--cyan); }
.contact-method-value.small { font-size: 18px; font-family: 'Inter', sans-serif; font-weight: 300; }
.contact-method-note { font-size: 12px; color: rgba(255,255,255,0.28); display: block; margin-top: 3px; }
.service-area-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.area-chip { border: 1px solid rgba(27,191,221,0.18); padding: 5px 13px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 7px; }
.form-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--white); font-size: 14px; padding: 9px 0; font-family: 'Inter', sans-serif; font-weight: 300; outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
.form-input:focus { border-bottom-color: var(--cyan); }
.form-input::placeholder { color: rgba(255,255,255,0.18); }
textarea.form-input { resize: none; min-height: 88px; }
select.form-input { cursor: pointer; }
option { background: #1a2a2c; }
.form-submit { width: 100%; padding: 14px; background: var(--cyan); color: var(--black); border: none; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; transition: background 0.2s; margin-top: 6px; }
.form-submit:hover { background: var(--cyan-dark); }
.form-success { display: none; text-align: center; padding: 40px; border: 1px solid var(--border); }
.form-success h3 { font-size: 36px; margin-bottom: 10px; color: var(--cyan); }
.form-success p { font-size: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 22px 30px; gap: 18px; border-bottom: 1px solid var(--border); }

  .hero { padding: 0 22px 56px; }
  .hero-stats { display: none; }

  .services-grid, .commercial-grid { grid-template-columns: 1fr; }
  .service-detail-inner, .cf-inner { grid-template-columns: 1fr; }
  .service-detail-inner.reverse, .cf-inner.reverse { direction: ltr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .care-plan-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-img { display: none; }
  .values-grid, .commercial-types { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; }
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .before-after-grid { grid-template-columns: 1fr; }
  .action-strip { grid-template-columns: 1fr; }
  .action-strip img { aspect-ratio: 4/3; }
  section.section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 52px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .commercial-types { grid-template-columns: 1fr; }
}

/* ============================================================
   V4 FIXES
   ============================================================ */

/* Care banner — left gradient much more transparent so photo shows through */
.care-banner-overlay {
  background: linear-gradient(to right,
    rgba(10,10,10,0.72) 0%,
    rgba(10,10,10,0.55) 30%,
    rgba(10,10,10,0.2) 65%,
    rgba(10,10,10,0.05) 100%
  ) !important;
}

/* Before/After — taller panels, show more of the portrait image */
.before-after-grid {
  margin-top: 32px;
}
.ba-panel img {
  aspect-ratio: 3/4 !important;
  width: 100%;
  object-fit: cover;
}

/* Social footer links */
.footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-social a:hover { color: var(--cyan); }
.footer-social svg { flex-shrink: 0; opacity: 0.6; transition: opacity 0.2s; }
.footer-social a:hover svg { opacity: 1; }

/* Social in nav area (top of page) */
.nav-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-right: 4px;
}
.nav-social a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.nav-social a:hover { color: var(--cyan); }

/* Hide nav social icons on mobile (already in burger menu context) */
@media (max-width: 920px) {
  .nav-social { display: none; }
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-section {
  background: #0d0d0d;
  padding: 96px 0;
  border-top: 1px solid rgba(27,191,221,0.08);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(27,191,221,0.06);
  margin-top: 52px;
}

.review-card {
  background: #0d0d0d;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars span {
  color: #f5c518;
  font-size: 16px;
  line-height: 1;
}

.review-text {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}

.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}

.review-source {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.review-platform {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
}

.review-google-logo {
  margin-left: auto;
  opacity: 0.35;
}

@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GOOGLE REVIEWS SECTION
   ============================================================ */
.reviews-section { background: var(--dark); }

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.reviews-stars {
  color: #F5C518;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1;
}

.reviews-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}

.reviews-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(27,191,221,0.08);
}

.review-card {
  background: var(--dark);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}

.review-card:hover { background: #26383a; }

/* Macgregor's long review spans full width */
.review-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0 32px;
}

.review-card--wide .review-stars {
  grid-column: 1 / -1;
}

.review-card--wide .review-text {
  grid-column: 1;
  font-size: 15px;
  max-width: 680px;
}

.review-card--wide .review-author {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
}

.review-stars {
  color: #F5C518;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

.review-text {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.review-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.review-verified {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

/* Care banner — updated image is landscape 1200x800, windows fill frame */
.care-banner { min-height: 440px; }
.care-banner-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 920px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card--wide {
    grid-column: 1;
    display: flex;
    flex-direction: column;
  }
  .review-card--wide .review-text { max-width: none; font-size: 14px; }
  .review-card--wide .review-author { justify-self: unset; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .reviews-rating { align-items: flex-start; }
}


/* V6: Larger nav logo + title */
.nav-logo-img { width: 44px !important; height: 44px !important; }
.nav-logo-text { font-size: 22px !important; }
