/* ============================================================
   styles.css — Barata Studio
   ============================================================ */

/* ===== Self-hosted Fonts ===== */

/* Zodiak — variable font, normal style, full weight range 100–900 */
@font-face {
  font-family: 'Zodiak';
  src: url('../assets/fonts/Zodiak/Fonts/WEB/fonts/Zodiak-Variable.woff2') format('woff2'),
       url('../assets/fonts/Zodiak/Fonts/WEB/fonts/Zodiak-Variable.woff') format('woff'),
       url('../assets/fonts/Zodiak/Fonts/WEB/fonts/Zodiak-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Zodiak — italic variants (Light 300, Regular 400, Bold 700) */
@font-face {
  font-family: 'Zodiak';
  src: url('../assets/fonts/Zodiak/Fonts/WEB/fonts/Zodiak-LightItalic.woff2') format('woff2'),
       url('../assets/fonts/Zodiak/Fonts/WEB/fonts/Zodiak-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Zodiak';
  src: url('../assets/fonts/Zodiak/Fonts/WEB/fonts/Zodiak-Italic.woff2') format('woff2'),
       url('../assets/fonts/Zodiak/Fonts/WEB/fonts/Zodiak-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Zodiak';
  src: url('../assets/fonts/Zodiak/Fonts/WEB/fonts/Zodiak-BoldItalic.woff2') format('woff2'),
       url('../assets/fonts/Zodiak/Fonts/WEB/fonts/Zodiak-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Comico — Regular only (no bold variant exists) */
@font-face {
  font-family: 'Comico';
  src: url('../assets/fonts/Comico/Fonts/WEB/fonts/Comico-Regular.woff2') format('woff2'),
       url('../assets/fonts/Comico/Fonts/WEB/fonts/Comico-Regular.woff') format('woff'),
       url('../assets/fonts/Comico/Fonts/WEB/fonts/Comico-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== Design Tokens ===== */
:root {
  /* Brand palette — petróleo (locked 2025-05) */
  --teal:        #1A6870;  /* acento principal: mais vivo, não negro, não neon   */
  --teal-deep:   #164F58;  /* reserva profunda: sombras, bordes subtis           */
  --teal-metal:  #2F6B73;  /* superfície metálica: hover de fundo, glass stroke  */
  --teal-hover:  #4F98A3;  /* luz de acento: focus ring, highlight, detalhe fino */

  /* RGB companions — permite rgba() sem hardcode */
  --teal-rgb:       26, 104, 112;   /* rgb de --teal        */
  --text-light-rgb: 244, 241, 234;  /* rgb de --text-light  */

  /* Warm neutrals – light mode */
  --bg-warm:     #F5F3EE;
  --bg-warm-hi:  #FBF9F5;

  /* Dark surfaces */
  --bg-dark:     #121315;
  --bg-dark-hi:  #191B1F;
  --bg-dark-mid: #1E2024;

  /* Text */
  --text-dark:   #16171A;
  --text-light:  #F4F1EA;
  --text-muted:  #6F7478;
  --text-subtle: #9CA3A8;

  /* Accent state */
  --accent:      var(--teal);
  --accent-hover:var(--teal-hover);

  /* Legacy aliases — keeps other pages rendering fine */
  --color1:      var(--teal);
  --color2:      var(--teal-hover);
  --color3:      var(--text-light);
  --color4:      var(--text-muted);
  --color-bg:    var(--bg-dark);
  --color-bg-soft: var(--bg-dark-hi);
  --color-text:  var(--text-light);
  --color-heading: var(--text-light);
  --color-link:  var(--teal-hover);

  /* Overlays */
  --bg-overlay: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.55));

  /* Layout */
  --site-max-width: clamp(900px, 90vw, 1200px);
  --card-min-width: 240px;
  --card-max-width: clamp(240px, 28vmin, 360px);
  --grid-gap: 2rem;
  --section-spacing: 120px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Typography */
  --font-headings: 'Comico', cursive;
  --font-body:     'Zodiak', serif;

  --font-size-base: 1rem;
  --font-size-h1:   clamp(2.25rem, 5vw, 4rem);
  --font-size-h2:   clamp(1.75rem, 3.5vw, 3rem);
  --font-size-h3:   clamp(1.25rem, 2.5vw, 1.75rem);
  --font-size-h4:   clamp(1rem, 2vw, 1.35rem);
  --font-size-small: 0.85rem;

  --line-height-body: 1.6;
  --letter-spacing-heading: 0.01em;
  --letter-spacing-body: 0.01em;
  --tracking-wide: 0.12em;

  /* Brand WhatsApp */
  --whatsapp-green:       #25D366;
  --whatsapp-green-hover: #1da851;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  letter-spacing: var(--letter-spacing-body);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-hover); text-decoration: none; transition: color .2s ease; }
a:hover, a:focus-visible { color: var(--teal-hover); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--teal-hover); outline-offset: 3px; border-radius: 4px; }
ul { list-style: none; margin: 0; padding: 0; }
ol { margin: 0; padding: 0; }
p { margin: 0 0 1rem; }
small { font-size: var(--font-size-small); }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-heading);
  margin: 0 0 .6em;
  line-height: 1.15;
  color: inherit;
}
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

/* ===== Layout helpers ===== */
.site-watermark-container {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.site-watermark {
  position: absolute;
  opacity: 0.012;
  filter: grayscale(1);
  will-change: transform;
}
.site-watermark img {
  width: 600px;
  height: auto;
}
.watermark--1 { top: 10%; left: -10%; transform: rotate(-15deg); }
.watermark--2 { top: 40%; right: -5%; transform: rotate(10deg); }
.watermark--3 { bottom: 5%; left: 20%; transform: rotate(-5deg); }

.section {
  padding: var(--section-spacing) 1.5rem;
  max-width: var(--site-max-width);
  margin: 0 auto;
}
.container { max-width: var(--site-max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--teal-hover);
  margin-bottom: 1rem;
}
.section-label--light {
  color: rgba(79, 152, 163, 0.9);
}

/* ===== Buttons ===== */
.button, button.button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  border: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease;
  text-decoration: none;
}
.button--primary {
  background: var(--teal);
  color: #fff;
}
.button--primary:hover {
  background: var(--teal-metal);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(var(--teal-rgb),0.35);
}
.button--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(var(--text-light-rgb),0.25);
}
.button--ghost:hover {
  border-color: var(--teal-hover);
  color: var(--teal-hover);
  transform: translateY(-1px);
}
.button--ghost-dark {
  color: var(--text-dark);
  border-color: rgba(22, 23, 26, 0.14);
}
.button--ghost-dark:hover {
  color: var(--teal);
  border-color: rgba(var(--teal-rgb), 0.4);
}
.button--ghost-light {
  color: var(--text-light);
  border-color: rgba(var(--text-light-rgb),0.3);
}
.button--ghost-light:hover {
  border-color: var(--text-light);
  color: var(--text-light);
}

/* Legacy button alias */
.button:not(.button--primary):not(.button--ghost):not(.button--ghost-light) {
  background: var(--teal);
  color: #fff;
}
.button:not(.button--primary):not(.button--ghost):not(.button--ghost-light):hover {
  background: var(--teal-metal);
  color: #fff;
}
.button.secondary {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal-hover);
}
.button.secondary:hover { background: var(--teal); color: #fff; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--teal);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  font-size: .9rem;
  z-index: 10000;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 0;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: .875rem 2rem;
  background: rgba(14, 14, 15, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(14, 14, 15, 0.85);
  padding: .625rem 2rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.header-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  justify-self: start;
}
.header-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color .2s ease;
  flex-shrink: 0;
}
.header-brand:hover .header-monogram {
  border-color: var(--teal-hover);
}
.header-monogram img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: invert(1) brightness(2);
}
.header-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color .2s ease;
  flex-shrink: 0;
}
.header-wordmark {
  font-family: var(--font-headings);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 1;
}
  transition: opacity .2s ease;
}
.header-brand:hover .header-wordmark { opacity: .9; }
.site-header.scrolled .header-wordmark { opacity: .9; }

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-nav ul {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.top-nav a {
  color: rgba(var(--text-light-rgb),0.6);
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .02em;
  transition: color .2s ease;
}
.top-nav a:hover, .top-nav a.active { color: var(--text-light); }
.top-nav a[aria-current="page"] { color: var(--text-light); }

.header-cta {
  justify-self: end;
  font-size: .85rem;
  padding: .5rem 1.1rem;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text-light);
  padding: .4rem .85rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .85rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  background: var(--bg-dark);
  overflow: hidden;
  gap: 4rem;
}

