/* ============================================================
   Bee Thrive Cleaning Services
   Design system transposed from the Northbeam template spec:
   warm canvas, white rounded floating panels, pill geometry,
   dotted orbits, one ease, ink CTA band. Brand stays honey/charcoal.
   ============================================================ */
:root {
  /* Color roles (Northbeam: canvas / panel / ink / accent) */
  --canvas: #F6EAD2;
  --panel: #FFFFFF;
  --honey: #F4A300;
  --honey-deep: #E08600;
  --accent-text: #9C5B00;       /* AA-safe accent for small text on light */
  --amber: #C2410C;
  --charcoal: #1B1A17;
  --charcoal-soft: #2A2823;
  --cream: #FDF6E9;
  --ink: #1B1A17;
  --ink-soft: #5B564C;
  --ink-mute: #8A8273;
  --white: #ffffff;
  --line: #ECE2CE;

  --shadow-sm: 0 2px 10px rgba(27, 26, 23, 0.06);
  --shadow-md: 0 14px 40px rgba(27, 26, 23, 0.10);
  --shadow-lg: 0 30px 70px rgba(27, 26, 23, 0.16);

  --radius: 18px;
  --radius-lg: 28px;
  --radius-panel: 34px;
  --maxw: 1180px;
  --panelw: 1408px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --honeycomb: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23F4A300' stroke-opacity='0.10' stroke-width='2'%3E%3Cpath d='M28 0L0 16v33l28 16 28-16V16L28 0z'/%3E%3Cpath d='M28 66L0 82v33l28 16 28-16V82L28 66z'/%3E%3C/g%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; color: var(--charcoal); margin: 0; letter-spacing: -0.018em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 820px; }
.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  background: var(--charcoal); color: #fff; padding: 10px 16px; border-radius: 10px; z-index: 999;
}

