/* =============================================================
   SHERRO & CO. — Editorial Light Cream (Archetype 01)
   Palette derived from brand logo
   ============================================================= */

/* 1. TOKENS */
:root {
  --bg:        #F5EFE3;   /* cream (logo background) */
  --bg-2:      #EDE4D3;   /* sand */
  --paper:     #FFFFFF;
  --ink:       #0E3B47;   /* deep marine (logo) */
  --ink-soft:  #1B4954;
  --ink-mute:  #6E7E7F;
  --coral:     #EE6A4D;   /* coral accent (logo) */
  --coral-dk:  #D8543A;
  --teal:      #3FA7A0;   /* teal accent (logo) */
  --teal-dk:   #2E8B85;
  --gold:      #C49A5B;
  --line:      rgba(14,59,71,0.14);
  --line-soft: rgba(14,59,71,0.08);

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'JetBrains Mono', monospace;

  --gutter:  clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 9vw, 8rem);

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

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  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.05; letter-spacing: -0.02em; font-weight: 400; }
ul[role="list"] { list-style: none; padding: 0; }
::selection { background: var(--coral); color: var(--paper); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* 3. UTILITIES */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 10001;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  border-radius: var(--r-sm); font-weight: 500; transition: top .3s;
}
.skip-link:focus { top: 1rem; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal[data-split] { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* 4. SECTION HEADERS */
.section-kicker {
  font-family: var(--mono); font-size: clamp(.65rem,1.1vw,.72rem);
  letter-spacing: .2em; text-transform: uppercase; color: var(--coral);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2.3rem,5.5vw,4.4rem);
  font-weight: 300; line-height: 1.02; color: var(--ink); margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--coral); }
.section-sub { font-size: clamp(.98rem,1.4vw,1.12rem); color: var(--ink-mute); max-width: 56ch; line-height: 1.7; }
.section-header { margin-bottom: clamp(2.5rem,5vw,4rem); max-width: 760px; }

/* 5. BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 100px; font-size: .9rem; font-weight: 500;
  letter-spacing: .01em; transition: background .3s var(--ease-out), color .3s, transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
  white-space: nowrap; position: relative;
}
.btn-primary { background: var(--coral); color: var(--paper); box-shadow: 0 4px 20px rgba(238,106,77,0.25); }
.btn-primary:hover { background: var(--coral-dk); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(238,106,77,0.35); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* magnetic wrapper */
.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; }

/* 6. CURSOR */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; display: none; opacity: 0; transition: opacity .25s var(--ease-out); mix-blend-mode: multiply; }
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 6px; height: 6px; margin: -3px; background: var(--coral); border-radius: 50%; }
.cursor-ring { width: 32px; height: 32px; margin: -16px; border: 1.5px solid var(--teal); border-radius: 50%; transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out); }
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none !important; }

/* 7. SPLASH */
.splash {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: grid; place-items: center; pointer-events: auto;
  transition: opacity .9s, clip-path 1.1s;
  animation: splashSafety .01s 4.5s forwards;
}
.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); } }
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.splash-emblem { animation: emblemFloat 2s ease-in-out infinite; }
@keyframes emblemFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.splash-line { width: 0; height: 2px; background: var(--coral); border-radius: 2px; animation: splashGrow 2s var(--ease-soft) forwards; }
@keyframes splashGrow { to { width: 120px; } }

/* SCROLL PROGRESS */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; background: rgba(14,59,71,0.06); pointer-events: none; }
.scroll-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--coral), var(--teal)); transform-origin: 0 0; transform: scaleX(0); transition: transform .08s linear; }

