/* ====================================================
   Monday Mediation Co.
   Soft Sage — Elevated
==================================================== */

:root {
  /* Warmed sage palette — bridges to logo cream */
  --sage-50:  #f0ede0;
  --sage-100: #e6e9dc;
  --sage-200: #d8ddd1;
  --sage-300: #c4cdc0;
  --sage-400: #a8b3a4;
  --sage-500: #8a9a8c;
  --sage-600: #6b7d6d;
  --sage-700: #4a5a4c;
  --sage-800: #2c3a2e;
  --sage-900: #1a2a1c;

  /* Warm off-white — clean and bright, complements without competing */
  --cream-50:  #fefdf8;
  --cream-100: #fbf9f1;
  --cream-200: #f0ecdf;

  --bg: var(--sage-100);
  --bg-soft: var(--sage-50);
  --bg-deep: var(--sage-200);
  --bg-warm: var(--cream-100);
  --bg-warm-soft: var(--cream-50);

  --ink: var(--sage-800);
  --ink-soft: var(--sage-700);
  --muted: var(--sage-600);
  --muted-light: var(--sage-500);
  --line: var(--sage-300);
  --line-warm: #e6e0c8;
  --line-soft: var(--sage-200);
  --accent: var(--sage-600);

  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============= Typography ============= */

.display, .h-display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.05;
  color: var(--ink);
}

.display {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.display em, .h-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
}

.h-display {
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  margin-bottom: 1rem;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-light);
  font-weight: 400;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--muted-light);
}

.eyebrow.no-line::before { display: none; }

.center .eyebrow { justify-content: center; }

.lede {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 36em;
  font-weight: 300;
}

.center { text-align: center; }
.center.lede, .center.h-display { margin-left: auto; margin-right: auto; }
.mt-lg { margin-top: 3.5rem; }

.prose p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

.prose p:last-child { margin-bottom: 0; }

.divider-line {
  width: 32px;
  height: 1px;
  background: var(--muted);
  margin-bottom: 0.75rem;
}

/* ============= Buttons ============= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--sage-50);
}

.btn-primary:hover {
  background: var(--sage-900);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--sage-50);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 0.5px solid var(--ink);
  transition: gap 0.3s ease;
}

.btn-link:hover { gap: 0.85rem; }

/* ============= Header ============= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 241, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--line-warm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 130px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  overflow: hidden;
}

.logo-img {
  height: 360px;
  width: auto;
  display: block;
  margin: -115px 0;
}

.nav {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: 2rem;
}

.nav a {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}

.nav a:hover, .nav a.active { color: var(--ink); }

.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0.5px;
  background: var(--ink);
}

.nav-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s ease;
}

/* ============= Hero ============= */

.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 640px;
  align-items: stretch;
}

.hero-content {
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 7vw, 6rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  animation: fadeUp 1s ease-out both;
}

.hero-content > .container-inner {
  max-width: 560px;
  margin-left: auto;
  width: 100%;
}

.hero h1 {
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.hero .lede {
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  background: var(--sage-200);
  overflow: hidden;
  animation: fadeIn 1.2s ease-out 0.2s both;
}

.hero-image {
  position: absolute;
  inset: clamp(1.5rem, 3vw, 2.5rem);
  background-size: cover;
  background-position: center;
  border: 0.5px solid var(--sage-300);
}

.hero-marker {
  position: absolute;
  top: clamp(1.5rem, 3vw, 2.5rem);
  right: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  background: var(--bg);
  padding: 0.5rem 0.85rem;
  z-index: 2;
}

.hero-caption {
  position: absolute;
  bottom: clamp(2rem, 3.5vw, 3rem);
  left: clamp(2rem, 3.5vw, 3rem);
  font-size: 0.65rem;
  color: var(--sage-50);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(44, 58, 46, 0.85);
  padding: 0.5rem 0.85rem;
  z-index: 2;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============= Pillars strip ============= */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
  background: var(--bg-warm);
}

.pillar {
  padding: 1.75rem 1.5rem;
  border-right: 0.5px solid var(--line-warm);
}

.pillar:last-child { border-right: none; }

.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.pillar-label {
  font-size: 0.78rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  font-weight: 300;
}

/* ============= Sections ============= */

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.section-quiet {
  background: var(--bg-deep);
}

.section-warm {
  background: var(--bg-warm);
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
}

.section-warm-soft {
  background: var(--bg-warm-soft);
}

.two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 5.5rem);
  align-items: start;
}