/* ---------- Preloader (count-up curtain, session-once) ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 300; background: var(--canvas);
  display: grid; place-items: center; transition: transform .5s var(--ease-out);
}
.preloader.done { transform: translateY(-101%); }
.preloader-inner { position: relative; display: grid; place-items: center; gap: 10px; text-align: center; }
.preloader-inner img { height: 72px; width: auto; }
.pre-num { font-family: var(--font-display); font-weight: 600; font-size: 2.6rem; color: var(--charcoal);
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em; line-height: 1; }
.preloader .orbit { inset: 50% auto auto 50%; width: 560px; height: 560px; transform: translate(-50%, -50%); opacity: .7; }

/* ---------- Dotted orbit motif ---------- */
.orbit { position: absolute; pointer-events: none; }
.orbit > div { position: absolute; inset: 0; }
.orbit svg { display: block; width: 100%; height: 100%; }
.orbit .o1 { animation: orbit-spin 150s linear infinite; }
.orbit .o2 { animation: orbit-spin 110s linear infinite reverse; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

/* ---------- Buttons (pill, one ease) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
  white-space: nowrap;
}
/* Focus ring: charcoal core (3:1+ on light surfaces) plus a honey halo for visibility on dark ones. */
.btn:focus-visible { outline: 3px solid var(--charcoal); outline-offset: 2px; box-shadow: 0 0 0 6px rgba(244,163,0,.5); }
.btn-ghost-light:focus-visible, .panel-ink .btn:focus-visible, .info-social a:focus-visible, .footer-social a:focus-visible { outline-color: #fff; }
.faq-q:focus-visible { outline: 3px solid var(--charcoal); outline-offset: -3px; border-radius: 18px; }
a:focus-visible, .nav-toggle:focus-visible, .main-nav a:focus-visible { outline: 3px solid var(--charcoal); outline-offset: 2px; border-radius: 8px; }
.btn-primary { background: var(--honey); color: var(--charcoal); box-shadow: 0 10px 24px rgba(244,163,0,.35); position: relative; overflow: hidden; }
.btn-primary:hover { background: var(--honey-deep); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(244,163,0,.42); }
.btn-primary::after { content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-20deg); }
.btn-primary:hover::after { animation: btn-sweep .7s var(--ease-out); }
@keyframes btn-sweep { from { left: -75%; } to { left: 130%; } }
.btn .wa-ico, .btn .ph-ico { transition: transform .3s var(--ease-out); }
.btn:hover .wa-ico, .btn:hover .ph-ico { transform: translateX(2px); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: rgba(27,26,23,.18); }
.btn-ghost:hover { border-color: var(--charcoal); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #04340f; box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-block { width: 100%; }
.wa-ico { width: 20px; height: 20px; fill: currentColor; }
.ph-ico { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Hex helpers (brand motif) ---------- */
.hex-dot { display: inline-block; width: 9px; height: 9px; background: var(--honey); margin-right: 7px;
  clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%); }
.hex-check { position: relative; flex: 0 0 auto; width: 24px; height: 24px; background: var(--honey);
  clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%); }
.hex-check::after { content: ""; position: absolute; left: 8px; top: 6px; width: 5px; height: 10px;
  border: solid var(--charcoal); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }

/* ---------- Floating pill nav ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 12px 16px 0; background: transparent; }
.header-inner {
  max-width: var(--maxw); margin: 0 auto; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 0 10px 0 16px; border-radius: 999px; border: 1px solid transparent;
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.header-inner { position: relative; }
/* Frost lives on a pseudo-element so backdrop-filter never re-parents the
   fixed mobile dropdown (which would make it jump on scroll). */
.header-inner::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; z-index: -1; pointer-events: none;
  opacity: 0; transition: opacity .35s var(--ease-out);
  background: rgba(255,255,255,.88); -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(27,26,23,.08); box-shadow: 0 12px 32px rgba(27,26,23,.10);
}
.site-header.scrolled .header-inner::before { opacity: 1; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--charcoal); }
.brand-sub { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-text); font-weight: 700; margin-top: 3px; }
.main-nav { display: flex; gap: 2px; }
.main-nav a { padding: 9px 13px; border-radius: 999px; font-weight: 500; font-size: .94rem; color: var(--ink-soft); transition: color .2s, background .2s; }
.main-nav a:hover { color: var(--charcoal); background: rgba(27,26,23,.05); }
.main-nav a.active { color: var(--charcoal); background: rgba(244,163,0,.16); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions .btn { padding: 10px 18px; font-size: .92rem; }
.header-actions .btn-ghost { border-width: 1.5px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(27,26,23,.12); background: rgba(255,255,255,.7); border-radius: 999px; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--charcoal); margin: 4px auto; transition: transform .3s var(--ease-out), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero (on canvas, orbit backdrop) ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::after { content: ""; position: absolute; right: -12%; top: -18%; width: 64%; height: 86%;
  background: radial-gradient(circle, rgba(244,163,0,.16), transparent 65%); }
.hero .orbit { right: -8%; top: 4%; width: 760px; height: 700px; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; padding: 150px 22px 96px; }
.eyebrow { display: inline-flex; align-items: center; font-weight: 700; color: var(--accent-text); font-size: .76rem;
  text-transform: uppercase; letter-spacing: .18em; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.15rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.02; margin-bottom: 22px; }
.hero-lead { font-size: 1.13rem; color: var(--ink-soft); max-width: 33em; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px 22px; }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-weight: 500; font-size: .95rem; }
.hero-media { position: relative; }
.hero-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid #fff; transform: rotate(1.4deg); }
.hero-frame img { width: 100%; height: 480px; object-fit: cover; }
.hero-badge { position: absolute; left: -18px; bottom: 28px; background: var(--charcoal); color: #fff;
  border-radius: 999px; padding: 14px 24px 14px 18px; display: flex; align-items: center; gap: 13px; max-width: 270px; box-shadow: var(--shadow-md); }