/* Phone parallax hero */
.hero-phones {
  position: absolute;
  right: 8%;
  top: 0;
  width: 700px; /* Precise width for two 320px phones + gap */
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.phone {
  --phone-w: 320px;
  width: var(--phone-w);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  will-change: transform, opacity;
}

/* Vertical channels: Slot 1 (Left of pair) and Slot 2 (Right of pair) */
.phone--1, .phone--3 {
  left: 0; 
}

.phone--2, .phone--4 {
  right: 0;
}

.phone--3, .phone--4 {
  opacity: 0;
  visibility: hidden;
}

.phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 844;
  background: linear-gradient(145deg, #2a2d32, #1a1c20);
  border-radius: 44px;
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 40px 80px rgba(0,0,0,0.6),
    0 4px 16px rgba(0,0,0,0.4);
  overflow: hidden;
}

.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 26px;
  background: #0a0a0b;
  border-radius: 999px;
  z-index: 2;
}

.phone-screen {
  position: absolute;
  inset: 6px;
  border-radius: 38px;
  overflow: hidden;
  background: var(--bg-dark-mid);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Custom cursor */
.cursor-dot {
  z-index: 100001;
}
.cursor-ring {
  z-index: 100000;
}

/* Final CTA Enrichment */
.cta-body {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}
.cta-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
}
.cta-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-hover);
  font-weight: 700;
}
.info-value {
  font-size: 1.15rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.info-value:hover {
  color: var(--teal-hover);
}

/* Subtle radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse, rgba(var(--teal-rgb),0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero copy */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  max-width: 580px;
  flex: 1;
}
.hero-content.revealed {
  /* individual children handle their own entrance */
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--teal-hover);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-body {
  font-size: clamp(.95rem, 1.2vw, 1.15rem);
  color: rgba(var(--text-light-rgb),0.6);
  max-width: 480px;
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(79, 152, 163, 0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--bg-warm);
  padding: var(--section-spacing) 1.5rem;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto .section-label { color: var(--teal); }
.manifesto-headline {
  font-size: clamp(1.9rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.manifesto-body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0;
}

/* ===== BB SCULPTURAL DEPTH ===== */
.bb-depth {
  background: var(--bg-dark);
  padding: var(--section-spacing) 1.5rem;
  overflow: hidden;
}
.bb-depth-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.bb-depth-visual {
  position: relative;
  height: 400px;
  perspective: 600px;
}
.depth-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.depth-layer img {
  width: 280px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}
.depth-layer--1 {
  opacity: 0.07;
  filter: blur(6px);
  transform: translate(-50%, -50%) scale(1.3) rotateY(8deg);
}
.depth-layer--2 {
  opacity: 0.18;
  filter: blur(2px);
  transform: translate(-50%, -50%) scale(1.12) rotateY(3deg);
}
.depth-layer--3 {
  opacity: 0.65;
  filter: drop-shadow(0 0 30px rgba(var(--teal-rgb),0.3));
  transform: translate(-50%, -50%) scale(1);
}
.bb-depth-copy .section-label { color: var(--teal-hover); }
.bb-depth-copy h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
}
.bb-depth-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== PROCESS LAYERS ===== */
.process-layers {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.process-layers-sticky {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem;
  max-width: var(--site-max-width);
  margin: 0 auto;
  position: relative;
}
.process-layers-header {
  margin-bottom: 4rem;
  z-index: 5;
}
.process-layers-header h2 {
  color: var(--text-light);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 400;
  margin-top: 0.5rem;
}
.process-panels {
  position: relative;
  height: 400px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.process-panel {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}
.panel-glass {
  background: rgba(25, 27, 31, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 4rem;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transition: border-color 0.4s ease;
}
.panel-num {
  display: block;
  font-family: 'Zodiak', serif;
  font-size: 0.9rem;
  color: var(--teal-hover);
  margin-bottom: 1.5rem;
}
.panel-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.panel-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 520px;
}
.process-nav {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  z-index: 10;
}
.process-nav-track {
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.process-nav-fill {
  height: 100%;
  background: var(--teal-hover);
  border-radius: 2px;
  width: 0%;
}

/* ===== SUCCESS STORIES (IMPACT) ===== */
.presence {
  background: var(--bg-warm);
  padding: var(--section-spacing) 1.5rem;
}
.presence-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
}
.presence-header {
  margin-bottom: 3.5rem;
  max-width: 600px;
}
.presence-header .section-label { color: var(--teal); }
.presence-header h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.presence-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}
.presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.presence-card {
  background: var(--bg-dark-hi);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.presence-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.presence-card-visual {
  padding: 2.5rem;
  background: var(--bg-dark);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-mockup {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.wf-nav {
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  width: 60%;
}
.wf-hero-block {
  height: 56px;
  background: rgba(79, 152, 163, 0.15);
  border: 1px solid rgba(79, 152, 163, 0.2);
  border-radius: 6px;
}
.wf-row {
  display: flex;
  gap: .5rem;
  margin-top: .3rem;
}
.wf-col {
  flex: 1;
  height: 32px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
.wf-lp-hero {
  height: 72px;
  background: rgba(79, 152, 163, 0.12);
  border: 1px solid rgba(79, 152, 163, 0.18);
  border-radius: 6px;
}
.wf-lp-cta {
  height: 10px;
  background: rgba(var(--teal-rgb),0.4);
  border-radius: 5px;
  width: 40%;
}
.wf-lp-body {
  height: 40px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
}
.presence-card-meta {
  padding: 1.5rem 2rem 2rem;
}
.meta-sector {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--teal-hover);
  display: block;
  margin-bottom: .75rem;
}
.presence-card-meta h3 {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.presence-card-meta p {
  color: var(--text-muted);
  font-size: .9rem;
  margin: 0;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-warm);
  padding: var(--section-spacing) 1.5rem;
}
.services-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
}
.services-header {
  margin-bottom: 3rem;
}
.services-header .section-label { color: var(--teal); }
.services-header h2 { color: var(--text-dark); }
.services-list {
  border-top: 1px solid rgba(22, 23, 26, 0.1);
}
.services-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(22, 23, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.services-cta p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0;
}
.services-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.service-item {
  border-bottom: 1px solid rgba(22, 23, 26, 0.1);
}
.service-item-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.2rem 0;
  color: var(--text-dark);
}
.service-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  color: var(--text-subtle);
  flex-shrink: 0;
  min-width: 2.5rem;
  margin-top: 0.35rem;
}
.service-content { flex: 1; }
.service-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: inherit;
}
.service-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 540px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.service-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(var(--teal-rgb), 0.06);
  color: var(--teal);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-weight: 700;
}
.service-arrow {
  font-size: 1.25rem;
  color: var(--text-subtle);
  flex-shrink: 0;
  transition: transform .25s ease, color .2s ease;
}

