@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ─── VARIABLES ───────────────────────────────────────────── */
:root {
  --charcoal:      #1C1917;
  --charcoal-mid:  #292524;
  --card:          #292524;
  --card-hover:    #44403C;
  --border:        rgba(245, 245, 240, 0.08);
  --border-mid:    rgba(245, 245, 240, 0.14);

  --yellow:        #F5C842;
  --yellow-dark:   #D4A820;
  --yellow-faint:  rgba(245, 200, 66, 0.08);

  --cream:         #F4F0EA;
  --cream-dark:    #EAE6DF;
  --cream-text:    #292524;
  --cream-muted:   #57534E;

  --white:         #F5F5F0;
  --white-70:      rgba(245, 245, 240, 0.70);
  --white-40:      rgba(245, 245, 240, 0.40);
  --white-12:      rgba(245, 245, 240, 0.12);

  --font-display:  'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;

  --radius:        6px;
  --transition:    0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; cursor: none; }
button { font-family: var(--font-body); cursor: none; border: none; background: none; }

/* ─── CURSOR ──────────────────────────────────────────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}
.cursor.hovering {
  transform: translate(-50%, -50%) scale(4);
  background: rgba(245, 200, 66, 0.22);
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger .reveal:nth-child(6) { transition-delay: 400ms; }

/* ─── TYPE ────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--yellow);
  flex-shrink: 0;
}
/* Eyebrow on cream sections */
.on-cream .eyebrow { color: #8A7040; }
.on-cream .eyebrow::before { background: #8A7040; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-primary {
  background: var(--yellow);
  color: var(--charcoal);
}
.btn-primary:hover { 
  background: var(--yellow-dark); 
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(245, 200, 66, 0.25);
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-mid);
}
.btn-ghost-light:hover { 
  border-color: var(--yellow); 
  color: var(--yellow); 
  transform: translateY(-2px);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--cream-text);
  border: 1px solid rgba(41, 37, 36, 0.25);
}
.btn-ghost-dark:hover { 
  border-color: var(--charcoal); 
  color: var(--charcoal); 
  transform: translateY(-2px);
}
.btn-solid-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-solid-dark:hover { 
  background: var(--card-hover); 
  transform: translateY(-2px);
}

/* ─── HEADER ──────────────────────────────────────────────── */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 26px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: background var(--transition), padding var(--transition), border-bottom var(--transition), backdrop-filter var(--transition);
}
#header.scrolled {
  background: rgba(28, 25, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 64px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.logo:hover {
  opacity: 0.8;
}
.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
nav { display: flex; align-items: center; gap: 32px; flex: 1; justify-content: center; }
nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white-40);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--yellow);
  transition: width 0.24s ease;
}
nav a:hover { color: var(--white); }
nav a:hover::after { width: 100%; }
.nav-socials { display: flex; gap: 8px; }
.nav-socials a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(245, 245, 240, 0.05); color: var(--white); transition: all var(--transition); }
.nav-socials a:hover { background: var(--yellow); color: var(--charcoal); transform: translateY(-2px); }
.nav-socials svg { width: 18px; height: 18px; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 0.28s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.7px, 4.7px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.7px, -4.7px); }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.nav-overlay.open { opacity: 1; }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white-70);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--yellow); }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  background: var(--yellow);
  overflow: hidden;
  transition: all 0.28s ease;
}
.wa-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.wa-icon svg { width: 22px; height: 22px; }
.wa-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.28s ease, padding 0.28s ease;
}
.wa-float:hover .wa-label { max-width: 130px; padding-right: 18px; }

/* ─── SECTION BASE ────────────────────────────────────────── */
section { padding: 112px 64px; }
.inner { max-width: 1240px; margin: 0 auto; }
.sec-header { margin-bottom: 64px; }
.sec-header h2 { font-size: clamp(48px, 5.5vw, 82px); color: var(--white); }
.sec-header p {
  font-size: 16px;
  color: var(--white-70);
  max-width: 500px;
  margin-top: 18px;
  line-height: 1.72;
}
/* On cream variant */
.sec-cream { background: var(--cream); }
.sec-cream .sec-header h2, .on-cream h2 { color: var(--cream-text); }
.sec-cream .sec-header p, .on-cream p { color: var(--cream-muted); }
.sec-mid { background: var(--charcoal-mid); }

