/* ═══════════════════════════════════════════════════════════════════
   ADVOKATER KLOK — Premium Law & Accounting Firm
   Archetype: Dark Warm · Forest Green + Gold
   ═══════════════════════════════════════════════════════════════════ */

/* ─── TOKENS ───────────────────────────────────────────────────── */
:root {
  --bg:           #0e1a12;
  --bg-2:         #152319;
  --bg-3:         #1c2e1f;
  --bg-card:      #1f3225;
  --bg-elevated:  #263d2c;
  --cream:        #f0e6d0;
  --cream-2:      #d4c09a;
  --cream-3:      #8a7060;
  --gold:         #c49a5b;
  --gold-2:       #a87d40;
  --gold-bright:  #d4ad6e;
  --gold-dim:     rgba(196,154,91,.18);
  --gold-glow:    rgba(196,154,91,.35);
  --line:         rgba(196,154,91,.14);
  --line-bright:  rgba(196,154,91,.4);
  --shadow:       rgba(8,15,10,.65);
  --green-accent: #4a8c5c;
  --red-alert:    #c0392b;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out:  cubic-bezier(.16,1,.3,1);
  --ease-gold: cubic-bezier(.45,0,.15,1);

  --nav-h: 72px;
  --r:     12px;
}

/* ─── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
select option { background: var(--bg-card); color: var(--cream); }

/* ─── DEFENSIVE — prevents .reveal[data-split] invisible bug ─────── */
.reveal[data-split] { opacity: 1; transform: none; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--cream);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }
em { font-style: italic; color: var(--gold); }
p { color: var(--cream-2); line-height: 1.7; }

/* ─── LAYOUT ────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,154,91,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(240,230,208,.35);
}
.btn-ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  transition: all .25s var(--ease-out);
  cursor: pointer;
}
.btn-ghost-gold:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

/* ─── SPLASH ────────────────────────────────────────────────────── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; transform: translateY(-8px); }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.splash-icon {
  width: 150px;
  height: 120px;
  border-radius: 10px;
  object-fit: contain;
  animation: splashPulse 1.4s ease-in-out infinite;
}
@keyframes splashPulse {
  0%, 100% { opacity: .7; transform: scale(.97); }
  50% { opacity: 1; transform: scale(1.03); }
}
.splash-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .25em;
  color: var(--gold);
  font-weight: 500;
}
.splash-bar {
  width: 140px;
  height: 2px;
  background: var(--line-bright);
  border-radius: 99px;
  overflow: clip;
}
.splash-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 99px;
  animation: splashLoad 2s var(--ease-out) forwards;
}
@keyframes splashLoad {
  from { width: 0; }
  to   { width: 100%; }
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────────────── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(196,154,91,.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, border-color .2s;
}
.cursor-ring.is-hovering {
  width: 52px; height: 52px;
  border-color: var(--gold);
}
@media (hover: none) {
  .cursor { display: none; }
}

/* ─── NAV ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.is-scrolled {
  background: rgba(14,26,18,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 50px;
  height: 40px;
  border-radius: 5px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .18em;
  color: var(--cream);
  font-weight: 500;
  line-height: 1;
}
.nav-sub {
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,154,91,.3);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: .5rem;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .25s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(14,26,18,.98);
  z-index: 999;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 2rem;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
}
.nav-mobile.is-open {
  transform: none;
}
.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  font-style: italic;
  transition: color .2s;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
}
.nav-mobile-link:hover { color: var(--gold); }
.nav-mobile-contact { display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile-cta { justify-content: center; }
.nav-mobile-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: .5rem;
}
.nav-mobile-socials a {
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--cream-3);
  transition: color .2s;
}
.nav-mobile-socials a:hover { color: var(--gold); }

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,20,13,.92) 0%,
    rgba(14,26,18,.88) 40%,
    rgba(8,16,10,.96) 100%
  );
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(196,154,91,.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(74,140,92,.08) 0%, transparent 60%);
  pointer-events: none;
  animation: meshDrift 18s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { opacity: .7; transform: scale(1) rotate(0deg); }
  50%       { opacity: 1;  transform: scale(1.05) rotate(1deg); }
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding-inline: 2rem;
  padding-block: 4rem 2rem;
}
.hero-kicker {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.hero-emblem {
  width: 160px;
  height: 128px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  opacity: .9;
  border-radius: 10px;
  overflow: hidden;
  animation: emblemGlow 3s ease-in-out infinite;
}
@keyframes emblemGlow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(196,154,91,.3)); }
  50%       { filter: drop-shadow(0 0 28px rgba(196,154,91,.6)); }
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  text-wrap: balance;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-2);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-inline: auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.7); }
  50%       { opacity: 1;  transform: scaleY(1); }
}

/* ─── STATS BAR ─────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  max-width: 1000px;
  margin-inline: auto;
  padding: 2.5rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .1rem;
  margin-bottom: .4rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
}
.stat-label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-family: var(--font-body);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line-bright);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stat-item { min-width: 45%; }
}

/* ─── SECTION HEADERS ───────────────────────────────────────────── */
.section-dark { padding-block: clamp(4rem, 8vw, 7rem); background: var(--bg-2); }
.section-mid  { padding-block: clamp(4rem, 8vw, 7rem); background: var(--bg-3); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-kicker {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: .75rem;
}
.section-title {
  margin-bottom: 1.25rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--cream-2);
  line-height: 1.7;
  max-width: 60ch;
  margin-inline: auto;
}

