/* ============== RESET / BASE ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

:root {
  --navy-900: #0b1430;
  --navy-800: #102043;
  --navy-700: #1e3a8a;
  --navy-100: #e0e7ff;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --accent: #D97706;
  --accent-soft: #FEF3C7;
  --accent-text: #92400E;
  --container: 1240px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --shadow-md: 0 4px 14px -2px rgba(15,23,42,.08), 0 2px 6px -1px rgba(15,23,42,.04);
  --shadow-lg: 0 24px 48px -12px rgba(15,23,42,.18), 0 8px 16px -8px rgba(15,23,42,.08);
}

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

h1, h2, h3, h4 {
  font-family: "Fraunces", "Inter", serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--slate-900);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; line-height: 1.65; color: var(--slate-600); text-wrap: pretty; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 15px; border-radius: 12px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--navy-900);
  color: white;
  box-shadow: 0 8px 20px -8px rgba(11,20,48,.5);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 12px 24px -10px var(--accent); }
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-outline {
  background: white;
  color: var(--slate-900);
  border-color: var(--slate-300);
}
.btn-outline:hover { border-color: var(--slate-900); }
.btn-ghost-light {
  background: rgba(255,255,255,.1);
  color: white;
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.site-header.scrolled {
  border-bottom-color: var(--slate-200);
  box-shadow: 0 4px 12px -8px rgba(15,23,42,.1);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  font-weight: 500;
}
.nav-desktop {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-desktop a {
  color: var(--slate-700);
  position: relative;
  padding: 6px 0;
  transition: color .15s;
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}
.nav-desktop a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-900);
}
.phone-link svg { width: 18px; height: 18px; color: var(--accent); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 8px;
  color: var(--slate-900);
  cursor: pointer;
}
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--slate-200);
  background: white;
}
.nav-mobile a {
  padding: 12px 4px;
  font-weight: 500;
  border-bottom: 1px solid var(--slate-100);
}
.nav-mobile .btn { margin-top: 12px; }

@media (max-width: 1024px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============== HERO COMMON ============== */
.eyebrow, .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-700);
  padding: 8px 14px;
  background: var(--slate-100);
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow.light, .hero-eyebrow.light {
  background: rgba(255,255,255,.08);
  color: white;
  border: 1px solid rgba(255,255,255,.15);
}
.eyebrow.dark, .hero-eyebrow.dark {
  background: var(--slate-100);
  color: var(--slate-700);
}
.eyebrow .dot, .hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 25%, transparent);
}

/* ============== HERO IMAGE ============== */
.hero-image {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}
.hero-image .hero-eyebrow {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11,20,48,.92) 0%, rgba(11,20,48,.7) 45%, rgba(11,20,48,.4) 100%),
    linear-gradient(to top, rgba(11,20,48,.6), transparent 50%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 24px 100px;
  max-width: 880px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: white;
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-title.dark { color: var(--slate-900); }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin-bottom: 36px;
}
.hero-sub.dark { color: var(--slate-600); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 600px;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: "Fraunces", serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stats span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}

/* ============== HERO SPLIT ============== */
.hero-split {
  background: var(--slate-50);
  padding: 80px 0;
  border-bottom: 1px solid var(--slate-200);
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-split-content { padding: 20px 0; }
.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}
.hero-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.hero-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.card-icon {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
  font-weight: 600;
  margin-bottom: 2px;
}
.card-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-900);
}
.accent-text { color: var(--accent); }

/* ============== HERO TYPO ============== */
.hero-typo {
  background: var(--slate-50);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-typo::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, color-mix(in oklch, var(--accent) 20%, transparent), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.hero-typo-inner { position: relative; z-index: 1; max-width: 1000px; }
.hero-typo-title {
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  font-weight: 600;
}
.hero-typo-sub { max-width: 600px; font-size: 19px; }
.hero-typo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-200);
}
.hero-typo-strip div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-typo-strip svg { width: 20px; height: 20px; color: var(--accent); }

