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

:root {
  --bg: #0D0C0B;
  --bg2: #131210;
  --bg3: #181614;
  --text: #EAE5DC;
  --muted: #7A7570;
  --accent: #C87B3A;
  --accent2: #6A9E8C;
  --border: rgba(234,229,220,0.08);
  --border-strong: rgba(234,229,220,0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── 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 3rem;
  background: rgba(13,12,11,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  border: 1px solid rgba(200,123,58,0.4);
  padding: 0.55rem 1.3rem; border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}
.nav-cta:hover { background: rgba(200,123,58,0.1); border-color: var(--accent); }

/* ── BURGER ── */
.burger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1.5px; background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99; background: var(--bg);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 300;
  color: var(--text); text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:last-child { color: var(--accent); }
.mobile-menu a:hover { color: var(--accent); }

/* ── SECTIONS ── */
section { padding: 7rem 3rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 3rem 7rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(200,123,58,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(106,158,140,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.04;
  background-image:
    linear-gradient(var(--text) 1px, transparent 1px),
    linear-gradient(90deg, var(--text) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-label {
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-label::before {
  content: ''; display: block;
  width: 2rem; height: 1px; background: var(--accent);
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  max-width: 800px;
}
h1 em {
  font-style: italic;
  color: rgba(234,229,220,0.5);
}
.hero-sub {
  font-size: 1.1rem; font-weight: 300;
  color: rgba(234,229,220,0.65);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--accent); color: #0D0C0B;
  font-family: var(--font-body); font-size: 0.875rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; text-decoration: none; border-radius: 2px;
  transition: opacity 0.25s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border-strong); color: var(--muted);
  font-family: var(--font-body); font-size: 0.875rem;
  font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; text-decoration: none; border-radius: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-strong); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 3rem; z-index: 1;
  writing-mode: vertical-rl; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 0.75rem;
}
.hero-scroll::after {
  content: ''; display: block;
  width: 1px; height: 3rem; background: var(--muted);
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: ''; width: 1.5rem; height: 1px; background: var(--accent);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: rgba(234,229,220,0.45); }

/* ── CHALLENGE ── */
#challenge { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.challenge-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  margin-top: 4rem;
}
.challenge-intro {
  font-size: 1.15rem; color: rgba(234,229,220,0.75);
  line-height: 1.85;
}
.challenge-points { display: flex; flex-direction: column; gap: 2rem; }
.challenge-point {
  padding-left: 1.5rem;
  border-left: 1px solid var(--border-strong);
}
.challenge-point strong {
  display: block; font-weight: 400; font-size: 1rem;
  margin-bottom: 0.35rem; color: var(--text);
}
.challenge-point p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ── SERVICES ── */
#services { }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 5rem; }
.services-intro { font-size: 1.05rem; color: rgba(234,229,220,0.65); line-height: 1.85; }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
}
.service-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
}
.service-card:nth-child(even) { border-right: none; }
.service-card:nth-last-child(-n+2) { border-bottom: none; }
.service-card:hover { background: rgba(234,229,220,0.025); }
.service-num {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--accent); opacity: 0.4;
  margin-bottom: 1rem; display: block;
  font-weight: 300; line-height: 1;
}
.service-card h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
  margin-bottom: 0.75rem; line-height: 1.3;
}
.service-card p { font-size: 0.925rem; color: var(--muted); line-height: 1.75; }
.service-tag {
  display: inline-block; margin-top: 1.25rem;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent2); border: 1px solid rgba(106,158,140,0.3);
  padding: 0.25rem 0.6rem; border-radius: 2px;
}

/* ── APPROACH ── */
#approach { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.approach-layout { display: grid; grid-template-columns: 5fr 4fr; gap: 6rem; margin-top: 4rem; }
.approach-steps { display: flex; flex-direction: column; gap: 0; }
.approach-step {
  display: grid; grid-template-columns: 3rem 1fr;
  gap: 1.5rem; padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.approach-step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 300;
  color: var(--accent); opacity: 0.5; line-height: 1; padding-top: 0.2rem;
}
.step-body h4 {
  font-family: var(--font-body); font-weight: 400;
  font-size: 1rem; margin-bottom: 0.4rem;
}
.step-body p { font-size: 0.925rem; color: var(--muted); line-height: 1.75; }
.approach-sidebar {}
.approach-sidebar h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 400;
  margin-bottom: 1.25rem; line-height: 1.3;
}
.approach-sidebar p { font-size: 0.925rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.network-visual {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 3px; padding: 2rem;
  background: rgba(234,229,220,0.02);
}
.network-visual-label {
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem;
}
.network-items { display: flex; flex-direction: column; gap: 0.85rem; }
.network-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.925rem; color: rgba(234,229,220,0.65);
}
.network-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent2); flex-shrink: 0;
}

