/* Definition Landscape & Design — demo by Propeller */

:root {
  --brand-primary: #1f3a36;
  --brand-primary-dark: #142926;
  --brand-primary-mid: #2d5651;
  --brand-secondary: #c8b48e;
  --brand-secondary-light: #f4ece0;
  --ink: #0f1715;
  --ink-2: #2a2a2a;
  --ink-3: #4a4a4a;
  --mute: #6b6b6b;
  --mute-2: #9a9a9a;
  --line: rgba(15, 23, 21, 0.10);
  --line-2: rgba(15, 23, 21, 0.06);
  --bg: #ffffff;
  --bg-soft: #faf8f4;
}

* { box-sizing: border-box; }
html, body { background: #ffffff; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px; line-height: 1.55;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-family: 'JetBrains Mono', 'Geist Mono', ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.08em; color: var(--mute); text-transform: uppercase;
}

/* GLASS-PILL NAV (G20) */
.site-nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 24px;
  padding: 6px 6px 6px 20px;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 9999px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 0 0 1px rgba(15,23,21,0.04), 0 8px 24px -8px rgba(15,23,21,0.18), 0 24px 48px -20px rgba(15,23,21,0.18);
  z-index: 100; max-width: calc(100vw - 24px);
}
.site-nav .brand { display: inline-flex; align-items: center; height: 36px; padding: 2px 0; }
.site-nav .brand img.logo-img {
  height: 22px; width: auto; display: block;
  filter: brightness(0) saturate(100%) invert(15%) sepia(35%) saturate(800%) hue-rotate(125deg) brightness(95%) contrast(95%);
}
.site-nav .desktop-nav { display: none; gap: 24px; font-size: 14px; color: var(--ink-2); }
.site-nav .desktop-nav a { position: relative; padding: 6px 2px; transition: color 0.15s ease; }
.site-nav .desktop-nav a:hover, .site-nav .desktop-nav a.is-active { color: var(--brand-primary); }
.site-nav .desktop-nav a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--brand-primary);
}
/* Contact is the green pill CTA (replaces phone CTA) */
.site-nav .desktop-nav a.nav-cta {
  padding: 9px 20px; background: var(--brand-primary); color: #fff;
  border-radius: 9999px; font-weight: 600; line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav .desktop-nav a.nav-cta:hover { background: var(--brand-primary-dark); color: #fff; }
.site-nav .desktop-nav a.nav-cta.is-active { color: #fff; }
.site-nav .desktop-nav a.nav-cta.is-active::after { display: none; }

.mobile-menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; color: var(--ink);
}
@media (min-width: 1024px) {
  .site-nav { gap: 32px; }
  .site-nav .desktop-nav { display: flex; align-items: center; }
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: #fff; padding: 32px 24px 96px; z-index: 99; overflow-y: auto;
}
.mobile-menu.open { display: flex; flex-direction: column; }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.mobile-menu-nav a {
  font-family: 'Fraunces', Georgia, serif; font-size: 28px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.01em;
}
.mobile-menu-contact { border-top: 1px solid var(--line); padding-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.mobile-menu-phone, .mobile-menu-email { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-phone .label, .mobile-menu-email .label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--mute);
}
.mobile-menu-phone .number {
  font-family: 'Fraunces', Georgia, serif; font-size: 26px; color: var(--brand-primary); font-weight: 500;
}
.mobile-menu-email .value { font-size: 16px; color: var(--ink); }
.mobile-menu-address { color: var(--mute); font-size: 14px; line-height: 1.5; }
body.menu-open { overflow: hidden; }

/* HERO — full-bleed photo (G16, G18) */
.hero {
  position: relative; min-height: 92vh;
  background:
    linear-gradient(180deg, rgba(15,23,21,0.50) 0%, rgba(15,23,21,0.10) 30%, rgba(15,23,21,0.60) 100%),
    url('/clients/definition-landscape-design/assets/hero.webp') center/cover no-repeat;
  color: #fff; display: flex; flex-direction: column;
  padding-top: 96px; padding-bottom: 64px;
}
.hero-inner {
  flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.78); text-transform: uppercase; margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif; font-weight: 300;
  font-size: clamp(40px, 7vw, 96px); line-height: 1.04; letter-spacing: -0.015em;
  margin: 0 0 28px; max-width: 18ch; color: #fff;
}
.hero-headline em { font-style: italic; color: var(--brand-secondary); font-weight: 300; }
.hero-sub {
  font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.86);
  max-width: 56ch; margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 9999px; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--brand-secondary); color: var(--brand-primary-dark); }
