/* ==========================================================
   Luxury Landscapes — stylesheet
   ========================================================== */

:root{
  --bg: #0b0f0d;
  --bg-soft: #10140f;
  --surface: #161c16;
  --surface-2: #1d251d;
  --border: rgba(198,161,91,0.16);
  --border-strong: rgba(198,161,91,0.35);

  --gold: #c6a15b;
  --gold-light: #e6cd94;
  --gold-dark: #93753d;

  --cream: #f4f0e3;
  --text: #e9e5d8;
  --text-muted: #a7ad9f;
  --text-dim: #7c8377;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --radius: 4px;
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.6);
  --shadow-md: 0 16px 34px -14px rgba(0,0,0,0.55);
  --ease: cubic-bezier(.22,.68,.16,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 .5em;
  letter-spacing: 0.01em;
}
h1{ font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05; font-weight: 700;}
h2{ font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.15; }
h3{ font-size: 1.4rem; }
p{ margin: 0 0 1em; }
button{ font-family: inherit; cursor: pointer; }
input, select, textarea{ font-family: inherit; }

::selection{ background: var(--gold-dark); color: #fff; }

/* ---------- layout helpers ---------- */
section{ position: relative; padding: 6.5rem 1.5rem; }
.section-head{
  max-width: 700px;
  margin: 0 auto 3.2rem;
  text-align: center;
}
.section-sub{ color: var(--text-muted); font-size: 1.05rem; }
.eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.9rem;
}