.hero-badge-num { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--honey); line-height: 1; letter-spacing: 1px; font-variant-numeric: tabular-nums; }
.hero-badge-label { font-size: .8rem; line-height: 1.3; color: #efe9dc; }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > .hero-anim, .hero-media.hero-anim { opacity: 0; animation: heroRise .8s var(--ease-out) forwards; }
  .hero-copy > .hero-anim:nth-child(1) { animation-delay: .05s; }
  .hero-copy > .hero-anim:nth-child(2) { animation-delay: .13s; }
  .hero-copy > .hero-anim:nth-child(3) { animation-delay: .21s; }
  .hero-copy > .hero-anim:nth-child(4) { animation-delay: .29s; }
  .hero-copy > .hero-anim:nth-child(5) { animation-delay: .37s; }
  .hero-media.hero-anim { animation-delay: .26s; }
  .hero-frame img { animation: heroImg 1.2s var(--ease-out) .26s both; }
}
@keyframes heroRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes heroImg { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero.hero-shown .hero-anim { opacity: 1 !important; }
.hero.hero-shown .hero-frame img { transform: none !important; }

/* ---------- Trust strip (light stats panel, count-ups) ---------- */
.trust-strip { width: min(var(--panelw), calc(100% - 32px)); margin: 0 auto 16px;
  background: var(--panel); border-radius: var(--radius-panel); box-shadow: var(--shadow-sm); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 34px 18px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; color: var(--charcoal);
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.trust-label { display: block; font-size: .88rem; color: var(--ink-soft); margin-top: 5px; }

/* ---------- Section shells: canvas / white panel / ink panel ---------- */
.section { padding: 84px 0; }
.on-canvas { background: transparent; }
.panel, .panel-ink {
  width: min(var(--panelw), calc(100% - 32px));
  margin: 16px auto; border-radius: var(--radius-panel);
}
.panel { background: var(--panel); box-shadow: var(--shadow-sm); }
.panel-ink { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }

.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-head-light h2, .section-head-light .kicker { color: #fff; }
.panel-ink .section-head h2 { color: #fff; }
.panel-ink .kicker { color: var(--honey); }
.kicker { text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; color: var(--accent-text); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); }
.section-intro { margin-top: 16px; color: var(--ink-soft); font-size: 1.06rem; }
.panel-ink .section-intro { color: #d9d3c7; }

/* ---------- Services ---------- */
.svc-group { margin-top: 46px; }
.svc-group:first-of-type { margin-top: 8px; }
.svc-group-head { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 18px; align-items: center; margin-bottom: 22px; }
.hex-badge { grid-row: 1 / 3; width: 58px; height: 64px; background: var(--honey); display: grid; place-items: center;
  clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%); }
.hex-badge svg { width: 28px; height: 28px; fill: var(--charcoal); }
.svc-group-head h3 { font-size: 1.5rem; }
.svc-group-head p { color: var(--ink-soft); font-size: .98rem; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(238px, 100%), 1fr)); gap: 18px; }
.svc-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out); position: relative; }
.svc-card::before { content: ""; position: absolute; left: 22px; top: 22px; width: 26px; height: 3px; background: var(--honey); border-radius: 3px; }
.svc-card h4 { font-size: 1.1rem; margin: 16px 0 8px; }
.svc-card p { color: var(--ink-soft); font-size: .94rem; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #f0d79a; }

/* ---------- Empathy (on canvas) ---------- */
.empathy { text-align: center; }
.empathy h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.empathy p { color: var(--ink-soft); font-size: 1.12rem; line-height: 1.7; }

/* ---------- Home / Business value duo (cards float on canvas) ---------- */
.value-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.value-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: flex-start; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-badge { margin-bottom: 18px; }
.value-card h3 { font-size: 1.55rem; margin-bottom: 12px; }
.value-card p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 24px; }
.value-card .btn { margin-top: auto; }

