/* ─────────────────────────────────────────────
   RESET & VARIABLES
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:    #0C0C0B;
  --ink2:   #2C2B28;
  --muted:  #7A7670;
  --rule:   #DDD8CF;
  --warm:   #F4F0E8;
  --paper:  #FDFAF4;
  --gold:   #A8865C;
  --gold2:  #7A5F3A;
  --nav-h:  64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025; pointer-events: none; z-index: 9999;
}

/* ─────────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold); }
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(168,134,92,.5);
  transition: width .25s, height .25s, border-color .25s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--gold); }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(253,250,244,.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  z-index: 200; display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; cursor: none; white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s; cursor: none; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--gold); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 1px; background: var(--ink); transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--paper); border-bottom: 1px solid var(--rule);
  z-index: 199; flex-direction: column; padding: 12px 0 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 28px; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; cursor: none;
  transition: color .2s; border-bottom: 1px solid var(--rule);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active { color: var(--gold); }

/* ─────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────── */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 52px; }
.page { display: none; min-height: 100vh; padding-top: var(--nav-h); }
.page.active { display: block; animation: pgIn .5s ease forwards; }

/* ─────────────────────────────────────────────
   SHARED
───────────────────────────────────────────── */
.eyebrow {
  font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); display: block; flex-shrink: 0; }

.section-label {
  font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 10px; padding-top: 4px;
}
.section-label::after { content: ''; width: 20px; height: 1px; background: var(--gold); display: block; }

.photo-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--rule); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; background: var(--warm);
}

.site-footer {
  padding: 28px 0; display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--rule); flex-wrap: wrap; gap: 10px;
}
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 12px; font-weight: 300; letter-spacing: .1em; color: var(--muted); }
.footer-copy { font-size: 9.5px; letter-spacing: .12em; color: var(--rule); }

/* ─────────────────────────────────────────────
   TICKER
───────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden; border-bottom: 1px solid var(--rule);
  background: var(--ink); height: 38px; display: flex; align-items: center;
}
.ticker-track { display: flex; align-items: center; animation: ticker 28s linear infinite; white-space: nowrap; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(168,134,92,.7); padding: 0 32px;
  display: flex; align-items: center; gap: 32px;
}
.ticker-item::after { content: '◆'; font-size: 5px; color: rgba(168,134,92,.35); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────────────────────────
   HOME HERO
───────────────────────────────────────────── */
.home-hero {
  display: grid; grid-template-columns: 1fr 400px;
  min-height: calc(100vh - var(--nav-h) - 38px);
  border-bottom: 1px solid var(--rule);
}
.home-left {
  padding: 80px 64px 80px 0; border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 88px); font-weight: 300;
  line-height: 1.0; letter-spacing: -.02em; margin-bottom: 20px;
}
.hero-name em { font-style: italic; color: var(--gold2); display: block; }
.hero-subtitle { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 40px; }
.hero-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 300; line-height: 1.8; color: var(--muted);
  border-left: 1px solid var(--gold); padding-left: 22px; margin-bottom: 60px;
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
}
.stat-cell {
  padding: 18px 14px;
  border-right: 1px solid var(--rule);
  transition: background .2s;
  overflow: hidden;
  min-width: 0;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--warm); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.6vw, 20px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 7px;
  transition: color .2s;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.stat-cell:hover .stat-num { color: var(--gold); }
.stat-label {
  font-size: 7.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ── PHOTO ── */
.home-right { overflow: hidden; background: var(--warm); position: relative; }
.photo-main { width: 100%; height: 100%; overflow: hidden; position: relative; }
.photo-main img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
  filter: grayscale(8%) contrast(1.04); transition: transform .9s ease, filter .5s ease;
}
.photo-main:hover img { transform: scale(1.03); filter: grayscale(0%) contrast(1.02); }

/* ── HOME STRIP ── */
.home-strip { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--rule); }
.strip-item {
  padding: 28px 20px; border-right: 1px solid var(--rule);
  text-align: center; cursor: none; transition: background .2s; position: relative; overflow: hidden;
}
.strip-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--gold); transition: left .3s, right .3s;
}
.strip-item:hover::after { left: 0; right: 0; }
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--warm); }
.strip-name { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; transition: color .2s; }
.strip-item:hover .strip-name { color: var(--gold); }
.strip-val { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--ink2); }

/* ─────────────────────────────────────────────
   PERFORMANCE BAND
───────────────────────────────────────────── */
.perf-band {
  background: var(--ink);
  border-top: 1px solid rgba(168,134,92,.2);
  border-bottom: 1px solid rgba(168,134,92,.2);
  display: grid; grid-template-columns: auto 1fr;
  align-items: center; overflow: hidden;
}
.perf-left {
  padding: 52px 64px 52px 52px;
  border-right: 1px solid rgba(168,134,92,.2);
  text-align: center; flex-shrink: 0;
}
.perf-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 10vw, 120px); font-weight: 300;
  line-height: 1; color: var(--gold); letter-spacing: -.03em;
}
.perf-label { font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: rgba(168,134,92,.6); margin-top: 8px; }
.perf-right { padding: 52px; }
.perf-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; font-style: italic;
  line-height: 1.7; color: rgba(253,250,244,.6); max-width: 480px;
}
.perf-disclaimer { font-size: 10px; letter-spacing: .08em; color: rgba(253,250,244,.25); margin-top: 16px; line-height: 1.6; }