/* 8. NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.1rem 0; transition: background .4s, padding .4s, box-shadow .4s; }
.nav.is-scrolled { background: rgba(245,239,227,0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: .7rem 0; box-shadow: 0 1px 0 var(--line-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.nav-logo { display: flex; align-items: center; gap: .65rem; color: var(--ink); }
.nav-emblem { flex-shrink: 0; }
.nav-wordmark { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; letter-spacing: -0.01em; }
.nav-wordmark em { color: var(--coral); font-style: normal; }
.nav-links { display: none; align-items: center; gap: 1.85rem; list-style: none; }
.nav-links a { font-size: .875rem; color: var(--ink-soft); transition: color .25s; position: relative; }
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px; background: var(--coral); transition: width .3s var(--ease-out); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { background: var(--ink); color: var(--bg) !important; padding: .55rem 1.3rem; border-radius: 100px; transition: background .25s; }
.nav-cta:hover { background: var(--coral); }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile { display: none; position: fixed; inset: 0; background: rgba(245,239,227,0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; z-index: 99; opacity: 0; pointer-events: none; transition: opacity .3s; }
.nav-mobile.is-open { display: flex; opacity: 1; pointer-events: auto; }
.nav-mobile ul { text-align: center; }
.nav-mobile li { margin: .85rem 0; }
.nav-mobile a { font-family: var(--serif); font-size: clamp(1.9rem,5vw,2.8rem); font-weight: 300; color: var(--ink); transition: color .25s; }
.nav-mobile a:hover { color: var(--coral); }
@media (min-width: 1040px) { .nav-links { display: flex; } .nav-toggle { display: none; } }

/* 9. HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(4rem,8vw,7rem); padding-top: 7rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,59,71,0.35) 0%, rgba(14,59,71,0.15) 35%, rgba(14,59,71,0.55) 100%); }
.hero-grain { position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-kicker { display: flex; align-items: center; gap: .6rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: #F5EFE3; margin-bottom: 1.5rem; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.kicker-dot { width: 7px; height: 7px; background: var(--coral); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }
.hero-title { font-family: var(--serif); font-size: clamp(2.8rem,7.5vw,6.4rem); font-weight: 300; line-height: 1.0; color: #FBF7EF; margin-bottom: 1.6rem; text-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.hero-title span { display: block; }
.hero-em em { font-style: italic; color: #FFB9A6; }
.hero-sub { font-size: clamp(1rem,1.6vw,1.2rem); color: #EDE4D3; max-width: 52ch; line-height: 1.7; margin-bottom: 2.4rem; text-shadow: 0 1px 12px rgba(0,0,0,0.45); }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; right: var(--gutter); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .75rem; font-family: var(--mono); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: #F5EFE3; }
.hero-scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, #F5EFE3, transparent); animation: scrollGrow 2s ease-in-out infinite; }
@keyframes scrollGrow { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(.5); opacity: .4; } }

/* MARQUEE */
.marquee { overflow: hidden; position: relative; background: var(--ink); padding: .9rem 0; }
.marquee-track { display: inline-flex; gap: 2rem; white-space: nowrap; will-change: transform; }
.marquee-track span { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bg); }
.marquee-track .m-dot { color: var(--coral); }

/* =============================================================
   VALUE (brand promise)
   ============================================================= */
.value { padding: var(--section) 0; }
.value-head { max-width: 800px; margin-bottom: clamp(2.5rem,5vw,4rem); }
.value-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.value-lead p { font-size: clamp(1.05rem,1.6vw,1.3rem); line-height: 1.7; color: var(--ink-soft); margin-bottom: 1.25rem; font-family: var(--serif); font-weight: 300; }
.value-pillars { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.value-pillar { padding: 1.75rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-md); transition: transform .35s var(--ease-out), box-shadow .35s; }
.value-pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,59,71,0.08); }
.pillar-num { font-family: var(--mono); font-size: .72rem; color: var(--coral); letter-spacing: .1em; }
.value-pillar h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin: .6rem 0 .5rem; }
.value-pillar p { font-size: .92rem; color: var(--ink-mute); line-height: 1.6; }

@media (min-width: 900px) {
  .value-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }
  .value-pillars { gap: 1.25rem; }
}

