/* =============================================================
   NORMIA · Consultoría alimentaria online
   Premium glassmorphism, warm cream + emerald palette
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Surface / neutral palette */
  --bg:        #f2f5f3;          /* cool neutral off-white */
  --bg-2:      #e4eae7;          /* cool stone */
  --bg-3:      #ffffff;          /* paper */
  --glass:     rgba(246, 250, 248, 0.55);
  --glass-2:   rgba(246, 250, 248, 0.35);
  --glass-edge: rgba(255, 255, 255, 0.7);

  /* Ink */
  --ink:       #0e1610;          /* deep forest near-black */
  --ink-soft:  #233027;
  --ink-mute:  #586660;
  --ink-line:  rgba(14, 22, 16, 0.12);

  /* Accents — emerald + slate blue */
  --accent:    #2e7d4f;          /* forest emerald — primary */
  --accent-2:  #1d5734;          /* deep emerald — for text on neutral */
  --accent-3:  #3878a0;          /* professional slate blue — secondary */
  --accent-4:  #6b9dba;          /* muted steel blue */

  /* Mesh gradient stops */
  --mesh-1: #bfe0c3;
  --mesh-2: #c5dce6;
  --mesh-3: #d8e6c8;
  --mesh-4: #d2e4dd;

  /* Type */
  --serif: "Manrope", "Inter", system-ui, sans-serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "JetBrains Mono", "SF Mono", Consolas, Menlo, monospace;

  /* Easings */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Sizes */
  --container-w: 1240px;
  --nav-h: 76px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

@property --mesh-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.02em; font-weight: 600; }
em { font-style: normal; font-weight: 700; color: var(--accent); }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2rem);
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* Defensive: reveal+split parents must stay visible */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .9s var(--ease-out),
    transform .9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Split text animation */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition:
    opacity .7s var(--ease-out),
    transform .7s var(--ease-out);
}
[data-split].is-visible .split-word {
  opacity: 1;
  transform: none;
}

/* =============================================================
   4. Background mesh
   ============================================================= */
.bg-mesh {
  position: fixed;
  inset: -10%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(40% 36% at 12% 14%, var(--mesh-1) 0%, transparent 70%),
    radial-gradient(45% 40% at 88% 26%, var(--mesh-2) 0%, transparent 70%),
    radial-gradient(50% 42% at 22% 86%, var(--mesh-3) 0%, transparent 70%),
    radial-gradient(40% 36% at 82% 78%, var(--mesh-4) 0%, transparent 70%);
  filter: blur(80px) saturate(110%);
  opacity: 0.6;
  animation: meshDrift 40s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2%, -1%, 0) scale(1.05); }
  100% { transform: translate3d(-2%, 1%, 0) scale(1.08); }
}
.bg-grain {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .9s var(--ease-out), clip-path .9s var(--ease-out);
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
.splash-mark {
  display: flex; align-items: center; gap: 1rem;
  animation: splashIn .9s var(--ease-out) both;
}
@keyframes splashIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.splash-glyph {
  width: 64px; height: 64px;
  background: var(--ink); color: var(--bg);
  border-radius: 18px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 32px;
}
.splash-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.4em;
}

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: .8rem;
  transition: background .35s var(--ease-out), backdrop-filter .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(245, 240, 230, 0.7);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 1px 0 var(--ink-line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; height: 60px;
}
.nav-brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 1.05rem;
}
.nav-glyph {
  width: 36px; height: 36px;
  background: var(--ink); color: var(--bg);
  border-radius: 9px;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 18px;
}
.nav-links {
  display: flex; gap: 2rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  transition: color .25s var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.6px;
  background: var(--ink);
  transition: transform .35s var(--ease-out), opacity .25s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    padding: 2rem clamp(1.2rem, 4vw, 2rem) 3rem;
    background: rgba(245, 240, 230, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* translateY by -(own height + nav offset) so bottom edge lands at y:0 — fully hidden */
    transform: translateY(calc(-100% - var(--nav-h)));
    transition: transform .5s var(--ease-out);
    border-bottom: 1px solid var(--ink-line);
    font-size: 1.4rem;
    font-family: var(--serif);
  }
  .nav.is-open .nav-links { transform: translateY(0); }
  .nav-cta { display: none; }
}

