/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #f7f6f1;
  --paper:       #ffffff;
  --tint:        #efeee6;
  --ink:         #14160f;
  --ink-soft:    #33362c;
  --ink-mute:    #6b6d60;
  --line:        rgba(20,22,15,0.12);

  --dark-bg:     #0b0d08;
  --dark-bg-2:   #14170e;
  --dark-glass:  rgba(243,242,236,0.05);
  --dark-line:   rgba(243,242,236,0.14);
  --cream:       #f3f2ec;
  --cream-mute:  rgba(243,242,236,0.7);
  --cream-dim:   rgba(243,242,236,0.46);

  --accent:        #6f9139;
  --accent-dark:   #3f5a24;
  --accent-light:  #a4c853;
  --navy:          #1b2440;

  --display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif:   "Fraunces", Georgia, serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 84px;
}

@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

/* =============================================================
   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;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
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.06; letter-spacing: -0.02em; font-family: var(--display); font-weight: 700; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--cream); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--cream);
  border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container-narrow { max-width: 800px; }

.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex: none;
}
.kicker-light { color: var(--accent-light); }

.section-head { max-width: 640px; margin-bottom: 3.2rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 58ch; }
.lede-center { margin-inline: auto; text-align: center; }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

em { font-family: var(--serif); font-style: italic; font-weight: 500; color: inherit; }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: 0.95rem 1.7rem; border-radius: 999px;
  font-family: var(--display); font-weight: 600; font-size: .95rem;
  white-space: nowrap;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background-color .3s var(--ease-out), color .3s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #0e1408;
  box-shadow: 0 12px 30px -10px rgba(111,145,57,0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(111,145,57,0.6); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-ghost {
  border: 1.5px solid var(--dark-line); color: var(--cream);
}
.btn-ghost:hover { border-color: var(--accent-light); background: rgba(255,255,255,0.06); transform: translateY(-3px); }

.btn-outline {
  border: 1.5px solid var(--accent-dark); color: var(--accent-dark);
}
.btn-outline:hover { background: var(--accent-dark); color: var(--cream); transform: translateY(-3px); }

.btn-sm { padding: 0.65rem 1.3rem; font-size: .85rem; }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.02rem; }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; }

/* --- Cards --- */
.card-glass {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.1rem 1.9rem;
  box-shadow: 0 1px 0 rgba(20,22,15,0.03);
  transition: box-shadow .5s var(--ease-soft), border-color .5s var(--ease-soft);
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.card-glass:hover {
  border-color: rgba(111,145,57,0.35);
  box-shadow: 0 40px 70px -30px rgba(20,22,15,0.22), 0 0 0 1px rgba(111,145,57,0.12);
}
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1.3rem;
  background: linear-gradient(135deg, rgba(111,145,57,0.14), rgba(27,36,64,0.08));
  color: var(--accent-dark);
}
.card-icon svg { width: 24px; height: 24px; }
.card-glass h3 { margin-bottom: .55rem; font-size: 1.08rem; }
.card-glass p { color: var(--ink-mute); font-size: .95rem; }

/* --- Nav --- */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 500;
  height: var(--nav-h);
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav-inner {
  height: 100%; display: flex; align-items: center; gap: 1.6rem;
}
.nav.is-scrolled {
  background: rgba(11,13,8,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(243,242,236,0.08);
}
.nav-logo {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.96);
  padding: .5rem .85rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  flex: none;
}
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: none; align-items: center; gap: 1.9rem; margin-inline-start: auto; }
.nav-links a {
  position: relative; padding: .3rem 0; font-size: .92rem; font-weight: 500;
  color: var(--cream-mute);
  transition: color .3s var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent-light);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-soft);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { flex: none; }
.nav-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; margin-inline-start: auto;
}
.nav-burger span { display: block; width: 100%; height: 1.5px; background: var(--cream); transition: transform .35s var(--ease-soft), opacity .35s; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { margin-inline-start: .5rem; }
  .nav-burger { display: none; }
}
@media (max-width: 959px) {
  .nav-cta { display: none; }
}