.btn-primary:hover { background: #d8c5a0; }
.btn-ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.7); }
.btn-primary-dark { background: var(--brand-primary); color: #fff; }
.btn-primary-dark:hover { background: var(--brand-primary-dark); }
.btn-ghost-dark { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost-dark:hover { background: var(--bg-soft); border-color: var(--ink-3); }

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat { flex: 1 1 calc(50% - 16px); min-width: 0; }
.hero-stat .stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px); line-height: 1; font-weight: 400; color: #fff;
  display: block; margin-bottom: 6px; letter-spacing: -0.01em;
}
.hero-stat .stat-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
@media (min-width: 768px) { .hero-stat { flex: 1; min-width: 0; } }

/* SECTIONS */
.section { padding: 96px 0; background: #fff; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--brand-primary-dark); color: #fff; }
.section-header { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; max-width: 880px; }
@media (min-width: 1024px) {
  .section-header.split { grid-template-columns: minmax(0,1fr) minmax(0,1.2fr); gap: 64px; align-items: end; max-width: none; }
}
.section-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 72px); line-height: 1.05; letter-spacing: -0.015em;
  font-weight: 300; margin: 0; color: var(--ink);
}
.section-headline .ink { color: var(--ink); font-weight: 400; }
.section-headline .mute { color: var(--mute-2); font-style: italic; font-weight: 300; }
.section-sub { font-size: 17px; line-height: 1.6; color: var(--ink-3); max-width: 56ch; margin: 0; }

/* SERVICES — numbered rows */
.services-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 60px 1fr 1.2fr 40px;
  align-items: center; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.service-num { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--mute); }
.service-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 2vw, 30px); line-height: 1.15; font-weight: 400;
  letter-spacing: -0.01em; color: var(--ink);
}
.service-blurb { font-size: 15px; line-height: 1.6; color: var(--ink-3); max-width: 44ch; }
.service-arrow { justify-self: end; color: var(--brand-primary); font-size: 22px; transition: transform 0.2s ease; }
.service-row:hover .service-arrow { transform: translateX(4px); }
@media (max-width: 640px) {
  .service-row { grid-template-columns: 28px 1fr 24px; gap: 8px 12px; padding: 24px 0; }
  .service-blurb { grid-column: 1 / -1; padding-left: 40px; padding-top: 8px; font-size: 14px; max-width: none; }
  .service-name { font-size: 22px; }
}

/* PROJECTS GALLERY */
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (min-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
  .project-card.feature { grid-column: span 2; grid-row: span 2; }
}
.project-card { position: relative; display: block; overflow: hidden; background: var(--bg-soft); border-radius: 4px; }
.project-card .project-image-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.project-card.feature .project-image-wrap { aspect-ratio: 4 / 5; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.project-card:hover img { transform: scale(1.04); }
.project-meta {
  display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--mute);
}
.project-title {
  display: block; margin-top: 10px;
  font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 400;
  letter-spacing: -0.005em; color: var(--ink);
}

/* APPROACH */
.approach-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .approach-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.approach-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: 4px;
  transition: border-color 0.2s ease;
}
.approach-card:hover { border-color: var(--brand-primary); }
.approach-num {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--brand-primary);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.approach-card h3 {
  font-family: 'Fraunces', Georgia, serif; font-size: 28px; line-height: 1.15; font-weight: 400;
  letter-spacing: -0.01em; margin: 0; color: var(--ink);
}
.approach-card p { font-size: 15px; line-height: 1.6; color: var(--ink-3); margin: 0; }