/* ============= Approach with image ============= */

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.approach-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--sage-200);
  background-size: cover;
  background-position: center;
  border: 0.5px solid var(--line);
}

.approach-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 60px;
  height: 60px;
  border-top: 0.5px solid var(--accent);
  border-left: 0.5px solid var(--accent);
}

.approach-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60px;
  height: 60px;
  border-bottom: 0.5px solid var(--accent);
  border-right: 0.5px solid var(--accent);
}

/* ============= Services preview ============= */

.services-preview {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  background: var(--bg-warm);
  border-top: 0.5px solid var(--line-warm);
  border-bottom: 0.5px solid var(--line-warm);
}

.services-head {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5px;
  background: var(--line-warm);
  border: 0.5px solid var(--line-warm);
}

.service {
  background: var(--bg-warm-soft);
  padding: 2.5rem 2.25rem;
  transition: background 0.4s ease;
  position: relative;
}

.service:hover { background: #fefcf6; }

.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.service h3 {
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.service p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
  font-weight: 300;
}

/* ============= How we meet section ============= */

.meet-section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.meet-head {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.meet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}

.meet-card {
  padding: 3rem 2.25rem;
  border-right: 0.5px solid var(--line);
}

.meet-card:last-child { border-right: none; }

.meet-icon {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.meet-card h3 {
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.meet-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  font-weight: 300;
}

.meet-area {
  margin-top: 3rem;
  text-align: center;
  padding: 0 1rem;
}

.meet-area-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.meet-area-label::before,
.meet-area-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--muted-light);
}

.meet-area-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 38em;
  margin: 0 auto;
  font-weight: 400;
}

@media (max-width: 700px) {
  .meet-grid { grid-template-columns: 1fr; }
  .meet-card { border-right: none; border-bottom: 0.5px solid var(--line); }
  .meet-card:last-child { border-bottom: none; }
}

/* ============= Quote feature ============= */

.quote-feature {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  position: relative;
  overflow: hidden;
}

.quote-feature-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.quote-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border: 0.5px solid var(--line);
}

.quote-block { padding: 1rem 0; }

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.quote-text::before {
  content: '\201C';
  color: var(--accent);
  margin-right: 0.05em;
}

.quote-text::after {
  content: '\201D';
  color: var(--accent);
  margin-left: 0.05em;
}

.quote-attr {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-attr::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--muted);
}

/* ============= CTA blocks ============= */

.cta {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.cta .lede {
  margin: 1.5rem auto 2.5rem;
}

/* ============= Page header ============= */

.page-header {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 0.5px solid var(--line);
  position: relative;
}

.page-header .display {
  max-width: 14ch;
}

.page-lede { margin-top: 1.75rem; }

.page-header-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.page-header-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border: 0.5px solid var(--line);
}

/* ============= Principles (About) ============= */

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 4.5rem;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.principle-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 0.85rem;
  letter-spacing: 0.1em;
}

.principle h3 {
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  border-top: 0.5px solid var(--line);
  padding-top: 1.25rem;
  letter-spacing: -0.01em;
}

.principle p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ============= Service detail (Services page) ============= */

.service-detail {
  display: grid;
  grid-template-columns: 80px 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: 4rem 0;
  border-top: 0.5px solid var(--line);
  align-items: start;
}

.service-detail:nth-child(even) .service-detail-image {
  order: -1;
}

.service-detail:nth-child(even) {
  grid-template-columns: 0.9fr 80px 1.1fr;
}

.service-detail:last-of-type { border-bottom: 0.5px solid var(--line); }

.service-detail-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border: 0.5px solid var(--line);
  width: 100%;
}

.service-detail-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.05em;
}

.service-detail h2 {
  font-size: clamp(1.75rem, 2.75vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.service-tag {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.service-detail-content p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-size: 1rem;
  font-weight: 300;
  max-width: 60ch;
}

/* ============= Process (Services page) ============= */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 6%;
  right: 6%;
  height: 0.5px;
  background: var(--line);
  z-index: 0;
}

.process-step { position: relative; z-index: 1; }

.process-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 0.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ============= Contact page ============= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

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

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 0;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--line);
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  font-weight: 300;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