/* =============================================================
   7. Buttons
   ============================================================= */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  transition:
    background .3s var(--ease-out),
    color .3s var(--ease-out),
    transform .25s var(--ease-out),
    box-shadow .35s var(--ease-out);
  will-change: transform;
}
.btn svg { transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 8px 24px -10px rgba(14, 22, 16, 0.5);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(29, 87, 52, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink-line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.btn-lg {
  padding: 1rem 1.6rem;
  font-size: 1rem;
}

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  min-height: 100vh;
  min-height: 100svh;
  overflow: visible;
}
.hero-mesh {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 75%;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 12%, rgba(46, 125, 79, 0.22) 0%, transparent 52%),
    radial-gradient(circle at 10% 60%, rgba(217, 119, 66, 0.18) 0%, transparent 52%),
    radial-gradient(circle at 50% 90%, rgba(196, 163, 122, 0.22) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
  max-width: 880px;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: .45rem .85rem;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid var(--glass-edge);
  width: max-content;
  max-width: 100%;
}
.hero-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46, 125, 79, 0.6);
  animation: heroDotPulse 2.4s var(--ease-out) infinite;
}
@keyframes heroDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 125, 79, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(46, 125, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 125, 79, 0); }
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  font-weight: 350;
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.hero-title em {
  font-style: normal;
  font-weight: 800;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.55;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .8rem;
  margin-top: .4rem;
}
.hero-trust {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--ink-line);
  font-size: 0.88rem;
  color: var(--ink-mute);
}
.hero-trust li {
  display: inline-flex; align-items: center; gap: .5rem;
}
.hero-trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-3);
}

/* Hero figure (floating card with image) */
.hero-figure {
  position: absolute;
  top: calc(var(--nav-h) + 2.5rem);
  right: clamp(1rem, 4vw, 3rem);
  width: clamp(280px, 36vw, 460px);
  z-index: 1;
  pointer-events: none;
}
.hero-card-glass {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 60px 100px -40px rgba(14, 22, 16, 0.4),
    0 30px 60px -40px rgba(14, 22, 16, 0.3),
    inset 0 0 0 1px rgba(255,255,255,0.5);
  transform: rotate(2deg);
  animation: heroFloat 8s ease-in-out infinite alternate;
}
.hero-card-glass img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.hero-card-tag {
  position: absolute; bottom: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(255,253,248,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.hero-card-tag-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-card-stat {
  position: absolute;
  left: -10%;
  bottom: -8%;
  width: 60%;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255,253,248,0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--glass-edge);
  box-shadow: 0 30px 60px -30px rgba(14,22,16,0.3);
  transform: rotate(-3deg);
  pointer-events: auto;
  animation: heroFloat2 7s ease-in-out infinite alternate;
}
.hero-card-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent-2);
  font-weight: 800;
}
.hero-card-stat-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.35;
  margin-top: .35rem;
}
.hero-card-mini {
  position: absolute;
  top: -6%;
  right: -8%;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .65rem .95rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: 0 20px 40px -20px rgba(14,22,16,0.5);
  transform: rotate(-4deg);
  pointer-events: auto;
  animation: heroFloat3 6s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  0%   { transform: rotate(2deg) translateY(0); }
  100% { transform: rotate(2deg) translateY(-12px); }
}
@keyframes heroFloat2 {
  0%   { transform: rotate(-3deg) translateY(0); }
  100% { transform: rotate(-3deg) translateY(-8px); }
}
@keyframes heroFloat3 {
  0%   { transform: rotate(-4deg) translateY(0); }
  100% { transform: rotate(-4deg) translateY(8px); }
}

/* ── Hero: grid de 2 columnas en pantallas grandes (sin solapamiento) ── */
@media (min-width: 1101px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(240px, 24vw, 360px);
    column-gap: clamp(2.5rem, 4vw, 5rem);
    max-width: var(--container-w);
    margin-inline: auto;
    padding-inline: clamp(1.2rem, 4vw, 2rem);
    box-sizing: border-box;
  }
  .hero-inner {
    max-width: none;
    padding-inline: 0;
    margin-inline: 0;
  }
  .hero-figure {
    position: relative;
    top: 0; right: 0;
    width: 100%;
    align-self: start;
    margin-top: 2rem;
  }
}