/* ─── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 64px 80px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  background: transparent;
}
.hero-left h1 {
  font-size: clamp(48px, 6.5vw, 84px);
  color: var(--white);
  margin-bottom: 22px;
}
.hero-left h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-sub {
  font-size: 16px;
  color: var(--white-70);
  max-width: 420px;
  line-height: 1.72;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stars { color: var(--yellow); font-size: 13px; letter-spacing: 2px; }
.hero-proof p { font-size: 13px; color: var(--white-40); }
.hero-proof strong { color: var(--white); font-weight: 500; }
.hero-right {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 28, 28, 0.9) 0%, rgba(28, 28, 28, 0.5) 60%, rgba(28, 28, 28, 0.3) 100%);
  z-index: 1;
}
/* ── FLOATING REVIEW ────────────────────────────────────── */
.floating-review {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 440px;
  background: rgba(28, 25, 23, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.01);
  padding: 40px;
  z-index: 10;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 15px 25px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.fr-stars { color: var(--yellow); font-size: 16px; letter-spacing: 4px; margin-bottom: 18px; }
.fr-text { font-size: 17px; color: var(--white); line-height: 1.7; font-style: italic; margin-bottom: 32px; min-height: 84px; }
.fr-text::before { content: '\201C'; color: var(--yellow); font-size: 26px; line-height: 0; vertical-align: -6px; margin-right: 5px; }
.fr-text::after { content: '|'; animation: blink 1s infinite; color: var(--yellow); margin-left: 2px; }
@keyframes blink { 50% { opacity: 0; } }
.fr-author { display: flex; align-items: center; gap: 12px; opacity: 0; transition: opacity 0.4s ease; }
.fr-author.visible { opacity: 1; }
.fr-ini { width: 44px; height: 44px; background: var(--yellow); color: var(--charcoal); font-family: var(--font-display); font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 4px; }
.fr-author p { font-size: 15px; font-weight: 500; color: var(--white); }
.fr-author span { font-size: 13px; color: var(--white-40); }

/* ─── PAGE HERO (INNER PAGES) ─────────────────────────────── */
.page-hero {
  min-height: clamp(450px, 50vh, 550px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--charcoal-mid);
}
.page-hero-img {
  position: absolute;
  inset: 0;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 64px 30px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-content h1 {
  font-size: clamp(38px, 4.5vw, 64px) !important;
  color: var(--white);
  line-height: 1.05 !important;
  letter-spacing: -0.01em;
}
.page-hero-content p:not(.breadcrumb) {
  font-size: 17px;
  color: var(--white-70);
  max-width: 520px;
  margin-top: 16px;
  line-height: 1.7;
}
.page-hero .breadcrumb {
  font-size: 12px;
  color: var(--white-40);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero .breadcrumb a {
  color: var(--yellow);
  transition: color var(--transition);
}
.page-hero .breadcrumb a:hover {
  color: var(--white);
}

/* ─── PROMISE (cream) ─────────────────────────────────────── */
#promise { background: var(--cream); padding: 112px 64px; }
.promise-layout {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
.promise-headline {
  font-size: clamp(48px, 5.5vw, 72px);
  color: var(--cream-text);
  line-height: 1.05;
}
.promise-cards { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 16px; 
}
.promise-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  border-left: 3px solid var(--yellow);
  box-shadow: 0 4px 20px rgba(41, 37, 36, 0.04);
  transition: all var(--transition);
}
.promise-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 30px rgba(41, 37, 36, 0.08); 
}
.promise-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream-text);
  margin-bottom: 12px;
}
.promise-card p { font-size: 15px; color: var(--cream-muted); line-height: 1.7; }