@media (max-width: 900px) {
  .hero-image { min-height: 600px; }
  .hero-inner { padding: 80px 24px 60px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-typo { padding: 80px 0 60px; }
}

/* ============== SECTIONS ============== */
.section {
  padding: 100px 0;
}
.section-alt { background: var(--slate-50); }
.section-dark { background: var(--navy-900); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,.75); }

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-head p {
  font-size: 17px;
  color: var(--slate-600);
}
.section-dark .section-head p { color: rgba(255,255,255,.75); }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
}

/* ============== SERVICES ============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-300);
}
.service-card:hover::before { transform: scaleX(1); }
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.service-num {
  font-family: "Fraunces", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-400);
  letter-spacing: 0.05em;
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: background .25s, color .25s;
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: white;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.service-card p { font-size: 15px; line-height: 1.6; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px; }
}

/* ============== ABOUT ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-photo-card {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: white;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.about-photo-card-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about-photo-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  font-weight: 600;
}
.about-photo-card-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.25;
}
.about-content h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-content .lead {
  font-size: 18px;
  color: var(--slate-700);
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-list {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--slate-700);
}
.about-list svg {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 480px; margin: 0 auto; }
}

/* ============== PROCESS ============== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 32px 24px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
}
.process-num {
  font-family: "Fraunces", serif;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.process-step p { font-size: 14px; line-height: 1.6; }
.process-line {
  position: absolute;
  top: 56px;
  right: -20px;
  width: 28px;
  height: 2px;
  background: var(--slate-200);
  z-index: 0;
}
.process-line::after {
  content: "";
  position: absolute;
  right: -2px; top: -3px;
  width: 8px; height: 8px;
  border-top: 2px solid var(--slate-200);
  border-right: 2px solid var(--slate-200);
  transform: rotate(45deg);
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============== TESTIMONIALS ============== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .25s, transform .25s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate-700);
  font-family: "Fraunces", serif;
  font-weight: 400;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.testimonial-name { font-weight: 600; color: var(--slate-900); font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--slate-500); }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px; }
}

/* ============== FAQ ============== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 15%, transparent); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--slate-900);
  gap: 16px;
}
.faq-icon {
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
}
.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a-wrap { max-height: 400px; }
.faq-a {
  padding: 0 24px 22px;
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.65;
}

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
.contact-info h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}
.contact-lead {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  color: var(--accent);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ci-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  margin-bottom: 4px;
}
.ci-value {
  font-size: 16px;
  color: white;
  font-weight: 500;
  line-height: 1.4;
}
a.ci-value:hover { color: var(--accent); }

.contact-form {
  background: white;
  color: var(--slate-900);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: contents; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
}
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--slate-900);
  background: white;
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 18%, transparent);
}
.form-field input.error, .form-field textarea.error {
  border-color: #dc2626;
  background: #fef2f2;
}
.form-error {
  font-size: 12px;
  color: #dc2626;
  font-weight: 500;
}
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.5;
  cursor: pointer;
}
.form-consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); }

.contact-success {
  grid-column: 1 / -1;
  background: white;
  color: var(--slate-900);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.success-icon {
  width: 72px; height: 72px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 36px; height: 36px; }
.contact-success h2 { font-size: 32px; margin-bottom: 12px; color: var(--slate-900); }
.contact-success p { font-size: 16px; color: var(--slate-600); margin-bottom: 28px; }
.contact-success a { color: var(--accent); font-weight: 600; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 24px 40px;
}
.footer-grid .brand { margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--slate-600); line-height: 1.6; max-width: 280px; }
.footer-head {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-900);
  font-weight: 700;
  margin-bottom: 18px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer ul a {
  font-size: 14px;
  color: var(--slate-600);
  transition: color .15s;
}
.site-footer ul a:hover { color: var(--accent); }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-600);
}
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--slate-200);
  padding: 20px 0;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--slate-500);
}
.footer-cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--slate-700);
}
.footer-cert svg { width: 18px; height: 18px; color: var(--accent); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 24px 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