/* REVIEWS (G4) */
.reviews { background: #fff; padding: 96px 0; }
.reviews-header { max-width: 880px; margin-bottom: 32px; }
.reviews-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 88px); line-height: 1.04; letter-spacing: -0.015em;
  font-weight: 300; margin: 12px 0 20px;
}
.reviews-headline .ink { color: var(--ink); font-weight: 400; }
.reviews-headline .mute { color: var(--mute-2); font-weight: 300; font-style: italic; }
.reviews-sub { color: var(--ink-3); max-width: 56ch; line-height: 1.6; }
.reviews-summary-card {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px; border: 1px solid var(--line); border-radius: 16px;
  margin-bottom: 32px; background: #fff; flex-wrap: wrap;
}
.g-logo { width: 36px; height: 36px; flex-shrink: 0; }
.summary-rating { flex: 1; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; min-width: 0; }
.rating-num { font-family: 'Fraunces', Georgia, serif; font-size: 32px; font-weight: 500; }
.stars { color: #fbbc04; font-size: 18px; letter-spacing: 1px; }
.reviews-meta { color: var(--mute); font-size: 14px; margin-left: auto; }
.see-all-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 9999px;
  font-size: 14px; color: var(--ink); transition: background 0.15s ease, border-color 0.15s ease;
}
.see-all-pill:hover { background: var(--bg-soft); border-color: var(--ink-3); }

.reviews-carousel {
  overflow: hidden; position: relative; padding-bottom: 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.reviews-track {
  display: flex; gap: 16px; width: max-content;
  animation: reviews-marquee 60s linear infinite; will-change: transform;
}
.reviews-track:hover, .reviews-track:focus-within { animation-play-state: paused; }
@keyframes reviews-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .reviews-track { animation: none; } }

.review-card {
  flex: 0 0 360px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 24px; display: flex; flex-direction: column;
}
.review-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 14px; flex-shrink: 0;
}
.review-meta { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.reviewer-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.review-time { font-size: 13px; color: var(--mute); }
.card-g-logo { width: 18px; height: 18px; flex-shrink: 0; align-self: flex-start; }
.stars-row { color: #fbbc04; margin-bottom: 12px; letter-spacing: 1px; }
.review-text { color: var(--ink-3); line-height: 1.55; font-size: 14px; margin: 0; }
@media (max-width: 640px) {
  .review-card { flex: 0 0 calc(100vw - 64px); }
  .reviews-track { animation-duration: 80s; }
  .reviews-summary-card { padding: 18px; }
  .reviews-meta { margin-left: 0; }
}

/* LOCATION (G24) */
.location { padding: 96px 0; background: var(--bg-soft); }
.location-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.location-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.015em;
  font-weight: 400; margin: 12px 0 24px; color: var(--ink);
}
.location-sub { color: var(--ink-3); line-height: 1.6; max-width: 52ch; margin-bottom: 24px; }
.location-address { font-style: normal; line-height: 1.5; margin-bottom: 24px; color: var(--ink-2); }
.service-areas-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px;
  list-style: none; padding: 0; margin: 0;
  font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--ink-3);
}
.service-areas-list li::before { content: '— '; color: var(--mute-2); margin-right: 4px; }
.location-map iframe {
  display: block; width: 100%; border: 0; border-radius: 12px; height: 480px;
  box-shadow: 0 24px 48px -24px rgba(15,23,21,0.18);
}
@media (max-width: 768px) { .location-map iframe { height: 320px; } }

/* CONTACT */
.contact { padding: 96px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.contact-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.015em;
  font-weight: 300; margin: 12px 0 24px; color: var(--ink);
}
.contact-headline em { font-style: italic; color: var(--brand-primary); font-weight: 400; }
.contact-sub { color: var(--ink-3); line-height: 1.6; max-width: 52ch; margin-bottom: 24px; }
.contact-info { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-info-label {
  flex: 0 0 100px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em;
  color: var(--mute); text-transform: uppercase; padding-top: 4px;
}
.contact-info-value { flex: 1; color: var(--ink); font-size: 16px; line-height: 1.5; }
.contact-info-value a { color: var(--brand-primary); }
.contact-info-value a:hover { text-decoration: underline; }

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--bg-soft); padding: 36px;
  border-radius: 4px; border: 1px solid var(--line);
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute);
}
.contact-form input, .contact-form textarea {
  padding: 12px 14px; font-family: inherit; font-size: 15px;
  color: var(--ink); background: #fff; border: 1px solid var(--line);
  border-radius: 6px; resize: vertical; transition: border-color 0.15s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brand-primary); }
.contact-submit {
  align-self: flex-start; padding: 14px 28px;
  background: var(--brand-primary); color: #fff; border: none; border-radius: 9999px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.15s ease;
}
.contact-submit:hover { background: var(--brand-primary-dark); }
.contact-disclaimer { font-size: 12px; color: var(--mute); margin: 0; font-family: 'JetBrains Mono', monospace; }