.nav-mobile {
  position: fixed; inset: 0; z-index: 400;
  background: var(--dark-bg); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile nav { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.nav-mobile nav a { font-family: var(--display); font-size: 1.5rem; font-weight: 600; }

/* --- Forms --- */
.field { position: relative; margin-bottom: 1.1rem; }
.field input, .field textarea {
  width: 100%; padding: 1.5rem 1rem .6rem; border: 1px solid var(--line);
  border-radius: 12px; background: var(--paper); color: inherit; font: inherit;
  transition: border-color .3s var(--ease-out);
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 1.05rem;
  pointer-events: none; color: var(--ink-mute);
  transition: all .22s var(--ease-out);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .45rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
}
.form-hint { font-size: .82rem; color: var(--ink-mute); margin-top: .9rem; }

/* --- Accordion --- */
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.4rem 0; text-align: left;
  font-family: var(--display); font-weight: 600; font-size: 1.02rem;
}
.accordion-plus {
  position: relative; flex: none; width: 20px; height: 20px;
}
.accordion-plus::before, .accordion-plus::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--ink);
  transform: translate(-50%, -50%); transition: transform .35s var(--ease-soft), opacity .35s;
}
.accordion-plus::before { width: 14px; height: 1.5px; }
.accordion-plus::after  { width: 1.5px; height: 14px; }
.accordion-trigger[aria-expanded="true"] .accordion-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.accordion-panel {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .5s var(--ease-soft), opacity .4s var(--ease-out);
}
.accordion-panel > p { overflow: hidden; padding-bottom: 0; color: var(--ink-soft); }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; opacity: 1; }
.accordion-item.is-open .accordion-panel > p { padding-bottom: 1.4rem; }
.accordion-panel { overflow: hidden; }

/* =============================================================
   6. Sections
   ============================================================= */
.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-light { background: var(--bg); color: var(--ink); }
.section-tint { background: var(--tint); }
.section-dark { background: var(--dark-bg); color: var(--cream); }
.section-dark .kicker { color: var(--accent-light); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: var(--cream-mute); }

/* mesh gradient utility (hero + philosophy) */
.section-mesh { overflow: hidden; isolation: isolate; }
.section-mesh::before {
  content: ""; position: absolute; inset: -20%; z-index: -1;
  background:
    radial-gradient(50% 45% at var(--mesh-x) var(--mesh-y), rgba(111,145,57,0.32), transparent 65%),
    conic-gradient(from var(--mesh-angle), rgba(164,200,83,0.14), rgba(27,36,64,0.22), rgba(111,145,57,0.14), rgba(164,200,83,0.14));
  filter: blur(90px) saturate(120%);
  opacity: .8;
  animation: meshShift 26s linear infinite;
  mix-blend-mode: screen;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 26%; --mesh-y: 38%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 72%; --mesh-y: 58%; }
  100% { --mesh-angle: 360deg; --mesh-x: 26%; --mesh-y: 38%; }
}

/* --- Hero --- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; isolation: isolate; color: var(--cream);
  padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(11,13,8,0.75) 0%, rgba(11,13,8,0.55) 40%, rgba(11,13,8,0.88) 100%),
    linear-gradient(90deg, rgba(11,13,8,0.55) 0%, rgba(11,13,8,0.2) 55%, rgba(11,13,8,0.55) 100%);
}
.hero-mesh {
  position: absolute; inset: -20%; z-index: -1;
  background:
    radial-gradient(45% 40% at 28% 35%, rgba(111,145,57,0.4), transparent 65%),
    conic-gradient(from var(--mesh-angle), rgba(164,200,83,0.16), rgba(27,36,64,0.26), rgba(111,145,57,0.16), rgba(164,200,83,0.16));
  filter: blur(100px) saturate(120%);
  opacity: .75;
  animation: meshShift 30s linear infinite;
  mix-blend-mode: screen;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero-title { max-width: 16ch; margin-bottom: 1.6rem; }
.hero-sub { font-size: 1.15rem; color: var(--cream-mute); max-width: 46ch; margin-bottom: 2.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1.5px solid var(--dark-line); border-radius: 20px;
}
.hero-scroll-cue span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent-light); transform: translateX(-50%);
  animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue { 0%,100% { top: 8px; opacity: 1; } 50% { top: 22px; opacity: .4; } }

/* --- Split layout --- */
.split { display: grid; gap: 3rem; align-items: center; }
.split-text h2 { margin-bottom: 1.2rem; }
.split-text .lede { margin-bottom: 2rem; }
.pillar-list { display: flex; flex-direction: column; gap: 1rem; }
.pillar-list li {
  display: flex; flex-direction: column; gap: .2rem;
  padding-left: 1.1rem; border-left: 2px solid var(--accent);
}
.pillar-list strong { font-family: var(--display); font-weight: 700; }
.pillar-list span { color: var(--ink-mute); font-size: .92rem; }
.split-figure {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(20,22,15,0.35);
}
.crop-caption { aspect-ratio: 4 / 3.15; object-fit: cover; object-position: top center; width: 100%; }

@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .split-reverse { grid-template-columns: 1fr 1fr; }
  .split-reverse .split-figure { order: 1; }
  .split-reverse .split-text { order: 2; }
}

/* --- Philosophy --- */
.philosophy { max-width: 760px; margin-inline: auto; text-align: center; }
.philosophy-quote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.25;
  color: var(--cream); margin-bottom: 1.6rem;
}
.philosophy-body { font-size: 1.05rem; max-width: 56ch; margin-inline: auto; }

