/* Pro General Services - Variation 1: Fresh & Friendly */
:root {
  /* Colors - inspired by flyer but refined */
  --navy-900: #0B2447;
  --navy-800: #142d5e;
  --navy-700: #1e3a7a;
  --navy-600: #2a4fa3;
  --mint-700: #0F7A6E;
  --mint-500: #5FD6C4;
  --mint-400: #7FE0D1;
  --mint-300: #A9ECDF;
  --mint-100: #E4F8F3;
  --sun-500: #FFB547;
  --sun-400: #FFC870;
  --coral-500: #FF6B6B;
  --coral-400: #FF8A8A;
  --ink: #0E1430;
  --ink-60: #4A5275;
  --ink-40: #8189A6;
  --paper: #FDFCF8;
  --paper-warm: #FFF8EC;
  --line: #E7E3D8;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(11,36,71,0.06);
  --shadow: 0 12px 32px rgba(11,36,71,0.10);
  --shadow-lg: 0 24px 56px rgba(11,36,71,0.14);

  --font-display: 'Fraunces', 'DM Serif Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== Layout ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 clamp(24px, 4.5vw, 64px); }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 clamp(24px, 4.5vw, 64px); }

/* ===== Top Bar ===== */
.topbar {
  background: var(--navy-900);
  color: var(--mint-300);
  font-size: 13px;
  padding: 10px 0;
  letter-spacing: 0.01em;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; color: var(--mint-300); transition: color .15s; }
.topbar a:hover { color: white; }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar svg { width: 14px; height: 14px; }

/* ===== Nav ===== */
.nav {
  background: var(--white);
  border-bottom: 1px solid #DCD6C4;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(11,36,71,0.06);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--navy-900); }
.logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--mint-500);
  display: grid; place-items: center;
  color: var(--navy-900);
  box-shadow: inset 0 -3px 0 rgba(11,36,71,0.12);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text small { font-size: 10px; letter-spacing: 0.14em; color: var(--mint-700); font-weight: 700; text-transform: uppercase; }

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-link {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-60);
  transition: all .15s;
}
.nav-link:hover { color: var(--navy-900); background: var(--mint-100); }
.nav-link.active { color: var(--navy-900); background: var(--mint-100); font-weight: 600; }

.nav-cta {
  background: var(--navy-900);
  color: white;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .18s;
}
.nav-cta:hover { background: var(--navy-800); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

.mobile-toggle { display: none; background: var(--navy-900); color: white; width: 40px; height: 40px; border-radius: 10px; place-items: center; }
.mobile-toggle svg { width: 20px; height: 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all .18s;
  cursor: pointer;
}
.btn-primary { background: var(--navy-900); color: white; }
.btn-primary:hover { background: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-mint { background: var(--mint-500); color: var(--navy-900); }
.btn-mint:hover { background: var(--mint-400); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(95,214,196,0.4); }
.btn-sun { background: var(--sun-500); color: var(--navy-900); }
.btn-sun:hover { background: var(--sun-400); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy-900); border: 1.5px solid var(--navy-900); }
.btn-ghost:hover { background: var(--navy-900); color: white; }
.btn svg { width: 16px; height: 16px; }

/* ===== Typography ===== */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(44px, 6.5vw, 88px);
  color: var(--navy-900);
}
.display em { font-style: italic; color: #2AA896; font-weight: 600; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mint-700);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--mint-700); border-radius: 2px;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  color: var(--navy-900);
}
.h2 em { font-style: italic; color: #2AA896; font-weight: 600; }
.h3 { font-size: 22px; font-weight: 700; color: var(--navy-900); letter-spacing: -0.01em; }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-60); line-height: 1.55; max-width: 58ch; }

/* ===== Hero ===== */
.hero {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
  background: #fafffd;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy .display { margin-bottom: 22px; }
.hero-copy .lede { margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--navy-900); letter-spacing: -0.02em; }
.hero-stat-label { font-size: 12px; color: var(--ink-60); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 5/6;
  max-width: 560px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy-900);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--sun-500);
  color: var(--navy-900);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
  rotate: -4deg;
}
.hero-visual-badge svg { width: 16px; height: 16px; }

.sparkle { position: absolute; color: var(--mint-500); opacity: 0.6; }
.sparkle svg { width: 100%; height: 100%; }

/* ===== Trust bar ===== */
.trust {
  padding: 32px 0;
  background: var(--navy-900);
  color: var(--mint-300);
}
.trust-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mint-500); font-weight: 600; }
.trust-items { display: flex; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; color: var(--mint-500); }