/* ===== SELECTED PROJECTS ===== */
.projects {
  background: var(--bg-dark);
  padding: var(--section-spacing) 1.5rem;
}
.projects-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
}
.projects-header {
  margin-bottom: 3rem;
}
.projects-header .section-label { color: var(--teal-hover); }
.projects-header h2 { color: var(--text-light); }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.project-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 152, 163, 0.25);
}
.project-img-wrap {
  aspect-ratio: 16/10;
  background: var(--bg-dark-mid);
  overflow: hidden;
}
.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .5s ease;
}
.project-card:hover .project-img-wrap img {
  transform: scale(1.03);
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.project-link:hover {
  gap: 0.7em;
  opacity: 0.8;
}
.project-link-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.project-link-row .project-link {
  margin-top: 0;
}
.project-wip {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--text-light-rgb), 0.4);
  border: 1px solid rgba(var(--text-light-rgb), 0.15);
  border-radius: 2px;
  padding: 0.25em 0.6em;
}
.project-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-img-placeholder span {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.project-meta {
  padding: 1.5rem 1.75rem 1.75rem;
}
.project-sector {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--teal-hover);
  margin-bottom: .75rem;
}
.project-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: .5rem;
}
.project-brief {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== PROCESS SUMMARY ===== */
.process-summary {
  background: var(--bg-warm);
  padding: var(--section-spacing) 1.5rem;
}
.process-summary-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
}
.process-summary-header {
  margin-bottom: 3.5rem;
  max-width: 560px;
}
.process-summary-header .section-label { color: var(--teal); }
.process-summary-header h2 {
  color: var(--text-dark);
  line-height: 1.15;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  list-style: none;
  padding: 0;
}
.process-step {
  display: flex;
  gap: 1.25rem;
}
.step-num {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(var(--teal-rgb),0.18);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.step-content p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--bg-dark);
  padding: var(--section-spacing) 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-bb-bg {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  opacity: 0.04;
  pointer-events: none;
}
.cta-bb-bg img {
  width: min(50vw, 480px);
  height: auto;
}
.final-cta-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-content {
  max-width: 620px;
}
.cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(var(--text-light-rgb),0.6);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: max(24px, calc(24px + env(safe-area-inset-bottom, 0px)));
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 9000;
  transition: transform .2s ease, background .2s ease;
}
.whatsapp-float:hover { background: var(--whatsapp-green-hover); transform: scale(1.07); }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 68px;
  background: rgba(18, 19, 21, 0.9);
  color: #fff;
  padding: .35rem .75rem;
  border-radius: 6px;
  font-size: .8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.whatsapp-float:hover::after { opacity: 1; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark-hi);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 1.5rem 2rem;
}
.footer-top {
  max-width: var(--site-max-width);
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text-light);
  text-decoration: none;
  width: fit-content;
}
.footer-bb {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 1;
  filter: invert(1) brightness(2);
}
.footer-wordmark {
  font-family: var(--font-headings);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(var(--text-light-rgb),0.7);
}
.footer-tagline {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
  padding-left: 2.75rem;
}
.footer-columns {
  max-width: var(--site-max-width);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.footer-col { }
.footer-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.footer-contact-line {
  margin-bottom: .4rem;
}
.footer-contact-line a {
  font-size: .88rem;
  color: rgba(var(--text-light-rgb),0.5);
  transition: color .2s ease;
}
.footer-contact-line a:hover { color: var(--text-light); }
.footer-bottom {
  max-width: var(--site-max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
}
.footer-bottom small {
  display: block;
  font-size: .78rem;
  color: rgba(var(--text-light-rgb),0.25);
}

/* ===== SHARED COMPONENTS (forms, FAQ, cards) ===== */

/* Cards — other pages */
.cards-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(auto-fit, minmax(var(--card-min-width), 1fr));
  margin-top: 2rem;
}
.card {
  background: var(--bg-dark-hi);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.card img { border-radius: 8px; margin-bottom: 1rem; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card h3 { margin: 0 0 .4rem 0; font-size: 1.35rem; color: var(--text-light); }
.card p { color: var(--text-muted); margin: 0; }

/* Contact section — other pages */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  align-items: center;
  margin: 2rem auto;
  max-width: 460px;
}
.contact-line { width: 100%; }
.contact-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.2rem;
  background: var(--bg-dark-hi);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  color: var(--text-light);
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.contact-link:hover { background: rgba(var(--teal-rgb),0.12); border-color: var(--teal); color: var(--teal-hover); transform: translateX(2px); }
.contact-icon { width: 24px; height: 24px; }
.contact-link.whatsapp-cta { background: var(--whatsapp-green); border-color: var(--whatsapp-green); color: #fff; }
.contact-link.whatsapp-cta:hover { background: var(--whatsapp-green-hover); color: #fff; }
.badge {
  margin-left: auto;
  background: rgba(255,255,255,0.18);
  padding: .15rem .55rem;
  border-radius: 999px;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Forms */
.form-page { padding: 3rem 1.5rem; }
.form-layout {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.form-sidecard {
  background: rgba(var(--teal-rgb), 0.08);
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 6.5rem;
}
.form-sidecard h2 {
  color: var(--text-light);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 1rem;
}
.form-notes {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
}
.form-notes li {
  color: rgba(var(--text-light-rgb), 0.78);
  padding-left: 1rem;
  position: relative;
}
.form-notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-hover);
}
.form-sidecard-note {
  color: var(--text-muted);
  margin: 0;
}
.form-container {
  max-width: none;
  margin: 0;
  background: var(--bg-dark-hi);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.22);
}
.form-container h1,
.form-container h2 { text-align: center; margin-bottom: .25rem; color: var(--text-light); }
.form-intro { text-align: center; color: var(--text-muted); margin-bottom: 2rem; }
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-form .row--full {
  grid-template-columns: 1fr;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: .35rem;
  padding: .65rem .85rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(0,0,0,0.4);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .button { width: 100%; margin-top: 1rem; }
.consent-row {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .85rem;
  margin: 1rem 0;
}
.consent-row input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}
.consent-row span {
  color: var(--text-muted);
}
.form-alt-contact {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .95rem;
  color: var(--text-muted);
}
.form-alt-contact a {
  font-weight: 600;
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-dark-hi);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: .9rem;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--teal); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--teal-hover);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
  color: var(--teal-hover);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: .8rem; color: var(--text-muted); }