@media (max-width: 1100px) {
  .hero-figure {
    position: relative;
    top: 0; right: 0;
    width: clamp(260px, 70vw, 380px);
    margin: 2rem auto 0;
  }
}
@media (max-width: 540px) {
  .hero { padding-top: calc(var(--nav-h) + 1.6rem); }
  .hero-card-stat { left: -4%; bottom: -10%; width: 55%; }
  .hero-card-mini { right: -2%; }
}

/* =============================================================
   9. Ticker
   ============================================================= */
.ticker {
  border-block: 1px solid var(--ink-line);
  background: rgba(255,253,248,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  padding-block: 1.2rem;
}
.ticker-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: tickerScroll 50s linear infinite;
}
.ticker-row {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: var(--ink-soft);
}
.ticker-row span:nth-child(odd) { color: var(--accent-2); }
.ticker-row span:nth-child(even) { color: var(--ink-mute); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   10. Section heads
   ============================================================= */
section { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-head {
  max-width: 760px;
  margin-bottom: 3.5rem;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 1rem;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 350;
  line-height: 1.04;
  margin-bottom: 1rem;
}
.section-lede {
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.55;
}

/* =============================================================
   11. Services grid
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.service-card {
  position: relative;
  padding: 1.8rem 1.6rem 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.65);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid var(--glass-edge);
  transition:
    transform .45s var(--ease-out),
    box-shadow .45s var(--ease-out),
    background .35s var(--ease-out);
  overflow: hidden;
  will-change: transform;
}
@supports not (backdrop-filter: blur(14px)) {
  .service-card { background: rgba(255, 253, 248, 0.92); }
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  opacity: 0;
  transition: opacity .45s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 253, 248, 0.85);
  box-shadow:
    0 30px 60px -30px rgba(14,22,16,0.18),
    0 12px 24px -12px rgba(14,22,16,0.12);
}
.service-card:hover::before { opacity: 1; }
.service-card-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: 1.2rem;
}
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 24px -12px rgba(46, 125, 79, 0.6);
}
.service-card-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: .55rem;
  letter-spacing: -0.015em;
}
.service-card > p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.1rem;
}
.service-card-list {
  list-style: none;
  border-top: 1px solid var(--ink-line);
  padding-top: 1rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.service-card-list li {
  font-size: 0.83rem;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: .55rem;
}
.service-card-list li::before {
  content: "—"; color: var(--accent); font-weight: 600;
}

/* =============================================================
   12. Process
   ============================================================= */
.process { background: linear-gradient(180deg, transparent 0%, rgba(255,253,248,0.5) 100%); }
.process-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 1.4rem;
}
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr clamp(160px, 22vw, 280px);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: 2rem clamp(1.4rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: rgba(255,253,248,0.55);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid var(--glass-edge);
  transition:
    transform .45s var(--ease-out),
    box-shadow .45s var(--ease-out);
}
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -30px rgba(14,22,16,0.2);
}
.process-step-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent-2);
  letter-spacing: -0.03em;
}
.process-step-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  margin-bottom: .5rem;
}
.process-step-body p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 56ch;
}
.process-step-meta {
  display: inline-block;
  margin-top: .8rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.process-step-figure {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-2);
}
.process-step-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transition: transform .8s var(--ease-out);
}
.process-step:hover .process-step-figure img { transform: scale(1.06); }

@media (max-width: 960px) {
  .process-step { grid-template-columns: auto 1fr; }
  .process-step-figure { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .process-step { grid-template-columns: 1fr; gap: .6rem; padding: 1.6rem 1.2rem; }
  .process-step-num { font-size: 3.2rem; }
}

/* =============================================================
   13. Sectors
   ============================================================= */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.sector-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,253,248,0.6);
  border: 1px solid var(--glass-edge);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform .5s var(--ease-out),
    box-shadow .5s var(--ease-out);
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px -34px rgba(14,22,16,0.25);
}
.sector-card-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-2);
}
.sector-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform .9s var(--ease-out);
}
.sector-card:hover .sector-card-image img { transform: scale(1.08); }
.sector-card-body {
  padding: 1.5rem 1.5rem 1.7rem;
  display: flex; flex-direction: column;
}
.sector-card-tag {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .6rem;
}
.sector-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: .7rem;
  letter-spacing: -0.015em;
}
.sector-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}
.sectors-note {
  margin-top: 2.4rem;
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--accent-3);
  background: rgba(217, 119, 66, 0.07);
  border-radius: 0 12px 12px 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.sectors-note strong { color: var(--ink); }