/* ===== Sections ===== */
section.block { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .h2 { margin-bottom: 18px; }

/* ===== Services cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--mint-300); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--mint-100);
  color: var(--navy-900);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.service-card:nth-child(2) .service-icon { background: #FFF3DC; color: #B5731A; }
.service-card:nth-child(3) .service-icon { background: #FFE4E4; color: #C13A3A; }
.service-card:nth-child(4) .service-icon { background: #E4F0FF; color: var(--navy-700); }
.service-card:nth-child(5) .service-icon { background: var(--mint-100); color: var(--navy-900); }
.service-card:nth-child(6) .service-icon { background: #F3E8FF; color: #6B3AA0; }
.service-card:nth-child(7) .service-icon { background: #FFF3DC; color: #B5731A; }

.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; letter-spacing: -0.01em; }
.service-card p { color: var(--ink-60); font-size: 14.5px; line-height: 1.55; margin-bottom: 18px; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.service-card li { display: flex; align-items: start; gap: 8px; font-size: 13.5px; color: var(--ink); }
.service-card li svg { width: 14px; height: 14px; color: var(--mint-500); flex-shrink: 0; margin-top: 3px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--navy-900);
  padding-top: 14px; border-top: 1px solid var(--line);
  width: 100%;
}
.service-link svg { width: 14px; height: 14px; transition: transform .18s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* Featured service card */
.service-card.featured {
  background: var(--navy-900);
  color: white;
  border-color: var(--navy-900);
}
.service-card.featured h3 { color: white; }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-card.featured li { color: rgba(255,255,255,0.9); }
.service-card.featured .service-icon { background: var(--mint-500); color: var(--navy-900); }
.service-card.featured .service-link { color: var(--mint-500); border-color: rgba(255,255,255,0.15); }

/* ===== How it works ===== */
.how {
  background: var(--paper-warm);
  border-radius: var(--radius-xl);
  padding: 72px;
  position: relative;
  overflow: hidden;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}
.how-step { text-align: left; }
.how-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--mint-500);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.how-step h4 { font-size: 18px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--ink-60); line-height: 1.55; }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 22px;
}
.stars { display: flex; gap: 3px; color: var(--sun-500); }
.stars svg { width: 18px; height: 18px; }
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  color: var(--navy-900);
  font-weight: 500;
  letter-spacing: -0.01em;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mint-500); color: var(--navy-900);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
}
.avatar.variant-2 { background: var(--sun-500); }
.avatar.variant-3 { background: var(--coral-400); color: white; }
.author-info { line-height: 1.25; }
.author-name { font-weight: 700; font-size: 14px; color: var(--navy-900); }
.author-role { font-size: 12px; color: var(--ink-60); }

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--navy-900);
  color: white;
  border-radius: var(--radius-xl);
  padding: 72px 72px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 40px;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--mint-500), transparent 70%);
  opacity: 0.25;
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun-500), transparent 70%);
  opacity: 0.2;
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 3.5vw, 44px); line-height: 1.08;
  letter-spacing: -0.02em; color: white;
  margin-bottom: 14px;
}
.cta-banner h2 em { color: var(--mint-500); font-style: italic; font-weight: 500; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 46ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }

/* ===== Footer ===== */
.footer {
  background: var(--navy-900);
  color: var(--mint-300);
  padding: 80px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand .logo { color: white; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; max-width: 30ch; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--mint-300);
  transition: all .18s;
}
.footer-social a:hover { background: var(--mint-500); color: var(--navy-900); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  color: white; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.7); transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-col .contact-row { display: flex; gap: 10px; align-items: start; color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-col .contact-row svg { width: 16px; height: 16px; color: var(--mint-500); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 16px;
}

/* ===== Page header (for internal pages) ===== */
.page-header {
  padding: 72px 0 56px;
  background: #fafffd;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header .breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--ink-60); margin-bottom: 18px;
}
.page-header .breadcrumb svg { width: 12px; height: 12px; }
.page-header .breadcrumb a:hover { color: var(--navy-900); }
.page-header h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 5vw, 64px); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--navy-900);
  margin-bottom: 14px;
}
.page-header h1 em { color: #2AA896; font-style: italic; font-weight: 600; }
.page-header .lede { max-width: 60ch; }
.page-header-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: end; }