/* Page hero (inner pages) */
.page-hero {
  text-align: center;
  padding: 7rem 1.5rem 3rem;
  background: linear-gradient(180deg, rgba(var(--teal-rgb),0.08), transparent);
}
.page-hero--inner {
  padding-bottom: 2rem;
}
.page-title { color: var(--teal-hover); }
.page-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.section-label--center {
  justify-content: center;
}
.page-intro-strip {
  padding: 0 1.5rem 2rem;
}
.page-intro-grid {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.page-intro-card {
  background: var(--bg-dark-hi);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.page-intro-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--teal-hover);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.page-intro-card strong {
  display: block;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}
.page-intro-card p {
  color: var(--text-muted);
  margin: 0;
}
.section--inner {
  padding-top: 2rem;
}
.cards-grid--pricing {
  align-items: stretch;
}
.price-card {
  position: relative;
  padding-top: 2.5rem;
}
.price-card--featured {
  border-color: rgba(var(--teal-rgb), 0.35);
  box-shadow: 0 16px 40px rgba(var(--teal-rgb), 0.12);
}
.price-card--product .product-image-wrapper {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-card--product .product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.price-card--product .button[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.price-card-label {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-hover);
}
.price {
  margin: 0 0 0.25rem;
  color: rgba(var(--text-light-rgb), 0.72);
}
.price strong {
  color: var(--text-light);
  font-size: 1.85rem;
}
.price-maint {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}
.price-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 0;
}
.price-card li {
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-hover);
}
.inline-cta {
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: center;
}
.inline-cta p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.inline-cta-actions,
.page-cta-band-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.process-mini-shell {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.process-mini-title {
  text-align: center;
}
.process-mini-intro {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}
.page-cta-band {
  padding: 0 1.5rem var(--section-spacing);
}
.page-cta-band-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(var(--teal-rgb),0.09), rgba(var(--teal-rgb),0.04));
  border: 1px solid rgba(var(--teal-rgb),0.18);
  border-radius: calc(var(--radius-lg) + 4px);
  padding: 2.25rem;
  text-align: center;
}
.page-cta-band-inner h2 {
  color: var(--text-light);
  margin-bottom: 0.85rem;
}
.page-cta-band-inner p:not(.section-label) {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
.legal-shell {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-dark-hi);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
.legal-shell h2 {
  color: var(--text-light);
  font-size: 1.15rem;
  margin: 1.75rem 0 0.75rem;
}
.legal-shell h2:first-child {
  margin-top: 0;
}
.legal-shell p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(18, 19, 21, 0.97);
  border-top: 1px solid rgba(79, 152, 163, 0.3);
  padding: 14px 20px;
  animation: cookieSlideUp .4s ease forwards;
}
#cookie-banner.cookie-hiding { animation: cookieSlideDown .35s ease forwards; }
@keyframes cookieSlideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes cookieSlideDown { from { transform: translateY(0); opacity: 1; } to { transform: translateY(100%); opacity: 0; } }
.cookie-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; font-size: .9rem; color: var(--text-muted); margin: 0; }
.cookie-text strong { color: var(--teal-hover); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-link { font-size: .82rem; color: var(--text-muted); text-decoration: underline; }
.cookie-link:hover { color: var(--teal-hover); }
.cookie-btn {
  font-weight: 700;
  font-size: .88rem;
  border: none;
  border-radius: 6px;
  padding: .55rem 1.1rem;
  transition: background .2s ease, color .2s ease;
}
.cookie-btn--primary { background: var(--teal); color: #fff; }
.cookie-btn--primary:hover { background: var(--teal-metal); }
.cookie-btn--secondary { background: transparent; color: var(--text-muted); border: 1px solid rgba(255,255,255,0.15); }
.cookie-btn--secondary:hover { color: var(--text-light); border-color: rgba(255,255,255,0.3); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --section-spacing: 80px; }
  .bb-depth-inner { grid-template-columns: 1fr; gap: 2rem; }
  .bb-depth-visual { height: 280px; order: -1; }
  .depth-layer img { width: 200px; }
  .process-panels { grid-template-columns: 1fr 1fr; }
  .presence-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-columns { max-width: 100%; }
  .page-intro-grid { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .form-sidecard { position: static; }
}

@media (max-width: 768px) {
  :root { --section-spacing: 64px; }
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .nav-toggle { display: inline-block; }
  .header-wordmark { display: none; }
  .header-cta { display: none; }
  .top-nav {
    grid-column: 2;
    justify-self: end;
  }
  .top-nav ul {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14, 14, 15, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .top-nav ul.open { display: flex; }
  .top-nav a { font-size: 1.1rem; }
  .hero-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .phone--2, .phone--4 { display: none; }
  .phone--1 { --phone-w: 110px; left: 2%; top: 10%; }
  .phone--3 { --phone-w: 120px; left: auto; right: 2%; bottom: 12%; --phone-rotate: 6deg; }
  .process-panels { grid-template-columns: 1fr; gap: .75rem; }
  .contact-form .row { grid-template-columns: 1fr; }
  .hero-ctas { gap: .75rem; }
  .cta-actions { gap: .75rem; }
  .presence-card-visual { min-height: 160px; padding: 1.5rem; }
  .services-cta { align-items: flex-start; }
}

@media (max-width: 600px) {
  .phone--1 { --phone-w: 90px; }
  .phone--3 { --phone-w: 98px; }
  .manifesto-headline { font-size: clamp(1.4rem, 7vw, 1.9rem); }
  #cookie-banner { padding: 10px 14px; padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
  .cookie-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .form-container { padding: 1.5rem; }
  .footer-columns { grid-template-columns: 1fr; gap: 2rem; }
  .page-cta-band-inner { padding: 1.5rem; }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-content { opacity: 1; transform: none; }
}

/* ============================================================
   PREMIUM LAYER
   ============================================================ */

/* --- Grain / noise overlay on all surfaces --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 99990;
}

/* --- Custom cursor (pointer devices only) --- */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], .project-card, label[for], summary { cursor: none; }
}
.cursor-dot,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}
@media (pointer: fine) {
  .cursor-dot {
    display: block;
    width: 5px;
    height: 5px;
    background: var(--teal-hover);
    z-index: 99999;
    will-change: left, top;
  }
  .cursor-ring {
    display: block;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(79, 152, 163, 0.4);
    background: transparent;
    z-index: 99998;
    will-change: left, top;
    transition: width 0.3s ease, height 0.3s ease,
                border-color 0.3s ease, background 0.3s ease;
  }
  .cursor-ring.is-hovered {
    width: 60px;
    height: 60px;
    border-color: rgba(79, 152, 163, 0.65);
    background: rgba(26, 104, 112, 0.05);
  }
}

