/* ==========================================================================
   Nex Living — global stylesheet
   Palette: charcoal / off-white / timber-taupe (matches logo)
   ========================================================================== */

:root {
  --charcoal: #211f1b;
  --charcoal-soft: #3c3a34;
  --off-white: #f7f4ee;
  --cream: #efe9de;
  --timber: #8a7156;
  --timber-light: #b9a480;
  --taupe: #9c8f78;
  --white: #ffffff;
  --border: #e2dbcc;
  --success: #4f7a5c;
  --error: #a3453a;

  --font-heading: 'Jost', 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container-width: 1180px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(33, 31, 27, 0.08);
  --shadow-lift: 0 24px 48px rgba(33, 31, 27, 0.16);
  --transition: 0.2s ease;
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
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-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--timber);
  font-weight: 600;
  margin-bottom: 0.8em;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(80px, 10vw, 152px) 0; }
.section-alt { background: var(--cream); }
.section-dark {
  background: var(--charcoal);
  color: var(--off-white);
}
.section-dark h2, .section-dark h3, .section-dark p { color: var(--off-white); }
.section-head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head p { color: var(--charcoal-soft); }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
.reveal-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Framed photo (contained supporting image, used on Services/About) ---- */
.photo-frame { display: block; }
.photo-frame-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.photo-frame-img.aspect-wide { aspect-ratio: 16 / 9; }
.photo-frame-img.aspect-tall { aspect-ratio: 3 / 4; }
/* Use for a photo whose own composition is tall/vertical (e.g. a ceiling-to-
   column architectural detail) — keeps it contained instead of forcing it into
   a full-width strip, which crops a portrait shot into an oddly-angled sliver. */
.photo-frame-narrow { max-width: 460px; margin: 0 auto; }
.photo-frame-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.photo-frame:hover .photo-frame-img img { transform: scale(1.05); }
.photo-frame figcaption {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  text-align: center;
  font-family: var(--font-heading);
  letter-spacing: 0.2px;
}

/* ---- Full-bleed photo break (visual pause between sections) ---- */
.photo-break {
  position: relative;
  overflow: hidden;
  color: var(--off-white);
  padding: clamp(90px, 14vw, 170px) 0;
  text-align: center;
}
.photo-break::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(33,31,27,0.74), rgba(33,31,27,0.52)),
    url('../assets/images/home-lifestyle.jpg') center/cover no-repeat;
  animation: slowZoom 26s ease-in-out infinite alternate;
}
.photo-break .container { position: relative; z-index: 1; }
.photo-break-inner { max-width: 620px; margin: 0 auto; }
.photo-break h2 { color: var(--white); }
.photo-break p { color: var(--cream); margin-bottom: 1.8em; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(33, 31, 27, 0.16); }
.btn-primary {
  background: var(--timber);
  color: var(--white);
}
.btn-primary:hover { background: var(--charcoal); }
.btn-secondary {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--white); }
.btn-light {
  background: var(--off-white);
  color: var(--charcoal);
}
.btn-light:hover { background: var(--timber); color: var(--white); }
.btn-block { width: 100%; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 46px; width: auto; }
.site-nav ul {
  display: flex;
  gap: 32px;
}
.site-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--charcoal);
  border-bottom-color: var(--timber);
}
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--off-white);
  padding: 130px 0 110px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(33,31,27,0.82), rgba(33,31,27,0.6)),
    url('../assets/images/hero-exterior.jpg') center/cover no-repeat;
  animation: slowZoom 24s ease-in-out infinite alternate;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 700px; }

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .photo-break::before { animation: none; }
}
.hero h1 { color: var(--white); }
.hero .lede {
  font-size: 1.1rem;
  color: var(--cream);
  max-width: 540px;
  margin-bottom: 2em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--timber-light);
  letter-spacing: 0.3px;
}

.page-hero {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 90px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--cream); max-width: 560px; margin: 0 auto; }

/* ---- Cards / grids ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--timber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-weight: 600;
}
.card p:last-child { margin-bottom: 0; }

/* ---- Why choose us strip ---- */
.trust-point {
  text-align: center;
  padding: 0 12px;
}
.trust-point .card-icon { margin: 0 auto 16px; }

