:root {
  color-scheme: light dark;
  --bg: #edf0e9;
  --bg-deep: #dfe5dc;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #f8faf6;
  --surface-strong: #d7dfd5;
  --ink: #0b1710;
  --ink-soft: #435248;
  --muted: #66736a;
  --line: rgba(11, 23, 16, 0.15);
  --line-strong: rgba(11, 23, 16, 0.28);
  --forest: #0f3c2a;
  --forest-deep: #071a12;
  --accent: #bf1640;
  --accent-deep: #8d102f;
  --accent-soft: rgba(191, 22, 64, 0.12);
  --shadow: 0 24px 70px -38px rgba(7, 26, 18, 0.45);
  --shadow-strong: 0 32px 90px -38px rgba(7, 26, 18, 0.65);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1240px;
  --header-h: 92px;
  --font-display: "Aptos Display", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  --font-body: Aptos, "Segoe UI", Arial, system-ui, sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #08130e;
    --bg-deep: #0b1d15;
    --surface: rgba(18, 40, 29, 0.72);
    --surface-solid: #10271c;
    --surface-strong: #173425;
    --ink: #f0f3ec;
    --ink-soft: #bec9c0;
    --muted: #92a298;
    --line: rgba(240, 243, 236, 0.14);
    --line-strong: rgba(240, 243, 236, 0.28);
    --forest: #8db49c;
    --forest-deep: #d7e5da;
    --accent: #ef5b7d;
    --accent-deep: #ff86a0;
    --accent-soft: rgba(239, 91, 125, 0.13);
    --shadow: 0 24px 70px -38px rgba(0, 0, 0, 0.88);
    --shadow-strong: 0 32px 90px -32px rgba(0, 0, 0, 0.92);
  }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 86% 5%, var(--accent-soft), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

h1, h2, h3, p, ul, ol, figure, blockquote { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1200;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--maxw), calc(100% - 40px));
  margin-inline: auto;
}

.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding-block: clamp(3.6rem, 6vw, 6.2rem); }
.section + .section { border-top: 1px solid var(--line); }
.section:nth-of-type(4n + 2) { background: color-mix(in srgb, var(--surface-strong) 48%, transparent); }
.section:nth-of-type(4n) { background: linear-gradient(145deg, color-mix(in srgb, var(--surface-solid) 72%, transparent), color-mix(in srgb, var(--accent-soft) 28%, transparent)); }
.section:nth-of-type(4n + 3)::before { content: ""; position: absolute; right: -5%; top: 50%; width: min(42vw, 560px); aspect-ratio: 1; background: url("../img/simbolo-cerezo.png") center / contain no-repeat; opacity: .035; filter: grayscale(1) blur(2px); transform: translateY(-50%) rotate(-8deg); pointer-events: none; }
.section:nth-of-type(4n + 3) > .container { position: relative; z-index: 1; }
.section-compact { padding-block: clamp(2.4rem, 4vw, 4rem); }
.surface-band { border-block: 1px solid var(--line); background: linear-gradient(145deg, color-mix(in srgb, var(--surface-strong) 82%, transparent), color-mix(in srgb, var(--accent-soft) 42%, transparent)); box-shadow: inset 0 30px 80px -70px var(--forest), inset 0 -30px 80px -70px var(--forest); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.site-topbar { position: relative; z-index: 910; min-height: 36px; background: #08100c; color: rgba(255, 255, 255, .82); }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-contact, .topbar-social { display: flex; align-items: center; gap: 1.15rem; }
.topbar-contact a { display: inline-flex; align-items: center; gap: .42rem; color: inherit; font-size: .76rem; font-weight: 700; text-decoration: none; }
.topbar-contact a::before { color: #d5a929; font-size: .82rem; }
.topbar-contact a[href^="tel:"]::before { content: "✆"; }
.topbar-contact a[href^="mailto:"]::before { content: "✉"; }
.site-topbar .social-link { width: 27px; height: 27px; border-color: rgba(255, 255, 255, .22); color: #fff; }
.site-topbar .social-link--instagram span { width: 13px; height: 13px; }
.site-topbar .social-link--facebook span { font-size: 18px; }
.site-topbar .social-link--maps span { width: 12px; height: 12px; }

.nav-wrap {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 240px;
  text-decoration: none;
}

.brand img { width: 100%; max-height: none; object-fit: contain; object-position: left center; filter: grayscale(1) contrast(1.35); }

@media (prefers-color-scheme: dark) {
  .brand img { filter: grayscale(1) brightness(0) invert(1); }
}

.primary-nav { justify-self: end; }
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.85rem, 1.8vw, 1.8rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  display: block;
  padding: .7rem 0;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .45rem;
  height: 2px;
  background: var(--accent);
  transition: right .28s var(--ease);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] { color: var(--ink); }
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .65rem 1.1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s var(--ease), background .2s ease, box-shadow .2s ease;
}

.nav-cta:hover { background: var(--accent-deep); box-shadow: 0 12px 34px -18px var(--accent); transform: translateY(-1px); }
.nav-cta:active, .btn:active { transform: translateY(1px); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.breadcrumb {
  padding-block: 1rem;
  color: var(--muted);
  font-size: .86rem;
}

.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.breadcrumb li + li::before { content: "/"; margin-right: .45rem; color: var(--line-strong); }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

.hero-home {
  min-height: 0;
  display: block;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(470px, 50vw, 590px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(640px, calc(100% - 40px));
  min-height: 0;
  margin: clamp(2rem, 5vw, 4rem) auto clamp(2rem, 5vw, 4rem) max(20px, calc((100vw - var(--maxw)) / 2));
  padding: clamp(1.8rem, 3.4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-solid) 65%, transparent);
  box-shadow: 0 32px 90px -35px rgba(0, 0, 0, .72);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 1.25rem;
  padding: .35rem .75rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 10.8ch;
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.6vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .87;
}

.hero-copy h1 em { display: block; color: var(--accent); font-style: normal; font-weight: inherit; }

.hero-copy > p {
  max-width: 43ch;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .22s var(--ease), border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 16px 38px -20px var(--accent); transform: translateY(-2px); }
.btn-secondary { border-color: var(--line-strong); background: var(--surface); color: var(--ink); }
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--surface-strong);
}

.hero-slide { 
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.15s ease, clip-path 1.15s var(--ease);
  clip-path: inset(0 0 0 9%);
}

.hero-slide.is-active { opacity: 1; clip-path: inset(0); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide:first-child img { object-position: 51% center; }

.hero-slide.is-active img { animation: hero-zoom 9s ease-out both; }
.hero-slide:nth-child(even).is-active img { animation-name: hero-zoom-alt; }

@keyframes hero-zoom {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-1%, -.5%, 0); }
}