/* =============================================================
   14. Why
   ============================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.why-card {
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255,253,248,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-edge);
  transition:
    transform .4s var(--ease-out),
    box-shadow .4s var(--ease-out),
    border-color .4s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 125, 79, 0.4);
  box-shadow: 0 24px 48px -24px rgba(14,22,16,0.22);
}
.why-card-num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent-2);
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(46, 125, 79, 0.1);
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .6rem;
  letter-spacing: -0.015em;
}
.why-card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}

.why-cta {
  margin-top: 2.6rem;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1.4rem;
  padding: 1.8rem 2rem;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 40px 80px -40px rgba(14, 22, 16, 0.5);
}
.why-cta h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: .25rem;
}
.why-cta p {
  font-size: 0.92rem;
  color: rgba(245, 240, 230, 0.7);
}
.why-cta .btn-primary {
  background: var(--accent);
  color: #fff;
}
.why-cta .btn-primary:hover {
  background: var(--bg);
  color: var(--ink);
}

/* =============================================================
   15. About
   ============================================================= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 60px 100px -50px rgba(14,22,16,0.35);
}
.about-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.about-figure-cap {
  position: absolute; bottom: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(255,253,248,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--ink);
}
.about-figure-dot {
  width: 7px; height: 7px;
  background: var(--accent-3);
  border-radius: 50%;
}
.about-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 350;
  margin-bottom: 1.2rem;
  line-height: 1.05;
}
.about-body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 56ch;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-line);
}
.about-stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: var(--accent-2);
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: .4rem;
  line-height: 1.4;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
}

/* =============================================================
   16. Local
   ============================================================= */
.local-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: rgba(255,253,248,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-edge);
}
.local-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 350;
  margin-bottom: 1.2rem;
}
.local-body > p {
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
  line-height: 1.6;
}
.local-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: .9rem;
}
.local-list li {
  padding: .85rem 1rem;
  border-radius: 12px;
  background: rgba(255,253,248,0.5);
  border: 1px solid var(--ink-line);
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.local-list li strong { color: var(--ink); font-weight: 600; }
.local-figure {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(14,22,16,0.3);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.local-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.95);
}
.local-tag {
  position: absolute; bottom: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(14, 22, 16, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.local-tag-dot {
  width: 7px; height: 7px;
  background: var(--accent-3);
  border-radius: 50%;
}
@media (max-width: 880px) {
  .local-inner { grid-template-columns: 1fr; }
  .local-figure { max-width: 420px; margin-inline: auto; }
}

/* =============================================================
   17. FAQ
   ============================================================= */
.faq-list {
  display: flex; flex-direction: column;
  gap: .8rem;
  max-width: 920px;
}
.faq-item {
  border-radius: var(--radius-md);
  background: rgba(255,253,248,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-edge);
  overflow: hidden;
  transition: background .3s var(--ease-out);
}
.faq-item[open] { background: rgba(255,253,248,0.85); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.6rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--ink-line);
  transition: transform .35s var(--ease-out), background .3s var(--ease-out);
}
.faq-icon::before,
.faq-icon::after {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .35s var(--ease-out);
}
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: #fff; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-body {
  padding: 0 1.6rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 64ch;
}
.faq-body strong { color: var(--ink); font-weight: 600; }

/* =============================================================
   18. Contact
   ============================================================= */