/* ---- About ---- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(33,31,27,0.1), rgba(33,31,27,0.1)),
    url('../assets/images/about-visual.jpg') center/cover no-repeat;
  transition: transform 0.7s var(--ease);
}
.about-visual:hover { transform: scale(1.02); }
.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.stat-row .stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--timber);
}
.license-note {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--cream);
  border-left: 3px solid var(--timber);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

/* ---- Process steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 24px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--timber);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 14px;
}

/* ---- Gallery (curated: before/after feature + a spacious grid) ---- */
.gallery-curated-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.gallery-photo {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.gallery-photo:hover img,
.gallery-photo:focus-within img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33,31,27,0.85) 0%, rgba(33,31,27,0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-photo:hover .gallery-overlay,
.gallery-photo:focus-within .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.2px;
}
.gallery-note {
  text-align: center;
  margin-top: 48px;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Before/After slider ---- */
.before-after { margin-bottom: 56px; }
.before-after-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 3 / 4;
  max-width: 600px;
  margin: 0 auto;
  cursor: ew-resize;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(33, 31, 27, 0.15);
}
.ba-handle-grip {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--timber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lift);
}
.ba-label {
  position: absolute;
  top: 18px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(33, 31, 27, 0.65);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: none;
}
.ba-label-before { left: 18px; }
.ba-label-after { right: 18px; }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
}
.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
}
.ba-range::-moz-range-thumb {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
}
.ba-range::-moz-range-track { background: transparent; border: none; }
.before-after-caption {
  text-align: center;
  margin-top: 22px;
}
.before-after-caption .name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.before-after-caption .hint {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

/* ---- Coming soon ---- */
.coming-soon {
  background:
    linear-gradient(120deg, rgba(33,31,27,0.9), rgba(33,31,27,0.82)),
    url('../assets/images/timber-texture.jpg') center/cover no-repeat;
  color: var(--off-white);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.coming-soon .badge {
  display: inline-block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  color: var(--charcoal);
  background: var(--timber-light);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.coming-soon h3 { color: var(--white); margin-bottom: 10px; }
.coming-soon p { color: var(--cream); margin: 0; max-width: 520px; }

/* ---- FAQ accordion ---- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 2px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.faq-question:hover { color: var(--timber); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--timber);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.faq-item.is-open .faq-icon {
  transform: rotate(135deg);
  background: var(--timber);
  color: var(--white);
  border-color: var(--timber);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-answer p {
  padding: 0 2px 24px;
  margin: 0;
  color: var(--charcoal-soft);
  line-height: 1.75;
  max-width: 640px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
  .faq-icon { transition: none; }
}

/* ---- CTA banner ---- */
.cta-banner {
  background: var(--timber);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--cream); max-width: 520px; margin: 0 auto 28px; }

/* ---- Service area ---- */
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin-top: 20px;
}
.area-list li {
  padding-left: 18px;
  position: relative;
  color: var(--charcoal-soft);
}
.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--timber);
  border-radius: 50%;
}
.map-embed {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px dashed var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--charcoal-soft);
  padding: 24px;
  font-size: 0.9rem;
}

/* ---- Contact ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: var(--charcoal);
  color: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card a { color: var(--off-white); }
.contact-info-list { margin-top: 20px; }
.contact-info-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(247, 244, 238, 0.12);
}
.contact-info-list li:first-child { border-top: none; }
.contact-info-list .label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--timber-light);
  margin-bottom: 4px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--charcoal);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--timber);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(79, 122, 92, 0.12);
  color: var(--success);
  border: 1px solid rgba(79, 122, 92, 0.3);
}
.form-status.is-error {
  display: block;
  background: rgba(163, 69, 58, 0.1);
  color: var(--error);
  border: 1px solid rgba(163, 69, 58, 0.3);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.12);
}
.footer-logo-wrap {
  display: inline-block;
  background: var(--off-white);
  padding: 10px 18px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.footer-logo { height: 36px; display: block; }
.footer-brand p { color: var(--taupe); font-size: 0.92rem; max-width: 260px; }
.footer-col h4 {
  color: var(--off-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: var(--taupe);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--taupe);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-open .site-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 24px;
  }
  .site-header.is-open .site-nav ul { flex-direction: column; gap: 4px; }
  .site-header.is-open .header-cta {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 190px;
  }
  .about-layout, .area-layout, .contact-layout { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-curated-grid { grid-template-columns: 1fr; gap: 24px; }
  .before-after { margin-bottom: 32px; }
  .ba-handle-grip { width: 40px; height: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .coming-soon { flex-direction: column; align-items: flex-start; }
  .hero { padding: 100px 0 70px; }
}

@media (max-width: 420px) {
  .logo-img { height: 38px; }
}