@keyframes hero-zoom-alt {
  from { transform: scale(1.09) translate3d(1%, -.5%, 0); }
  to { transform: scale(1.01) translate3d(0, 0, 0); }
}

.hero-motion { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.hero-motion::before { content: ""; position: absolute; right: 12%; top: 14%; width: clamp(220px, 27vw, 430px); aspect-ratio: 1; border: 3px solid rgba(255, 255, 255, .55); border-top-color: var(--accent); border-radius: 50%; box-shadow: inset 0 0 0 28px rgba(255,255,255,.04), 0 0 30px rgba(0,0,0,.28); animation: hero-orbit 14s linear infinite; }
.hero-motion::after { content: ""; position: absolute; left: -18%; top: 0; width: 12%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent); filter: blur(2px); transform: skewX(-15deg); animation: hero-scan 6.5s ease-in-out infinite; }
.hero-profile-lines { position: absolute; inset: 6% 3%; width: 94%; height: 88%; fill: none; stroke: rgba(255, 255, 255, .98); stroke-width: 3.4; stroke-linecap: square; stroke-dasharray: 470 1200; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .8)); animation: profile-travel 6.8s linear infinite; }
.hero-profile-lines path:last-child { stroke: rgba(213, 27, 72, 1); stroke-width: 4.2; stroke-dasharray: 350 1200; animation: profile-offset 5.5s linear infinite; }
.hero-target { position: absolute; width: 76px; aspect-ratio: 1; border: 2.5px solid rgba(255, 255, 255, 1); border-radius: 50%; box-shadow: 0 0 0 10px rgba(255,255,255,.08), 0 0 28px rgba(0,0,0,.5); filter: drop-shadow(0 2px 7px rgba(0, 0, 0, .7)); animation: target-drift 6s ease-in-out infinite alternate, target-pulse 2.4s ease-out infinite; }
.hero-target::before, .hero-target::after { content: ""; position: absolute; left: 50%; top: 50%; background: currentColor; color: rgba(255, 255, 255, .95); transform: translate(-50%, -50%); }
.hero-target::before { width: 76px; height: 1.5px; }
.hero-target::after { width: 1.5px; height: 76px; }
.hero-target--one { left: 21%; top: 21%; }
.hero-target--two { right: 9%; top: 36%; width: 43px; animation-delay: -2.5s; }
.hero-target--three { left: 58%; bottom: 13%; width: 34px; animation-delay: -5s; }
@keyframes profile-travel { to { stroke-dashoffset: -1320; } }
@keyframes profile-offset { to { stroke-dashoffset: 1180; } }
@keyframes target-drift { from { transform: translate3d(-10px, 8px, 0) rotate(-7deg); } to { transform: translate3d(24px, -18px, 0) rotate(8deg); } }
@keyframes target-pulse { 0%, 100% { box-shadow: 0 0 0 10px rgba(255,255,255,.08), 0 0 28px rgba(0,0,0,.5); } 50% { box-shadow: 0 0 0 22px rgba(191,22,64,.2), 0 0 38px rgba(191,22,64,.4); } }
@keyframes hero-orbit { to { transform: rotate(360deg); } }
@keyframes hero-scan { 0%, 15% { left: -18%; opacity: 0; } 35%, 65% { opacity: .7; } 85%, 100% { left: 112%; opacity: 0; } }

.hero-tabs {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  gap: .5rem;
  padding: .45rem;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(4, 12, 8, .72);
  backdrop-filter: blur(10px);
}

.hero-tab {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 850;
}

.hero-tab[aria-selected="true"] { background: #f4f7f2; color: #0b1710; }

.proof-strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 50%, color-mix(in srgb, var(--accent-soft) 54%, transparent), transparent 31rem),
    color-mix(in srgb, var(--surface) 88%, transparent);
}
.proof-strip::after {
  content: "";
  position: absolute;
  left: 36%;
  top: 0;
  width: 24%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  filter: drop-shadow(0 0 7px color-mix(in srgb, var(--accent) 65%, transparent));
  animation: proof-scan 6s var(--ease) infinite alternate;
  pointer-events: none;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  align-items: stretch;
}

.proof-intro,
.proof-item { padding: clamp(1.4rem, 3vw, 2.2rem); }
.proof-item {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  border-left: 1px solid var(--line);
  transition: background .4s var(--ease), transform .4s var(--ease);
  animation: proof-item-in .7s var(--ease) both;
}
.proof-item:nth-child(3) { animation-delay: .1s; }
.proof-item:nth-child(4) { animation-delay: .2s; }
.proof-item::before {
  position: absolute;
  right: clamp(.8rem, 1.5vw, 1.4rem);
  top: .45rem;
  z-index: -1;
  color: color-mix(in srgb, var(--accent) 16%, transparent);
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  font-weight: 850;
  letter-spacing: -.08em;
  line-height: 1;
  transition: color .35s ease, transform .45s var(--ease);
}
.proof-item:nth-child(2)::before { content: "01"; }
.proof-item:nth-child(3)::before { content: "02"; }
.proof-item:nth-child(4)::before { content: "03"; }
.proof-item::after {
  content: "";
  position: absolute;
  left: clamp(1.4rem, 3vw, 2.2rem);
  right: clamp(1.4rem, 3vw, 2.2rem);
  bottom: 1rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 35%, transparent));
  transform: scaleX(.2);
  transform-origin: left;
  transition: transform .55s var(--ease);
}
.proof-item:hover {
  z-index: 1;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-soft) 72%, transparent), transparent 76%);
  transform: translateY(-4px);
}
.proof-item:hover::before { color: color-mix(in srgb, var(--accent) 28%, transparent); transform: translate(-4px, 5px) scale(1.08); }
.proof-item:hover::after { transform: scaleX(1); }
.proof-intro { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.25; }
.proof-item strong {
  display: block;
  max-width: 12ch;
  margin-bottom: .65rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.15vw, 2.25rem);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: .98;
  text-wrap: balance;
  transition: color .3s ease, transform .4s var(--ease);
}
.proof-item:hover strong { color: var(--accent); transform: translateX(4px); }
.proof-item span { max-width: 18ch; color: var(--ink-soft); font-size: clamp(.98rem, 1.15vw, 1.08rem); line-height: 1.45; text-wrap: pretty; }
@keyframes proof-item-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes proof-scan { from { transform: translateX(-45%); opacity: .45; } to { transform: translateX(240%); opacity: 1; } }