/* ─── CARDS GRID ────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}
.cards-grid--4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* ─── SERVICE CARDS ─────────────────────────────────────────────── */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-bright);
  box-shadow: 0 20px 60px rgba(8,15,10,.5), 0 0 0 1px rgba(196,154,91,.12);
}
.service-card-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gold-dim);
  color: var(--gold);
}
.service-card-icon svg { width: 22px; height: 22px; }
.service-card h3 { color: var(--cream); font-size: 1.2rem; }
.service-card > p { font-size: .9rem; color: var(--cream-3); flex: 1; }
.service-includes {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.service-includes li {
  font-size: .8rem;
  color: var(--cream-2);
  padding-left: 1rem;
  position: relative;
}
.service-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .55rem;
  top: .22rem;
}
.service-cta {
  display: inline-block;
  margin-top: auto;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
  padding-top: .5rem;
  border-top: 1px solid var(--line);
}
.service-cta:hover { border-bottom-color: var(--gold); color: var(--gold-bright); }

.section-cta-wrap {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.section-cta-note {
  font-size: .95rem;
  color: var(--cream-3);
  margin-bottom: 1.25rem;
}

/* ─── PRICING CARDS ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin-inline: auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--line-bright);
  border-radius: var(--r);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: clip;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-bright), var(--gold-2));
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(8,15,10,.5), 0 0 40px rgba(196,154,91,.08);
}
.pricing-card-header { display: flex; flex-direction: column; gap: .75rem; }
.pricing-badge {
  display: inline-block;
  padding: .25rem .75rem;
  background: rgba(196,154,91,.15);
  border: 1px solid rgba(196,154,91,.35);
  border-radius: 99px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  width: fit-content;
}
.pricing-badge--green {
  background: rgba(74,140,92,.15);
  border-color: rgba(74,140,92,.35);
  color: var(--green-accent);
}
.pricing-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.pricing-icon svg { width: 24px; height: 24px; }
.pricing-card-header h3 { font-size: 1.5rem; color: var(--cream); }
.pricing-subtitle { font-size: .85rem; color: var(--cream-3); font-family: var(--font-body); }
.pricing-price { display: flex; align-items: baseline; gap: .3rem; flex-wrap: wrap; }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.pricing-currency { font-size: 1.1rem; color: var(--gold-2); font-weight: 600; }
.pricing-period {
  display: block;
  width: 100%;
  font-size: .75rem;
  color: var(--cream-3);
  letter-spacing: .06em;
  margin-top: .2rem;
}
.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  flex: 1;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .875rem;
  color: var(--cream-2);
}
.pricing-includes li svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .15rem;
}
.pricing-urgency {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: rgba(192,57,43,.1);
  border: 1px solid rgba(192,57,43,.25);
  border-radius: 6px;
  font-size: .8rem;
  color: #e07060;
}
.pricing-urgency svg { width: 16px; height: 16px; flex-shrink: 0; }
.pricing-math {
  padding: .75rem 1rem;
  background: rgba(74,140,92,.1);
  border: 1px solid rgba(74,140,92,.2);
  border-radius: 6px;
  font-size: .85rem;
  color: var(--cream-2);
  text-align: center;
}
.pricing-math strong { color: var(--green-accent); }
.pricing-cta {
  width: 100%;
  justify-content: center;
  font-size: .85rem;
  padding: 1rem 1.5rem;
}
.pricing-note {
  font-size: .75rem;
  color: var(--cream-3);
  text-align: center;
  line-height: 1.4;
}

/* ─── LEGAL CARDS ───────────────────────────────────────────────── */
.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  position: relative;
}
.legal-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-bright);
  box-shadow: 0 16px 48px rgba(8,15,10,.4);
}
.legal-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-dim);
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: rgba(196,154,91,.12);
}
.legal-card-icon {
  width: 42px; height: 42px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.legal-card-icon svg { width: 20px; height: 20px; }
.legal-card h3 { font-size: 1.2rem; color: var(--cream); }
.legal-card > p { font-size: .88rem; color: var(--cream-3); flex: 1; line-height: 1.6; }
.legal-card-cta {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .2s, letter-spacing .2s;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
}
.legal-card-cta:hover { color: var(--gold-bright); letter-spacing: .1em; }

/* ─── IMAGE SPLIT ───────────────────────────────────────────────── */
.image-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.image-split-photo {
  position: relative;
  overflow: clip;
}
.image-split-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.image-split-photo:hover img { transform: scale(1.04); }
.image-split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--bg-3) 100%);
  pointer-events: none;
}
.image-split-content {
  background: var(--bg-3);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}
