/* ============================================================
   GAMPER KLIMMEK CONSULTING — styles.css
   Covers: index.html + audit.html
   Fonts loaded in HTML head. Variables defined here.
   ============================================================ */

/* ── TOKENS ── */
:root {
  --ink: #0a0a0f;
  --paper: #f4f1ec;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --teal: #1a6b7a;
  --teal-deep: #0d3d47;
  --white: #ffffff;
  --muted: #6b6b7a;
  --max: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video, iframe { max-width: 100%; height: auto; }
body { font-family: 'DM Sans', sans-serif; background: var(--ink); color: var(--white); overflow-x: clip; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  background: linear-gradient(180deg, rgba(10,10,15,0.97) 0%, transparent 100%);
  backdrop-filter: blur(6px);
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-family: 'Syne', sans-serif !important; font-size: 0.72rem !important;
  font-weight: 700 !important; letter-spacing: 0.1em !important;
  background: var(--gold); color: var(--ink) !important;
  padding: 0.5rem 1.2rem; text-decoration: none; white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Language switcher */
.lang-switcher { display: flex; gap: 2px; }
.lang-btn {
  font-family: 'Syne', sans-serif; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15); background: transparent;
  color: rgba(255,255,255,0.4); padding: 0.22rem 0.42rem; cursor: pointer; transition: all 0.2s;
}
.lang-btn:hover { color: var(--gold); border-color: rgba(201,168,76,0.5); }
.lang-btn.active { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,0.08); }

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 22px; position: relative; z-index: 110;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px; background: var(--white);
  position: absolute; left: 0; transition: all 0.3s;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-hamburger span:nth-child(3) { bottom: 0; }
.nav-hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(10,10,15,0.97); backdrop-filter: blur(12px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.25s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-lang { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.mobile-lang button {
  font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: rgba(255,255,255,0.4); padding: 0.3rem 0.55rem; cursor: pointer; transition: all 0.2s;
}
.mobile-lang button.active { color: var(--gold); border-color: var(--gold); }

/* Audit-page back link */
.nav-back {
  font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem; transition: color 0.3s;
}
.nav-back::before { content: '←'; }
.nav-back:hover { color: var(--gold); }

/* ── SHARED COMPONENTS ── */
.section-label {
  font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.section-label.teal { color: var(--teal); }
.section-label.teal::before { background: var(--teal); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 900; line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--gold); }

.btn-primary {
  font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
  text-decoration: none; background: var(--gold); padding: 1rem 2.5rem;
  display: inline-block; transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.3); }

.btn-ghost {
  font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px; transition: all 0.3s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.btn-gold-full {
  display: block; width: 100%; text-align: center;
  background: var(--gold); color: var(--ink);
  padding: 1.1rem 2rem; font-family: 'Syne', sans-serif; font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s; margin-bottom: 1rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-gold-full:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10rem 4rem 6rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,61,71,0.7) 0%, rgba(10,10,15,0.95) 60%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80') center/cover no-repeat;
  filter: saturate(0.7);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 60%, black 20%, transparent 70%);
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.page-eyebrow {
  font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.page-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem); font-weight: 900;
  line-height: 1.02; margin-bottom: 2rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 560px; margin-bottom: 3rem; }