/* ── WHO WE WORK WITH ── */
#clients {}
.clients-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 4rem; }
.clients-yes h3, .clients-no h3 {
  font-family: var(--font-body); font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.clients-yes h3 { color: var(--accent2); }
.clients-no h3 { color: var(--muted); }
.client-trait {
  display: flex; gap: 0.75rem;
  font-size: 0.9rem; padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.client-trait:last-child { border-bottom: none; }
.trait-icon { font-size: 0.85rem; padding-top: 0.25rem; flex-shrink: 0; opacity: 0.6; }
.client-trait strong { font-weight: 400; display: block; margin-bottom: 0.2rem; }
.client-trait p { font-size: 0.925rem; color: var(--muted); line-height: 1.7; }

/* ── ABOUT ── */
#about { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-layout { display: grid; grid-template-columns: 2fr 3fr; gap: 6rem; margin-top: 4rem; align-items: start; }
.about-left {}
.founder-name {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  margin-bottom: 0.35rem;
}
.founder-role {
  font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2rem;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.about-tag {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  padding: 0.3rem 0.65rem; border-radius: 2px;
}
.about-body p {
  font-size: 0.95rem; color: rgba(234,229,220,0.72);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.about-body p:last-child { margin-bottom: 0; }

/* ── CONTACT ── */
#contact { text-align: center; }
#contact h2 { max-width: 640px; margin: 0 auto 1.5rem; }
#contact .hero-sub { margin: 0 auto 3rem; text-align: center; max-width: 480px; }
.contact-form {
  max-width: 560px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1rem;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group textarea, .form-group select {
  background: rgba(234,229,220,0.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  padding: 0.8rem 1rem; border-radius: 2px;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
}
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #151311 inset;
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  transition: background-color 5000s ease-in-out 0s;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #1a1816; }
.form-note { font-size: 0.85rem; color: var(--muted); text-align: center; margin-top: 0.5rem; }

/* ── FOOTER ── */
footer {
  padding: 5rem 3rem 3rem;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-brand {}
.footer-logo { font-family: var(--font-display); font-size: 1.35rem; color: var(--text); margin-bottom: 0.75rem; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 0.9rem; color: var(--muted); max-width: 260px; line-height: 1.6; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-heading {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.5rem;
}
.footer-col a { font-size: 0.875rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.footer-text { font-size: 0.8rem; color: var(--muted); }
.footer-legal { display: flex; align-items: center; gap: 1rem; font-size: 0.8rem; color: var(--muted); }
.footer-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); opacity: 0.5; }

/* ── CHALLENGE FOOTNOTE ── */
.challenge-footnote { font-size: 0.9rem; color: var(--muted); }

/* ── SECTION LABEL CENTER ── */
.section-label-center { justify-content: center; }

/* ── SUBMIT BUTTON ── */
.btn-submit { align-self: center; border: none; cursor: pointer; }

/* ── DIVIDER ── */
.divider { width: 3rem; height: 1px; background: var(--accent); margin: 2rem 0; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.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; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 768px) {
  body { font-size: 17px; }
  nav { padding: 1.2rem 1.5rem; }
  section { padding: 5rem 1.5rem; }
  #hero { padding: 0 1.5rem 5rem; }
  .hero-scroll { display: none; }
  .hero-sub { font-size: 1.05rem; }
  .challenge-grid, .services-header, .approach-layout,
  .clients-layout, .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .service-card p { font-size: 0.95rem; }
  .service-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .section-label, .service-tag, .network-visual-label,
  .clients-yes h3, .clients-no h3, .form-group label,
  .about-tag, .hero-label { font-size: 0.85rem; }
  .challenge-point p, .step-body p, .client-trait p,
  .approach-sidebar p, .network-item { font-size: 0.95rem; }
  .service-num { font-size: 2rem; }
  .btn-primary, .btn-ghost { font-size: 0.9rem; padding: 1rem 2rem; }
  .footer-text, .footer-links a { font-size: 0.9rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ── GDPR BANNER ── */
#gdpr-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.4s ease;
  pointer-events: none;
}
#gdpr-overlay.visible { opacity: 1; pointer-events: all; }
#gdpr-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  font-size: 0.875rem; color: var(--muted);
  transform: translateY(100%); transition: transform 0.4s ease;
}
#gdpr-banner.visible { transform: translateY(0); display: flex; }
#gdpr-banner a { color: var(--accent); text-decoration: none; }
#gdpr-banner a:hover { text-decoration: underline; }
.gdpr-buttons { display: flex; gap: 0.75rem; }
#gdpr-accept, #gdpr-reject {
  background: none; border: 1px solid var(--border-strong); color: var(--muted);
  font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.45rem 1rem; border-radius: 2px;
  cursor: pointer; white-space: nowrap; transition: background 0.25s, color 0.25s, border-color 0.25s;
}
#gdpr-accept { border-color: var(--accent); color: var(--accent); }
#gdpr-accept:hover { background: rgba(200,123,58,0.1); }
#gdpr-reject:hover { color: var(--text); border-color: var(--text); }
@media (max-width: 768px) {
  #gdpr-banner { flex-direction: column; padding: 1.25rem 1.5rem; gap: 0.75rem; text-align: center; }
}