.image-split-content h2 { margin-bottom: 0; }
.pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pillar-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.pillar h4 { margin-bottom: .35rem; color: var(--cream); font-size: 1rem; }
.pillar p { font-size: .875rem; color: var(--cream-3); line-height: 1.6; }
@media (max-width: 768px) {
  .image-split { grid-template-columns: 1fr; }
  .image-split-photo { height: 280px; }
  .image-split-overlay { background: linear-gradient(180deg, transparent 60%, var(--bg-3) 100%); }
}

/* ─── STEPS ─────────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: .5;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h4 { margin-bottom: .6rem; color: var(--cream); }
.step p { font-size: .875rem; color: var(--cream-3); }
.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: .4;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}

/* ─── BOOKING SECTION ───────────────────────────────────────────── */
.booking-section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
}
.booking-bg {
  position: absolute;
  inset: 0;
}
.booking-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.booking-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,15,10,.97) 0%,
    rgba(14,26,18,.95) 100%
  );
}
.booking-section .container { position: relative; z-index: 1; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.booking-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.booking-info h2 { margin-bottom: 0; }
.booking-info > p { font-size: 1rem; color: var(--cream-2); line-height: 1.7; }
.booking-contact-items {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-top: .5rem;
}
.booking-contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--cream-2);
}
.booking-contact-item svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .booking-grid { grid-template-columns: 1fr; }
}

/* ─── FORM ──────────────────────────────────────────────────────── */
.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--line-bright);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.calendly-wrapper {
  padding: 0;
}
.calendly-inline-widget {
  width: 100%;
  border-radius: var(--r);
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group label {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--line-bright);
  border-radius: 6px;
  padding: .75rem 1rem;
  color: var(--cream);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,91,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-3); opacity: .6; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check { flex-direction: row !important; align-items: flex-start; gap: .75rem; }
.check-label {
  display: flex !important;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  font-size: .8rem;
  color: var(--cream-3);
  line-height: 1.5;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.check-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: .1rem;
  accent-color: var(--gold);
}
.btn-form-submit {
  width: 100%;
  justify-content: center;
  gap: .75rem;
  padding: 1.1rem;
  font-size: .875rem;
  position: relative;
  overflow: clip;
}
.btn-loading { display: none; }
.btn-form-submit.is-loading .btn-text { display: none; }
.btn-form-submit.is-loading .btn-loading { display: inline; }
.btn-form-submit.is-loading .btn-arrow { display: none; }
.btn-arrow { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── CONTACT SECTION ───────────────────────────────────────────── */
.contact-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: .25rem;
  font-weight: 600;
}
.contact-item-value { font-size: .95rem; color: var(--cream-2); line-height: 1.6; }
.contact-item-link { color: var(--gold); font-size: .82rem; margin-top: .3rem; display: inline-block; }
.contact-item-link:hover { color: var(--gold-bright); }
.contact-social-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 600;
  margin-bottom: .75rem;
}
.contact-social-links { display: flex; flex-direction: column; gap: .5rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--cream-2);
  transition: color .2s;
}
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-link:hover { color: var(--gold); }
.contact-map { display: flex; flex-direction: column; gap: 1rem; }
.map-embed {
  width: 100%;
  height: 380px;
  border-radius: var(--r);
  overflow: clip;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 100%; }
