/* ═══════════════════════════════════════════════════════════════
   NN Decorators — nndecorators.com
   Global stylesheet (all pages)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink:        #1b1f27;   /* near-black text */
  --ink-soft:   #4b5261;
  --muted:      #8a91a0;
  --amber:      #c8862a;   /* brand gold */
  --amber-dark: #a86d1a;
  --amber-soft: #fdf4e4;
  --cream:      #faf7f1;
  --white:      #ffffff;
  --line:       #e9e4da;
  --dark:       #141821;   /* footer / hero base */
  --radius:     14px;
  --shadow:     0 10px 30px rgba(20, 24, 33, .08);
  --shadow-lg:  0 18px 48px rgba(20, 24, 33, .16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Sora', 'Inter', sans-serif; line-height: 1.2; }

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container { width: min(1160px, 92%); margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 22px rgba(200, 134, 42, .35);
}
.btn-primary:hover { background: var(--amber-dark); }
.btn-outline {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #000; }

/* ── Top strip ───────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: #cfd4de;
  font-size: 13px;
  padding: 7px 0;
}
.topbar-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 500; }
.topbar-sep { margin: 0 8px; opacity: .5; }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), #e2a94f);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 18px;
  letter-spacing: .5px;
  box-shadow: 0 6px 16px rgba(200,134,42,.35);
}
.brand-text strong { font-family: 'Sora', sans-serif; font-size: 19px; display: block; line-height: 1.15; }
.brand-text small  { color: var(--muted); font-size: 11.5px; letter-spacing: .4px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s;
}
.nav-link:hover  { color: var(--ink); }
.nav-link.active { color: var(--amber-dark); border-bottom-color: var(--amber); }
.nav-cta { padding: 10px 22px; font-size: 14px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--ink); margin: 5px 0; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero (home) ─────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(200,134,42,.28), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(200,134,42,.18), transparent 55%),
    var(--dark);
  color: #fff;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-inner { max-width: 720px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #f4d9a8;
  font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: .3px;
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--amber); font-style: normal; }
.hero p {
  font-size: 18px;
  color: #b9bfcc;
  margin-bottom: 34px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stat strong { font-family: 'Sora'; font-size: 28px; color: var(--amber); display: block; }
.hero-stat span   { font-size: 13.5px; color: #9aa1b0; }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background:
    radial-gradient(800px 350px at 80% -20%, rgba(200,134,42,.25), transparent 60%),
    var(--dark);
  color: #fff;
  padding: 60px 0 64px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
.page-hero p  { color: #b9bfcc; max-width: 620px; margin: 0 auto; font-size: 16.5px; }
.breadcrumb   { font-size: 13.5px; color: #8f96a6; margin-bottom: 14px; }
.breadcrumb a { color: var(--amber); }

/* ── Sections ────────────────────────────────────────────────── */
.section       { padding: 84px 0; }
.section-alt   { background: var(--cream); }
.section-head  { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-kicker {
  color: var(--amber-dark);
  font-weight: 700; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin-bottom: 14px; }
.section-head p  { color: var(--ink-soft); font-size: 16.5px; }

/* ── Cards / grids ───────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--amber-soft);
  display: grid; place-items: center;
  font-size: 27px;
  margin-bottom: 20px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p  { color: var(--ink-soft); font-size: 14.5px; }
.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--amber-dark);
  font-weight: 600; font-size: 14px;
}

/* ── Why-us strip ────────────────────────────────────────────── */
.why-item { text-align: center; padding: 10px; }
.why-item .card-icon { margin: 0 auto 16px; }
.why-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.why-item p  { font-size: 14px; color: var(--ink-soft); }

/* ── Steps ───────────────────────────────────────────────────── */
.step { position: relative; padding: 28px 24px 24px; }
.step-num {
  font-family: 'Sora';
  font-size: 42px; font-weight: 800;
  color: var(--amber);
  opacity: .25;
  display: block; margin-bottom: 8px;
}

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(120deg, var(--amber-dark), var(--amber));
  color: #fff;
  border-radius: 20px;
  padding: 54px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.cta-band p  { opacity: .92; }
.cta-band .btn-dark { white-space: nowrap; }

/* ── Services page ───────────────────────────────────────────── */
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 22px;
  transition: box-shadow .18s ease;
}
.service-row:hover { box-shadow: var(--shadow-lg); }
.service-row .card-icon { width: 72px; height: 72px; font-size: 32px; margin: 0; }
.service-row h3 { font-size: 21px; margin-bottom: 8px; }
.service-row p  { color: var(--ink-soft); font-size: 15px; margin-bottom: 12px; }
.service-tags   { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span {
  background: var(--amber-soft);
  color: var(--amber-dark);
  font-size: 12.5px; font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
}

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-filters {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  border: 1px solid var(--line);
  cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-item .g-cap {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(15,18,25,.82));
  color: #fff;
  font-size: 13.5px; font-weight: 600;
  padding: 26px 16px 12px;
}
.g-placeholder {
  display: grid; place-items: center;
  height: 100%;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  padding: 20px;
  background:
    repeating-linear-gradient(45deg, #f4efe6 0 14px, #faf7f1 14px 28px);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 12, 18, .92);
  display: none;
  place-items: center;
  z-index: 100;
  padding: 4vw;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: 0;
  color: #fff; font-size: 34px;
  cursor: pointer; line-height: 1;
}

/* ── Contact page ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--dark);
  color: #dfe3ea;
  border-radius: var(--radius);
  padding: 38px 34px;
}
.contact-card h3 { color: #fff; font-size: 21px; margin-bottom: 22px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; font-size: 15px; }
.contact-item .ci-icon {
  width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 11px;
  background: rgba(200,134,42,.18);
  display: grid; place-items: center;
  font-size: 19px;
}
.contact-item strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.contact-item a { color: #f0c987; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 21px; margin-bottom: 6px; }
.form-card > p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13.5px; font-weight: 600;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 14.5px;
  background: var(--cream);
  transition: border-color .15s, background .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.alert {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 20px;
}
.alert-success { background: #e8f6ec; color: #1e7a3c; border: 1px solid #bfe5cb; }
.alert-error   { background: #fdecec; color: #b3261e; border: 1px solid #f3c2bf; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: 60px;
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: #aeb4c1;
  padding-top: 64px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer h4 { color: #fff; font-size: 15.5px; margin-bottom: 18px; }
.footer-brand { margin-bottom: 16px; }
.footer-brand .brand-text strong { color: #fff; }
.footer-about { font-size: 14px; line-height: 1.7; }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--amber); }
.footer-contact a { color: #f0c987; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: 13px;
}
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

/* ── WhatsApp float ──────────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  z-index: 80;
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ── Hero with images ────────────────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero-pics {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 440px;
}
.hero-pic {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.hero-pic img { width: 100%; height: 100%; object-fit: cover; }
.hero-pic-tall { grid-row: span 2; }
.hero-pic-badge {
  position: absolute;
  left: -14px; bottom: 24px;
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 13.5px;
}
.hero-pic-badge .hpb-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--amber-soft);
  display: grid; place-items: center;
  font-size: 20px;
}
.hero-pic-badge strong { display: block; font-family: 'Sora'; font-size: 15px; }
.hero-pic-badge span   { color: var(--muted); font-size: 12.5px; }

/* ── Cards with image tops ───────────────────────────────────── */
.card-media { padding: 0; overflow: hidden; }
.card-media .card-img {
  height: 190px;
  overflow: hidden;
  background: var(--cream);
}
.card-media .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.card-media:hover .card-img img { transform: scale(1.07); }
.card-media .card-body { padding: 24px 26px 28px; }
.card-media .card-icon {
  width: 48px; height: 48px;
  font-size: 22px;
  margin: -48px 0 14px;
  position: relative;
  border: 3px solid var(--white);
  background: var(--amber-soft);
  box-shadow: var(--shadow);
}

/* ── Service rows with photos ────────────────────────────────── */
.service-row-media {
  grid-template-columns: 280px 1fr;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  gap: 0;
}
.service-row-media .sr-img { min-height: 240px; background: var(--cream); }
.service-row-media .sr-img img { width: 100%; height: 100%; object-fit: cover; }
.service-row-media .sr-body { padding: 30px 32px; }
.service-row-media .sr-head { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.service-row-media .sr-head .card-icon {
  width: 50px; height: 50px; font-size: 23px; margin: 0; flex: 0 0 50px;
}
.service-row-media h3 { margin-bottom: 0; }

/* ── About / split section ───────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.split-img .exp-chip {
  position: absolute;
  right: 18px; bottom: 18px;
  background: var(--amber);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(200,134,42,.5);
}
.split-img .exp-chip strong { display: block; font-family: 'Sora'; font-size: 26px; line-height: 1.1; }
.split-img .exp-chip span   { font-size: 12px; opacity: .95; }
.split-body .section-kicker { text-align: left; }
.split-body h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; margin-bottom: 16px; }
.split-body p  { color: var(--ink-soft); margin-bottom: 14px; }
.check-list { margin: 20px 0 26px; }
.check-list li {
  display: flex; gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 15px;
}
.check-list li::before {
  content: '✓';
  width: 24px; height: 24px; flex: 0 0 24px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-dark);
  font-weight: 800; font-size: 13px;
  display: grid; place-items: center;
  margin-top: 2px;
}

/* ── Testimonials ────────────────────────────────────────────── */
.t-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.t-stars { color: #f5a623; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.t-text  { color: var(--ink-soft); font-size: 14.5px; font-style: italic; flex: 1; }
.t-person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #e2a94f);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Sora'; font-weight: 700; font-size: 15px;
}
.t-person strong { display: block; font-size: 14.5px; }
.t-person span   { color: var(--muted); font-size: 12.5px; }

/* ── FAQ accordion ───────────────────────────────────────────── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  font-family: 'Sora';
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--amber-dark);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--amber-dark); }
.faq-item .faq-a {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* ── Materials / trust strip ─────────────────────────────────── */
.material-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.material-strip span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
}
.material-strip span b { color: var(--amber-dark); }

/* ── Coverage banner ─────────────────────────────────────────── */
.coverage {
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 40px;
}
.coverage strong { color: var(--ink); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-pics { min-height: 340px; }
  .hero-pic-badge { left: 10px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .service-row-media { grid-template-columns: 1fr; }
  .service-row-media .sr-img { min-height: 200px; max-height: 240px; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 6vw 22px;
    gap: 4px;
    display: none;
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav-link.active { border-bottom-color: var(--amber); }
  .nav-cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: block; }

  .topbar-inner { justify-content: center; text-align: center; }
  .hero { padding: 64px 0 70px; }
  .hero-stats { gap: 26px; }
  .section { padding: 60px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 26px; text-align: center; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}