/* PRESS */
.press-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px); line-height: 1.25;
  letter-spacing: -0.01em; font-weight: 300; font-style: italic;
  color: var(--ink); margin: 0 0 20px; max-width: 30ch;
}
.press-attrib {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.08em; color: var(--mute); text-transform: uppercase;
}

/* TEAM */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.team-card {
  padding: 28px 24px; background: var(--bg-soft); border-radius: 4px;
  border: 1px solid transparent; transition: border-color 0.2s ease;
}
.team-card:hover { border-color: var(--line); }
.team-name {
  font-family: 'Fraunces', Georgia, serif; font-size: 22px; line-height: 1.2;
  letter-spacing: -0.005em; margin: 0 0 6px; font-weight: 400; color: var(--ink);
}
.team-role {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.08em; color: var(--mute); text-transform: uppercase;
}

/* CREDENTIALS */
.credentials { padding: 64px 0; background: var(--brand-primary-dark); color: #fff; }
.credentials-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.55); text-transform: uppercase; margin-bottom: 24px;
}
.credentials-list { display: grid; grid-template-columns: 1fr; gap: 12px 32px; list-style: none; padding: 0; margin: 0; }
@media (min-width: 768px) { .credentials-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .credentials-list { grid-template-columns: repeat(3, 1fr); } }
.credentials-list li {
  display: flex; gap: 12px; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.92);
}
.credentials-list li::before { content: '+'; color: var(--brand-secondary); font-weight: 500; flex-shrink: 0; }

/* FOOTER (G5 + G23) */
.site-footer { background: var(--brand-primary-dark); color: rgba(255,255,255,0.78); padding: 80px 0 40px; font-size: 14px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img { height: 32px; width: auto; margin-bottom: 20px; }
.footer-tagline { max-width: 36ch; line-height: 1.55; color: rgba(255,255,255,0.70); }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.5); text-transform: uppercase;
  margin: 0 0 18px; font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.85); transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 32px; font-size: 13px; color: rgba(255,255,255,0.55); font-family: 'JetBrains Mono', monospace;
}
.footer-copyright { margin: 0; }
.footer-credit a { color: rgba(255,255,255,0.78); transition: color 0.15s ease; }
.footer-credit a:hover { color: #fff; text-decoration: underline; }

/* MOBILE STICKY CTA (G8) */
.mobile-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  display: flex; height: 56px; z-index: 95;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}
.mobile-sticky-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-weight: 600; font-size: 16px; color: #fff;
}
.mobile-cta-call { background: var(--brand-primary); }
.mobile-cta-message { background: #0a0a0a; }
.mobile-cta-call:active { background: var(--brand-primary-dark); }
.mobile-cta-message:active { background: #1a1a1a; }
.mobile-sticky-cta svg { width: 18px; height: 18px; }
@media (min-width: 1024px) { .mobile-sticky-cta { display: none; } }
@media (max-width: 1023px) { body { padding-bottom: 56px; } }

/* PAGE HEADER (non-home) */
.page-header { position: relative; background: var(--brand-primary-dark); color: #fff; padding: 144px 0 96px; }
.page-header.with-bg { background-position: center; background-size: cover; background-repeat: no-repeat; }
.page-header.with-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,21,0.55) 0%, rgba(15,23,21,0.35) 50%, rgba(15,23,21,0.65) 100%);
}
.page-header > .container { position: relative; }
.page-header-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.65); text-transform: uppercase; margin-bottom: 16px;
}
.page-header-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 80px); line-height: 1.04; letter-spacing: -0.015em;
  font-weight: 300; margin: 0 0 16px; color: #fff; max-width: 18ch;
}
.page-header-headline em { font-style: italic; color: var(--brand-secondary); }
.page-header-sub { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.86); max-width: 56ch; }

/* PROSE */
.prose { max-width: 64ch; font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.prose p { margin: 0 0 1.4em; }
.prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.1; letter-spacing: -0.01em;
  font-weight: 400; color: var(--ink); margin: 2.2em 0 0.8em;
}
.prose h3 { font-family: 'Fraunces', Georgia, serif; font-size: 24px; font-weight: 500; color: var(--ink); margin: 1.8em 0 0.6em; }