.hero-cta-group { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.hero-microcopy {
  margin-top: 1rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── TIME & COST LEAK CALCULATOR ── */
.leak-calc {
  background: linear-gradient(180deg, #0f151d 0%, var(--ink) 70%);
  padding: 6.5rem 4rem 6rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.leak-calc-inner { max-width: var(--max); margin: 0 auto; }
.leak-calc-header { max-width: 860px; margin-bottom: 3rem; }
.leak-calc-sub { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.58); max-width: 680px; margin-top: 1.2rem; }

.leak-calc-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.leak-calc-inputs {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.leak-calc-field { display: flex; flex-direction: column; gap: 0.65rem; }
.leak-calc-label-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.leak-calc-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.leak-calc-live {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.leak-calc-hint { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.leak-calc-select,
.leak-calc-number {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.85rem 0.95rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
}

.leak-calc-range {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}
.leak-calc-select:focus-visible,
.leak-calc-number:focus-visible,
.leak-calc-range:focus-visible,
.leak-calc .btn-gold-full:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.leak-calc-results {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.28);
  backdrop-filter: blur(8px);
  padding: 2.4rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.leak-calc-results-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.leak-calc-result { border-top: 1px solid rgba(255,255,255,0.08); padding: 1rem 0; }
.leak-calc-result:first-of-type { border-top: none; padding-top: 0; }
.leak-calc-result-title { font-size: 0.85rem; color: rgba(255,255,255,0.58); line-height: 1.5; margin-bottom: 0.4rem; }
.leak-calc-result-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  font-weight: 900;
  color: var(--white);
}
.leak-calc-inline-note {
  font-family: 'Syne', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.leak-calc-audit {
  margin: 1rem 0 1.25rem;
  padding: 1.25rem;
  background: rgba(10,10,15,0.45);
  border: 1px solid rgba(201,168,76,0.3);
}
.leak-calc-audit-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.leak-calc-audit-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  margin-top: 0.35rem;
}
.leak-calc-audit-equivalent { font-size: 0.92rem; color: rgba(255,255,255,0.72); margin-top: 0.3rem; }
.leak-calc-audit-note {
  margin-top: 0.25rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

.leak-calc-support { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.62); margin-bottom: 0.6rem; }
.leak-calc-payoff {
  font-family: 'Syne', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.leak-calc .btn-gold-full { margin-bottom: 0.7rem; }
.leak-calc-microcopy {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.34);
  text-align: center;
}

/* ── TICKER ── */
.ticker {
  background: var(--teal-deep); padding: 0.9rem 0; overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.ticker-track { display: flex; gap: 3rem; white-space: nowrap; animation: ticker 32s linear infinite; width: max-content; }
.ticker-item { font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.ticker-item span { color: var(--gold); margin-right: 1rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--paper); color: var(--ink); padding: 3rem 4rem; border-bottom: 1px solid rgba(10,10,15,0.08); }
.trust-strip-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.trust-statement { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 700; font-style: italic; color: var(--ink); line-height: 1.4; max-width: 580px; }
.trust-statement em { font-style: normal; color: var(--teal); }
.trust-meta-name { font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.3rem; }
.trust-meta-role { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(10,10,15,0.4); margin-bottom: 1rem; }
.trust-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.trust-badge { font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(10,10,15,0.5); border: 1px solid rgba(10,10,15,0.15); padding: 0.35rem 0.8rem; }

/* ── PROBLEM ── */
.problem { background: var(--paper); color: var(--ink); padding: 7rem 4rem; }
.problem-inner { max-width: var(--max); margin: 0 auto; }
.problem-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; }
.problem-intro { font-size: 1.05rem; line-height: 1.8; color: rgba(10,10,15,0.6); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.problem-card { padding: 2.5rem; border: 1px solid rgba(10,10,15,0.1); background: var(--white); transition: all 0.3s; }
.problem-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(26,107,122,0.08); }
.problem-icon { font-size: 1.75rem; margin-bottom: 1.25rem; }
.problem-title { font-family: 'Syne', sans-serif; font-size: 0.92rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--ink); }
.problem-body { font-size: 0.88rem; line-height: 1.75; color: rgba(10,10,15,0.6); }

.invisible-work-block { margin-top: 3.5rem; background: var(--white); border: 1px solid rgba(10,10,15,0.08); padding: 2.5rem 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.invisible-work-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.25rem; }
.invisible-work-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: rgba(10,10,15,0.7); }
.invisible-work-list li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.invisible-work-right { display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(10,10,15,0.08); padding-left: 2rem; }
.invisible-work-right p { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; font-style: italic; line-height: 1.5; color: var(--ink); margin-bottom: 1.5rem; }

.problem-cta-band { margin-top: 4rem; background: var(--ink); padding: 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.problem-cta-band p { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; font-style: italic; color: var(--white); max-width: 520px; line-height: 1.4; }
.problem-cta-band p em { color: var(--gold); font-style: normal; }

/* ── FLOW ── */
.flow { background: var(--ink); padding: 7rem 4rem; border-top: 1px solid rgba(255,255,255,0.06); }
.flow-inner { max-width: var(--max); margin: 0 auto; }
.flow-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; }
.flow-intro { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.5); }
.flow-diagram { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; position: relative; }
.flow-diagram::before { content: ''; position: absolute; top: 2.6rem; left: 3%; right: 3%; height: 1px; background: rgba(201,168,76,0.35); }
.flow-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 0.5rem; }
.flow-step-icon { width: 3.2rem; height: 3.2rem; border: 1px solid rgba(201,168,76,0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-family: 'Syne', sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; color: var(--gold); background: var(--ink); position: relative; z-index: 1; }
.flow-step-title { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); line-height: 1.45; min-height: 4.35em; margin-bottom: 0.5rem; }
.flow-step-desc { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

@media (max-width: 1200px) {
  .flow-diagram { grid-template-columns: repeat(4, 1fr); }
}

/* ── WHO ── */
.who { background: var(--paper); color: var(--ink); padding: 7rem 4rem; }
.who-inner { max-width: var(--max); margin: 0 auto; }
.who-header { margin-bottom: 4rem; }
.who-intro { font-size: 1.05rem; line-height: 1.8; color: rgba(10,10,15,0.6); max-width: 600px; margin-top: 1rem; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.who-card { padding: 3rem 2.5rem; background: var(--white); border: 1px solid rgba(10,10,15,0.08); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.who-card-link { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.who-card-link:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(26,107,122,0.08); }
.who-card-link:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.who-tag { font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.25rem; }
.who-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; margin-bottom: 0.75rem; line-height: 1.2; }
.who-card > p { font-size: 0.88rem; color: rgba(10,10,15,0.6); line-height: 1.75; margin-bottom: 1.5rem; }
.who-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.who-card ul li { font-size: 0.82rem; color: rgba(10,10,15,0.55); padding-left: 1.1rem; position: relative; }
.who-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ── PROCESS ── */
.process { background: var(--ink); padding: 7rem 4rem; border-top: 1px solid rgba(255,255,255,0.06); }
.process-inner { max-width: var(--max); margin: 0 auto; }
.process-header { margin-bottom: 4rem; }
.process-intro { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 540px; margin-top: 1rem; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.process-step { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 3rem 2.5rem; transition: border-color 0.3s; }
.process-step:hover { border-color: rgba(201,168,76,0.3); }
.process-num { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900; color: rgba(255,255,255,0.05); line-height: 1; margin-bottom: 1rem; }
.process-price { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.process-step h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ── CASE STUDIES ── */
.cases { background: var(--paper); color: var(--ink); padding: 7rem 4rem; }
.cases-inner { max-width: var(--max); margin: 0 auto; }
.cases-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.cases-intro { font-size: 1rem; line-height: 1.8; color: rgba(10,10,15,0.6); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }

.case-card {
  background: var(--white); border: 2px solid rgba(10,10,15,0.08);
  padding: 2.5rem; transition: all 0.3s; cursor: pointer; position: relative;
  user-select: none;
}
.case-card:hover { border-color: rgba(26,107,122,0.4); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(26,107,122,0.08); }
.case-card.selected { border-color: var(--teal); }
.case-card.selected::after {
  content: '✓'; position: absolute; top: 1rem; right: 1rem;
  width: 1.5rem; height: 1.5rem; background: var(--teal); color: var(--white);
  font-size: 0.72rem; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; line-height: 1;
}
.case-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.case-tag { font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.case-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; margin-bottom: 0.75rem; line-height: 1.35; }
.case-card p { font-size: 0.85rem; color: rgba(10,10,15,0.6); line-height: 1.7; margin-bottom: 1.25rem; }
.case-metric { font-family: 'Syne', sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(10,10,15,0.4); border-top: 1px solid rgba(10,10,15,0.08); padding-top: 1rem; }
.case-metric strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: var(--ink); letter-spacing: 0; text-transform: none; margin-bottom: 0.15rem; }

/* Case studies form panel */
.cases-cta { background: var(--ink); padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.cases-cta-left h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; margin-bottom: 0.75rem; }
.cases-cta-left p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.75; }
.cases-cta-right { display: flex; flex-direction: column; gap: 0.75rem; }
.cases-none-selected { font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); text-align: center; padding: 1rem 0; }
.cases-success { display: none; text-align: center; padding: 1.5rem 0; }
.cases-success h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; margin-bottom: 0.5rem; }
.cases-success p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; }