.map-directions {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
  transition: color .2s;
}
.map-directions svg { width: 14px; height: 14px; }
.map-directions:hover { color: var(--gold-bright); }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: 3rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.footer-logo-mark {
  width: 50px;
  height: 40px;
  border-radius: 5px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .18em;
  color: var(--cream);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: .2rem;
}
.footer-tagline {
  font-size: .75rem;
  color: var(--cream-3);
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1;
}
.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col-title {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .25rem;
}
.footer-col a {
  font-size: .82rem;
  color: var(--cream-3);
  transition: color .2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p {
  font-size: .75rem;
  color: var(--cream-3);
}
.footer-credits-note a { color: var(--cream-3); text-decoration: underline; }
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── WHATSAPP FLOAT ────────────────────────────────────────────── */
/* ── WhatsApp Chat Widget ─────────────────────────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}
.wa-float {
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: transform .25s var(--ease-out), box-shadow .25s;
  flex-shrink: 0;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 36px rgba(37,211,102,.5);
}
.wa-float.is-open { animation: none; }
.wa-float svg { width: 26px; height: 26px; transition: opacity .2s, transform .2s; }
.wa-icon-close { display: none; }
.wa-float.is-open .wa-icon-open  { display: none; }
.wa-float.is-open .wa-icon-close { display: block; }
.wa-float-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity .3s, transform .3s;
}
.wa-float-badge.is-visible { opacity: 1; transform: scale(1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.35); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.1); }
}
/* Popup card */
.wa-popup {
  width: 320px;
  background: var(--bg-2);
  border: 1px solid var(--line-bright);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  transform: translateY(16px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease-out);
  transform-origin: bottom right;
}
.wa-popup.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-popup-header {
  background: #075e54;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.wa-popup-avatar {
  position: relative;
  width: 42px; height: 42px;
  flex-shrink: 0;
}
.wa-popup-avatar img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.2);
}
.wa-popup-status {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 10px; height: 10px;
  background: #25d366;
  border-radius: 50%;
  border: 2px solid #075e54;
}
.wa-popup-info { flex: 1; }
.wa-popup-name  { color: #fff; font-weight: 600; font-size: .9rem; }
.wa-popup-avail { color: rgba(255,255,255,.75); font-size: .72rem; margin-top: .1rem; }
.wa-popup-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.7); padding: .25rem;
  display: flex; align-items: center;
  transition: color .2s;
}
.wa-popup-close:hover { color: #fff; }
.wa-popup-body {
  padding: 1.25rem 1.1rem;
  background: #ece5dd;
}
.wa-popup-bubble {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: .75rem 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
  position: relative;
  max-width: 90%;
}
.wa-popup-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border: 8px solid transparent;
  border-right-color: #fff;
  border-top-color: #fff;
}
.wa-popup-bubble p { color: #303030; font-size: .85rem; line-height: 1.5; }
.wa-popup-bubble p + p { margin-top: .4rem; }
.wa-popup-time {
  display: block;
  text-align: right;
  font-size: .68rem;
  color: #8c9898;
  margin-top: .35rem;
}
/* Typing indicator */
.wa-typing {
  display: flex;
  gap: 4px;
  padding: .5rem .75rem;
  background: #fff;
  border-radius: 0 10px 10px 10px;
  width: fit-content;
  margin-top: .75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
  opacity: 0;
  transition: opacity .3s;
}
.wa-typing.is-visible { opacity: 1; }
.wa-typing span {
  width: 7px; height: 7px;
  background: #aaa;
  border-radius: 50%;
  animation: waTyping 1.2s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: .2s; }
.wa-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes waTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30%            { transform: translateY(-5px); opacity: 1; }
}
/* Quick reply buttons */
.wa-quick-replies {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.wa-quick-replies.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wa-quick-btn {
  display: block;
  padding: .6rem .9rem;
  background: #fff;
  border: 1.5px solid #25d366;
  border-radius: 20px;
  color: #075e54;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background .18s, color .18s, transform .15s;
}
.wa-quick-btn:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-1px);
}
.wa-quick-btn--outline {
  border-color: #ccc;
  color: #666;
}
.wa-quick-btn--outline:hover {
  background: #f0f0f0;
  color: #333;
}
@media (max-width: 400px) {
  .wa-popup { width: calc(100vw - 2rem); }
}

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { display: none; }
  .booking-form { padding: 1.75rem; }
}

/* ─── HOVER ON TOUCH ────────────────────────────────────────────── */
@media (hover: none) {
  .service-card:hover,
  .pricing-card:hover,
  .legal-card:hover { transform: none; }
}

/* ─── REDUCED MOTION — only intrusive effects ───────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh,
  .hero-emblem,
  .splash-icon,
  .hero-scroll-line,
  .wa-float { animation: none; }
  /* micro-interactions (hover, reveals, transitions) remain ON */
}