/* ---------- Why ---------- */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.why-intro .kicker { text-align: left; }
.why-intro h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.why-intro > p { color: var(--ink-soft); font-size: 1.04rem; }
.why-gallery { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; margin-top: 28px; }
.why-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-sm); }
.why-gallery img:first-child { grid-row: 1 / 3; }
.why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.why-list li { display: flex; gap: 15px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.why-list strong { display: block; font-size: 1.05rem; color: var(--charcoal); }
.why-list span:not(.hex-check) { display: block; color: var(--ink-soft); font-size: .94rem; margin-top: 3px; }

/* ---------- How it works (light, pill numerals + dotted connector) ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before { content: ""; position: absolute; top: 26px; left: 16.66%; right: 16.66%;
  border-top: 2px dashed rgba(27,26,23,.18); }
.step { position: relative; text-align: center; padding: 0 14px; }
.step-num { position: relative; display: inline-grid; place-items: center; min-width: 52px; height: 52px; padding: 0 8px;
  background: var(--honey); color: var(--charcoal); border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; margin-bottom: 18px;
  box-shadow: 0 0 0 10px var(--panel); }
.step h3 { color: var(--charcoal); font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: .98rem; }
.steps-cta { text-align: center; margin-top: 40px; }

/* ---------- Services showreel ---------- */
.reel-section { position: relative; overflow: hidden; }
.reel-section::before {
  content: ""; position: absolute; right: -120px; top: -150px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(244,163,0,.18), transparent 68%);
  pointer-events: none;
}
.reel-layout { position: relative; display: grid; grid-template-columns: 1fr minmax(280px, 420px); gap: 44px 58px; align-items: center; }
.reel-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); margin-bottom: 16px; }
.reel-copy > p { color: var(--ink-soft); font-size: 1.06rem; max-width: 42em; }
.reel-points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.reel-points li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-weight: 500; }
.reel-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.reel-card {
  justify-self: center; width: min(100%, 380px); border-radius: 36px; padding: 16px;
  background: var(--charcoal); box-shadow: var(--shadow-lg); transform: rotate(1.2deg);
  border: 1px solid rgba(27,26,23,.12);
}
.reel-phone {
  position: relative; overflow: hidden; border-radius: 28px; background: #0f0e0c;
  aspect-ratio: 9 / 16; border: 2px solid rgba(255,255,255,.12);
}
.reel-phone::before {
  content: ""; position: absolute; top: 10px; left: 50%; z-index: 2; width: 72px; height: 6px;
  transform: translateX(-50%); border-radius: 999px; background: rgba(255,255,255,.22);
}
.reel-phone video { width: 100%; height: 100%; display: block; object-fit: cover; background: #0f0e0c; }
.reel-caption {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 6px 2px; color: #fff;
}
.reel-caption span { font-size: .78rem; color: #d9d3c7; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.reel-caption strong { font-size: .92rem; color: var(--honey); text-align: right; }
.reel-clips { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }
.reel-mini {
  background: var(--cream); border: 1px solid var(--line); border-radius: 24px;
  padding: 14px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.reel-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #f0d79a; }
.reel-mini video {
  width: 100%; aspect-ratio: 9 / 16; display: block; object-fit: cover;
  border-radius: 18px; background: #0f0e0c;
}
.reel-mini h3 { font-size: 1.12rem; margin: 16px 4px 6px; }
.reel-mini p { color: var(--ink-soft); font-size: .92rem; margin: 0 4px 4px; }

/* ---------- Pricing ---------- */
.price-table-wrap { max-width: 920px; margin: 0 auto; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); background: #fff; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { text-align: left; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--charcoal); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:nth-child(even) { background: var(--cream); }
.price-table td:first-child { font-weight: 600; color: var(--charcoal); }
.rate { color: var(--amber); font-weight: 700; font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.price-note { text-align: center; margin-top: 22px; color: var(--ink-soft); }
.price-cta { text-align: center; margin-top: 26px; }

/* ---------- Promise (white card on canvas) ---------- */
.promise { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-panel); padding: 46px 40px; text-align: center;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.promise::before { content: ""; position: absolute; inset: 0; background-image: var(--honeycomb); background-size: 56px 100px; opacity: .5; pointer-events: none; }
.promise > * { position: relative; }
.promise-seal { display: inline-grid; place-items: center; width: 64px; height: 64px; margin-bottom: 14px; }
.promise-seal svg { width: 64px; height: 64px; }
.promise h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.promise p { color: var(--ink-soft); font-size: 1.08rem; max-width: 36em; margin: 0 auto 26px; }

/* ---------- Reviews (the dark moment: ink panel) ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 20px; }
.review-card { margin: 0; background: var(--charcoal-soft); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 26px; position: relative; }
.review-card .stars { color: var(--honey); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 14px; }
.review-card blockquote { margin: 0 0 18px; font-size: 1.02rem; color: #f3eee2; line-height: 1.6; }
.review-card figcaption { font-weight: 600; color: var(--honey); }
.review-card figcaption::before { content: ""; display: inline-block; width: 10px; height: 11px; margin-right: 8px;
  background: var(--honey); clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%); vertical-align: middle; }

/* ---------- Clients / track record ---------- */
.clients-group { margin-top: 38px; }
.clients-group:first-of-type { margin-top: 8px; }
.clients-subhead { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.clients-subhead .hex-badge { width: 46px; height: 51px; }
.clients-subhead .hex-badge svg { width: 22px; height: 22px; }
.clients-subhead h3 { font-size: 1.35rem; }
.client-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr)); gap: 14px; }
.client-card { display: flex; align-items: center; gap: 14px; background: var(--cream); border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 20px 12px 12px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out); }
.client-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #f0d79a; }
.client-mono { flex: 0 0 auto; width: 42px; height: 46px; display: grid; place-items: center;
  background: var(--honey); color: var(--charcoal); font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%); }