/* Shared form inputs */
.form-input {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.85rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--white); outline: none; width: 100%; transition: border-color 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.28); }
.form-input:focus { border-color: rgba(201,168,76,0.5); }
.form-submit {
  background: var(--gold); color: var(--ink); border: none; padding: 1rem;
  font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; width: 100%;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.form-submit:hover { background: var(--gold-light); }
.form-note { font-size: 0.72rem; color: rgba(255,255,255,0.22); text-align: center; }

/* ── STORY / OUR HISTORY ── */
.story { background: var(--ink); padding: 7rem 4rem; border-top: 1px solid rgba(255,255,255,0.06); }
.story-inner { max-width: var(--max); margin: 0 auto; }
.story-header { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; margin-bottom: 5rem; }
.story-intro-text { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.55); padding-top: 0.5rem; }
.story-intro-text strong { color: var(--white); font-weight: 500; }
.story-excerpt {
  max-width: 780px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  padding: 2rem 2.25rem;
}
.story-excerpt p { font-size: 0.98rem; line-height: 1.8; color: rgba(255,255,255,0.65); }
.story-excerpt-link { margin-top: 1.25rem; display: inline-block; }

/* Timeline */
.story-timeline { display: flex; flex-direction: column; position: relative; }
.story-timeline::before {
  content: ''; position: absolute; left: 5.25rem; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.3) 8%, rgba(201,168,76,0.3) 92%, transparent);
}
.story-item { display: grid; grid-template-columns: 5rem 1.5rem 1fr; gap: 1.25rem; padding: 1.75rem 0; align-items: start; }
.story-year { font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(255,255,255,0.28); padding-top: 0.2rem; text-align: right; white-space: nowrap; }
.story-dot { width: 10px; height: 10px; border: 1px solid var(--gold); background: var(--ink); border-radius: 50%; margin-top: 0.25rem; position: relative; z-index: 1; flex-shrink: 0; }
.story-dot.now { background: var(--gold); }
.story-content h2 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 900; margin: 0 0 0.3rem; }
.story-location { font-family: 'Syne', sans-serif; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.45rem; }
.story-content p { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.story-quote { margin-top: 5rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-left: 3px solid var(--gold); padding: 2.5rem 3rem; }
.story-quote blockquote { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; font-style: italic; line-height: 1.65; color: rgba(255,255,255,0.8); margin-bottom: 0.75rem; }
.story-quote cite { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* Team cards */
.team-section-header { margin-bottom: 3rem; margin-top: 5rem; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.team-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 3rem 2.5rem; transition: border-color 0.3s; }
.team-card:hover { border-color: rgba(201,168,76,0.25); }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; margin-bottom: 0.3rem; }
.team-role { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.team-bio { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 1.5rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.team-tag { font-family: 'Syne', sans-serif; font-size: 0.61rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); border: 1px solid rgba(255,255,255,0.1); padding: 0.28rem 0.65rem; }
.team-link { font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: color 0.2s; }
.team-link:hover { color: var(--gold-light); }

/* Story page */
.story-page .story-full { padding-top: 9rem; }

/* ── AUDIT EMBED ── */
.audit-embed { background: var(--teal-deep); padding: 7rem 4rem; position: relative; overflow: hidden; }
.audit-embed::before { content: ''; position: absolute; top: -120px; right: -120px; width: 550px; height: 550px; background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%); pointer-events: none; }
.audit-embed-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; position: relative; z-index: 1; }
.audit-embed h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 900; line-height: 1.12; margin-bottom: 1.25rem; }
.audit-embed h2 em { font-style: italic; color: var(--gold); }
.audit-embed-sub { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 2rem; }
.audit-steps { list-style: none; display: flex; flex-direction: column; }
.audit-steps li { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.55; }
.audit-steps li:last-child { border-bottom: none; }
.audit-step-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 1.75rem; }
.audit-guarantee { margin-top: 1.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.38); line-height: 1.7; border-left: 2px solid rgba(201,168,76,0.3); padding-left: 1rem; }