/* ─────────────────────────────────────────────
   ÜBER MICH
───────────────────────────────────────────── */
.about-hero {
  padding: 80px 0 64px; border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end;
}
.about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 62px); font-weight: 300; line-height: 1.1; letter-spacing: -.02em;
}
.about-headline em { font-style: italic; color: var(--gold2); }
.about-intro { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; line-height: 1.8; color: var(--ink2); }

.about-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px 72px;
  padding: 64px 0; border-bottom: 1px solid var(--rule);
}
.about-block-label {
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.about-block-label::after { content:''; width:14px; height:1px; background:var(--gold); display:block; }
.about-block p { font-size: 13.5px; font-weight: 300; line-height: 1.85; color: var(--ink2); }

/* Philosophy band */
.philosophy-band {
  background: var(--ink); padding: 72px 0;
  border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; position: relative;
}
.philosophy-band::before {
  content: '❝'; position: absolute; top: 40px; left: 52px;
  font-family: 'Cormorant Garamond', serif; font-size: 120px; line-height: 1;
  color: rgba(168,134,92,.08); pointer-events: none;
}
.philosophy-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 34px); font-weight: 300; font-style: italic;
  line-height: 1.6; color: rgba(253,250,244,.85); max-width: 760px;
  padding-left: 52px; position: relative; z-index: 1;
}
.philosophy-text::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); margin-top: 28px; }

/* Stats band */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--rule); }
.stats-band-cell {
  padding: 48px 36px; border-right: 1px solid var(--rule);
  transition: background .2s; text-align: center;
}
.stats-band-cell:last-child { border-right: none; }
.stats-band-cell:hover { background: var(--warm); }
.sbc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px); font-weight: 300; color: var(--ink);
  line-height: 2; margin-bottom: 8px; transition: color .7s;

}
.stats-band-cell:hover .sbc-num { color: var(--gold); }
.sbc-label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* Markets */
.about-markets {
  padding: 64px 0; display: grid; grid-template-columns: 260px 1fr;
  gap: 72px; border-bottom: 1px solid var(--rule); align-items: start;
}
.markets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.market-card { background: var(--paper); padding: 28px 24px; transition: background .2s; }
.market-card:hover { background: var(--warm); }
.market-icon { font-size: 20px; margin-bottom: 12px; }
.market-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 300; color: var(--ink); margin-bottom: 8px; }
.market-desc { font-size: 12px; font-weight: 300; line-height: 1.72; color: var(--muted); }

/* ─────────────────────────────────────────────
   LEISTUNGEN
───────────────────────────────────────────── */
.services-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--rule); }
.services-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 62px); font-weight: 300;
  line-height: 1.1; letter-spacing: -.02em; max-width: 600px; margin-bottom: 20px;
}
.services-headline em { font-style: italic; color: var(--gold2); }
.services-sub { font-size: 13px; font-weight: 300; color: var(--muted); max-width: 460px; line-height: 1.8; }

.service-row {
  display: grid; grid-template-columns: 52px 1fr 1fr; gap: 36px;
  align-items: start; padding: 40px 0; border-bottom: 1px solid var(--rule);
  transition: background .2s, padding .25s, margin .25s; cursor: default;
}
.service-row:first-child { border-top: 1px solid var(--rule); }
.service-row:hover { background: var(--warm); padding-left: 20px; padding-right: 20px; margin: 0 -20px; }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--rule); padding-top: 4px; }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--ink); line-height: 1.2; }
.svc-desc { font-size: 13px; font-weight: 300; line-height: 1.85; color: var(--muted); padding-top: 4px; }

/* Process */
.process-section {
  padding: 80px 0; border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start;
}
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.process-card { background: var(--paper); padding: 32px 28px; transition: background .2s; }
.process-card:hover { background: var(--warm); }
.process-num { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: .2em; color: var(--gold); margin-bottom: 14px; display: block; }
.process-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; color: var(--ink); margin-bottom: 10px; }
.process-desc { font-size: 12px; font-weight: 300; line-height: 1.75; color: var(--muted); }

.services-note {
  padding: 60px 0; display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; border-bottom: 1px solid var(--rule); align-items: center;
}
.note-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; font-style: italic;
  line-height: 1.65; color: var(--ink2); border-left: 1px solid var(--gold); padding-left: 26px;
}
.note-body { font-size: 13px; font-weight: 300; line-height: 1.85; color: var(--muted); }

