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

:root {
  --white: #EFEFEF;
  --off-white: #E5E5E8;
  --border: #C8C8CC;
  --text: #1D1D1F;
  --text-2: #6E6E73;
  --text-3: #86868B;
  --dark: #1D1D1F;
  --gold: #8C7355;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 56px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.nav-logo { cursor: pointer; line-height: 1; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.015em;
  color: var(--text);
  display: block;
  line-height: 1.15;
}
.nav-logo-sub {
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--text-2); }
.nav-cta {
  background: var(--dark) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s !important;
}
.nav-cta:hover { opacity: 0.82 !important; transform: translateY(-1px); }

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

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 999;
  padding: 88px 36px 48px;
  flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 38px;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text-2); }
.nav-mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
  line-height: 1;
}

/* ─── PAGES ─── */
.page { display: none; opacity: 0; }
.page.active { display: block; opacity: 1; }
.page.fade-out {
  display: block;
  opacity: 1;
  animation: pageFadeOut 0.35s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
.page.fade-in {
  display: block;
  opacity: 0;
  animation: pageFadeIn 0.4s cubic-bezier(0.25,0.46,0.45,0.94) 0.05s forwards;
}
@keyframes pageFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-12px); }
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SCROLL ANIMATION ─── */
/* rAF-driven parallax fade — no class toggling, no flash */
.reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 56px 100px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180,180,185,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,180,185,0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -15%; right: -5%;
  width: 55vw; height: 110vh;
  background: radial-gradient(ellipse at center, rgba(245,245,247,0.9) 0%, rgba(255,255,255,0) 68%);
  pointer-events: none;
}

/* ─── HERO GRID TRACES ─── */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-trace {
  position: absolute;
  left: -180px;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(140, 115, 85, 0.22) 40%, rgba(140, 115, 85, 0.28) 50%, rgba(140, 115, 85, 0.22) 60%, transparent 100%);
  filter: blur(1px);
  box-shadow: 0 0 6px 1px rgba(140, 115, 85, 0.06);
  animation: traceSlide linear infinite;
  will-change: transform;
}

@keyframes traceSlide {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 400px));
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-trace {
    animation: none;
    opacity: 0;
  }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 7.5vw, 94px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 860px;
  margin-bottom: 40px;
}
.hero-headline em { font-style: italic; }
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--dark);
  color: white;
  padding: 16px 34px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.82; transform: translateY(-2px); }

.btn-ghost {
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  transition: gap 0.25s var(--ease);
}
.btn-ghost::after { content: '→'; }
.btn-ghost:hover { gap: 15px; }



/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 56px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 44px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; text-align: left; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  display: block;
}
.stat-label {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

/* ─── SECTION LABELS ─── */
.section-label {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 36px;
  background: var(--gold);
}

/* ─── INTRO BAND ─── */
.intro-band {
  padding: 120px 56px;
}
.intro-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.intro-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.08;
  color: var(--text);
}
.intro-headline em { font-style: italic; }
.intro-body p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 22px;
}
.intro-body p:last-child { margin-bottom: 0; }

/* ─── WHY CHOOSE ─── */
.why-section {
  background: var(--dark);
  padding: 120px 56px;
  color: white;
}
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.why-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  color: white;
}
.why-headline em { font-style: italic; }
.why-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.why-card {
  background: var(--dark);
  padding: 56px 52px;
  transition: background 0.35s;
  cursor: default;
}
.why-card:hover { background: #252525; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 36px;
  font-weight: 300;
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 27px;
  color: white;
  margin-bottom: 18px;
  line-height: 1.2;
}
.why-card p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ─── SERVICES PREVIEW ─── */
.services-preview {
  padding: 120px 56px;
}
.services-preview-inner { max-width: 1200px; margin: 0 auto; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  color: var(--text);
  max-width: 500px;
}
.section-title em { font-style: italic; }
.section-link {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--text);
  transition: gap 0.25s var(--ease);
  white-space: nowrap;
}
.section-link:hover { gap: 14px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
}
.svc-card:nth-child(-n+3) { grid-column: span 2; }
.svc-card:nth-child(n+4)  { grid-column: span 3; }
.svc-card {
  background: #F7F7F7;
  padding: 48px 40px 44px;
  transition: background 0.3s;
  cursor: pointer;
}
.svc-card:hover { background: #EBEBEB; }
.svc-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
}
.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 13px;
  line-height: 1.2;
}
.svc-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
}
.svc-arrow {
  display: block;
  margin-top: 28px;
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.25s;
}
.svc-card:hover .svc-arrow { transform: translateX(7px); }