/* ─── MEET JONAS ──────────────────────────────────────────── */
#jonas { background: var(--charcoal-mid); padding: 0; overflow: hidden; }
.jonas-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  background: var(--charcoal);
}
.jonas-img {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.jonas-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%) brightness(0.88);
}
.jonas-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 40%, var(--charcoal) 100%);
}
.jonas-content {
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jonas-content p {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 18px;
}
.jonas-quote {
  margin: 28px 0 32px;
  padding: 22px 24px;
  border-left: 2px solid var(--yellow);
  background: var(--yellow-faint);
}
.jonas-quote p {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.jonas-quote span { font-size: 11px; color: var(--white-40); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── PROCESS (cream) ─────────────────────────────────────── */
#process { background: var(--cream); padding: 112px 64px; }
.process-grid {
  max-width: 1240px; margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}
.process-connector {
  position: absolute;
  top: 73px; left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--yellow) 0, var(--yellow) 6px, transparent 6px, transparent 14px);
  opacity: 0.5;
}
.process-step { padding: 0 28px; text-align: center; }
.process-num-bg {
  font-family: var(--font-display);
  font-size: 100px;
  color: rgba(42,37,32,0.05);
  line-height: 1;
  margin-bottom: -32px;
  user-select: none;
}
.process-dot {
  width: 10px; height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px rgba(245,200,66,0.4);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--cream-text);
  margin-bottom: 10px;
}
.process-step p { font-size: 13px; color: var(--cream-muted); line-height: 1.65; }

/* ─── SERVICES ────────────────────────────────────────────── */
#services { background: var(--charcoal); padding: 112px 64px; }
.services-top {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 44px;
}
.services-top h2 { font-size: clamp(44px, 5vw, 76px); color: var(--white); }
.services-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.svc-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--card);
  border-radius: var(--radius);
}
.svc-card.bento-large { grid-column: span 2; grid-row: span 2; }
.svc-card.bento-wide  { grid-column: span 2; grid-row: span 1; }
.svc-card.bento-tall  { grid-column: span 1; grid-row: span 2; }

.svc-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1), filter 0.65s ease;
}
.svc-card:hover img { transform: scale(1.08); filter: brightness(0.4); }
.svc-content {
  position: absolute;
  inset: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(28,25,23, 0.9) 0%, transparent 70%);
}
.svc-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.svc-bar {
  width: 28px; height: 1.5px;
  background: var(--yellow);
  transition: width 0.28s ease;
}
.svc-card:hover .svc-bar { width: 56px; }
.svc-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: inline-flex; align-items: center; gap: 5px;
}
.svc-card:hover .svc-link { opacity: 1; transform: translateY(0); }
.svc-footer {
  max-width: 1240px; margin: 48px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.svc-footer p { font-size: 17px; color: var(--white-70); }
.svc-footer strong { display: block; color: var(--white); }

/* ─── BEFORE/AFTER ────────────────────────────────────────── */
#beforeafter { background: var(--charcoal-mid); padding: 112px 64px; }
.ba-grid {
  max-width: 1240px; margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-item {
  position: relative;
  height: 400px;
  overflow: hidden;
  user-select: none;
}
.ba-before, .ba-after {
  position: absolute; inset: 0;
}
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1.5px;
  background: var(--yellow);
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
}
.ba-btn {
  position: absolute;
  top: 50%; left: 0;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  color: var(--charcoal);
  font-weight: 700;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.ba-item.auto-playing .ba-btn {
  animation: ba-pulse 2s infinite;
}
@keyframes ba-pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(245, 200, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0); }
}
.ba-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 11;
  background: linear-gradient(to top, rgba(28,28,28,0.92) 0%, transparent 100%);
  padding: 32px 18px 16px;
}
.ba-meta strong { font-size: 13px; color: var(--yellow); display: block; margin-bottom: 2px; }
.ba-meta span { font-size: 11px; color: var(--white-40); letter-spacing: 0.04em; }
.ba-cta { text-align: center; margin-top: 52px; }

