:root {
  --navy: #0d1f2d;
  --deep: #091520;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --stone: #e0d8cc;
  --muted: #8a8a7a;
  --white: #fdfcfa;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: linear-gradient(to bottom, rgba(9,21,32,0.98) 0%, transparent 100%);
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
nav.site-nav.scrolled { background: rgba(9,21,32,0.98); }

.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--stone);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.3s;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--deep) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 60px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
    linear-gradient(135deg, #091520 0%, #0d1f2d 50%, #091520 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 70% 50%, black 0%, transparent 70%);
}
.hero-content { position: relative; max-width: 700px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--stone);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}
.hero-stat-strip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 48px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
}
.hero-stat { text-align: right; }
.hero-stat .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--deep) !important;
  padding: 16px 40px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  color: var(--deep) !important;
}
.btn-ghost {
  color: var(--stone) !important;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--gold) !important; }
.btn-ghost::after { content: '→'; transition: transform 0.3s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

/* ── PAIN SECTION ── */
.pain {
  padding: 120px 60px;
  background: var(--navy);
  position: relative;
}
.pain::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pain-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 680px;
  line-height: 1.2;
}
.pain-headline em { font-style: italic; color: var(--gold-light); }
.pain-intro {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 580px;
  margin-bottom: 72px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pain-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 48px 40px;
  transition: background 0.3s;
}
.pain-card:hover { background: rgba(201,168,76,0.04); }
.pain-icon { font-size: 1.8rem; margin-bottom: 24px; opacity: 0.7; }
.pain-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--cream);
}
.pain-text { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }

/* VS TABLE */
.pain-vs { text-align: center; padding: 80px 0 0; }
.vs-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.vs-table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}
.vs-col { padding: 40px; }
.vs-col.them {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}
.vs-col.us {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.3);
}
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  background: rgba(255,255,255,0.01);
}
.vs-divider span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--muted);
  font-style: italic;
}
.vs-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.vs-col.them .vs-col-title { color: var(--muted); }
.vs-col.us .vs-col-title { color: var(--gold); }
.vs-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.vs-item .check { font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.vs-col.them .check { color: #c05050; opacity: 0.7; }
.vs-col.us .check { color: var(--gold); }
.vs-col.them .vs-item { color: var(--muted); }
.vs-col.us .vs-item { color: var(--stone); }

/* ── SERVICES ── */
.services { padding: 120px 60px; background: var(--deep); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}
.services-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  max-width: 480px;
}
.services-headline em { font-style: italic; color: var(--gold-light); }
.services-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 300px;
  text-align: right;
  line-height: 1.7;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
}
.service-item {
  background: var(--deep);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.service-item:hover { background: rgba(13,31,45,0.95); }
.service-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.service-item:hover::after { transform: scaleX(1); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--cream);
}
.service-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

/* ── PHILOSOPHY ── */
.philosophy { padding: 120px 60px; background: var(--navy); }
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.philosophy-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 32px;
}
.philosophy-headline em { font-style: italic; color: var(--gold-light); }
.philosophy-body { font-size: 0.95rem; color: var(--stone); line-height: 1.9; margin-bottom: 24px; }
.quote-block {
  border-left: 2px solid var(--gold);
  padding: 24px 32px;
  margin: 48px 0;
  background: rgba(201,168,76,0.04);
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
}
.philosophy-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.philo-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 36px 28px;
  text-align: center;
}
.philo-card:first-child {
  grid-column: span 2;
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.3);
}
.philo-card .big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.philo-card .caption {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PROCESS ── */
.process { padding: 120px 60px; background: var(--deep); }
.process-header { text-align: center; margin-bottom: 80px; }
.process-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-top: 16px;
  line-height: 1.2;
}
.process-headline em { font-style: italic; color: var(--gold-light); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3));
}
.process-step { padding: 0 32px; text-align: center; }
.step-circle {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  background: var(--deep);
  position: relative;
  z-index: 1;
}
.step-circle span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--cream);
}
.step-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.8; }

/* ── CTA ── */
.cta-section {
  padding: 120px 60px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '"';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40rem;
  line-height: 0.8;
  color: rgba(201,168,76,0.04);
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-headline em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  font-size: 1rem;
  color: var(--stone);
  max-width: 480px;
  margin: 0 auto 52px;
  line-height: 1.8;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.cta-note {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── BLOG ── */
.blog-section { padding: 120px 60px; background: var(--deep); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.blog-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 40px;
  transition: background 0.3s;
  text-decoration: none;
  display: block;
  color: var(--cream);
}
.blog-card:hover { background: rgba(201,168,76,0.04); color: var(--cream); }
.blog-date {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--cream);
}
.blog-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
  text-decoration: none;
}

/* ── CONTACT PAGE ── */
.contact-section { padding: 140px 60px 100px; background: var(--deep); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}
.contact-headline em { font-style: italic; color: var(--gold-light); }
.contact-body { font-size: 0.95rem; color: var(--stone); line-height: 1.9; margin-bottom: 40px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--stone);
}
.contact-detail .icon { color: var(--gold); font-size: 1.1rem; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 14px 18px;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { height: 140px; resize: vertical; }
.form-group select option { background: var(--navy); }
.form-success {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 20px;
  color: var(--gold);
  font-size: 0.9rem;
  display: none;
}

/* ── FOOTER ── */
footer.site-footer {
  background: var(--deep);
  padding: 60px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo img { height: 90px; width: auto; margin-bottom: 20px; display: block; }
.footer-brand p { font-size: 0.83rem; color: var(--muted); line-height: 1.8; max-width: 340px; }
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-legal { font-size: 0.73rem; color: rgba(138,138,122,0.7); line-height: 1.8; max-width: 700px; }
.footer-links { display: flex; gap: 28px; flex-shrink: 0; }
.footer-links a {
  font-size: 0.73rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-copy {
  text-align: center;
  margin-top: 32px;
  font-size: 0.72rem;
  color: rgba(138,138,122,0.4);
  letter-spacing: 0.15em;
}

/* ── SINGLE POST ── */
.single-post-section { padding: 140px 60px 100px; background: var(--deep); }
.post-container { max-width: 760px; margin: 0 auto; }
.post-header { margin-bottom: 60px; }
.post-date {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}
.post-content { font-size: 1rem; color: var(--stone); line-height: 1.9; }
.post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  margin: 48px 0 20px;
}
.post-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin: 36px 0 16px;
}
.post-content p { margin-bottom: 24px; }
.post-content a { color: var(--gold); }
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 48px;
}
.post-back::before { content: '←'; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── CALENDLY MODAL ── */
.calendly-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9,21,32,0.92);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
.calendly-overlay.open { display: flex; }
.calendly-container {
  background: var(--navy);
  width: 90%;
  max-width: 900px;
  height: 80vh;
  position: relative;
  border: 1px solid rgba(201,168,76,0.2);
}
.calendly-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: var(--stone);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.calendly-close::after { content: '✕'; }
.calendly-container iframe { width: 100%; height: 100%; border: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav.site-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero, .pain, .services, .philosophy, .process, .cta-section,
  .blog-section, .contact-section, .single-post-section,
  footer.site-footer { padding-left: 24px; padding-right: 24px; }
  .hero-stat-strip { display: none; }
  .pain-grid, .services-list, .process-steps, .blog-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-sub { text-align: left; }
  .vs-table { grid-template-columns: 1fr; }
  .vs-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .cta-buttons { flex-direction: column; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}