/* ─── CTA BAND ─── */
.cta-band {
  padding: 100px 56px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-inner { max-width: 660px; margin: 0 auto; }
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.cta-headline em { font-style: italic; }
.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-2);
  margin-bottom: 44px;
  line-height: 1.7;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 148px 56px 88px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 6.5vw, 76px);
  line-height: 1.03;
  color: var(--text);
  margin-bottom: 26px;
  max-width: 760px;
}
.page-hero h1 em { font-style: italic; }
.about-hero-headline {
  font-size: clamp(30px, 4vw, 48px);
  max-width: 860px;
}
.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── SERVICES FULL ─── */
.services-full-wrap {
  padding: 80px 56px;
  padding-bottom: 40vh;
  max-width: 1200px;
  margin: 0 auto;
}
.svc-full-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 88px;
  padding: 68px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 88px;
  align-items: start;
}
.svc-full-item:last-child { border-bottom: none; }
.svc-full-left {
  position: sticky;
  top: 96px;
}
.svc-full-num {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.svc-full-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--text);
  line-height: 1.2;
}
.svc-full-right p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 20px;
}
.svc-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 36px;
  margin-top: 28px;
}
.svc-list li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── ABOUT PAGE ─── */
.about-main {
  padding: 120px 56px;
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}
.about-left { position: sticky; top: 96px; }
.about-photo {
  aspect-ratio: 3/4;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--text-3);
}
.about-photo svg { width: 52px; height: 52px; opacity: 0.25; }
.about-photo span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.about-name-tag {
  margin-top: 22px;
}
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 4px;
}
.about-desig {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  letter-spacing: 0.04em;
}
.about-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 40px;
}
.about-right h2 em { font-style: italic; }
.about-right p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.82;
  margin-bottom: 26px;
}

.values-section {
  background: var(--off-white);
  padding: 88px 56px;
  border-top: 1px solid var(--border);
}
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  margin-top: 56px;
}
.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.value-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
}
.values-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--text);
  line-height: 1.1;
  max-width: 540px;
}
.values-title em { font-style: italic; }

/* ─── CONTACT PAGE ─── */
.contact-main {
  padding: 120px 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
}
.contact-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
}
.contact-left h1 em { font-style: italic; }
.contact-left > p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 48px;
}
.contact-details { display: flex; flex-direction: column; gap: 26px; }
.contact-detail-label {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  background: #F7F7F7;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--text); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success {
  display: none;
  padding: 22px 24px;
  background: #f0f8ed;
  border: 1px solid #bcddb4;
  border-radius: 8px;
  margin-top: 8px;
}
.form-success p { color: #2b6520; font-size: 15px; font-weight: 400; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 72px 56px 44px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 36px;
}
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: white;
  margin-bottom: 14px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.28); }
.footer-cpa-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

/* ─── UTILITY ─── */
.mt-36 { margin-top: 36px; }
.justify-center { justify-content: center; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 0 28px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 110px 28px 80px; }
  .stats-strip { padding: 44px 28px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-item { padding: 0 0 20px; border-right: none; border-bottom: 1px solid var(--border); text-align: left; }
  .stat-item:nth-child(even) { text-align: right; border-bottom-color: var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .intro-band { padding: 80px 28px; }
  .intro-band-inner { grid-template-columns: 1fr; gap: 40px; }

  .why-section { padding: 80px 28px; }
  .why-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 44px 28px; }

  .services-preview { padding: 80px 28px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card:nth-child(-n+3),
  .svc-card:nth-child(n+4) { grid-column: span 1; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }

  .cta-band { padding: 80px 28px; }

  .page-hero { padding: 110px 28px 68px; }
  .services-full-wrap { padding: 40px 28px; }
  .svc-full-item { grid-template-columns: 1fr; gap: 24px; }
  .svc-full-left { position: static; }
  .svc-list { grid-template-columns: 1fr; }

  .about-main { padding: 80px 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-left { position: static; }
  .about-photo { aspect-ratio: 4/3; }
  .values-section { padding: 60px 28px; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }

  .contact-main { padding: 80px 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 52px 28px 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 520px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { text-align: left !important; border-right: none !important; }
  .footer-top { grid-template-columns: 1fr; }
}
