:root {
  --black: #080808;
  --black-mid: #0f0f0f;
  --black-surface: #161616;
  --black-card: #1a1a1a;
  --black-border: rgba(255,255,255,0.08);
  --black-border-strong: rgba(255,255,255,0.14);
  --gold: #D4AF37;
  --gold-light: #E8C84B;
  --gold-dim: #B8962A;
  --gold-soft: rgba(212, 175, 55, 0.10);
  --gold-border: rgba(212, 175, 55, 0.25);
  --gold-glow: rgba(212, 175, 55, 0.15);
  --cream: #F0EDE6;
  --cream-muted: #8A8279;
  --cream-faint: rgba(240, 237, 230, 0.45);
  --white: #FFFFFF;
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-width: 1140px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── SCROLL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NAVIGATION ──────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--black-border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.2px;
  font-style: italic;
}

.nav-brand-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-faint);
  text-decoration: none;
  letter-spacing: 0.1px;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--cream); }

.btn-primary {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--black-border-strong);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-soft);
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Radial glow top center */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.07) 0%, transparent 65%);
}

/* Subtle noise-like grid */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 81px),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.008) 80px, rgba(255,255,255,0.008) 81px);
}

.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 32px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero h1 strong {
  font-weight: 400;
  display: block;
}

.hero-lede {
  font-size: 18px;
  font-weight: 400;
  color: var(--cream-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-cta-primary {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.2px;
}

.hero-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.35);
}

.hero-cta-arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.hero-cta-primary:hover .hero-cta-arrow {
  transform: translateX(3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream-muted);
}

.hero-trust-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── HERO RIGHT: Founder Photo ───────────────────── */
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-photo-block {
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  width: 300px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--black-border-strong);
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-photo-wrap:hover img {
  transform: scale(1.03);
}

/* Gold gradient overlay at bottom of photo */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.85) 0%,
    rgba(8, 8, 8, 0.2) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* Name card inside photo */
.hero-photo-name {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.hero-photo-name-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.hero-photo-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Decorative corner accent */
.hero-photo-corner {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 var(--radius-lg) 0 0;
  opacity: 0.5;
}

/* Experience badge */
.hero-photo-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
  transform: rotate(-4deg);
}

.hero-photo-badge-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  display: block;
  line-height: 1;
}

.hero-photo-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* ─── STATS BAR ───────────────────────────────────── */
.stats-bar {
  background: var(--black-mid);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 0 32px;
}

.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--black-border);
}

.stat-item {
  padding: 32px 40px;
  text-align: center;
  border-right: 1px solid var(--black-border);
  transition: background 0.2s ease;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--black-surface); }

.stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* ─── SECTION COMMONS ─────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--cream-muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 64px;
}

/* ─── SERVICES ────────────────────────────────────── */
.services {
  padding: 120px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.service-card-wide {
  grid-column: span 2;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: var(--black-border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 1px var(--gold-border);
}

.service-card:hover::before { transform: scaleX(1); }

/* Subtle background glow on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--gold-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::after { opacity: 1; }

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--cream-muted);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ─── WHY CW ──────────────────────────────────────── */
.why-section {
  background: var(--black-mid);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 120px 32px;
}

.why-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.why-header-right {
  font-size: 17px;
  color: var(--cream-muted);
  line-height: 1.8;
  padding-bottom: 4px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-item {
  background: var(--black-card);
  padding: 48px 44px;
  transition: background 0.2s ease;
}

.why-item:hover { background: var(--black-surface); }

.why-item-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.why-item p {
  font-size: 15px;
  color: var(--cream-muted);
  line-height: 1.75;
}

/* ─── ABOUT / FOUNDER ─────────────────────────────── */
.about {
  padding: 120px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-photo-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-photo-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--black-border-strong);
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-photo:hover img { transform: scale(1.03); }

/* Glass name tag overlay */
.about-photo-namecard {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--black-border-strong);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-namecard-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
}

.about-namecard-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.about-namecard-badge {
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
}

.about-namecard-badge-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  display: block;
  line-height: 1;
}

.about-namecard-badge-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Decorative line accent */
.about-photo-accent-line {
  position: absolute;
  top: 24px;
  left: -20px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.4;
}

/* About content */
.about-content { }

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 32px;
  letter-spacing: -0.2px;
  position: relative;
}

.about-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -8px;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.15;
  font-family: var(--font-display);
  line-height: 1;
}

.about-bio {
  font-size: 16px;
  font-weight: 400;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-name-block {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-name-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-border);
  flex-shrink: 0;
}

.about-name-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
}

.about-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.about-location {
  font-size: 12px;
  color: var(--cream-muted);
  margin-top: 2px;
}

/* ─── CONTACT ─────────────────────────────────────── */
.contact {
  background: var(--black-mid);
  border-top: 1px solid var(--black-border);
  padding: 120px 32px;
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.contact-cta-group {
  margin-top: 48px;
}

.contact-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  background: var(--gold);
  color: var(--black);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.2px;
}

.contact-cta-link:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}

.contact-right {
  position: relative;
}

.contact-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-card-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--black-border);
  background: var(--gold-soft);
}

.contact-card-header-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-card-header-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  margin-top: 6px;
}

.contact-item {
  padding: 20px 32px;
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-item-body { }

.contact-item-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-muted);
  display: block;
  margin-bottom: 3px;
}

.contact-item-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

a.contact-item-value:hover { color: var(--gold); }

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 48px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--black-border);
  margin-top: 8px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 28px;
  height: 28px;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
}

.footer-brand-location {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover { color: var(--cream); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ─── MOBILE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-inner { padding: 16px 20px; }
  .nav-link { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 20px 80px;
    gap: 56px;
  }

  .hero-right { order: -1; justify-content: center; }
  .hero-photo-wrap { width: 100%; max-width: 280px; }
  .hero-photo-badge { left: -12px; top: 16px; }
  .hero-lede { max-width: 100%; }
  .hero-cta-group { flex-wrap: wrap; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: 1px solid var(--black-border); border-bottom: 1px solid var(--black-border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; border-bottom: none; }

  .services { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card-wide { grid-column: span 1; }

  .why-section { padding: 80px 20px; }
  .why-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .why-grid { grid-template-columns: 1fr; }

  .about { padding: 80px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-photo-col { justify-content: center; }
  .about-photo-frame { max-width: 300px; }
  .about-quote::before { font-size: 60px; }

  .contact { padding: 80px 20px; }
  .contact-layout { grid-template-columns: 1fr; gap: 56px; }

  .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-bottom { margin-top: 0; }
}

@media (max-width: 480px) {
  .hero-photo-wrap { max-width: 280px; }
  .hero-photo-badge { display: none; }
  .stat-item { padding: 24px 20px; }
  .stat-value { font-size: 28px; }
  .why-item { padding: 36px 28px; }
  .contact-card-header, .contact-item { padding-left: 20px; padding-right: 20px; }
}