/* ─────────────────────────────────────────────
   KONTAKT
───────────────────────────────────────────── */
.contact-hero {
  padding: 80px 0 64px; border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end;
}
.contact-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 62px); font-weight: 300; line-height: 1.1; letter-spacing: -.02em;
}
.contact-headline em { font-style: italic; color: var(--gold2); }
.contact-note { font-size: 13px; font-weight: 300; line-height: 1.85; color: var(--muted); }

.contact-body {
  padding: 64px 0; display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; border-bottom: 1px solid var(--rule);
}
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.cd-label { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.cd-val {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300;
  color: var(--ink); text-decoration: none; display: block; transition: color .2s;
}
.cd-val:hover { color: var(--gold); }

.wa-btn {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 24px;
  padding: 12px 22px; background: #25D366; color: #fff; text-decoration: none;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-family: 'Instrument Sans', sans-serif; font-weight: 500;
  transition: background .2s, transform .2s; border-radius: 2px;
}
.wa-btn:hover { background: #1fba58; transform: translateY(-1px); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.cf-field { display: flex; flex-direction: column; gap: 7px; }
.cf-label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.cf-input, .cf-textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--rule);
  padding: 10px 0; font-size: 14px; font-family: 'Instrument Sans', sans-serif;
  font-weight: 300; color: var(--ink); outline: none;
  transition: border-color .2s; width: 100%; -webkit-appearance: none; border-radius: 0;
}
.cf-input:focus, .cf-textarea:focus { border-color: var(--gold); }
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--rule); }
.cf-textarea { resize: vertical; min-height: 90px; }
.cf-submit {
  align-self: flex-start; margin-top: 8px; background: none; border: 1px solid var(--rule);
  padding: 13px 28px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); font-family: 'Instrument Sans', sans-serif;
  cursor: none; transition: background .2s, border-color .2s, color .2s;
  -webkit-appearance: none; border-radius: 0;
}
.cf-submit:hover { background: var(--warm); border-color: var(--gold); color: var(--gold); }
.cf-submit:disabled { opacity: .5; cursor: default; }
.cf-msg { font-size: 12px; color: var(--gold); letter-spacing: .05em; min-height: 18px; }
.cf-msg.error { color: #B05050; }

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes pgIn   { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.fu { opacity: 0; }
.fu.visible { animation: fadeUp .75s ease forwards; }
.d1{animation-delay:.06s} .d2{animation-delay:.16s} .d3{animation-delay:.28s}
.d4{animation-delay:.42s} .d5{animation-delay:.56s} .d6{animation-delay:.7s}

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET ≤900px
───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 28px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .wrap { padding: 0 28px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }

  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-left { padding: 60px 0; border-right: none; border-bottom: 1px solid var(--rule); }
  .home-right { height: 360px; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--rule); }
  .stat-num { font-size: clamp(14px, 3vw, 18px); }

  .home-strip { grid-template-columns: 1fr 1fr; }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item:nth-child(3) { border-top: 1px solid var(--rule); border-right: 1px solid var(--rule); }

  .perf-band { grid-template-columns: 1fr; }
  .perf-left { padding: 40px 28px 32px; border-right: none; border-bottom: 1px solid rgba(168,134,92,.2); }
  .perf-right { padding: 32px 28px 40px; }

  .about-hero { grid-template-columns: 1fr; gap: 28px; padding: 60px 0 48px; }
  .about-body { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
  .philosophy-band { padding: 52px 0; }
  .philosophy-text { padding-left: 28px; }
  .philosophy-band::before { display: none; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stats-band-cell:nth-child(2) { border-right: none; }
  .stats-band-cell:nth-child(3) { border-top: 1px solid var(--rule); border-right: 1px solid var(--rule); }
  .about-markets { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }

  .service-row { grid-template-columns: 36px 1fr; gap: 20px; }
  .svc-desc { grid-column: 2; }
  .service-row:hover { padding-left: 10px; padding-right: 10px; margin: 0 -10px; }
  .process-section { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .services-note { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .services-hero { padding: 60px 0 48px; }

  .contact-hero { grid-template-columns: 1fr; gap: 24px; padding: 60px 0 48px; }
  .contact-body { grid-template-columns: 1fr; gap: 48px; padding: 48px 0; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE ≤600px
───────────────────────────────────────────── */
@media (max-width: 600px) {
  nav { padding: 0 20px; }
  .wrap { padding: 0 20px; }
  .home-right { height: 280px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 15px; }
  .home-strip { grid-template-columns: 1fr 1fr; }
  .about-hero, .services-hero, .contact-hero { padding: 44px 0 36px; }
  .about-body, .about-markets, .services-note, .contact-body { padding: 36px 0; }
  .service-row { padding: 28px 0; }
  .svc-name { font-size: 21px; }
  .cf-submit { width: 100%; text-align: center; }
  .contact-details { gap: 24px; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .sbc-num { font-size: 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .philosophy-text { font-size: 18px; }
  .perf-value { font-size: 72px; }
}
