/* ═══════════════════════════════════════════════════
   AUZZY PROJECTS — Shared site stylesheet
   Brand: Deep Navy #0D1F3C · Prestige Gold #C9A84C · Warm White #F5F5F0
   Type: Playfair Display (headings) · Barlow (body)
   NOTE: Body copy is intentionally high-contrast (navy 0.82 / white 0.72,
   weight 400) and small labels ~14px — per client preference. Keep it that way.
═══════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: #0D1F3C;
  background: #F5F5F0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --navy:       #0D1F3C;
  --navy-mid:   #162D52;
  --navy-light: #1E3A68;
  --gold:       #C9A84C;
  --gold-lt:    #E2C97A;
  --gold-pale:  #F5EDCF;
  --cream:      #F5F5F0;
  --white:      #FFFFFF;
  --muted:      rgba(255,255,255,0.60);
  --muted2:     rgba(13,31,60,0.60);
  --body-light: rgba(13,31,60,0.82);   /* body copy on light bg */
  --body-dark:  rgba(255,255,255,0.72); /* body copy on navy bg  */
  --max-w:      1280px;
  --gap:        2px;
}

/* ─── LAYOUT ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 64px;
}
section { position: relative; }

/* ─── SHARED TYPE ───────────────────────────────── */
.eyebrow {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}
.gold-rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 17px 36px;
  cursor: pointer;
  border: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.btn-arrow::after { content: '→'; font-size: 14px; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(13,31,60,0.30);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ─── NAV ────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.35s, box-shadow 0.35s;
}
.site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 1px 32px rgba(0,0,0,0.35);
}
/* Pages with a light hero need the nav solid from the top */
.site-nav.solid {
  background: var(--navy);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 64px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; gap: 3px; }
.nav-logo .wordmark {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 29px;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1;
}
.nav-logo .sub-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 32px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 800;
  padding: 112px 48px 48px;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu ul li a {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--gold); }
.mobile-menu-cta { margin-top: 40px; }
.mobile-contact {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
}
.mobile-contact a { color: rgba(255,255,255,0.45); }

/* ─── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 168px 0 92px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border: 70px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
  max-width: 760px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .lead {
  font-size: 18px;
  font-weight: 300;
  color: var(--body-dark);
  max-width: 580px;
  line-height: 1.8;
  margin-top: 24px;
}
.breadcrumb {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ─── HERO (homepage) ────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1F3C 0%, #1E3A68 60%, #162D52 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,31,60,0.90) 0%,
    rgba(13,31,60,0.68) 45%,
    rgba(13,31,60,0.28) 100%
  );
}
.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(13,31,60,0.55) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 108px;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 60px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  padding-bottom: 8px;
}
.hero-stat-row { display: flex; flex-direction: column; gap: 20px; }
.hero-stat { border-left: 2px solid var(--gold); padding-left: 20px; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat .label-sm {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 44px;
  right: 64px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
}
.hero-scroll span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.scroll-line { width: 48px; height: 1px; background: rgba(255,255,255,0.3); }

/* ─── POSITIONING ────────────────────────────────── */
.positioning { background: var(--navy); padding: 104px 0; }
.pos-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}
.pos-left .section-title { color: var(--white); }
.pos-right { padding-top: 4px; }
.pos-right p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  line-height: 1.85;
  margin-bottom: 20px;
}
.pos-right p:last-of-type { margin-bottom: 0; }
.pos-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin: 48px 0;
}
.pos-stats { display: flex; gap: 0; }
.pos-stat {
  flex: 1;
  padding: 0 28px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.pos-stat:first-child { padding-left: 0; border-left: none; }
.pos-stat .n {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pos-stat .d {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* ─── SECTION HEAD (shared) ──────────────────────── */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.section-head .section-title { color: var(--navy); }

/* ─── SERVICE CARDS (shared) ─────────────────────── */
.services { background: var(--cream); padding: 104px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.svc-card {
  background: var(--white);
  padding: 56px 44px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.svc-card:hover { background: var(--navy); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover .svc-num { color: rgba(255,255,255,0.07); }
.svc-card:hover .svc-title { color: var(--white); }
.svc-card:hover .svc-body { color: rgba(255,255,255,0.72); }
.svc-card:hover .svc-link { color: var(--gold); }
.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(13,31,60,0.16);
  line-height: 1;
  margin-bottom: 28px;
  transition: color 0.3s;
}
.svc-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
  transition: color 0.3s;
}
.svc-body {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--body-light);
  line-height: 1.78;
  margin-bottom: 36px;
  transition: color 0.3s;
}
.svc-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, gap 0.2s;
}
.svc-card:hover .svc-link { gap: 12px; }

/* ─── PROJECTS GRID (shared) ─────────────────────── */
.projects-preview { background: var(--navy); padding: 104px 0; }
.projects-preview .section-title { color: var(--white); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 56px;
}
.proj-card { position: relative; overflow: hidden; }
.proj-card.featured { grid-row: span 2; }
.proj-card .aspect-box {
  position: relative;
  overflow: hidden;
  height: 320px;
}
.proj-card.featured .aspect-box { height: 100%; min-height: 644px; }
.proj-card .aspect-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.proj-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.proj-card:hover .aspect-box img { transform: scale(1.05); }
.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.92) 0%, rgba(13,31,60,0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s;
}
.proj-card:hover .proj-overlay {
  background: linear-gradient(to top, rgba(13,31,60,0.96) 0%, rgba(13,31,60,0.35) 60%);
}
.proj-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.proj-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.proj-card.featured .proj-name { font-size: 26px; }
.proj-loc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}
.projects-cta { display: flex; justify-content: center; margin-top: 52px; }