.audit-card {
  background: rgba(10,10,15,0.55); border: 1px solid rgba(201,168,76,0.3);
  padding: 2.75rem; backdrop-filter: blur(8px);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.audit-card-label { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.audit-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; margin-bottom: 1.75rem; line-height: 1.25; }
.audit-includes { list-style: none; margin-bottom: 2rem; }
.audit-includes li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.87rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.audit-includes li:last-child { border-bottom: none; }
.audit-check { color: var(--gold); flex-shrink: 0; font-size: 0.82rem; }
.audit-price-row { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(201,168,76,0.25); padding-top: 1.25rem; margin-bottom: 1.5rem; }
.audit-price-label { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.audit-price-val { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; }
.audit-card-note { font-family: 'Syne', sans-serif; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.2); text-align: center; }

/* ── NEWSLETTER ── */
.contact { background: var(--ink); color: var(--white); padding: 7rem 4rem; border-top: 1px solid rgba(255,255,255,0.06); }
.contact-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.contact h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 1rem; }
.contact h2 em { font-style: italic; color: var(--gold); }
.contact-sub { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.contact-form { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-input { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); padding: 0.9rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--white); outline: none; width: 100%; transition: border-color 0.2s; }
.contact-input::placeholder { color: rgba(255,255,255,0.35); }
.contact-input:focus { border-color: rgba(201,168,76,0.55); }
.contact-textarea { min-height: 8.5rem; resize: vertical; }
.contact-submit { background: var(--gold); color: var(--ink); border: none; padding: 1rem; font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; width: 100%; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); }
.contact-submit:hover { background: var(--gold-light); }
.contact-note { font-size: 0.72rem; color: rgba(255,255,255,0.42); }
.contact-success { display: none; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.3); padding: 2rem; }
.contact-success h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 900; margin-bottom: 0.5rem; color: var(--white); }
.contact-success p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