/* =============================================================
   PARTNER (B2B supply guarantee)
   ============================================================= */
.partner { position: relative; padding: var(--section) 0; background: var(--ink); color: var(--bg); overflow: hidden; }
.partner-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(63,167,160,0.18) 0%, transparent 65%), radial-gradient(ellipse 50% 50% at 10% 90%, rgba(238,106,77,0.12) 0%, transparent 60%); }
.partner-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 3rem; }
.partner .section-kicker { color: var(--coral); }
.partner .section-title { color: var(--bg); }
.partner .section-title em { color: #FFB9A6; }
.partner-lead { font-size: clamp(1rem,1.5vw,1.18rem); line-height: 1.7; color: rgba(245,239,227,0.85); margin-bottom: 1.25rem; max-width: 52ch; }
.partner-lead strong { color: var(--bg); font-weight: 600; }
.partner-points { margin-top: 2rem; display: flex; flex-direction: column; gap: .85rem; }
.partner-point { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; color: rgba(245,239,227,0.9); }
.partner-point span { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.partner-clients { background: rgba(245,239,227,0.05); border: 1px solid rgba(245,239,227,0.12); border-radius: var(--r-lg); padding: 2rem; backdrop-filter: blur(8px); }
.partner-clients-label { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem; }
.client-list { display: flex; flex-direction: column; gap: 1rem; }
.client-item { padding-bottom: 1rem; border-bottom: 1px solid rgba(245,239,227,0.12); }
.client-item:last-child { border-bottom: none; }
.client-name { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--bg); }
.client-tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; color: rgba(245,239,227,0.55); text-transform: uppercase; }
.partner-quote { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(245,239,227,0.12); }
.partner-quote p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.5; color: #FFB9A6; }

@media (min-width: 900px) {
  .partner-inner { grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: center; }
}

/* =============================================================
   PRODUCTS
   ============================================================= */
