:root {
  --ink: #0d1b3a;
  --ink-soft: #1a2748;
  --accent: #c08a3e;
  --accent-soft: #e8d4ad;
  --light: #f7f5f0;
  --light-tint: #ece8de;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #555248;
  --border: #d8d2c4;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ---- Navigation ---- */
.site-nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-soft);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--white);
}

.wordmark-main {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.wordmark-sub {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color 180ms ease;
  padding: 12px 0;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: var(--ink) !important;
  font-weight: 700;
  padding: 10px 20px !important;
  border: 1px solid var(--accent);
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover { background: #d49a4a; border-color: #d49a4a; color: var(--ink) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Eyebrow ---- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow.accent { color: var(--accent); }

/* ---- Hero ---- */
.hero {
  background: var(--light);
  padding: 120px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 20px 0 24px;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  min-height: 44px;
  line-height: 1.2;
  border-radius: 0;
}

.btn-filled {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.btn-filled:hover { background: #d49a4a; border-color: #d49a4a; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover { background: var(--ink); color: var(--white); }

/* ---- Trust pills ---- */
.trust {
  background: var(--white);
  padding: 40px 24px;
}

.trust-inner { max-width: 1100px; margin: 0 auto; }

.pill-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pill {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: var(--light);
}

/* ---- Services menu ---- */
.services {
  background: var(--light);
  padding: 100px 24px;
}

.services-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-heading {
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 44px);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
  margin: 14px 0 18px;
}

.section-intro {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.menu {
  border-top: 1px solid var(--border);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 40px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.menu-name {
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.menu-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ---- Proof ---- */
.proof {
  background: var(--white);
  padding: 100px 24px;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.proof-text .section-heading,
.proof-text .section-intro {
  text-align: left;
  margin-left: 0;
}

.proof-text .section-intro { margin-bottom: 32px; }

.proof-text .btn { margin-top: 8px; }

.proof-figure {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-block {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

.stat-number {
  display: block;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ---- Location ---- */
.location {
  background: var(--light-tint);
  padding: 100px 24px;
}

.location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-text .section-heading { text-align: left; margin-left: 0; }
.location-text .section-intro { text-align: left; margin-left: 0; margin-bottom: 0; }

.location-image {
  max-width: 100%;
}

.location-image img {
  display: block;
  width: 100%;
  max-width: 662px;
  height: auto;
  border: 1px solid var(--border);
}

/* ---- Final CTA ---- */
.final-cta {
  background: var(--ink);
  padding: 110px 24px;
  text-align: center;
}

.final-inner { max-width: 720px; margin: 0 auto; }

.final-heading {
  font-weight: 800;
  font-size: clamp(30px, 5vw, 52px);
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.final-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin-bottom: 40px;
}

.final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btn-filled {
  background: var(--accent);
  color: var(--ink);
}

.final-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.final-cta .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  padding: 60px 24px 24px;
  border-top: 1px solid var(--ink-soft);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .wordmark-main {
  font-size: 22px;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.footer-brand .wordmark-sub {
  color: var(--accent-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.5;
  max-width: 240px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-soft);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a, .footer-links li {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  transition: color 180ms ease;
}

.footer-links a:hover { color: var(--white); }

.footer-base {
  max-width: 1100px;
  margin: 24px auto 0;
  text-align: center;
}

.footer-base p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ---- Reveal animation ---- */
.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 700px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--ink-soft);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 280ms ease, opacity 280ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 16px 24px;
    width: 100%;
    border-bottom: 1px solid var(--ink-soft);
    font-size: 16px;
  }

  .nav-cta {
    margin: 8px 24px 16px;
    text-align: center;
    border-bottom: none !important;
  }

  .hero { padding: 80px 20px 70px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }

  .services { padding: 70px 20px; }
  .section-intro { margin-bottom: 40px; }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .menu-price { margin-top: 4px; }

  .proof, .location { padding: 70px 20px; }
  .proof-inner, .location-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .proof-figure { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .stat-block { flex: 1 1 130px; }
  .stat-number { font-size: 36px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .final-cta { padding: 80px 20px; }
  .final-buttons { flex-direction: column; align-items: stretch; }
  .final-buttons .btn { text-align: center; }
}

@media (max-width: 420px) {
  .footer-inner { grid-template-columns: 1fr; }
  .stat-block { flex: 1 1 100%; }
}