/* ============================================
   Ambition Commercial Services
   Aesthetic: refined, confident, editorial
   Palette: deep forest + warm cream + brass accent
   ============================================ */

:root {
  --forest: #1a3a2e;
  --forest-deep: #0f2419;
  --forest-soft: #2d5443;
  --cream: #f5f1e8;
  --cream-warm: #ede6d3;
  --brass: #c9a961;
  --brass-deep: #a88b47;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-muted: #8a8a8a;
  --line: rgba(26, 58, 46, 0.12);
  --shadow-sm: 0 1px 2px rgba(15, 36, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 36, 25, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 36, 25, 0.12);
  --container: 1240px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--forest-deep);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brass-deep);
  margin-bottom: 1rem;
  display: inline-block;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

a { color: var(--forest); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brass-deep); }

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--forest-deep);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: var(--brass);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 400;
}

.nav-links a {
  color: var(--ink-soft);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest-deep); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%; height: 1px;
  background: var(--brass);
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.4rem;
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: 100px;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--brass-deep); color: var(--cream); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--forest-deep);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--forest-deep);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--brass-deep);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--forest-deep);
  border: 1px solid var(--forest-deep);
}
.btn-outline:hover {
  background: var(--forest-deep);
  color: var(--cream);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.25s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content .eyebrow { animation: fadeUp 0.8s ease both; }
.hero-content h1 {
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--brass-deep);
  font-weight: 300;
}

.hero-content p.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
  max-width: 540px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-trust {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero-trust-item strong {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--forest-deep);
}
.hero-trust-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

/* Hero visual — abstract composition */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
  animation: fadeIn 1.2s 0.3s ease both;
}

.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  border-radius: 200px 200px 8px 8px;
  overflow: hidden;
}
.hero-visual-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201, 169, 97, 0.25) 0%, transparent 50%);
}

.hero-visual-stat {
  position: absolute;
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-family: 'Inter', sans-serif;
}
.hero-visual-stat-1 {
  bottom: 20%;
  left: -15%;
  width: 220px;
}
.hero-visual-stat-2 {
  top: 12%;
  right: -10%;
  width: 200px;
}
.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--forest-deep);
  font-weight: 500;
  line-height: 1.2;
}
.stat-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   MARQUEE / LOGO STRIP
   ============================================ */
.marquee {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 1.5rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.marquee-track span { display: flex; align-items: center; gap: 4rem; }
.marquee-track span::after {
  content: '✦';
  color: var(--brass);
  font-size: 0.8rem;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION GENERICS
   ============================================ */
section { padding: 6rem 0; }

.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section { background: var(--cream); }

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

.service-card {
  background: var(--cream-warm);
  border-radius: 8px;
  padding: 2.25rem 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.service-card:hover {
  background: var(--forest-deep);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-icon { color: var(--cream); }
.service-card:hover .service-link { color: var(--brass); }

.service-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-deep);
  color: var(--brass);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--brass);
  color: var(--forest-deep);
}

.service-card h3 { margin-bottom: 0.75rem; transition: color 0.3s; }
.service-card p { font-size: 0.97rem; transition: color 0.3s; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-deep);
  transition: color 0.3s;
}

/* ============================================
   PROCESS / WHY US
   ============================================ */
.split-section { background: var(--cream-warm); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.process-list { list-style: none; }
.process-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.process-item:last-child { border-bottom: none; }
.process-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--brass-deep);
  line-height: 1;
}
.process-item h4 {
  margin-bottom: 0.5rem;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
}
.process-item p { font-size: 0.97rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--forest-deep); color: var(--cream); }
.testimonials .eyebrow { color: var(--brass); }
.testimonials h2 { color: var(--cream); }

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

.testimonial {
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--brass);
  position: absolute;
  top: 1rem; left: 1.5rem;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.75rem;
  margin-top: 1rem;
  line-height: 1.5;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 500;
}
.author-name {
  font-family: 'Inter', sans-serif;
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
}
.author-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(245, 241, 232, 0.6);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--cream);
  text-align: center;
  padding: 7rem 0;
  position: relative;
}
.cta-band h2 {
  max-width: 720px;
  margin: 0 auto 1.5rem;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--brass-deep);
  font-weight: 300;
}
.cta-band p {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { color: var(--cream); }
.footer-brand p {
  margin-top: 1rem;
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col a {
  color: rgba(245, 241, 232, 0.75);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
}
.footer-col a:hover { color: var(--brass); }

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(245, 241, 232, 0.5);
}

/* ============================================
   PAGE-SPECIFIC: Inner page hero
   ============================================ */
.page-hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* Breadcrumb */
.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--forest-deep); }

/* ============================================
   FORM
   ============================================ */
.form-section { background: var(--cream); padding: 6rem 0; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.form-info h2 { margin-bottom: 1.5rem; }
.form-info > p { margin-bottom: 2.5rem; font-size: 1.1rem; }

.contact-detail {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-deep);
  flex-shrink: 0;
}
.contact-detail-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.contact-detail-text strong {
  display: block;
  color: var(--forest-deep);
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.contact-detail-text span { color: var(--ink-soft); }

.form-card {
  background: var(--cream-warm);
  padding: 3rem;
  border-radius: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest-deep);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ============================================
   ABOUT/SERVICES INNER CONTENT
   ============================================ */
.content-section { padding: 6rem 0; background: var(--cream); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.content-section.alt { background: var(--cream-warm); }
.content-section.alt .content-grid { direction: rtl; }
.content-section.alt .content-grid > * { direction: ltr; }

.content-img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.content-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201, 169, 97, 0.3) 0%, transparent 60%);
}
.content-img-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 1.4rem;
  font-weight: 300;
}

.content-text .eyebrow { margin-bottom: 1rem; }
.content-text h2 { margin-bottom: 1.5rem; }
.content-text p { margin-bottom: 1.25rem; }
.content-text ul {
  list-style: none;
  margin-top: 1.5rem;
}
.content-text ul li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  font-family: 'Inter', sans-serif;
  color: var(--ink-soft);
}
.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brass-deep);
  font-weight: 600;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  position: relative;
}
.price-card.featured {
  background: var(--forest-deep);
  color: var(--cream);
  border-color: var(--forest-deep);
  transform: scale(1.03);
}
.price-card.featured h3, .price-card.featured .price { color: var(--cream); }
.price-card.featured p, .price-card.featured ul li { color: rgba(245, 241, 232, 0.85); }
.price-card.featured .price-tag {
  background: var(--brass);
  color: var(--forest-deep);
}
.price-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--brass);
  color: var(--forest-deep);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card h3 { margin-bottom: 0.5rem; }
.price-card .desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.price {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--forest-deep);
  margin-bottom: 0.25rem;
}
.price small {
  font-size: 0.95rem;
  color: var(--ink-muted);
  font-family: 'Inter', sans-serif;
}
.price-card ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.price-card ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-weight: 600;
}
.price-card .btn { width: 100%; justify-content: center; }

/* FAQ */
.faq-section { background: var(--cream-warm); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest-deep);
  padding: 0.5rem 0;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--brass-deep);
  transition: transform 0.3s;
}
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-item p {
  padding-top: 1rem;
  font-size: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; gap: 3rem; }
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-section.alt .content-grid { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 700px) {
  .container { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-cta { display: none; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
  }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 2rem 1.5rem; }
  .hero { padding: 3rem 0 4rem; }
  .hero-visual-stat-1 { left: 0; width: 180px; }
  .hero-visual-stat-2 { right: 0; width: 170px; }
}