.contact-form .btn { align-self: flex-start; margin-top: 0.5rem; }

.contact-info {
  background: var(--bg-soft);
  border: 0.5px solid var(--line);
  padding: 2.5rem;
  position: relative;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.contact-detail {
  padding: 1.25rem 0;
  border-top: 0.5px solid var(--line);
}

.contact-detail:first-of-type { border-top: none; padding-top: 0.5rem; }

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
}

.contact-value a { transition: color 0.25s ease; }
.contact-value a:hover { color: var(--accent); }

.contact-note {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.form-success {
  display: none;
  background: var(--bg-soft);
  border: 0.5px solid var(--line);
  padding: 2.5rem;
  text-align: center;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.form-success p { color: var(--muted); font-weight: 300; }

/* ============= Footer ============= */

.site-footer {
  background: var(--ink);
  color: var(--sage-50);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  margin-top: 0;
}

.site-footer .logo {
  overflow: hidden;
}

.site-footer .logo-img {
  height: 460px;
  margin: -80px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(240, 237, 224, 0.18);
}

.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--sage-200);
  margin-top: 1.25rem;
  max-width: 28ch;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-cols > div {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-300);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.footer-cols a {
  color: var(--sage-50);
  font-size: 0.92rem;
  transition: color 0.25s ease;
  font-weight: 300;
}

.footer-cols a:hover { color: var(--sage-300); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--sage-300);
  letter-spacing: 0.04em;
  font-weight: 300;
}

/* ============= Mobile ============= */

@media (max-width: 960px) {
  .header-inner { height: 95px; }
  .logo-img { height: 260px; margin: -82px 0; }
  .nav.open { top: 95px !important; }

  /* Footer mobile: stack column 1 cleanly, contain logo overflow */
  .site-footer .footer-inner > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer .logo {
    justify-content: center;
    width: 100%;
    height: 160px;
    overflow: hidden;
  }
  .site-footer .logo-img {
    height: 220px;
    margin: 0;
  }
  .site-footer .footer-tag {
    text-align: center;
    max-width: none;
    margin-top: 0.75rem;
  }

  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 3rem 0; }
  .hero-content > .container-inner { max-width: none; margin: 0; padding: 0 var(--gutter); }
  .hero-image-wrap { aspect-ratio: 4/3; }

  .two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .approach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .approach-image { aspect-ratio: 16/10; }

  .services-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process::before { display: none; }
  .quote-feature-grid { grid-template-columns: 1fr; gap: 2rem; }
  .quote-image { aspect-ratio: 16/10; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 0.5px solid var(--line); }
  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }
  .service-detail-image { aspect-ratio: 16/10; }
  .service-detail:nth-child(even) .service-detail-image { order: 0; }
  .service-detail-num { font-size: 2rem; }

  .page-header-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-header-image { aspect-ratio: 16/10; }

  /* Tighten the contact info card on mobile so it takes less vertical space */
  .contact-info { padding: 1.75rem 1.5rem; }
  .contact-info h3 { font-size: 1.35rem; margin-bottom: 1rem; }
  .contact-detail { padding: 0.85rem 0; }
  .contact-detail:first-of-type { padding-top: 0.25rem; }
  .contact-label { margin-bottom: 0.3rem; font-size: 0.65rem; }
  .contact-value { font-size: 1.05rem; }
  .contact-note { font-size: 0.85rem; line-height: 1.55; }

  .nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; }

  .nav.open {
    display: flex;
    position: absolute;
    top: 130px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 0.5px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 1rem var(--gutter);
    margin: 0;
  }

  .nav.open a {
    padding: 1rem 0;
    border-bottom: 0.5px solid var(--line);
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .nav.open a:last-child { border-bottom: none; }

  .footer-bottom { flex-direction: column; }
}

@media (max-width: 540px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar {
    border-right: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
    padding: 1.1rem 1rem;
  }
  .pillar:nth-child(2n) { border-right: none; }
  .pillar:nth-child(n+3) { border-bottom: none; }
  .pillar-num { font-size: 1rem; margin-bottom: 0.25rem; }
  .pillar-label { font-size: 0.72rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .display { font-size: 2.4rem; }
}