/* ─── WHY CHOOSE US (shared) ─────────────────────── */
.why { background: var(--cream); padding: 104px 0; }
.why .section-title { color: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 72px;
  margin-top: 64px;
}
.why-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--gold);
}
.why-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-body {
  font-size: 14px;
  font-weight: 400;
  color: var(--body-light);
  line-height: 1.78;
}
.guarantee-banner {
  margin-top: 72px;
  background: var(--navy);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: center;
}
.guarantee-banner .eyebrow { color: var(--gold); }
.guarantee-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-top: 8px;
}
.guarantee-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.gp-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.gp-body {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--body-dark);
  line-height: 1.65;
}

/* ─── PROCESS (shared) ───────────────────────────── */
.process-overview { background: var(--navy); padding: 104px 0; }
.process-overview .section-title { color: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 64px;
  margin-bottom: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.1), rgba(201,168,76,0.35), rgba(201,168,76,0.1));
}
.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}
.step-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid rgba(201,168,76,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s;
}
.step:hover .step-dot {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.step-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}
.step-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-desc {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--body-dark);
  line-height: 1.65;
}
.process-cta { display: flex; justify-content: center; }

/* ─── FINAL CTA (shared) ─────────────────────────── */
.final-cta {
  background: var(--navy);
  padding: 128px 0;
  text-align: center;
  overflow: hidden;
}
.final-cta .rings { position: absolute; inset: 0; pointer-events: none; }
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 400px; height: 400px; }
.ring-2 { width: 700px; height: 700px; }
.ring-3 { width: 1000px; height: 1000px; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta .eyebrow { display: inline-block; margin-bottom: 20px; }
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.final-cta .sub-p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.60);
  max-width: 440px;
  margin: 0 auto 52px;
  line-height: 1.80;
}
.cta-contact-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.cta-contact-row a {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
}
.cta-contact-row a:hover { color: var(--gold); }

/* ─── FOOTER (shared) ────────────────────────────── */
footer { background: #07101E; padding: 72px 0 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 72px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .wordmark {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--white);
}
.footer-brand .sub-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.footer-brand p {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 220px;
}
.footer-nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col h4,
.footer-contact-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-contact-col p,
.footer-contact-col a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  display: block;
  transition: color 0.2s;
}
.footer-contact-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}
.footer-bottom p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 44px; }
  .nav-inner { padding: 0 44px; }
  .hero-content .container { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .pos-inner { grid-template-columns: 1fr; gap: 48px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .proj-card.featured { grid-row: span 1; }
  .proj-card.featured .aspect-box { min-height: 320px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-contact-col { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .container { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .guarantee-banner { grid-template-columns: 1fr; padding: 40px 32px; }
  .guarantee-points { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 140px 0 72px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cta-contact-row { flex-direction: column; gap: 16px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 38px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .projects-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps .step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  .process-steps .step-dot { flex-shrink: 0; }
}