.section-head { max-width: 800px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2,
.page-hero h1 {
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.section-head p,
.page-hero p { max-width: 62ch; margin-bottom: 0; color: var(--ink-soft); font-size: clamp(1rem, 1.4vw, 1.16rem); }
.section-head.center p { margin-inline: auto; }
.accent { color: var(--accent); }

.page-hero { padding-block: clamp(2.6rem, 4.8vw, 4.4rem); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.page-hero h1 { max-width: 13ch; font-size: clamp(2.3rem, 4.2vw, 4.3rem); }
.page-hero p { margin-bottom: 1.8rem; }
.page-hero figure { margin: 0; }
.page-hero img { width: 100%; max-height: 410px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-strong); }
.aerial-hero { position: relative; overflow: hidden; border-radius: 100px; box-shadow: var(--shadow-strong); isolation: isolate; }
.aerial-hero::before { content: ""; position: absolute; inset: 0; z-index: 2; border: 2px solid color-mix(in srgb, var(--accent) 42%, transparent); border-radius: inherit; pointer-events: none; }
.aerial-hero::after { content: ""; position: absolute; left: -35%; top: -30%; z-index: 2; width: 20%; height: 160%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent); filter: blur(3px); transform: rotate(18deg); animation: aerial-shine 7s ease-in-out infinite; pointer-events: none; }
.page-hero .aerial-hero img { display: block; border-radius: 100px; box-shadow: none; animation: aerial-pan 11s ease-in-out infinite alternate; }
@keyframes aerial-pan { from { transform: scale(1.01) translate3d(-.5%, 0, 0); } to { transform: scale(1.08) translate3d(1.5%, -1%, 0); } }
@keyframes aerial-shine { 0%, 25% { left: -35%; opacity: 0; } 45%, 62% { opacity: .75; } 82%, 100% { left: 125%; opacity: 0; } }

.category-stage { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.category-main,
.category-side a {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.category-main { min-height: 620px; }
.category-side { display: grid; grid-template-rows: repeat(2, 1fr); gap: 18px; }
.category-side a { min-height: 300px; }
.category-stage img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.category-stage a:hover img { transform: scale(1.04); filter: saturate(1.08); }
.category-copy {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(transparent, rgba(4, 12, 8, .9));
  color: #fff;
}
.category-copy h3 { margin-bottom: .4rem; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 600; line-height: 1; }
.category-copy p { max-width: 42ch; margin-bottom: .8rem; color: rgba(255, 255, 255, .78); }
.category-copy span { font-weight: 850; }

.service-index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.service-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 170px;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background .25s ease;
}
.service-link:nth-child(odd) { border-right: 1px solid var(--line); }
.service-link:hover { background: var(--accent-soft); }
.service-link .number { color: var(--accent); font-size: .8rem; font-weight: 900; }
.service-link h3 { margin: 0 0 .35rem; font-family: var(--font-display); font-size: clamp(1.35rem, 2.1vw, 2rem); font-weight: 600; }
.service-link p { margin: 0; color: var(--muted); font-size: .92rem; }
.service-link .arrow { font-size: 1.5rem; transition: transform .2s var(--ease); }
.service-link:hover .arrow { transform: translateX(5px); }

.expertise-orbit {
  position: relative;
  min-height: 670px;
  margin-top: 2rem;
  isolation: isolate;
}
.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(46vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 20deg, transparent 0 8%, var(--accent) 11% 16%, transparent 19% 44%, var(--forest) 48% 54%, transparent 58% 80%, var(--accent) 84% 90%, transparent 93%);
  opacity: .9;
  filter: drop-shadow(0 0 9px color-mix(in srgb, var(--accent) 35%, transparent));
  transform: translate(-50%, -50%);
  animation: orbit-spin 18s linear infinite;
  -webkit-mask: radial-gradient(circle, transparent 65%, #000 67% 71%, transparent 73%);
  mask: radial-gradient(circle, transparent 65%, #000 67% 71%, transparent 73%);
}
.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 230px;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface-solid) 92%, transparent);
  box-shadow: 0 35px 80px -40px color-mix(in srgb, var(--forest) 75%, transparent), inset 0 0 0 22px color-mix(in srgb, var(--surface-strong) 38%, transparent);
  transform: translate(-50%, -50%);
}
.orbit-core::before,
.orbit-core::after { content: ""; position: absolute; inset: -28px; border: 1px solid var(--line); border-radius: 50%; animation: orbit-pulse 3.6s ease-out infinite; }
.orbit-core::after { inset: -55px; animation-delay: 1.8s; }
.orbit-core img { width: 105px; animation: symbol-float 4s ease-in-out infinite; }
.orbit-core span { position: absolute; bottom: 34px; color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.orbit-service {
  position: absolute;
  z-index: 4;
  width: min(31%, 340px);
  padding: 1.2rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line-strong);
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
}
.orbit-service::after { content: ""; position: absolute; top: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 7px var(--accent-soft); }
.orbit-service:nth-of-type(1), .orbit-service:nth-of-type(3) { text-align: right; }
.orbit-service:nth-of-type(1)::after, .orbit-service:nth-of-type(3)::after { right: 0; }
.orbit-service:nth-of-type(2)::after, .orbit-service:nth-of-type(4)::after { left: 0; }
.orbit-service:nth-of-type(1) { left: 0; top: 80px; }
.orbit-service:nth-of-type(2) { right: 0; top: 80px; }
.orbit-service:nth-of-type(3) { left: 0; bottom: 75px; }
.orbit-service:nth-of-type(4) { right: 0; bottom: 75px; }
.orbit-service:hover { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-5px); }
.orbit-service .number { display: block; margin-bottom: .35rem; color: var(--accent); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.orbit-service h3 { margin-bottom: .45rem; font-family: var(--font-display); font-size: clamp(1.45rem, 2.5vw, 2.15rem); font-weight: 600; }
.orbit-service p { margin: 0; color: var(--muted); font-size: .92rem; }
@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbit-pulse { 0% { opacity: .55; transform: scale(.9); } 80%, 100% { opacity: 0; transform: scale(1.14); } }
@keyframes symbol-float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-8px) rotate(1deg); } }
.expertise-orbit--workshop { min-height: 760px; }
.expertise-orbit--workshop .orbit-core span { bottom: 28px; max-width: 150px; text-align: center; }
.expertise-orbit--workshop .orbit-service { width: min(33%, 370px); }
.expertise-orbit--workshop .orbit-service:nth-of-type(1), .expertise-orbit--workshop .orbit-service:nth-of-type(2) { top: 55px; }
.expertise-orbit--workshop .orbit-service:nth-of-type(3), .expertise-orbit--workshop .orbit-service:nth-of-type(4) { bottom: 50px; }