/* ===== Services page - detail cards ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { grid-template-columns: 1.2fr 1fr; }
.service-detail.reverse .service-detail-visual { order: 2; }
.service-detail-visual {
  aspect-ratio: 4/3.2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--navy-900);
}
.service-detail-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-visual .tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--sun-500); color: var(--navy-900);
  padding: 8px 14px; border-radius: 999px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}
.service-detail-content { padding: 0 12px; }
.service-detail-content .eyebrow { margin-bottom: 14px; }
.service-detail-content h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.02em;
  color: var(--navy-900); margin-bottom: 14px; line-height: 1.1;
}
.service-detail-content p { color: var(--ink-60); font-size: 16px; line-height: 1.6; margin-bottom: 22px; max-width: 48ch; }
.included-title {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--navy-900); margin-bottom: 14px;
}
.included-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px;
  list-style: none; margin-bottom: 26px;
}
.included-list li { display: flex; gap: 10px; align-items: start; font-size: 14.5px; }
.included-list li svg { width: 16px; height: 16px; color: var(--mint-500); flex-shrink: 0; margin-top: 3px; }

/* ===== About page ===== */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-stat {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.about-stat .n { font-family: var(--font-display); font-size: 44px; font-weight: 600; color: var(--navy-900); line-height: 1; letter-spacing: -0.03em; }
.about-stat .n em { color: var(--mint-500); font-style: italic; }
.about-stat .l { font-size: 13px; color: var(--ink-60); margin-top: 8px; letter-spacing: 0.04em; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--mint-100);
}
.value:nth-child(2) { background: var(--paper-warm); }
.value:nth-child(3) { background: #FFE4E4; }
.value-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: white; color: var(--navy-900);
  display: grid; place-items: center; margin-bottom: 18px;
}
.value-icon svg { width: 24px; height: 24px; }
.value h4 { font-size: 20px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; letter-spacing: -0.01em; }
.value p { font-size: 14.5px; color: var(--ink-60); line-height: 1.55; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}
.team-photo {
  aspect-ratio: 1/1;
  background: var(--mint-300);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 72px; font-weight: 600; color: var(--navy-900);
}
.team-card:nth-child(2) .team-photo { background: var(--sun-400); }
.team-card:nth-child(3) .team-photo { background: var(--coral-400); color: white; }
.team-info { padding: 22px; }
.team-info h4 { font-size: 18px; font-weight: 700; color: var(--navy-900); }
.team-info .role { font-size: 13px; color: var(--mint-500); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 2px; }
.team-info p { font-size: 14px; color: var(--ink-60); line-height: 1.5; margin-top: 12px; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 48px;
}
.contact-info {
  background: var(--navy-900);
  color: white;
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: ''; position: absolute;
  right: -80px; bottom: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mint-500), transparent 70%);
  opacity: 0.25;
}
.contact-info-content { position: relative; z-index: 2; }
.contact-info h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 36px; letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 14px; color: white;
}
.contact-info h2 em { color: var(--mint-500); font-style: italic; font-weight: 500; }
.contact-info > .contact-info-content > p { color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.55; }
.contact-methods { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-method {
  display: flex; gap: 14px; align-items: start;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  transition: all .18s;
}
.contact-method:hover { background: rgba(255,255,255,0.1); }
.contact-method-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--mint-500); color: var(--navy-900);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-method-icon svg { width: 18px; height: 18px; }
.contact-method .l { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.contact-method .v { font-size: 16px; font-weight: 600; color: white; }
.hours-title { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; margin-bottom: 14px; }
.hours-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 14px; color: rgba(255,255,255,0.85); }
.hours-list li span:last-child { color: var(--mint-300); font-weight: 600; }

/* Form */
.contact-form {
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: white;
}
.contact-form h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 32px; letter-spacing: -0.02em; color: var(--navy-900); margin-bottom: 8px;
}
.contact-form > p { color: var(--ink-60); margin-bottom: 32px; font-size: 15px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
.form-row.three { grid-template-columns: repeat(3, 1fr); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: var(--navy-900); letter-spacing: 0.01em; }
.field label .req { color: var(--coral-500); }
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: 15px;
  color: var(--ink);
  transition: all .15s;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy-900);
  background: white;
  box-shadow: 0 0 0 4px rgba(11,36,71,0.08);
}
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-chip {
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-60);
  cursor: pointer;
  transition: all .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.radio-chip input { display: none; }
.radio-chip.selected {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: white;
}

.form-submit { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; gap: 16px; flex-wrap: wrap; }
.form-submit .note { font-size: 13px; color: var(--ink-60); max-width: 28ch; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid, .about-intro, .contact-grid, .page-header-grid { grid-template-columns: 1fr; gap: 40px; }
  .display { font-size: clamp(40px, 8vw, 64px); line-height: 1.05; }
  .hero-copy .display { margin-bottom: 28px; }
  .services-grid, .testimonials-grid, .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 48px; }
  .how { padding: 48px; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-visual { order: 0; }
  .included-list { grid-template-columns: 1fr; }
  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: grid; }
  .nav.nav-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); padding: 16px clamp(24px, 4.5vw, 64px) 20px;
    gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(11,36,71,0.08);
  }
  .nav.nav-open .nav-link { padding: 14px 16px; font-size: 15px; border-radius: 8px; }
  .nav.nav-open .nav-cta { margin-top: 8px; justify-content: center; }
  section.block { padding: 64px 0; }
}
@media (max-width: 640px) {
  .services-grid, .testimonials-grid, .values-grid, .team-grid, .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 56px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-visual, .collage { display: none; }
  .about-stats { grid-template-columns: 1fr; }
  .container, .container-narrow { padding: 0 20px; }
  .topbar-right { display: none; }
  .topbar-left { justify-content: center; width: 100%; gap: 16px; font-size: 12px; }
  .contact-info, .contact-form { padding: 28px; }
  .how { padding: 28px; }
  .cta-banner { padding: 32px; }
}