/* ---------- reveal-on-scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn-gold{
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: #17130a;
  box-shadow: 0 10px 26px -10px rgba(198,161,91,0.55);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(198,161,91,0.7); }
.btn-outline{
  border-color: rgba(244,240,227,0.35);
  color: var(--cream);
  background: rgba(255,255,255,0.03);
}
.btn-outline:hover{ border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn-small{ padding: 0.7rem 1.3rem; font-size: 0.8rem; }
.btn-full{ width: 100%; }

/* ---------- scroll progress ---------- */
.scroll-progress{
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 999;
  transition: width .12s linear;
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.4rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  padding: 0.85rem 0;
  background: rgba(11,15,13,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.7);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand{ display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand-mark{ width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; }
.brand-text{
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.main-nav{ display: flex; gap: 2.1rem; }
.main-nav a{
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: .3rem 0;
  transition: color .3s;
  white-space: nowrap;
}
.main-nav a::after{
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .3s var(--ease);
}
.main-nav a:hover{ color: var(--cream); }
.main-nav a:hover::after{ width: 100%; }

.header-cta{ display: flex; align-items: center; gap: 1.4rem; }
.header-phone{
  display: flex; align-items: center; gap: .5rem;
  font-size: 0.92rem; color: var(--cream); font-weight: 500;
  white-space: nowrap;
}
.header-phone svg{ color: var(--gold); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none;
}
.nav-toggle span{
  display: block; height: 2px; width: 100%;
  background: var(--cream); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.mobile-cta{ display: none; }

.nav-backdrop{
  position: fixed; inset: 0; z-index: 450;
  background: rgba(4,5,4,0.6);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease);
}
.nav-backdrop.is-open{ opacity: 1; visibility: visible; }

/* ==========================================================
   HERO
   ========================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom{ from{ transform: scale(1.12);} to{ transform: scale(1);} }
.hero-scrim{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,10,8,0.75) 0%, rgba(8,10,8,0.45) 40%, rgba(8,10,8,0.85) 100%),
    linear-gradient(90deg, rgba(6,8,6,0.65) 0%, rgba(6,8,6,0.15) 55%);
}
.hero-content{ position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.hero h1{ color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.hero-sub{
  font-size: 1.18rem; color: rgba(244,240,227,0.86);
  max-width: 580px; margin: 0 auto 2.2rem;
}
.hero-actions{ display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero-trust{
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  color: rgba(244,240,227,0.78); font-size: 0.88rem; flex-wrap: wrap;
}
.stars{ color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }

.scroll-cue{
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(244,240,227,0.7);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob{ 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }
.scroll-dot{ animation: dotMove 2.4s ease-in-out infinite; }
@keyframes dotMove{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(10px);} }

/* ==========================================================
   ABOUT
   ========================================================== */
.about{ background: var(--bg-soft); }
.about-inner{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; align-items: center;
}
.about-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; object-fit: cover;
  border: 1px solid var(--border);
}
.about-copy p{ color: var(--text-muted); }
.about-stats{
  display: flex; gap: 2.6rem; margin-top: 2rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat{ display: flex; flex-direction: column; }
.stat-num{ font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--gold-light); }
.stat-label{ font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-top: .2rem; }

/* ==========================================================
   SERVICES
   ========================================================== */
.services-grid{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.service-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.service-card:hover{
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.service-icon{
  width: 54px; height: 54px; margin-bottom: 1.3rem;
  color: var(--gold);
}
.service-icon svg{ width: 100%; height: 100%; }
.service-card h3{ margin-bottom: .6rem; font-size: 1.3rem; }
.service-card p{ color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ==========================================================
   TRANSFORMATIONS (before/after slider)
   ========================================================== */
.transformations{ background: var(--bg-soft); }
.ba-grid{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem;
}
.ba-frame{
  position: relative;
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  cursor: ew-resize;
  user-select: none;
}
.ba-frame img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before-wrap{
  position: absolute; inset: 0; width: 50%; overflow: hidden;
}
.ba-before-wrap img{ width: var(--ba-img-w, 100vw); max-width: none; height: 100%; }
.ba-handle{
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 46px; margin-left: -23px;
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
}
.ba-handle::before{
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(255,255,255,0.85); transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.ba-handle svg{
  position: relative; z-index: 2;
  width: 42px; height: 42px; padding: 9px;
  background: var(--gold); color: #17130a;
  border-radius: 50%; box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.ba-tag{
  position: absolute; top: 1rem;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 0.8rem; border-radius: 2px;
  background: rgba(11,15,13,0.65); color: var(--cream);
  backdrop-filter: blur(6px); pointer-events: none;
}
.ba-tag-before{ left: 1rem; }
.ba-tag-after{ right: 1rem; }
.ba-caption{ margin-top: 1rem; text-align: center; color: var(--text-muted); font-size: 0.92rem; }

/* ==========================================================
   GALLERY
   ========================================================== */
.filter-bar{
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  justify-content: center; max-width: var(--container); margin: 0 auto 2.8rem;
}
.filter-btn{
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.6rem 1.3rem; border-radius: 999px;
  font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase;
  transition: all .3s var(--ease);
}
.filter-btn:hover{ border-color: var(--border-strong); color: var(--cream); }
.filter-btn.is-active{
  background: var(--gold); border-color: var(--gold); color: #17130a; font-weight: 500;
}

.gallery-grid{
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 1rem;
}
.g-item{
  position: relative; margin: 0; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.g-item.g-hidden{ display: none; }
.g-item img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.g-item:hover img{ transform: scale(1.08); }
.g-item figcaption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(6,8,6,0.9));
  color: var(--cream); font-size: 0.85rem; letter-spacing: 0.02em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.g-item:hover figcaption{ opacity: 1; transform: translateY(0); }
.g-item::after{
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid transparent; transition: border-color .4s;
}
.g-item:hover::after{ border-color: var(--border-strong); }
.g-item{ cursor: zoom-in; }

.g-wide{ grid-column: span 2; }
.g-tall{ grid-row: span 2; }

/* ==========================================================
   PROCESS
   ========================================================== */
.process-grid{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.process-step{
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--border);
}
.process-num{
  font-family: var(--font-display); font-size: 1.6rem; color: var(--gold);
  display: block; margin-bottom: .6rem;
}
.process-step p{ color: var(--text-muted); font-size: 0.94rem; }

/* ==========================================================
   AREAS
   ========================================================== */
.areas{
  background: var(--bg-soft);
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.areas-media img{
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4; object-fit: cover; border: 1px solid var(--border);
}
.areas-copy .section-sub{ margin-bottom: 2rem; }
.areas-list{ display: flex; flex-direction: column; gap: 1.3rem; }
.areas-list li{ display: flex; gap: 1rem; align-items: flex-start; }
.areas-pin{ color: var(--gold); font-size: 0.6rem; margin-top: .5rem; }
.areas-list strong{ color: var(--cream); font-size: 1.05rem; font-weight: 500; }
.areas-list p{ margin: .2rem 0 0; color: var(--text-muted); font-size: 0.92rem; }

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews-score{
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: 1rem; color: var(--text-muted); font-size: 0.92rem;
}
.reviews-grid{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.review-card{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; margin: 0;
}
.review-card p{
  font-family: var(--font-display); font-size: 1.15rem; font-style: italic;
  color: var(--cream); line-height: 1.5; margin: 0.8rem 0 1.1rem;
}
.review-card cite{ font-style: normal; color: var(--gold); font-size: 0.85rem; letter-spacing: 0.04em; }
.reviews-cta{ text-align: center; margin-top: 2.6rem; }

/* ==========================================================
   CTA BANNER
   ========================================================== */
.cta-banner{
  position: relative; padding: 7rem 1.5rem; text-align: center; overflow: hidden;
}
.cta-media{ position: absolute; inset: 0; z-index: 0; }
.cta-media img{ width: 100%; height: 100%; object-fit: cover; }
.cta-content{ position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-content h2{ color: #fff; }
.cta-content p{ color: rgba(244,240,227,0.85); font-size: 1.08rem; margin-bottom: 2rem; }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-grid{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.info-list{ display: flex; flex-direction: column; gap: 1rem; margin: 1.8rem 0 2.2rem; }
.info-list li{ display: flex; align-items: center; gap: .8rem; color: var(--text-muted); }
.info-list svg{ color: var(--gold); flex-shrink: 0; }
.info-list a:hover{ color: var(--gold-light); }
.hours{
  border-top: 1px solid var(--border); padding-top: 1.4rem; margin-bottom: 2rem;
}
.hours h3{ font-size: 1.05rem; margin-bottom: .8rem; }
.hours-row{
  display: flex; justify-content: space-between; max-width: 320px;
  font-size: 0.92rem; color: var(--text-muted); padding: .35rem 0;
}
.map-embed{
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 16/10;
}
.map-embed iframe{ width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

.contact-form{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.6rem;
  display: flex; flex-direction: column;
}
.contact-form h3{ margin-bottom: 1.6rem; }
.contact-form label{
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-dim); margin-bottom: .4rem; display: block;
}
.contact-form input, .contact-form select, .contact-form textarea{
  width: 100%; background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--cream); border-radius: var(--radius); padding: 0.8rem 0.9rem;
  margin-bottom: 1.2rem; font-size: 0.95rem;
  transition: border-color .3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus{
  outline: none; border-color: var(--gold);
}
.contact-form textarea{ resize: vertical; }
.form-note{ font-size: 0.8rem; color: var(--text-dim); margin: 0.9rem 0 0; text-align: center; }
.form-note a{ color: var(--gold); }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer{ background: #070907; padding-top: 4.5rem; border-top: 1px solid var(--border); }
.footer-inner{
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem 3.5rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem;
}
.footer-brand p{ color: var(--text-dim); font-size: 0.9rem; margin: 1rem 0 1.2rem; max-width: 320px; }
.footer-fb{ color: var(--gold); font-size: 0.88rem; }
.footer-links, .footer-contact{ display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links h4, .footer-contact h4{
  color: var(--cream); font-family: var(--font-body); text-transform: uppercase;
  font-size: 0.78rem; letter-spacing: 0.1em; margin-bottom: .4rem; font-weight: 500;
}
.footer-links a, .footer-links span, .footer-contact a, .footer-contact span{
  color: var(--text-dim); font-size: 0.9rem;
}
.footer-links a:hover, .footer-contact a:hover{ color: var(--gold-light); }
.footer-bottom{
  border-top: 1px solid var(--border); padding: 1.6rem 1.5rem;
  text-align: center; color: var(--text-dim); font-size: 0.82rem;
}

/* ==========================================================
   LIGHTBOX
   ========================================================== */
.lightbox{
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6,8,6,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease);
  padding: 3rem;
}
.lightbox.is-open{ opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox img{
  max-width: 100%; max-height: 88vh; border-radius: 4px;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: scale(0.97);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.lightbox.is-open img{ opacity: 1; transform: scale(1); }
.lightbox-close, .lightbox-nav{
  position: absolute; background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .3s, color .3s, border-color .3s;
}
.lightbox-close:hover, .lightbox-nav:hover{ background: var(--gold); color: #17130a; border-color: var(--gold); }
.lightbox-close{ top: 1.6rem; right: 1.6rem; width: 46px; height: 46px; font-size: 1.6rem; line-height: 1; }
.lightbox-nav{ top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.1rem; }
.lightbox-prev{ left: 1.6rem; }
.lightbox-next{ right: 1.6rem; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1220px){
  .main-nav{ display: none; }
  .header-cta{ display: none; }
  .nav-toggle{ display: flex; }
  .header-inner{ position: relative; }

  .main-nav.is-open{
    display: flex; flex-direction: column;
    position: absolute; top: calc(100% + 1rem); left: 1.5rem; right: 1.5rem;
    background: rgba(11,15,13,0.97); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.4rem; gap: 1.1rem;
    backdrop-filter: blur(14px);
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
  }
  .main-nav.is-open .mobile-cta{
    display: flex; flex-direction: column; gap: .9rem;
    margin-top: .3rem; padding-top: 1.1rem; border-top: 1px solid var(--border);
  }
  .mobile-cta .header-phone{ justify-content: center; }
}

@media (max-width: 1080px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-grid{ grid-template-columns: repeat(2, 1fr); gap: 2.6rem 2rem; }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; }
  .footer-inner{ grid-template-columns: 1fr 1fr; gap: 2.6rem; }
}

@media (max-width: 860px){
  .about-inner, .areas, .contact-grid{ grid-template-columns: 1fr; gap: 2.6rem; }
  .about-media img{ aspect-ratio: 16/10; }
  .areas-media{ order: 2; }
  .areas-media img{ aspect-ratio: 16/10; }

  .ba-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .reviews-grid{ grid-template-columns: 1fr; }
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-wide{ grid-column: span 2; }
  .footer-inner{ grid-template-columns: 1fr; }
}

@media (max-width: 540px){
  section{ padding: 4.5rem 1.2rem; }
  .hero{ padding-top: 7rem; }
  .hero-actions{ flex-direction: column; width: 100%; }
  .hero-actions .btn{ width: 100%; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g-wide, .g-tall{ grid-column: span 1; grid-row: span 1; }
  .process-grid{ grid-template-columns: 1fr; }
  .lightbox{ padding: 1.2rem; }
  .lightbox-nav{ width: 42px; height: 42px; }
  .lightbox-prev{ left: 0.5rem; } .lightbox-next{ right: 0.5rem; }
  .contact-form{ padding: 1.8rem; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .hero-media img{ animation: none; transform: none; }
  .scroll-cue, .scroll-dot{ animation: none; }
}