/* --- Section label — teal dot accent --- */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}

/* --- Hero line-mask reveal --- */
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-content.revealed .hero-line-inner {
  transform: translateY(0);
}
.hero-content.revealed .hero-line:nth-child(2) .hero-line-inner {
  transition-delay: 0.1s;
}
/* Eyebrow, body, CTAs — staggered fades */
.hero-eyebrow {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 0.22s, transform 0.8s ease 0.22s;
}
.hero-content.revealed .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
}
.hero-body {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease 0.48s, transform 0.8s ease 0.48s;
}
.hero-content.revealed .hero-body {
  opacity: 1;
  transform: translateY(0);
}
.hero-ctas {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease 0.64s, transform 0.8s ease 0.64s;
}
.hero-content.revealed .hero-ctas {
  opacity: 1;
  transform: translateY(0);
}

/* --- Marquee band --- */
.marquee-band {
  overflow: hidden;
  background: var(--bg-dark);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,0.045);
  border-bottom: 1px solid rgba(255,255,255,0.045);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  animation: marqueeScroll 32s linear infinite;
  flex-shrink: 0;
}
.marquee-content > span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.15);
}
.marquee-content > .marquee-dot {
  color: var(--teal);
  opacity: 0.4;
  font-size: 0.9rem;
  letter-spacing: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* --- Project card — teal gradient reveal on hover --- */
.project-img-wrap {
  position: relative;
}
.project-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 40%, rgba(var(--teal-rgb), 0.5) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.project-card:hover .project-img-wrap::after {
  opacity: 1;
}

/* --- Button — shine sweep on hover --- */
.button--primary {
  position: relative;
  overflow: hidden;
}
.button--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.button--primary:hover::before {
  left: 160%;
}

/* --- Service item — left teal accent bar --- */
.service-item {
  position: relative;
}
.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  border-radius: 1px;
}
.service-item:hover::before {
  transform: scaleY(1);
}

/* --- Lenis smooth scroll --- */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* --- Reduced motion: reveal new animated elements immediately --- */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-body,
  .hero-ctas {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-line-inner {
    transform: none !important;
    transition: none !important;
  }
  .marquee-content {
    animation: none;
  }
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
  body::before {
    display: none;
  }
  .section-label {
    display: block;
  }
  .phone {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Impact Metrics */
.impact-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.metric-value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--teal-hover);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Zodiak', serif;
}
.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.hero-trust-tag {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}
.hero-content.revealed .hero-trust-tag {
  opacity: 1;
  transform: translateY(0);
}
.trust-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

/* Project Testimonials */
.project-quote {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.project-quote::before {
  content: '“';
  color: var(--teal-hover);
  font-size: 1.8rem;
  line-height: 0;
  vertical-align: -0.4rem;
  margin-right: 0.2rem;
  font-family: 'Zodiak', serif;
}

/* Pricing Page Process */
.process-mini-section {
  background: var(--bg-dark-hi);
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 5rem;
  padding: 5rem 1.5rem;
}
.process-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 3.5rem auto 0;
}
.process-mini-step h4 {
  color: var(--teal-hover);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.process-mini-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}
