/* ============================================================
   BuildKrew — Main Stylesheet
   Design: Warm Off-White + Charcoal + Gold accent
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F8F6F1;
  --warm-white: #FDFCFA;
  --charcoal:   #1C1C1C;
  --slate:      #3A3A3A;
  --mid:        #6B6B6B;
  --border:     #E2DDD5;
  --gold:       #C9A84C;
  --gold-light: #DFC070;
  --gold-dark:  #A8882A;
  --gold-tint:  rgba(201, 168, 76, 0.10);
  --ff-head:    'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --transition: 0.3s ease;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  /* 항상 흰 배경 — 로고가 흰배경+검정이라 다크 위에서 안 보임 */
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar.scrolled {
  background: var(--warm-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  padding: 0.7rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ---- LOGO LOCKUP (image + BUILDKREW text) ---- */
.nav-logo-lockup {
  /* flex row, vertically centred, never shrink, never clip */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;        /* the whole lockup never shrinks */
  overflow: visible;     /* nothing gets clipped */
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;        /* image never shrinks */
  display: block;
  object-fit: contain;
  /* 네브바가 항상 흰 배경이므로 원본 로고 그대로 표시 */
  filter: none;
  transition: filter var(--transition);
}

.nav-logo-text {
  /* make absolutely sure the word BUILDKREW is never cut */
  white-space: nowrap;
  overflow: visible;
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal); /* 항상 다크 텍스트 — 흰 배경 네브바 */
  transition: color var(--transition);
}

/* ---- NAV MENU ---- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.85rem;
  color: var(--slate); /* 항상 다크 텍스트 */
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover { color: var(--gold); }

.nav-link.nav-cta {
  background: var(--gold);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-link.nav-cta:hover { background: var(--gold-dark); color: #fff; }

/* ---- HAMBURGER ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal); /* 항상 다크 */
  border-radius: 2px;
  display: block;
  transition: background var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://www.genspark.ai/api/files/s/xHZbeqHw?cache_control=3600') center/cover no-repeat;

}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,20,20,0.82) 0%, rgba(28,28,28,0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  max-width: 750px;
  margin-left: 2rem;
}

@media (min-width: 900px) {
  .hero-content { margin-left: max(2rem, calc((100vw - 1200px)/2)); }
}

.hero-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
}

.btn-full { width: 100%; justify-content: center; }

/* ---------- HERO STATS ---------- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-num {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ---------- TICKER ---------- */
.ticker-bar {
  background: var(--charcoal);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.ticker-track span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.ticker-dot {
  color: var(--gold) !important;
  font-size: 0.5rem !important;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 6rem 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 3rem;
}

/* ---------- ABOUT ---------- */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
}

.about-text strong { color: var(--charcoal); }

.about-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate);
}

.about-list li i { color: var(--gold); font-size: 1rem; }

.about-stats-panel {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.panel-stat { display: flex; flex-direction: column; }

.panel-num {
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.panel-unit {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.panel-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
}

/* ---------- SERVICES ---------- */
.services-section { background: var(--warm-white); }

.services-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.pillar-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pillar-staffing   { border-top: 4px solid var(--gold); }
.pillar-inspection { border-top: 4px solid var(--charcoal); }

/* 헤드헌팅 — 다른 카드와 동일하게, 골드 보더만 구분 */
.pillar-headhunting { border-top: 4px solid var(--gold-dark); }

.pillar-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-tint);
  border: 1px solid var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon i { color: var(--gold); font-size: 1.2rem; }

.pillar-title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pillar-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
}

.pillar-list li i { color: var(--gold); font-size: 0.7rem; }

.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  text-transform: uppercase;
  transition: gap var(--transition), color var(--transition);
}

.pillar-cta:hover { gap: 0.75rem; color: var(--gold); }

/* ---------- COMMITMENT ---------- */
.commitment-section { background: var(--charcoal); }

.commitment-section .section-title { color: #fff; }
.commitment-section .section-label { color: var(--gold-light); }

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.commitment-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.04);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.commitment-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.commitment-num {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}

.commitment-card h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.commitment-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ---------- WHY BUILDKREW ---------- */
.why-section { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.why-num {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.75rem;
}

.why-card h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.why-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-banner .btn-gold {
  background: #fff;
  color: var(--gold-dark);
  border-color: #fff;
}

.cta-banner .btn-gold:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

/* ---------- CONTACT ---------- */
.contact-section { background: var(--warm-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-person {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-avatar {
  width: 50px;
  height: 50px;
  background: var(--gold-tint);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- 연락처 카드 3개 상단 행 ---- */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition));
}

.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.contact-card-office { border-top-color: var(--charcoal); }

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-tint);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon i { color: var(--gold); font-size: 1.2rem; }

.contact-card-body h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.contact-role {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 0.35rem;
  transition: color var(--transition);
}

.contact-link:hover { color: var(--gold); }
.contact-link i { color: var(--gold); font-size: 0.8rem; width: 14px; flex-shrink: 0; }

.office-address {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.5rem;
}

.office-address i { color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; }

.contact-map-link {
  font-weight: 600;
  color: var(--gold-dark);
}
.contact-map-link:hover { color: var(--gold); }

.contact-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  background: var(--gold-tint);
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: var(--gold-dark);
}

/* ---- 하단 행: 지도(좌) + 폼(우) ---- */
.contact-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 520px;
  display: flex;
  flex-direction: column;
}

.contact-map-header {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.contact-map-header i { color: var(--gold); }

.contact-map-wrap iframe {
  flex: 1;
  display: block;
  border: 0;
  width: 100%;
}

.form-intro {
  font-size: 0.92rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-success {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---------- FOOTER ---------- */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.75); }

.footer-top { padding: 4rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

/* ---- FOOTER LOGO LOCKUP ---- */
.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  overflow: visible;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  /* 로고가 흰배경+검정이라 다크 푸터에서 흰 박스에 담아 표시 */
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  filter: none;
}

.footer-logo-text {
  white-space: nowrap;
  overflow: visible;
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: #fff;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}

.footer-bottom p { font-size: 0.8rem; text-align: center; color: rgba(255,255,255,0.35); }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stats-panel { flex-direction: row; justify-content: space-around; }
  .services-pillars { grid-template-columns: 1fr; }
  .commitment-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-cards-row { grid-template-columns: 1fr; }
  .contact-bottom-row { grid-template-columns: 1fr; }
  .contact-map-wrap { height: 340px; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    gap: 0;
  }

  .nav-menu.open { display: flex; }
  .nav-menu .nav-link { color: var(--slate); padding: 0.75rem 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-menu .nav-cta { margin-top: 0.5rem; text-align: center; justify-content: center; border: none; background: var(--gold); color: #fff; border-radius: 4px; }
  .nav-toggle { display: flex; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .commitment-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