.client-name { font-weight: 600; color: var(--charcoal); line-height: 1.25; font-size: .95rem; }
.client-loc { display: block; font-weight: 500; font-size: .8rem; color: var(--ink-soft); margin-top: 2px; }

/* ---------- Area chips (on canvas) ---------- */
.area-chips { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-chips li { background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px; font-weight: 500; color: var(--charcoal); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out); }
.area-chips li:hover { transform: translateY(-2px); border-color: var(--honey); }
.area-chips li:last-child { background: var(--honey); border-color: var(--honey); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.contact-form-col .kicker { text-align: left; }
.contact-form-col h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--charcoal); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 12px 16px; border: 1.5px solid var(--line); border-radius: 14px;
  background: var(--cream); color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--honey); box-shadow: 0 0 0 4px rgba(244,163,0,.16); }
.field textarea { resize: vertical; }
.form-actions { margin-top: 4px; }
.form-hint { font-size: .85rem; color: var(--ink-soft); margin-top: 10px; text-align: center; }

.contact-info-col { display: grid; gap: 20px; }
.info-card { background: var(--charcoal); color: #fff; border-radius: var(--radius-lg); padding: 28px; }
.info-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 18px; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-ico { flex: 0 0 auto; width: 42px; height: 42px; background: rgba(244,163,0,.16); border-radius: 999px; display: grid; place-items: center; }
.info-ico svg { width: 20px; height: 20px; fill: var(--honey); }
.info-label { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: #b3ab9c; margin-bottom: 3px; }
.info-list a { display: block; color: #f3eee2; font-weight: 500; transition: color .2s; }
.info-list a:hover { color: var(--honey); }
.info-social { display: flex; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.info-social a { width: 42px; height: 42px; border-radius: 999px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .3s var(--ease-out), transform .3s var(--ease-out); }
.info-social a:hover { background: var(--honey); transform: translateY(-2px); }
.info-social svg { width: 22px; height: 22px; fill: #fff; }
.info-social a:hover svg { fill: var(--charcoal); }
.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-card iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ---------- FAQ (on canvas, white items) ---------- */
.faq { display: grid; gap: 12px; }
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 18px 22px;
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--charcoal);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-icon { position: relative; flex: 0 0 auto; width: 18px; height: 18px; transition: transform .35s var(--ease-out); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--accent-text); border-radius: 2px; }
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 2.5px; }
.faq-icon::after { left: 8px; top: 0; width: 2.5px; height: 18px; transition: transform .35s var(--ease-out); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(90deg); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a p { padding: 0 22px 20px; color: var(--ink-soft); margin: 0; }

/* ---------- Final CTA (dark band: ink panel + orbit) ---------- */
.final-cta { position: relative; }
.final-cta .orbit { right: -6%; top: -30%; width: 560px; height: 560px; }
.final-cta-inner { position: relative; text-align: center; padding: 84px 22px; }
.final-cta h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: #fff; margin-bottom: 14px; }
.final-cta p { color: #d9d3c7; font-size: 1.12rem; max-width: 40em; margin: 0 auto 30px; }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #d9d3c7; margin-top: 16px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding: 60px 22px 44px; }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; max-width: 30em; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .3s var(--ease-out), transform .3s var(--ease-out); }
.footer-social a:hover { background: var(--honey); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; fill: #fff; }
.footer-social a:hover svg { fill: var(--charcoal); }
.footer-col h3 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a:hover { color: var(--honey); }
.footer-plain li { color: #b3ab9c; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 8px 30px; justify-content: space-between; padding: 22px 22px; font-size: .85rem; color: #b3ab9c; }

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.fab-whatsapp:hover { transform: scale(1.08); box-shadow: 0 16px 36px rgba(37,211,102,.55); }
.fab-whatsapp svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Scroll reveal (one ease, fade-up) ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .svc-card:hover, .area-chips li:hover, .client-card:hover, .value-card:hover, .reel-mini:hover, .fab-whatsapp:hover { transform: none; }
  .reel-card { transform: none; }
  .btn-primary:hover::after { animation: none; }
  .orbit .o1, .orbit .o2 { animation: none; }
  .preloader { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .nav-toggle { display: block; }
}
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 128px 22px 64px; }
  .hero-frame { transform: none; }
  .hero-frame img { height: 380px; }
  .hero .orbit { right: -30%; top: -4%; width: 560px; height: 520px; }
  .why-layout, .contact-layout { grid-template-columns: 1fr; gap: 38px; }
  .reel-layout { grid-template-columns: 1fr; gap: 40px; }
  .reel-clips { grid-template-columns: 1fr 1fr 1fr; }
  .reel-card { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-duo { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps::before { display: none; }
  .step { text-align: left; padding: 0; display: grid; grid-template-columns: auto 1fr; column-gap: 16px; }
  .step-num { box-shadow: none; grid-row: 1 / 3; align-self: start; }
  .step h3 { margin-top: 10px; }
}
@media (max-width: 1060px) {
  /* Mobile dropdown for the pill nav */
  .main-nav { display: flex; position: fixed; inset: 88px 16px auto 16px; flex-direction: column; gap: 0;
    background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 10px 14px 14px;
    box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(-14px); pointer-events: none; visibility: hidden;
    transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), visibility .35s var(--ease-out); z-index: 101; }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
  .main-nav a { padding: 14px 10px; border-radius: 12px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
}
@media (max-width: 820px) {
  .header-actions .btn-whatsapp, .header-actions .btn-ghost { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .panel, .panel-ink, .trust-strip { width: calc(100% - 20px); border-radius: 26px; }
  .booking-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-badge { left: 0; }
  .hero-inner { padding: 118px 22px 56px; }
  .reel-layout { gap: 30px; }
  .reel-actions { flex-direction: column; align-items: stretch; }
  .reel-actions .btn { width: 100%; white-space: normal; }
  .reel-card { width: min(100%, 330px); padding: 12px; border-radius: 30px; }
  .reel-phone { border-radius: 23px; }
  .reel-caption { align-items: flex-start; flex-direction: column; }
  .reel-caption strong { text-align: left; }
  .reel-clips { grid-template-columns: 1fr; }
  .reel-mini { padding: 12px; }
  .reel-mini video { max-height: 560px; }
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .final-cta-actions .btn { width: 100%; white-space: normal; }
  .preloader .orbit { width: 360px; height: 360px; }
  /* Stacked pricing table */
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { border-bottom: 2px solid var(--line); padding: 8px 0; }
  .price-table tbody tr:nth-child(even) { background: transparent; }
  .price-table td { border: 0; padding: 7px 22px; display: flex; justify-content: space-between; gap: 18px; }
  .price-table td::before { content: attr(data-label); font-weight: 700; color: var(--ink-soft); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
  .price-table td:first-child { font-size: 1.05rem; }
}