.newsletter { background: var(--paper); color: var(--ink); padding: 5rem 4rem; }
.newsletter-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 2.4vw, 2.35rem); font-weight: 900; line-height: 1.12; margin-bottom: 0.8rem; }
.newsletter h2 em { font-style: italic; color: var(--teal); }
.newsletter-sub { font-size: 0.94rem; color: rgba(10,10,15,0.52); line-height: 1.7; max-width: 34rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; }
.nl-input { background: rgba(255,255,255,0.78); border: 1px solid rgba(10,10,15,0.11); padding: 0.9rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--ink); outline: none; width: 100%; transition: border-color 0.2s, background 0.2s; }
.nl-input::placeholder { color: rgba(10,10,15,0.32); }
.nl-input:focus { border-color: rgba(26,107,122,0.6); background: rgba(255,255,255,0.9); }
.nl-submit { background: rgba(10,10,15,0.68); color: var(--white); border: none; padding: 0.95rem; font-family: 'Syne', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; width: 100%; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); }
.nl-submit:hover { background: rgba(13,61,71,0.82); }
.nl-note { font-size: 0.72rem; color: rgba(10,10,15,0.38); }
.nl-success { display: none; background: rgba(13,61,71,0.08); border: 1px solid rgba(26,107,122,0.2); padding: 2rem; }
.nl-success h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 900; margin-bottom: 0.5rem; color: var(--ink); }
.nl-success p { font-size: 0.88rem; color: rgba(10,10,15,0.6); }