.editorial-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.editorial-split.reverse .editorial-media { order: 2; }
.editorial-media { position: relative; margin: 0; }
.editorial-media img { width: 100%; min-height: 520px; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-strong); }
.editorial-media.landscape img { min-height: 360px; aspect-ratio: 3 / 2; }
.editorial-copy h2 { margin-bottom: 1.3rem; font-family: var(--font-display); font-size: clamp(2.3rem, 4.5vw, 4.5rem); font-weight: 600; letter-spacing: -.04em; line-height: 1.02; }
.editorial-copy p { color: var(--ink-soft); }
.editorial-copy .btn { margin-top: .75rem; }

.feature-mosaic { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 280px 280px; gap: 16px; }
.mosaic-item { position: relative; overflow: hidden; margin: 0; border-radius: var(--radius); background: var(--surface-solid); }
.mosaic-item:first-child { grid-row: 1 / 3; }
.mosaic-item:nth-child(2) { grid-column: 2 / 4; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.mosaic-item:hover img { transform: scale(1.035); }
.mosaic-item figcaption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: .65rem .85rem; border-radius: var(--radius-sm); background: rgba(4, 12, 8, .76); color: #fff; font-size: .82rem; backdrop-filter: blur(8px); }

.product-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.product-group { min-height: 280px; padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.product-group:nth-child(3n + 2) { background: var(--surface-strong); }
.product-group h3 { margin-bottom: 1rem; font-family: var(--font-display); font-size: clamp(1.5rem, 2.7vw, 2.25rem); font-weight: 600; }
.product-group ul { columns: 2; column-gap: 2rem; margin: 0; padding-left: 1.1rem; color: var(--ink-soft); }
.product-group li { margin-bottom: .5rem; break-inside: avoid; }

.values-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.value { position: relative; min-height: 260px; overflow: hidden; padding: 2rem; background: var(--surface); transition: background .35s ease, transform .35s var(--ease); }
.value::before { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 4px; background: var(--accent); transition: right .45s var(--ease); }
.value::after { content: ""; position: absolute; width: 150px; aspect-ratio: 1; right: -90px; top: -100px; border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); border-radius: 50%; opacity: .2; transition: transform .55s var(--ease), opacity .35s ease; }
.value:hover { z-index: 2; background: var(--accent-soft); transform: translateY(-8px); }
.value:hover::before { right: 0; }
.value:hover::after { opacity: .7; transform: scale(1.45) translate(-10px, 15px); }
.values-row.is-in .value { animation: value-enter .7s var(--ease) both; }
.values-row.is-in .value:nth-child(2) { animation-delay: .1s; }
.values-row.is-in .value:nth-child(3) { animation-delay: .2s; }
.values-row.is-in .value:nth-child(4) { animation-delay: .3s; }
@keyframes value-enter { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: translateY(0); } }
.value + .value { border-left: 1px solid var(--line); }
.value strong { position: relative; display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 1.5rem; border-radius: 50%; background: color-mix(in srgb, var(--surface-solid) 92%, transparent); color: var(--accent); box-shadow: inset 0 0 0 7px color-mix(in srgb, var(--surface-solid) 88%, transparent), 0 14px 34px -22px var(--accent); font-size: 1.25rem; font-weight: 900; isolation: isolate; }
.value strong::before { content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; background: conic-gradient(from 0deg, var(--accent), #f08aa3 24%, var(--forest) 52%, transparent 68%, var(--accent) 100%); -webkit-mask: radial-gradient(circle, transparent 56%, #000 58%); mask: radial-gradient(circle, transparent 56%, #000 58%); animation: value-ring-spin 4.8s linear infinite; }
.value:nth-child(even) strong::before { animation-direction: reverse; animation-duration: 6s; }
.value:hover strong::before { animation-duration: 1.8s; }
@keyframes value-ring-spin { to { transform: rotate(360deg); } }
.value h3 { margin-bottom: .65rem; font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; }
.value p { margin: 0; color: var(--muted); font-size: .92rem; }

.process { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.process-intro { position: sticky; top: calc(var(--header-h) + 2rem); }
.process-intro h2 { margin-bottom: 1rem; font-family: var(--font-display); font-size: clamp(2.25rem, 4.5vw, 4.4rem); line-height: 1.02; font-weight: 600; letter-spacing: -.04em; }
.process-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.process-list li { position: relative; display: grid; grid-template-columns: 72px 1fr; gap: 1.35rem; overflow: hidden; padding: 1.35rem 1.45rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: color-mix(in srgb, var(--surface) 80%, transparent); box-shadow: 0 18px 45px -42px var(--forest); transition: transform .38s var(--ease), border-color .3s ease, background .3s ease, box-shadow .38s ease; }
.process-list li::after { content: ""; position: absolute; left: -35%; top: -50%; width: 20%; height: 210%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent); filter: blur(2px); transform: rotate(18deg); transition: left .75s var(--ease); pointer-events: none; }
.process-list li:hover { border-color: color-mix(in srgb, var(--accent) 46%, var(--line)); background: color-mix(in srgb, var(--accent-soft) 58%, var(--surface)); box-shadow: 0 27px 60px -40px var(--forest); transform: translateX(8px); }
.process-list li:hover::after { left: 125%; }
.process-list strong { position: relative; display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; background: color-mix(in srgb, var(--surface-solid) 94%, transparent); color: var(--accent); box-shadow: inset 0 0 0 6px color-mix(in srgb, var(--surface-solid) 90%, transparent); font-size: 1rem; font-weight: 900; isolation: isolate; }
.process-list strong::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: conic-gradient(from 0deg, var(--accent), #f08aa3 24%, var(--forest) 54%, transparent 70%, var(--accent)); -webkit-mask: radial-gradient(circle, transparent 57%, #000 59%); mask: radial-gradient(circle, transparent 57%, #000 59%); animation: value-ring-spin 5s linear infinite; }
.process-list li:nth-child(even) strong::before { animation-direction: reverse; animation-duration: 6.4s; }
.process-list.is-in li { animation: process-card-in .68s var(--ease) both; }
.process-list.is-in li:nth-child(2) { animation-delay: .1s; }
.process-list.is-in li:nth-child(3) { animation-delay: .2s; }
.process-list.is-in li:nth-child(4) { animation-delay: .3s; }
@keyframes process-card-in { from { opacity: 0; transform: translateX(35px); } to { opacity: 1; transform: translateX(0); } }
.process-list h3 { margin-bottom: .35rem; font-size: 1.12rem; }
.process-list p { margin: 0; color: var(--muted); }

.quote-panel { position: relative; overflow: hidden; padding: clamp(2.8rem, 6vw, 5.4rem); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); background: radial-gradient(circle at 85% 20%, rgba(191,22,64,.15), transparent 24rem), linear-gradient(135deg, color-mix(in srgb, var(--forest-deep) 94%, #000), var(--forest-deep)); color: var(--bg); isolation: isolate; }
.quote-panel::before { content: ""; position: absolute; right: -9%; top: -72%; width: clamp(260px, 42vw, 560px); aspect-ratio: 1; z-index: 0; border: 2px solid rgba(255,255,255,.13); border-top-color: rgba(239,72,112,.82); border-radius: 50%; box-shadow: inset 0 0 0 28px rgba(255,255,255,.018); animation: quote-orbit 18s linear infinite; }
.quote-panel::after { content: ""; position: absolute; left: -18%; bottom: 18%; z-index: 0; width: 58%; height: 3px; background: linear-gradient(90deg, transparent, rgba(239,72,112,.95), rgba(255,255,255,.52), transparent); filter: drop-shadow(0 0 8px rgba(191,22,64,.45)); transform: rotate(-7deg); animation: quote-line 7s ease-in-out infinite alternate; }
.quote-panel > * { position: relative; z-index: 1; }
@keyframes quote-orbit { to { transform: rotate(360deg); } }
@keyframes quote-line { from { translate: -7% 0; opacity: .38; } to { translate: 42% -16px; opacity: .9; } }
@media (prefers-color-scheme: dark) { .quote-panel { background: #dce9df; color: #0a1810; } }
.quote-panel blockquote { position: relative; max-width: 22ch; margin-bottom: 2rem; padding-top: 1.4rem; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4.8rem); line-height: 1.04; }
.quote-panel blockquote::before { content: ""; position: absolute; left: 0; top: 0; width: 88px; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--accent), rgba(255,255,255,.65)); animation: quote-marker 4s ease-in-out infinite alternate; }
@keyframes quote-marker { from { width: 52px; } to { width: 132px; } }
.quote-panel p { max-width: 58ch; margin: 0; opacity: .78; }
.quote-panel .btn { margin-top: 1.5rem; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}
.cta-panel h2 { margin-bottom: .7rem; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4rem); font-weight: 600; line-height: 1; }
.cta-panel p { max-width: 56ch; margin: 0; color: var(--muted); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: flex-end; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; }
.contact-card { padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-card h2 { margin-bottom: 1.2rem; font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 3.25rem); font-weight: 600; }
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li { padding-block: 1rem; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list small { display: block; color: var(--muted); font-weight: 750; }
.contact-list a { font-weight: 750; }
.map-card { position: relative; min-height: 500px; overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-strong); }
.map-frame { position: absolute; inset: 0; overflow: hidden; background: var(--surface-strong); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-consent { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: clamp(2rem, 5vw, 4rem); background:
  linear-gradient(145deg, color-mix(in srgb, var(--forest) 42%, transparent), transparent),
  radial-gradient(circle at 70% 22%, var(--accent-soft), transparent 15rem),
  var(--surface-strong); transition: opacity .3s ease, visibility .3s ease; }
.map-frame.is-loaded .map-consent { visibility: hidden; opacity: 0; pointer-events: none; }
.map-consent-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .6rem; }
.map-disclosure { margin-top: 1.1rem; font-size: .78rem; }
.map-card h2 { max-width: 10ch; margin-bottom: 1rem; font-family: var(--font-display); font-size: clamp(2.3rem, 5vw, 4.8rem); line-height: 1; font-weight: 600; }
.map-card p { max-width: 42ch; color: var(--ink-soft); }

.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-h) + 2rem); padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.legal-nav strong { display: block; margin-bottom: .8rem; }
.legal-nav a { display: block; padding: .45rem 0; color: var(--muted); font-size: .9rem; text-decoration: none; }
.legal-nav a:hover { color: var(--accent); }
.legal-content { min-width: 0; }
.legal-content section { padding-bottom: 2rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { margin-bottom: 1rem; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 600; }
.legal-content h3 { margin: 1.5rem 0 .6rem; font-size: 1.05rem; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content a { color: var(--accent-deep); font-weight: 700; }
.legal-note { padding: 1.2rem; border-left: 3px solid var(--accent); background: var(--accent-soft); }
.legal-table { width: 100%; border-collapse: collapse; margin-block: 1.5rem; font-size: .9rem; }
.legal-table th, .legal-table td { padding: .8rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { color: var(--ink); }
.legal-table td { color: var(--ink-soft); }

.knowledge-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.knowledge-note { position: relative; min-height: 250px; overflow: hidden; padding: clamp(1.5rem, 3.5vw, 2.8rem); border: 1px solid var(--line); border-radius: var(--radius-sm); background: color-mix(in srgb, var(--surface) 78%, transparent); box-shadow: 0 18px 50px -45px var(--forest); transition: transform .4s var(--ease), border-color .3s ease, background .3s ease, box-shadow .4s ease; }
.knowledge-note:nth-child(odd) { border-right: 1px solid var(--line); }
.knowledge-note::before { content: attr(data-index); display: block; margin-bottom: 1.6rem; color: color-mix(in srgb, var(--accent) 88%, var(--ink)); font-size: clamp(2.4rem, 5vw, 4.6rem); font-weight: 900; letter-spacing: -.07em; line-height: .8; transition: transform .4s var(--ease), color .3s ease; }
.knowledge-note::after { content: ""; position: absolute; left: -38%; top: -30%; width: 24%; height: 170%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent); filter: blur(2px); transform: rotate(18deg); transition: left .75s var(--ease); pointer-events: none; }
.knowledge-note:hover { z-index: 2; border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); background: color-mix(in srgb, var(--accent-soft) 62%, var(--surface)); box-shadow: 0 28px 65px -42px var(--forest); transform: translateY(-8px) rotate(.25deg); }
.knowledge-note:hover::before { color: var(--accent); transform: translateX(8px) scale(1.05); }
.knowledge-note:hover::after { left: 125%; }
.knowledge-grid.is-in .knowledge-note { animation: knowledge-card-in .7s var(--ease) both; }
.knowledge-grid.is-in .knowledge-note:nth-child(2) { animation-delay: .09s; }
.knowledge-grid.is-in .knowledge-note:nth-child(3) { animation-delay: .18s; }
.knowledge-grid.is-in .knowledge-note:nth-child(4) { animation-delay: .27s; }
@keyframes knowledge-card-in { from { opacity: 0; transform: translateY(34px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.knowledge-note h3 { max-width: 18ch; margin-bottom: .75rem; font-family: var(--font-display); font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.05; font-weight: 600; }
.knowledge-note p { max-width: 60ch; color: var(--ink-soft); }
.knowledge-note a { color: var(--forest); font-weight: 750; text-decoration-color: color-mix(in srgb, var(--accent) 55%, transparent); text-underline-offset: .2em; }
.knowledge-note a:hover { color: var(--accent); }
.section-followup { max-width: 84ch; margin: clamp(1.5rem, 3vw, 2.5rem) 0 0; padding: 1.15rem 1.35rem; border-left: 3px solid var(--accent); background: color-mix(in srgb, var(--surface) 72%, transparent); color: var(--ink-soft); }

.parallax-banner { position: relative; min-height: min(680px, 78vh); display: grid; place-items: center; overflow: hidden; background-image: linear-gradient(90deg, rgba(4, 13, 8, .9), rgba(4, 13, 8, .25)), var(--parallax-image, url("../img/portfolio/cerezo_006.webp")); background-size: cover; background-position: center; background-attachment: fixed; color: #fff; }
.parallax-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 0 47%, rgba(191, 22, 64, .42) 47.1% 47.6%, transparent 47.7%); }
.parallax-content { position: relative; z-index: 1; width: 100%; padding-inline: clamp(1.5rem, 7vw, 6rem); }
.parallax-content h2 { max-width: 12ch; margin-bottom: 1.2rem; font-family: var(--font-display); font-size: clamp(3rem, 7vw, 7.2rem); font-weight: 800; letter-spacing: -.06em; line-height: .9; }
.parallax-content h2 span { display: block; color: #f05a7c; }
.parallax-content > p:not(.eyebrow) { max-width: 48ch; margin-bottom: 1.6rem; color: rgba(255, 255, 255, .82); font-size: clamp(1rem, 1.6vw, 1.2rem); }
.parallax-banner--home { --parallax-image: url("../img/cerezo_007-hero.webp"); background-position: center 46%; }
.parallax-banner--gallery { --parallax-image: url("../img/portfolio/cerezo_006.webp"); }
.gallery-hero { min-height: 54vh; display: grid; align-items: end; background: radial-gradient(circle at 80% 20%, var(--accent-soft), transparent 28rem); }
.gallery-hero .section-head { padding-bottom: clamp(3rem, 7vw, 6rem); }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 250px; gap: 12px; }
.portfolio-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--surface-strong); color: #fff; text-decoration: none; isolation: isolate; }
.portfolio-item--wide { grid-column: span 2; }
.portfolio-item--tall { grid-row: span 2; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease), filter .45s ease; }
.portfolio-item::after { content: "+"; position: absolute; right: 1rem; top: 1rem; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .68); border-radius: 50%; background: rgba(4, 12, 8, .28); font-size: 1.4rem; backdrop-filter: blur(8px); transition: background .3s ease, transform .45s var(--ease); }
.portfolio-item span { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 2.8rem 1rem 1rem; background: linear-gradient(transparent, rgba(4, 12, 8, .88)); font-size: .82rem; font-weight: 800; letter-spacing: .04em; }
.portfolio-item:hover img { transform: scale(1.08); filter: saturate(1.1) contrast(1.03); }
.portfolio-item:hover::after { background: var(--accent); transform: rotate(90deg); }
.lightbox-open { overflow: hidden; }
.lightbox { position: fixed; inset: 0; z-index: 3000; display: grid; grid-template-columns: 72px minmax(0, 1fr) 72px; place-items: center; padding: 4rem clamp(1rem, 4vw, 4rem); background: rgba(2, 7, 4, .94); opacity: 0; backdrop-filter: blur(18px); transition: opacity .32s ease; }
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox-stage { grid-column: 2; position: relative; max-width: min(1300px, 100%); max-height: 82vh; margin: 0; transform: scale(.94) translateY(20px); transition: transform .45s var(--ease); }
.lightbox.is-open .lightbox-stage { transform: scale(1) translateY(0); }
.lightbox-stage img { display: block; max-width: 100%; max-height: 78vh; margin: auto; border-radius: var(--radius-sm); opacity: 0; transform: scale(.98); transition: opacity .35s ease, transform .5s var(--ease); }
.lightbox-stage img.is-ready { opacity: 1; transform: scale(1); }
.lightbox-stage figcaption { position: absolute; left: 50%; bottom: 1rem; max-width: calc(100% - 2rem); padding: .6rem .9rem; border-radius: 999px; background: rgba(4, 12, 8, .78); color: #fff; font-size: .82rem; transform: translateX(-50%); white-space: nowrap; }
.lightbox button { color: #fff; cursor: pointer; }
.lightbox-close { position: absolute; right: 1.5rem; top: 1.2rem; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; font-size: 1.8rem; }
.lightbox-nav { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.06); font-size: 1.3rem; transition: background .25s ease, transform .25s ease; }
.lightbox-nav:hover, .lightbox-close:hover { background: var(--accent); transform: scale(1.06); }
.lightbox-prev { grid-column: 1; }
.lightbox-next { grid-column: 3; }
.lightbox-count { position: absolute; left: 1.5rem; bottom: 1.5rem; color: rgba(255,255,255,.76); font-size: .78rem; font-weight: 900; letter-spacing: .14em; }

details { border-bottom: 1px solid var(--line); }
details:first-child { border-top: 1px solid var(--line); }
summary { position: relative; padding: 1.2rem 2.5rem 1.2rem 0; cursor: pointer; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 1.08rem; color: var(--accent); font-size: 1.5rem; }
details[open] summary::after { content: "−"; }
details p { max-width: 70ch; padding-bottom: 1.25rem; color: var(--muted); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.4rem; align-items: start; }
.faq-grid details { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: color-mix(in srgb, var(--surface) 68%, transparent); transition: border-color .3s ease, background .3s ease, transform .3s var(--ease), box-shadow .3s ease; }
.faq-grid details:first-child { border-top: 1px solid var(--line); }
.faq-grid details::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.faq-grid details:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.faq-grid details[open] { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); background: var(--accent-soft); box-shadow: var(--shadow); }
.faq-grid details[open]::before { transform: scaleY(1); }
.faq-grid summary { display: flex; align-items: center; min-height: 82px; padding: 1.05rem 4rem 1.05rem 1.25rem; line-height: 1.35; transition: color .25s ease, padding-left .25s var(--ease); }
.faq-grid summary:hover { color: var(--accent); padding-left: 1.5rem; }
.faq-grid summary::after { right: 1.15rem; top: 50%; display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 1.15rem; line-height: 1; transform: translateY(-50%) rotate(0); transition: transform .35s var(--ease), background .25s ease, color .25s ease; }
.faq-grid details[open] summary::after { content: "+"; background: var(--accent); color: #fff; transform: translateY(-50%) rotate(45deg); }
.faq-grid details p { max-width: none; margin: 0; padding: 0 1.25rem 1.35rem; color: var(--ink-soft); animation: faq-answer-in .35s var(--ease) both; }
@keyframes faq-answer-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.site-footer { border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-main { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 2rem; padding-block: clamp(3rem, 6vw, 5rem); }
.footer-brand img { width: 300px; max-height: none; object-fit: contain; object-position: left; margin-bottom: 1.3rem; filter: none; }
.footer-brand p { max-width: 35ch; color: var(--muted); }
.social-links { display: flex; gap: .65rem; margin-top: 1.25rem; }
.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}
.social-link:hover { border-color: var(--accent); background: var(--accent); color: #fff; transform: translateY(-2px); }
.social-link--instagram span { position: relative; width: 18px; height: 18px; border: 2px solid currentColor; border-radius: 5px; }
.social-link--instagram span::before { content: ""; position: absolute; left: 50%; top: 50%; width: 5px; height: 5px; border: 2px solid currentColor; border-radius: 50%; transform: translate(-50%, -50%); }
.social-link--instagram span::after { content: ""; position: absolute; right: 2px; top: 2px; width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.social-link--facebook span { font-family: Arial, sans-serif; font-size: 25px; font-weight: 800; line-height: 1; transform: translateY(3px); }
.social-link--maps span { position: relative; width: 17px; height: 17px; border: 2px solid currentColor; border-radius: 50% 50% 50% 0; transform: rotate(-45deg) translate(1px, -1px); }
.social-link--maps span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: currentColor; transform: translate(-50%, -50%); }
.footer-col h2 { margin-bottom: 1rem; font-family: var(--font-body); font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { color: var(--muted); font-size: .9rem; text-decoration: none; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1rem 1.5rem; padding-block: 1.25rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.design-credit { position: relative; display: inline-flex; align-items: center; min-height: 38px; overflow: hidden; padding: .45rem .85rem; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ink-soft); font-size: .76rem; font-weight: 800; text-decoration: none; isolation: isolate; animation: credit-breathe 3.2s ease-in-out infinite; }
.design-credit::before { content: ""; position: absolute; inset: -40% auto -40% -35%; z-index: -1; width: 30%; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 35%, transparent), transparent); transform: skewX(-18deg); animation: credit-shine 4.5s ease-in-out infinite; }
.design-credit:hover { border-color: var(--accent); color: var(--accent); }
@keyframes credit-breathe { 0%, 100% { box-shadow: 0 0 0 0 transparent; transform: translateY(0); } 50% { box-shadow: 0 10px 25px -15px var(--accent); transform: translateY(-2px); } }
@keyframes credit-shine { 0%, 55% { left: -35%; } 80%, 100% { left: 120%; } }

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 700;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-solid);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s var(--ease);
  cursor: pointer;
}
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 1; transform: none; transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Consent interface */
.cc-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  width: min(1080px, calc(100% - 32px));
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(7, 26, 18, .96);
  color: #f3f6f1;
  box-shadow: 0 30px 90px -28px rgba(0, 0, 0, .8);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .3s ease, transform .3s var(--ease);
}
.cc-banner.is-open { opacity: 1; transform: translateY(0); }
.cc-banner-inner { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; padding: 1.4rem; }
.cc-banner h2 { margin-bottom: .35rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.cc-banner p { max-width: 62ch; margin: 0; color: rgba(243, 246, 241, .78); font-size: .88rem; line-height: 1.5; }
.cc-banner a { color: #fff; }
.cc-actions { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: flex-end; }
.cc-btn { min-height: 44px; padding: .65rem 1rem; border: 1px solid rgba(255, 255, 255, .38); border-radius: 999px; background: rgba(255, 255, 255, .07); color: #fff; cursor: pointer; font-weight: 800; white-space: nowrap; }
.cc-btn:hover { background: rgba(255, 255, 255, .14); }
.cc-btn:active { transform: translateY(1px); }

.cc-overlay { position: fixed; inset: 0; z-index: 1150; display: grid; place-items: center; padding: 20px; background: rgba(2, 8, 5, .66); backdrop-filter: blur(8px); }
.cc-overlay[hidden] { display: none; }
.cc-panel { width: min(620px, 100%); max-height: min(760px, calc(100dvh - 40px)); overflow: auto; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface-solid); color: var(--ink); box-shadow: var(--shadow-strong); }
.cc-panel-head { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; padding: 1.5rem; border-bottom: 1px solid var(--line); }
.cc-panel-head h2 { margin-bottom: .35rem; font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; }
.cc-panel-head p { margin: 0; color: var(--muted); font-size: .9rem; }
.cc-close { flex: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; }
.cc-categories { padding: 0 1.5rem; }
.cc-category { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.cc-category strong { display: block; margin-bottom: .25rem; }
.cc-category p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.45; }
.cc-required { color: var(--accent); font-size: .76rem; font-weight: 850; }
.cc-switch { position: relative; width: 50px; height: 28px; }
.cc-switch input { position: absolute; opacity: 0; }
.cc-switch span { position: absolute; inset: 0; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--surface-strong); cursor: pointer; }
.cc-switch span::after { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; border-radius: 50%; background: var(--muted); transition: transform .2s var(--ease), background .2s ease; }
.cc-switch input:checked + span { background: var(--accent-soft); border-color: var(--accent); }
.cc-switch input:checked + span::after { transform: translateX(22px); background: var(--accent); }
.cc-switch input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 3px; }
.cc-panel-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .6rem; padding: 1.5rem; }
.cc-panel-actions .cc-btn { border-color: var(--line-strong); color: var(--ink); background: var(--surface); }
.cc-panel-actions .cc-save { border-color: var(--accent); background: var(--accent); color: #fff; }

@media (max-width: 1080px) {
  .primary-nav { display: none; position: fixed; inset: var(--header-h) 0 auto; max-height: calc(100dvh - var(--header-h)); overflow: auto; padding: 1.25rem 20px 2rem; border-bottom: 1px solid var(--line); background: var(--bg); }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { align-items: stretch; flex-direction: column; gap: 0; }
  .primary-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .primary-nav a::after { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .nav-wrap { grid-template-columns: auto 1fr auto; gap: .8rem; }
  .nav-cta { justify-self: end; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr); }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-intro { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
  .proof-item:first-of-type { border-left: 0; }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .value:nth-child(4) { border-top: 1px solid var(--line); }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .expertise-orbit { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; min-height: 0; }
  .orbit-ring { display: none; }
  .orbit-core { position: relative; left: auto; top: auto; grid-column: 1 / -1; width: 190px; margin: 1rem auto 3rem; transform: none; }
  .orbit-core::after { inset: -25px; border: 3px dashed var(--accent); opacity: .82; animation: orbit-compact 8s linear infinite; }
  .orbit-service { position: relative; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; width: auto; min-height: 180px; text-align: left !important; }
  .expertise-orbit--workshop .orbit-service { width: auto; }
  .orbit-service::after { left: 0 !important; right: auto !important; }
}

@keyframes orbit-compact { to { transform: rotate(360deg); } }

@media (max-width: 820px) {
  :root { --header-h: 76px; }
  .brand { width: 200px; }
  .nav-cta { display: none; }
  .nav-wrap { grid-template-columns: auto 1fr; }
  .menu-toggle { grid-column: 2; }
  .hero-grid,
  .page-hero-grid,
  .editorial-split,
  .process,
  .contact-grid,
  .legal-layout { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-copy { min-height: 0; margin: 2rem auto 2rem 20px; padding: 2.5rem 2rem; }
  .hero-copy h1 { font-size: clamp(3.1rem, 13vw, 5.5rem); }
  .hero-media { min-height: 0; }
  .page-hero { padding-top: 2.2rem; }
  .page-hero figure { order: -1; }
  .page-hero img { min-height: 220px; max-height: 330px; }
  .category-stage { grid-template-columns: 1fr; }
  .category-main { min-height: 72vw; }
  .category-side { grid-template-columns: repeat(2, 1fr); grid-template-rows: 1fr; }
  .category-side a { min-height: 38vw; }
  .editorial-split.reverse .editorial-media { order: 0; }
  .editorial-media img { min-height: 460px; aspect-ratio: 4 / 3; }
  .process-intro { position: static; }
  .feature-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: 400px 260px 260px; }
  .mosaic-item:first-child { grid-column: 1 / -1; grid-row: 1; }
  .mosaic-item:nth-child(2) { grid-column: 1 / -1; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .expertise-orbit { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; min-height: 0; }
  .orbit-ring { display: none; }
  .orbit-core { position: relative; left: auto; top: auto; grid-column: 1 / -1; width: 190px; margin: 1rem auto 3rem; transform: none; }
  .orbit-service { position: relative; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; width: auto; min-height: 180px; text-align: left !important; }
  .orbit-service::after { left: 0 !important; right: auto !important; }
  .faq-grid { grid-template-columns: 1fr; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .knowledge-note:nth-child(odd) { border-right: 0; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 230px; }
  .parallax-banner { background-attachment: scroll; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: .3rem 1rem; }
  .legal-nav strong { width: 100%; }
  .legal-nav a { padding: .2rem 0; }
  .cc-banner-inner { grid-template-columns: 1fr; }
  .cc-actions { justify-content: stretch; }
  .cc-actions .cc-btn { flex: 1 1 150px; }
}

@media (max-width: 620px) {
  .site-topbar { min-height: 42px; }
  .topbar-inner { min-height: 42px; }
  .topbar-contact a { font-size: .7rem; }
  .topbar-contact a[href^="mailto:"] { display: none; }
  .topbar-social { gap: .4rem; }
  .container, .narrow { width: min(100% - 32px, var(--maxw)); }
  .section { padding-block: 3.2rem; }
  .hero-grid { min-height: 540px; }
  .hero-copy { width: calc(100% - 32px); margin: auto 16px 1.5rem; padding: 2rem 1.4rem; align-self: end; }
  .hero-copy h1 { max-width: 8.5ch; font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-media { min-height: 78vw; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-left: 0; border-top: 1px solid var(--line); }
  .category-side { grid-template-columns: 1fr; }
  .category-main, .category-side a { min-height: 92vw; }
  .service-index, .product-groups { grid-template-columns: 1fr; }
  .service-link:nth-child(odd) { border-right: 0; }
  .service-link { min-height: 145px; padding-inline: .4rem; }
  .service-link .number { display: none; }
  .editorial-media img { min-height: 360px; }
  .feature-mosaic { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: -16px; padding-inline: 16px; }
  .mosaic-item { flex: 0 0 84vw; min-height: 420px; scroll-snap-align: center; }
  .product-group { min-height: auto; }
  .product-group ul { columns: 1; }
  .values-row { grid-template-columns: 1fr; }
  .value + .value { border-left: 0; border-top: 1px solid var(--line); }
  .process-list li { grid-template-columns: 58px 1fr; padding: 1.15rem; }
  .process-list strong { width: 54px; height: 54px; }
  .quote-panel { padding: 2rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand img { width: min(280px, 100%); }
  .footer-bottom { grid-template-columns: 1fr; justify-items: start; }
  .design-credit { margin-top: .25rem; }
  .expertise-orbit { grid-template-columns: 1fr; }
  .orbit-core { grid-column: 1; }
  .aerial-hero, .page-hero .aerial-hero img { border-radius: 56px; }
  .portfolio-grid { display: flex; overflow-x: auto; margin-inline: -16px; padding-inline: 16px; scroll-snap-type: x mandatory; }
  .portfolio-item, .portfolio-item--wide, .portfolio-item--tall { flex: 0 0 84vw; min-height: 420px; scroll-snap-align: center; }
  .lightbox { grid-template-columns: 48px minmax(0, 1fr) 48px; padding-inline: .5rem; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-stage figcaption { max-width: 92%; overflow: hidden; text-overflow: ellipsis; }
  .back-top { right: 12px; bottom: 12px; }
  .cc-banner { bottom: 10px; width: calc(100% - 20px); }
  .cc-banner-inner { gap: 1rem; padding: 1.1rem; }
  .cc-actions { flex-direction: column; }
  .cc-actions .cc-btn { flex: none; width: 100%; }
  .cc-panel-actions { flex-direction: column; }
  .cc-panel-actions .cc-btn { width: 100%; }
  .legal-table { display: block; overflow-x: auto; }
}

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

@media (prefers-reduced-transparency: reduce) {
  .site-header, .cc-banner, .hero-tabs { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header { background: var(--bg); }
}

@media print {
  .site-header, .site-footer, .back-top, .cc-banner, .breadcrumb, .hero-tabs { display: none !important; }
  body { background: #fff; color: #111; }
  .page-hero, .section { padding-block: 1.5rem; }
  a { color: #111; }
}