.contact { padding-bottom: 6rem; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-intro h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 350;
  margin-bottom: 1.2rem;
}
.contact-intro > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 44ch;
}
.contact-points {
  list-style: none;
  display: flex; flex-direction: column;
  gap: .65rem;
}
.contact-points li {
  display: flex; align-items: center; gap: .7rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.contact-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.contact-form {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: rgba(255,253,248,0.75);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--glass-edge);
  box-shadow: 0 50px 100px -50px rgba(14,22,16,0.3);
  display: flex; flex-direction: column;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex; flex-direction: column;
  gap: .4rem;
}
.field-label {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field-opt {
  font-style: italic;
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
  font-size: 0.78rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--ink-line);
  background: rgba(255,255,255,0.7);
  font: inherit;
  color: var(--ink);
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-mute);
  opacity: 0.7;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46, 125, 79, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-check {
  display: flex; gap: .7rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
  align-items: flex-start;
}
.field-check input {
  width: 18px; height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.field-check a { text-decoration: underline; color: var(--ink); }

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.form-submit {
  align-self: flex-start;
  margin-top: .4rem;
}
.form-submit[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
.form-status {
  font-size: 0.9rem;
  margin-top: .3rem;
  min-height: 1.5em;
  color: var(--ink-soft);
}
.form-status.is-success { color: var(--accent-2); }
.form-status.is-error { color: #b54422; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================================
   19. Footer
   ============================================================= */
.footer {
  padding: 4rem 0 2.4rem;
  background: var(--ink);
  color: rgba(245, 240, 230, 0.85);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -50%; left: 50%;
  width: 80%; height: 200%;
  transform: translateX(-50%);
  background: radial-gradient(50% 40% at 50% 30%, rgba(46, 125, 79, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.footer-brand {
  display: flex; align-items: center; gap: 1rem;
}
.footer-glyph {
  width: 56px; height: 56px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 16px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 28px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  color: var(--bg);
}
.footer-sub {
  font-size: 0.84rem;
  color: rgba(245, 240, 230, 0.6);
  margin-top: .2rem;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-nav-title {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: .9rem;
}
.footer-nav a {
  display: block;
  font-size: 0.92rem;
  color: rgba(245, 240, 230, 0.7);
  padding: .25rem 0;
  transition: color .25s var(--ease-out);
}
.footer-nav a:hover { color: var(--bg); }

.footer-meta {
  grid-column: 1 / -1;
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  display: flex; justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.84rem;
  color: rgba(245, 240, 230, 0.55);
}
.footer-legal {
  display: flex; gap: .7rem; flex-wrap: wrap;
}
.footer-legal a {
  transition: color .25s var(--ease-out);
}
.footer-legal a:hover { color: var(--bg); }

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   20. Reduced-motion — only INTRUSIVE effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .bg-mesh { animation: none; }
  .hero-card-glass,
  .hero-card-stat,
  .hero-card-mini { animation: none; }
  .ticker-track { animation: none; }
  .hero-dot { animation: none; }
}

/* =============================================================
   21. Plain-CSS enhancements — zero external dependencies
   ============================================================= */

/* -- Scroll progress bar -- */
@keyframes scrollProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  animation: scrollProgress linear both;
  animation-timeline: scroll(root block);
}

/* -- Button shimmer on hover -- */
.btn-primary {
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 40%,
    rgba(255,255,255,0.15) 50%,
    transparent 60%);
  transform: translateX(-100%);
  transition: transform 0s;
}
.btn-primary:hover::after {
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

/* -- Service card subtle glow on hover -- */
.service-card {
  transition:
    transform .4s var(--ease-out),
    box-shadow .4s var(--ease-out);
}
.service-card:hover {
  box-shadow:
    0 0 0 1.5px var(--accent),
    0 20px 50px -16px rgba(46,125,79,0.25);
}

/* -- Sector card image zoom on hover -- */
.sector-card-image {
  overflow: hidden;
}
.sector-card-image img {
  transition: transform .6s var(--ease-out);
}
.sector-card:hover .sector-card-image img {
  transform: scale(1.04);
}

/* -- Why card border-top accent on hover -- */
.why-card {
  border-top: 2px solid transparent;
  transition:
    border-color .3s var(--ease-out),
    transform .4s var(--ease-out),
    box-shadow .4s var(--ease-out);
}
.why-card:hover {
  border-top-color: var(--accent);
}

/* -- FAQ item smooth height (native details) -- */
.faq-item summary {
  transition: color .25s var(--ease-out);
}
.faq-item[open] summary {
  color: var(--accent-2);
}

/* -- Kicker text animated underline -- */
.kicker {
  position: relative;
  display: inline-block;
}
.kicker::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width .5s var(--ease-out);
}
.kicker.is-visible::after {
  width: 100%;
}