.products { padding: var(--section) 0; }
.product-feature { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: clamp(3rem,6vw,5rem); align-items: center; }
.product-media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.product-feature:hover .product-media img { transform: scale(1.05); }
.product-badge { position: absolute; top: 1rem; left: 1rem; font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; padding: .4rem .85rem; border-radius: 100px; font-weight: 500; backdrop-filter: blur(8px); }
.badge-transition { background: rgba(196,154,91,0.92); color: #fff; }
.badge-assessment { background: rgba(63,167,160,0.92); color: #fff; }
.badge-asc { background: rgba(14,59,71,0.9); color: var(--bg); }
.product-eyebrow { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: .6rem; }
.product-info h3 { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 300; line-height: 1.02; }
.product-latin { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink-mute); margin-bottom: 1rem; }
.product-copy { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 1.5rem; }
.product-copy strong { color: var(--ink); font-weight: 600; }
.product-certs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.cert-pill { font-family: var(--mono); font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 100px; border: 1px solid; }
.cert-ft { color: var(--coral); border-color: rgba(238,106,77,0.4); background: rgba(238,106,77,0.06); }
.cert-msc { color: var(--teal-dk); border-color: rgba(63,167,160,0.4); background: rgba(63,167,160,0.06); }
.cert-asc { color: var(--ink); border-color: var(--line); background: rgba(14,59,71,0.04); }
.cert-trace { color: var(--gold); border-color: rgba(196,154,91,0.4); background: rgba(196,154,91,0.06); }
.product-formats { margin-bottom: 1.5rem; }
.formats-label { font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .65rem; }
.product-formats ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.product-formats li { font-size: .8rem; padding: .35rem .85rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 100px; }
.product-formats li em { font-style: italic; color: var(--coral); }
.product-link { font-size: .92rem; font-weight: 500; color: var(--coral); transition: letter-spacing .25s; }
.product-link:hover { letter-spacing: .03em; }

@media (min-width: 900px) {
  .product-feature { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .product-feature--rev .product-media { order: 2; }
}

/* otros productos */
.products-others { margin-top: clamp(2rem,4vw,3rem); padding-top: clamp(2.5rem,5vw,3.5rem); border-top: 1px solid var(--line); }
.others-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; margin-bottom: 1.75rem; }
.others-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.other-card { padding: 1.75rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-md); transition: transform .35s var(--ease-out), box-shadow .35s; }
.other-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(14,59,71,0.08); }
.other-icon { font-size: 1.8rem; display: block; margin-bottom: .75rem; }
.other-card h4 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; margin-bottom: .4rem; }
.other-card p { font-size: .88rem; color: var(--ink-mute); line-height: 1.55; }
@media (min-width: 720px) { .others-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   NEWS
   ============================================================= */
.news { padding: var(--section) 0; background: var(--bg-2); }
.news-feature { position: relative; display: grid; grid-template-columns: 1fr; gap: 0; background: var(--paper); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-soft); }
.news-tag { position: absolute; top: 1.25rem; left: 1.25rem; z-index: 2; font-family: var(--mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; background: var(--coral); color: #fff; padding: .4rem .9rem; border-radius: 100px; }
.news-body { padding: clamp(2rem,4vw,3.5rem); display: flex; flex-direction: column; justify-content: center; }
.news-body h3 { font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 300; line-height: 1.1; margin-bottom: 1rem; }
.news-body p { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 1.5rem; }
.news-body strong { color: var(--ink); font-weight: 600; }
.news-targets { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem; }
.news-target-label { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }
.news-chip { font-size: .85rem; font-weight: 500; padding: .4rem 1rem; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; }
.news-media { min-height: 280px; }
.news-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 860px) {
  .news-feature { grid-template-columns: 1.2fr 1fr; }
  .news-media { order: 2; }
}

/* =============================================================
   SUSTAINABILITY
   ============================================================= */
.sustain { padding: var(--section) 0; }
.impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-bottom: clamp(3rem,6vw,5rem); }
.impact-card { background: var(--bg); padding: clamp(1.5rem,3vw,2.5rem); text-align: center; transition: background .3s; }
.impact-card:hover { background: var(--paper); }
.impact-num { display: block; font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 300; color: var(--coral); line-height: 1; margin-bottom: .5rem; }
.impact-label { font-size: .82rem; color: var(--ink-mute); letter-spacing: .02em; }
@media (min-width: 720px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }

.certs-block { margin-bottom: clamp(3rem,6vw,5rem); }
.certs-heading { font-family: var(--serif); font-size: clamp(1.5rem,3vw,2rem); font-weight: 400; margin-bottom: 1.75rem; }
.certs-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.cert-card { padding: 1.75rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-md); transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s; }
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(14,59,71,0.08); border-color: var(--line); }
.cert-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cert-mark { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; font-family: var(--mono); font-weight: 500; font-size: .8rem; color: #fff; }
.cert-mark-ft { background: var(--coral); }
.cert-mark-msc { background: var(--teal); }
.cert-mark-asc { background: var(--ink); }
.cert-mark-wc { background: var(--gold); }
.cert-state { font-family: var(--mono); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 100px; }
.state-active { background: rgba(63,167,160,0.12); color: var(--teal-dk); }
.state-transition { background: rgba(196,154,91,0.14); color: var(--gold); }
.state-assessment { background: rgba(238,106,77,0.12); color: var(--coral-dk); }
.cert-card h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: .5rem; }
.cert-card p { font-size: .86rem; color: var(--ink-mute); line-height: 1.55; }
@media (min-width: 640px) { .certs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .certs-grid { grid-template-columns: repeat(3, 1fr); } }