/* ─── TESTIMONIALS (cream) ────────────────────────────────── */
#testimonials { background: var(--cream); padding: 112px 64px; }
.reviews-hero {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 52px;
}
.reviews-big-num {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--cream-text);
  line-height: 1;
}
.reviews-big-stars { color: var(--yellow); font-size: 18px; letter-spacing: 3px; margin-bottom: 4px; }
.reviews-hero p { font-size: 13px; color: var(--cream-muted); }
.reviews-hero strong { color: var(--cream-text); }
.reviews-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.review-card {
  background: var(--white);
  padding: 28px 24px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.review-card:hover { border-top-color: var(--yellow); background: var(--cream); }
.review-stars { color: var(--yellow); font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.review-text::before { content: '\201C'; color: var(--yellow); font-size: 24px; line-height: 0; vertical-align: -7px; margin-right: 3px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-ini {
  width: 34px; height: 34px;
  background: var(--yellow);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-author p { font-size: 13px; font-weight: 500; color: var(--cream-text); }
.review-author span { font-size: 11px; color: var(--cream-muted); }
.reviews-footer {
  max-width: 1240px; margin: 48px auto 0;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

/* ─── AREAS ───────────────────────────────────────────────── */
#areas { background: var(--charcoal); padding: 112px 64px; }
.areas-list {
  max-width: 1240px; margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.area-cell {
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white-40);
  letter-spacing: 0.04em;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.area-cell:nth-child(3n) { border-right: none; }
.area-cell:hover { color: var(--yellow); background: var(--yellow-faint); }
.area-note {
  max-width: 1240px; margin: 24px auto 0;
  font-size: 13px;
  color: var(--white-40);
  text-align: center;
}

/* ─── FINAL CTA ───────────────────────────────────────────── */
#finalcta {
  background: var(--yellow);
  padding: 100px 64px;
}
.finalcta-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px; flex-wrap: wrap;
}
#finalcta h2 {
  font-size: clamp(52px, 6vw, 90px);
  color: var(--charcoal);
  max-width: 580px;
}
.finalcta-side { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.finalcta-side p { font-size: 15px; color: rgba(28,28,28,0.6); max-width: 260px; line-height: 1.65; margin-bottom: 6px; }

/* ─── FINAL CTA COMPOSED (HOME PAGE) ─────────────────────── */
#finalcta.finalcta-composed {
  padding: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  background: transparent;
}
.finalcta-bg {
  width: 100%;
  height: clamp(500px, 55vw, 760px);
  object-fit: cover;
  object-position: center 85%;
  display: block;
}
.finalcta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 8%;
  background: linear-gradient(to right, rgba(28,25,23,0.95) 0%, rgba(28,25,23,0.7) 35%, transparent 100%);
  pointer-events: none;
}
.finalcta-content-box {
  text-align: left;
  max-width: 650px;
}
#finalcta.finalcta-composed h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 0.95;
  margin-bottom: 16px;
}
#finalcta.finalcta-composed h2 .cta-line-1 {
  font-size: clamp(18px, 3.5vw, 40px);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.9);
}
#finalcta.finalcta-composed h2 .cta-line-2 {
  font-size: clamp(36px, 6vw, 84px);
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.9);
}
.finalcta-content-box p {
  font-size: clamp(16px, 2.5vw, 24px);
  color: var(--white);
  font-weight: 600;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.9);
}
.finalcta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
  pointer-events: auto;
}
.btn-cta {
  font-size: 16px !important;
  font-weight: 800 !important;
  padding: 18px 36px !important;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px; /* Force exact same height */
}
.btn-ghost-light.btn-cta {
  border: 2px solid var(--white);
  background: rgba(0,0,0,0.4);
  color: var(--white);
  padding: 16px 34px !important; /* Compensate for 2px border */
}

/* ─── FOOTER ──────────────────────────────────────────────── */
#footer {
  background: var(--charcoal-mid);
  border-top: 2px solid var(--yellow);
  padding: 72px 64px 36px;
}
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo img { height: 44px; }
.footer-tagline { font-size: 13px; color: var(--white-40); margin-top: 14px; line-height: 1.65; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  font-size: 10px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--white-40); border: 1px solid var(--border); padding: 5px 10px;
  transition: all var(--transition);
}
.footer-socials a:hover { color: var(--yellow); border-color: var(--yellow); }
.footer-col h4 {
  font-size: 10px; font-weight: 500; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--white-40); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.contact-item { margin-bottom: 12px; }