/* --- Services grid --- */
.grid-services { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .grid-services { grid-template-columns: repeat(4, 1fr); } }

/* --- Pillar grid (dark, por qué elegirnos) --- */
.pillar-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; margin-top: 1.8rem; }
@media (min-width: 640px) { .pillar-grid { grid-template-columns: 1fr 1fr; } }
.pillar-card {
  background: var(--dark-glass);
  border: 1px solid var(--dark-line);
  border-radius: 16px; padding: 1.6rem 1.5rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color .4s var(--ease-soft), transform .4s var(--ease-soft);
}
@supports not (backdrop-filter: blur(14px)) {
  .pillar-card { background: rgba(20,23,14,0.9); }
}
.pillar-card:hover { border-color: rgba(164,200,83,0.4); transform: translateY(-4px); }
.pillar-card h3 { font-size: 1.02rem; margin-bottom: .5rem; }
.pillar-card p { font-size: .92rem; }

/* --- Process --- */
.process-steps { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .process-steps { grid-template-columns: repeat(4, 1fr); gap: 1.6rem; } }
.process-step { position: relative; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.process-number {
  display: block; font-family: var(--serif); font-style: italic; font-size: 2.1rem;
  color: var(--accent); margin-bottom: .9rem;
}
.process-step h3 { margin-bottom: .55rem; }
.process-step p { color: var(--ink-mute); font-size: .95rem; }

/* --- Education topics --- */
.topic-row { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-top: 2.8rem; }
@media (min-width: 720px) { .topic-row { grid-template-columns: repeat(3, 1fr); } }
.topic-tile {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.8rem; text-align: left;
}
.topic-tile h3 { margin-bottom: .5rem; }
.topic-tile p { color: var(--ink-mute); font-size: .92rem; }

/* --- Recursos --- */
.recursos-panel {
  max-width: 720px; margin-inline: auto; text-align: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(2.4rem, 5vw, 3.6rem);
}
.recursos-panel h2 { margin-block: .8rem 1rem; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.recursos-panel p { color: var(--ink-mute); margin-bottom: 1.8rem; }

/* --- CTA (final) --- */
.section-cta { overflow: hidden; isolation: isolate; text-align: left; }
.cta-bg { position: absolute; inset: 0; z-index: -3; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.cta-scrim {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(100deg, rgba(11,13,8,0.94) 0%, rgba(11,13,8,0.82) 45%, rgba(11,13,8,0.55) 100%);
}
.cta-inner { max-width: 620px; }
.cta-inner h2 { margin-bottom: 1.2rem; }
.cta-inner p { margin-bottom: 2.2rem; font-size: 1.05rem; }

/* --- Contact --- */
.contact-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info .lede { margin-bottom: 1.6rem; }
.contact-email {
  display: inline-block; font-family: var(--display); font-weight: 700;
  font-size: 1.5rem; color: var(--ink); border-bottom: 2px solid var(--accent);
  padding-bottom: .2rem; margin-bottom: 1rem;
  transition: color .3s var(--ease-out);
}
.contact-email:hover { color: var(--accent-dark); }
.contact-note { color: var(--ink-mute); font-size: .9rem; }
.contact-form button { width: 100%; margin-top: .4rem; }

/* --- Footer --- */
.footer { background: var(--dark-bg); color: var(--cream-mute); padding-block: 3.5rem 2.5rem; }
.footer-inner { display: flex; flex-direction: column; gap: 1.8rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-brand img { height: 26px; width: auto; }
.footer-brand p { font-size: .85rem; color: var(--cream-dim); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-links a { font-size: .88rem; transition: color .3s; }
.footer-links a:hover { color: var(--cream); }
.footer-disclaimer { font-size: .78rem; color: var(--cream-dim); max-width: 74ch; line-height: 1.6; }
.footer-copy { font-size: .78rem; color: var(--cream-dim); }

/* =============================================================
   7. Effects
   ============================================================= */

/* Splash */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark-bg);
  display: grid; place-items: center;
  transition: opacity .8s, clip-path 1s;
  animation: splashSafety .01s 3.6s forwards;
}
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.splash-logo { width: 56px; height: 56px; object-fit: contain; }
.splash-line { width: 120px; height: 1px; background: var(--dark-line); position: relative; overflow: hidden; }
.splash-line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent-light);
  transform: translateX(-100%); animation: splashLine 1.4s var(--ease-soft) forwards;
}
@keyframes splashLine { to { transform: translateX(0); } }
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }

/* Reveal on scroll */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero-actions { gap: 1.2rem; }
}
@media (min-width: 1600px) {
  .container { max-width: 1340px; }
}

/* =============================================================
   9. Reduced-motion — only genuinely intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-scroll-cue span { animation: none; }
}