/* ── FOOTER ── */
footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08); padding: 3rem 4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold); }
.footer-meta { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ── HERO ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-inner > * { animation: fadeUp 0.8s ease both; }
.page-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.22s; }
.hero-sub { animation-delay: 0.38s; }
.hero-cta-group { animation-delay: 0.52s; }
.hero-microcopy { animation-delay: 0.62s; }

/* ── AUDIT PAGE SPECIFIC ── */
.audit-page-hero { min-height: 90vh; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 10rem 4rem 6rem; }
.audit-page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,61,71,0.8) 0%, rgba(10,10,15,0.97) 65%), url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1400&q=80') center/cover no-repeat; filter: saturate(0.5); }
.audit-page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at 40% 50%, black 20%, transparent 70%); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1.1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .hero { padding: 8rem 1.5rem 5rem; }
  .problem, .flow, .who, .process, .cases, .story, .audit-embed, .contact, .newsletter, .leak-calc { padding: 5rem 1.5rem; }
  .newsletter { padding: 4rem 1.5rem; }
  .trust-strip { padding: 2.5rem 1.5rem; }
  footer { padding: 2.5rem 1.5rem; flex-direction: column; align-items: flex-start; }

  .problem-header, .flow-header, .cases-header, .story-header, .contact-inner, .newsletter-inner, .audit-embed-inner, .leak-calc-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .problem-grid, .process-steps, .cases-grid, .who-grid, .team-grid { grid-template-columns: 1fr; }
  .flow-diagram { grid-template-columns: repeat(3, 1fr); }
  .invisible-work-block { grid-template-columns: 1fr; }
  .invisible-work-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(10,10,15,0.08); padding-top: 1.5rem; }
  .problem-cta-band { flex-direction: column; text-align: left; }
  .cases-cta { grid-template-columns: 1fr; gap: 2rem; }
  .trust-strip-inner { flex-direction: column; align-items: flex-start; }
  .audit-card { clip-path: none; }
  .leak-calc-results { clip-path: none; }
  .story-timeline::before { left: 3.5rem; }
  .story-item { grid-template-columns: 3.25rem 1.5rem 1fr; }
  .story-excerpt { padding: 1.75rem; }
}

@media (max-width: 600px) {
  .flow-diagram { grid-template-columns: repeat(2, 1fr); }
  .flow-step { padding: 1.25rem 0.4rem; }
  .flow-step-title { font-size: 0.64rem; line-height: 1.45; min-height: 4.35em; }
  .flow-step-desc { font-size: 0.72rem; }
  .story-timeline::before { left: 1.5rem; }
  .story-item { grid-template-columns: 1.5rem 1fr; column-gap: 1rem; }
  .story-year { grid-column: 1 / -1; text-align: left; padding-bottom: 0.25rem; }
  .problem-card,
  .who-card,
  .process-step,
  .case-card,
  .team-card,
  .leak-calc-inputs,
  .leak-calc-results { padding: 2rem 1.5rem; }
  .process-num { font-size: 3.5rem; }
  .who-card h3,
  .team-name { font-size: 1.4rem; }
  .cases-cta,
  .audit-embed-inner,
  .contact-inner,
  .newsletter-inner { gap: 2rem; }
  .newsletter { padding: 3.5rem 1.25rem; }
  .hero h1 { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .hero { padding: 7rem 1.25rem 4rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 0.98rem; }
  .hero-microcopy { font-size: 0.62rem; }
}