.contact-item label { display: block; font-size: 10px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--white-40); margin-bottom: 2px; }
.contact-item a, .contact-item p { font-size: 13px; color: var(--white-70); transition: color var(--transition); }
.contact-item a:hover { color: var(--yellow); }
.footer-review {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--yellow); border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.footer-review:hover { border-bottom-color: var(--yellow); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 11px; color: var(--white-40); letter-spacing: 0.04em; }
.footer-bottom a { color: var(--yellow); transition: opacity var(--transition); }
.footer-bottom a:hover { opacity: 0.75; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  body, a, button { cursor: auto !important; }
  .cursor { display: none !important; }
  section { padding: 80px 48px; }
  #header, #header.scrolled { padding: 20px 48px; }
  #hero { align-items: flex-start; }
  .hero-right::before { background: linear-gradient(to right, rgba(28, 28, 28, 0.95) 0%, rgba(28, 28, 28, 0.7) 100%); }
  .floating-review { top: auto; left: auto; bottom: 24px; right: 24px; width: 280px; transform: none; padding: 24px; }
  .hero-left { padding: 150px 48px 72px; background: transparent; }
  .page-hero-content { padding: 100px 48px 60px; }
  .promise-layout { grid-template-columns: 1fr; gap: 40px; }
  .jonas-layout { grid-template-columns: 1fr; }
  .jonas-img { min-height: 280px; order: -1; }
  .jonas-img::after { background: linear-gradient(to top, var(--charcoal-mid) 0%, transparent 50%); }
  .jonas-content { padding: 40px 32px 56px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-connector { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .svc-card.bento-large { grid-column: span 2; grid-row: span 2; }
  .svc-card.bento-wide  { grid-column: span 2; grid-row: span 1; }
  .svc-card.bento-tall  { grid-column: span 1; grid-row: span 1; }
  .ba-grid { grid-template-columns: 1fr; max-width: 520px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .areas-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  #promise, #process, #testimonials, #areas, #finalcta { padding: 80px 40px; }
}

@media (max-width: 768px) {
  #header, #header.scrolled { padding: 16px 24px; }
  .logo img { height: 38px; }
  nav { display: none; }
  .header-actions .nav-socials { display: none; }
  .header-actions .btn { font-size: 11px; padding: 10px 16px; }
  .hamburger { display: flex; }
  
  .nav-overlay { display: flex; pointer-events: none; padding: 100px 24px 40px; justify-content: center; overflow-y: auto; text-align: center; }
  .nav-overlay.open { pointer-events: auto; opacity: 1; }
  .nav-overlay a { font-size: 36px; margin-bottom: 4px; }
  .nav-overlay .btn { font-size: 14px; padding: 14px 28px; width: 100%; max-width: 280px; margin-top: 20px !important; }
  .nav-overlay .nav-socials { margin-top: 32px !important; gap: 16px; }
  
  .hero-left { padding-top: 140px; text-align: left; }
  .hero-left h1 { line-height: 1.1; margin-bottom: 24px; font-size: clamp(40px, 8vw, 60px); }
  
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-step { padding: 0; text-align: left; display: grid; grid-template-columns: 60px 1fr; column-gap: 20px; }
  .process-num-bg { grid-row: span 2; font-size: 48px; margin-bottom: 0; align-self: center; }
  .process-dot { margin: 0; position: absolute; left: 25px; top: 15px; }
  .process-step h3 { margin-bottom: 4px; }
  
  .services-grid { grid-template-columns: 1fr; }
  .svc-card.bento-large, .svc-card.bento-wide, .svc-card.bento-tall { grid-column: span 1; grid-row: span 1; }
  
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-socials { justify-content: center; }
  .contact-item { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  section { padding: 60px 20px !important; }
  #header, #header.scrolled { padding: 12px 16px; }
  .logo img { height: 32px; }

  
  .hero-left { padding: 120px 20px 200px; }
  .hero-left h1 { font-size: clamp(36px, 10vw, 48px); word-break: break-word; hyphens: auto; }
  .sec-header h2 { font-size: clamp(32px, 9vw, 42px); word-break: break-word; hyphens: auto; }
  .floating-review { right: 16px; left: 16px; width: auto; bottom: 16px; padding: 16px; border-radius: 8px; }
  .fr-stars { font-size: 14px; margin-bottom: 8px; }
  .fr-text { font-size: 13px; margin-bottom: 12px; }
  .fr-ini { width: 32px; height: 32px; font-size: 13px; }
  .fr-author p { font-size: 13px; }
  .fr-author span { font-size: 11px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  
  .promise-card { padding: 24px; }
  .jonas-content { padding: 40px 20px; }
  .jonas-quote p { font-size: 18px; }
  
  .ba-item { height: 300px; }
  .areas-list { grid-template-columns: 1fr; }
  .areas-list .area-cell { padding: 20px; font-size: 20px; border-right: none !important; }
  
  .finalcta-bg { height: 400px; }
  .finalcta-content-box h2 .cta-line-2 { font-size: 42px; }
  .finalcta-actions .btn { width: 100%; }
  
  .wa-float { bottom: 16px; right: 16px; }
  .wa-float .wa-label { max-width: 150px; opacity: 1; margin-right: 8px; }
}