.trace-banner { background: var(--ink); border-radius: var(--r-lg); padding: clamp(2rem,4vw,3rem); display: grid; grid-template-columns: 1fr; gap: 2.5rem; color: var(--bg); }
.trace-banner .section-kicker { color: var(--coral); }
.trace-banner-text h3 { font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 300; line-height: 1.1; margin-bottom: 1rem; }
.trace-banner-text h3 em { font-style: italic; color: #FFB9A6; }
.trace-banner-text p { font-size: .98rem; line-height: 1.7; color: rgba(245,239,227,0.82); max-width: 50ch; }
.trace-flow { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.trace-node { display: flex; flex-direction: column; align-items: center; gap: .5rem; flex: 1; min-width: 64px; }
.trace-node span { font-size: 1.8rem; width: 64px; height: 64px; display: grid; place-items: center; background: rgba(245,239,227,0.06); border: 1px solid rgba(245,239,227,0.14); border-radius: 50%; }
.trace-node p { font-family: var(--mono); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: rgba(245,239,227,0.7); }
.trace-arrow { color: var(--teal); font-size: 1.2rem; }
@media (min-width: 900px) { .trace-banner { grid-template-columns: 1fr 1fr; align-items: center; gap: 3.5rem; } }

/* =============================================================
   MAP (fishing zones)
   ============================================================= */
.map { padding: var(--section) 0; background: var(--bg-2); }
.map-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.map-visual { position: relative; }
.map-svg { width: 100%; max-width: 460px; margin: 0 auto; height: auto; }
.map-land { fill: rgba(14,59,71,0.07); stroke: rgba(14,59,71,0.2); stroke-width: 1.5; }
.map-zone { cursor: pointer; }
.zone-dot { fill: var(--coral); transition: r .3s var(--ease-out); }
.zone-pulse { fill: var(--coral); opacity: .25; transform-origin: center; transform-box: fill-box; animation: zonePulse 2.5s ease-out infinite; }
.map-zone[data-zone="granja"] .zone-dot, .map-zone[data-zone="granja"] .zone-pulse { fill: var(--teal); }
.map-zone[data-zone="pulpo"] .zone-dot, .map-zone[data-zone="pulpo"] .zone-pulse { fill: var(--gold); }
.map-zone[data-zone="ecuador"] .zone-dot, .map-zone[data-zone="ecuador"] .zone-pulse { fill: var(--ink); }
@keyframes zonePulse { 0% { transform: scale(.6); opacity: .4; } 100% { transform: scale(2.2); opacity: 0; } }
.map-zone.is-active .zone-dot { r: 10; }
.map-trace-note { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 1.5rem; font-family: var(--mono); font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-mute); }
.trace-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }

.map-zones { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.zone-card { text-align: left; padding: 1.5rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-md); transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s; }
.zone-card:hover, .zone-card.is-active { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(14,59,71,0.1); border-color: var(--coral); }
.zone-tag { display: inline-block; font-family: var(--mono); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; padding: .28rem .7rem; border-radius: 100px; margin-bottom: .65rem; }
.tag-azul { background: rgba(238,106,77,0.12); color: var(--coral-dk); }
.tag-granja { background: rgba(63,167,160,0.12); color: var(--teal-dk); }
.tag-pulpo { background: rgba(196,154,91,0.16); color: var(--gold); }
.tag-ecuador { background: rgba(14,59,71,0.08); color: var(--ink); }
.zone-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin-bottom: .4rem; }
.zone-card p { font-size: .86rem; color: var(--ink-mute); line-height: 1.55; }
@media (min-width: 640px) { .map-zones { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .map-layout { grid-template-columns: 1fr 1.1fr; gap: 4rem; } .map-zones { grid-template-columns: repeat(2, 1fr); } }

/* =============================================================
   RECIPES
   ============================================================= */
.recipes { padding: var(--section) 0; }
.recipes-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.recipe-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; transition: transform .4s var(--ease-out), box-shadow .4s; }
.recipe-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(14,59,71,0.12); }
.recipe-img { aspect-ratio: 4/3; overflow: hidden; }
.recipe-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.recipe-card:hover .recipe-img img { transform: scale(1.08); }
.recipe-body { padding: 1.5rem; }
.recipe-cat { font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); }
.recipe-body h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin: .5rem 0 .5rem; line-height: 1.15; }
.recipe-body p { font-size: .88rem; color: var(--ink-mute); line-height: 1.55; }
@media (min-width: 720px) { .recipes-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   ABOUT
   ============================================================= */
.about { position: relative; padding: var(--section) 0; background: var(--ink); color: var(--bg); overflow: hidden; }
.about-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 90% 30%, rgba(63,167,160,0.16) 0%, transparent 60%); }
.about-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about .section-kicker { color: var(--coral); }
.about .section-title { color: var(--bg); }
.about .section-title em { color: #FFB9A6; }
.about-text p { font-size: 1.02rem; line-height: 1.75; color: rgba(245,239,227,0.82); margin-bottom: 1.1rem; max-width: 54ch; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(245,239,227,0.12); border: 1px solid rgba(245,239,227,0.12); border-radius: var(--r-lg); overflow: hidden; }
.about-stat { background: var(--ink); padding: 1.75rem 1.5rem; text-align: center; }
.about-stat-num { display: block; font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 300; color: var(--teal); line-height: 1; margin-bottom: .4rem; }
.about-stat-label { font-size: .78rem; color: rgba(245,239,227,0.7); }
@media (min-width: 900px) { .about-inner { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { padding: var(--section) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact-lead { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); max-width: 44ch; margin: .5rem 0 2.25rem; }
.contact-methods { display: flex; flex-direction: column; gap: .85rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-md); transition: border-color .25s, transform .25s, box-shadow .25s; }
.contact-method:hover { border-color: var(--coral); transform: translateX(4px); box-shadow: 0 8px 24px rgba(14,59,71,0.06); }
.cm-icon { width: 2.4rem; height: 2.4rem; flex-shrink: 0; display: grid; place-items: center; background: rgba(238,106,77,0.1); color: var(--coral); border-radius: 12px; font-size: 1rem; }
.cm-text { display: flex; flex-direction: column; font-size: .95rem; font-weight: 500; color: var(--ink); }
.cm-text small { font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 400; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; background: var(--paper); padding: clamp(1.5rem,3vw,2.25rem); border: 1px solid var(--line-soft); border-radius: var(--r-lg); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .72rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute); }
.form-group input, .form-group select, .form-group textarea { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm); padding: .8rem 1rem; color: var(--ink); font: inherit; font-size: .9rem; outline: none; transition: border-color .25s, box-shadow .25s; width: 100%; -webkit-appearance: none; appearance: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236E7E7F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(238,106,77,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-mute); opacity: .5; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .75rem; color: var(--ink-mute); text-align: center; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }

#submit-btn { position: relative; overflow: hidden; }
#submit-btn .btn-sending, #submit-btn .btn-done { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s; }
#submit-btn.is-sending .btn-text { opacity: 0; } #submit-btn.is-sending .btn-sending { opacity: 1; }
#submit-btn.is-done .btn-text, #submit-btn.is-done .btn-sending { opacity: 0; } #submit-btn.is-done .btn-done { opacity: 1; }
#submit-btn.is-done { background: var(--teal); pointer-events: none; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { width: 220px; height: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: var(--ink-mute); line-height: 1.6; max-width: 36ch; }
.footer-col h4 { font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1rem; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a, .footer-col p { font-size: .88rem; color: var(--ink-soft); transition: color .25s; }
.footer-col p { margin-bottom: .5rem; }
.footer-col a:hover { color: var(--coral); }
.footer-wa { display: inline-block; margin-top: .5rem; font-weight: 500; color: var(--coral) !important; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .78rem; color: var(--ink-mute); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

/* =============================================================
   REDUCED MOTION (intrusive only)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .zone-pulse { animation: none; opacity: .2; }
  .splash-emblem { animation: none; }
  .marquee-track { animation-duration: 80s; }
  .hero-scroll-line { animation: none; }
}
