/* ===========================================================
   Dr. Lizi Rodríguez — Speaker corporativo
   Sistema visual: editorial premium (navy + dorado)
   =========================================================== */

:root {
  /* vivid royal-navy — more saturated & alive than the old muted slate */
  --navy:        #15498A;
  --navy-deep:   #0F3B73;
  --navy-ink:    #0A2B55;
  --gold:        #C9962C;
  --gold-soft:   #D8AE54;
  --gold-deep:   #A87C1E;
  --paper:       #F8F6F2;
  --paper-warm:  #F1ECE3;
  --ink:         #2D2D2D;
  --ink-soft:    #555049;
  --line:        #E2DCD0;
  --line-navy:   rgba(255,255,255,.16);

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;

  --shadow-card: 0 24px 60px -28px rgba(20,48,75,.32);
  --shadow-soft: 0 12px 40px -24px rgba(20,48,75,.5);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

/* anchor jumps clear the fixed nav; lock scroll behind the open mobile menu */
[id] { scroll-margin-top: 88px; }
body.menu-open { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100vw;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Shared editorial atoms ---------- */
.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.kicker.on-navy { color: var(--gold-soft); }
.kicker.centered { justify-content: center; }
.kicker.centered::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-deep);
  letter-spacing: .04em;
}

.eyebrow-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.section { padding-block: clamp(72px, 9vw, 132px); }
.section--paper { background: var(--paper); }
.section--warm  { background: var(--paper-warm); }
.section--navy  {
  background: var(--navy);
  color: #F3F1EC;
  background-image:
    radial-gradient(ellipse at 78% -14%, rgba(86,158,236,.26), transparent 56%),
    radial-gradient(ellipse at 82% -8%, rgba(201,150,44,.16), transparent 52%),
    radial-gradient(ellipse at 0% 120%, rgba(86,158,236,.10), transparent 52%);
}
.section--navy h2, .section--navy h3 { color: #FBFAF7; }

.lede {
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 56ch;
}
.section--navy .lede { color: rgba(243,241,236,.82); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--navy-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 16px 30px;
  min-height: 52px;
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(201,150,44,.6); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--navy-ink); }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.1); box-shadow: none; }

.btn--ghost-navy {
  --btn-bg: transparent; --btn-fg: var(--navy);
  border-color: rgba(26,60,94,.32);
}
.btn--ghost-navy:hover { background: rgba(26,60,94,.06); box-shadow: none; }

.btn--solid-navy { --btn-bg: var(--navy); --btn-fg: #fff; }
.btn--solid-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); box-shadow: var(--shadow-soft); }

.text-link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.text-link .arrow { transition: transform .25s; }
.text-link:hover .arrow { transform: translateX(4px); }
.section--navy .text-link { color: var(--gold-soft); }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
  transition: padding .35s;
}
.nav.scrolled {
  background: rgba(248,246,242,.86);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -20px rgba(20,48,75,.5);
}
.nav.scrolled .nav__inner { padding-block: 12px; }

.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .01em;
  color: #fff;
  transition: color .35s;
  margin-right: auto;
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex: none;
  white-space: nowrap;
}
.brand .brand__dot { color: var(--gold); }
.brand small {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .7;
}
.nav.scrolled .brand { color: var(--navy); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.7vw, 26px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255,255,255,.9);
  transition: color .35s, opacity .2s;
  position: relative;
  padding-block: 4px;
  white-space: nowrap;          /* never let "Quién es Lizi" / "El Libro" wrap */
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .25s;
}
.nav__links a:hover::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--ink-soft); }
.nav.scrolled .nav__links a:hover { color: var(--navy); }

.nav__right { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--sans);
  transition: border-color .35s;
}
.nav.scrolled .lang-toggle { border-color: rgba(26,60,94,.3); }
.lang-toggle button {
  border: none;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 7px 13px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.nav.scrolled .lang-toggle button { color: var(--ink-soft); }
.lang-toggle button.active { background: var(--gold); color: var(--navy-ink); }

.nav__cta { padding: 12px 22px; min-height: 44px; font-size: 14px; }

.nav__burger { display: none; }
.mobile-menu { display: none; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse at 72% -4%, rgba(86,158,236,.30), transparent 56%),
    radial-gradient(ellipse at 70% 0%, rgba(201,150,44,.18), transparent 55%),
    radial-gradient(circle at 10% 92%, rgba(86,158,236,.12), transparent 48%);
}
.hero__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(130px, 17vh, 200px) var(--gutter) clamp(70px, 8vw, 110px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.hero__content { max-width: 600px; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02;
  margin-top: 26px;
  color: #fff;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--gold-soft);
}
.hero__sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(243,241,236,.84);
  max-width: 52ch;
}
.hero__cta {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__meta {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line-navy);
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}
.hero__meta div { display: flex; flex-direction: column; gap: 2px; }
.hero__meta b {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--gold-soft);
}
.hero__meta span {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(243,241,236,.62);
}

.hero__portrait {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
}
.hero__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 3px;
  filter: saturate(1.02) contrast(1.02);
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
}
.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  z-index: 1;
}
.hero__tag {
  position: absolute;
  z-index: 3;
  left: -26px;
  bottom: 40px;
  background: var(--paper);
  color: var(--navy);
  padding: 16px 22px;
  box-shadow: var(--shadow-card);
  max-width: 220px;
}
.hero__tag b {
  font-family: var(--serif);
  font-size: 17px;
  display: block;
  line-height: 1.2;
}
.hero__tag span {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-soft);
}

/* ===========================================================
   CREDIBILITY BAND
   =========================================================== */
.cred { background: var(--navy-deep); color: #fff; padding-block: clamp(56px, 7vw, 86px); }
.cred__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.cred__stat { position: relative; padding-inline: 12px; }
.cred__stat + .cred__stat::before {
  content: "";
  position: absolute;
  left: 0; top: 12%;
  height: 76%;
  width: 1px;
  background: var(--line-navy);
}
.cred__stat b {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 600;
  color: var(--gold-soft);
  display: block;
  line-height: 1;
}
.cred__stat span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243,241,236,.74);
}

/* clients logo wall now lives in its own light band (.clients) below the
   navy stats — grayscale at rest, full colour + marquee-pause on hover,
   no white cards (logos with baked white backgrounds vanish on white) */
.clients {
  background: #fff;
  padding-block: clamp(46px, 5.5vw, 78px);
  border-top: 1px solid var(--line);
}
.clients__head {
  text-align: center;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.logo-marquee {
  margin-top: clamp(26px, 3.4vw, 42px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 86px);
  width: max-content;
  animation: marquee 64s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-track,
.logo-marquee:focus-within .logo-track { animation-play-state: paused; }
.logo-item {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(42px, 5vw, 60px);
  width: clamp(118px, 13vw, 174px);
}
.logo-item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .55;
  transition: filter .45s ease, opacity .45s ease, transform .45s ease;
}
.logo-item:hover img,
a.logo-item:focus-visible img { filter: none; opacity: 1; transform: translateY(-2px); }
a.logo-item { cursor: pointer; border-radius: 4px; outline-offset: 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================================================
   SECTION HEADERS (generic)
   =========================================================== */
.sec-head { max-width: 720px; }
.sec-head.centered { margin-inline: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  margin-top: 20px;
}
.sec-head p { margin-top: 20px; }

/* ---------- Offers (3 cards) ---------- */
.offers {
  margin-top: clamp(44px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.offer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.offer:hover::before { transform: scaleX(1); }
.offer__num {
  position: absolute;
  top: -28px;
  right: 4px;
  font-family: var(--serif);
  font-weight: 700;
  font-style: normal;
  font-size: 150px;
  line-height: 1;
  color: var(--navy);
  opacity: .05;
  pointer-events: none;
  z-index: 0;
}
.offer__icon, .offer h3, .offer p, .offer__meta, .offer .text-link { position: relative; z-index: 1; }
.offer__icon {
  margin-top: 18px;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  color: var(--navy);
}
.offer__icon svg { width: 34px; height: 34px; stroke-width: 1.4; }
.offer h3 {
  margin-top: 18px;
  font-size: 26px;
  color: var(--navy);
}
.offer p {
  margin-top: 14px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}
.offer__meta {
  margin-top: 22px;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.offer__meta span { display: flex; gap: 9px; align-items: center; }
.offer__meta span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex: none;
}
.offer .text-link { margin-top: 26px; }

/* ===========================================================
   TOPICS GRID
   =========================================================== */
.topics-grid {
  margin-top: clamp(44px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-navy);
  border: 1px solid var(--line-navy);
}
.topic {
  background: var(--navy);
  padding: 30px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background .3s;
  min-height: 116px;
}
.topic:hover { background: var(--navy-deep); }
.topic__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-soft);
  flex: none;
  padding-top: 3px;
  min-width: 24px;
}
.topic__body b {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.topic__body span {
  display: block;
  margin-top: 7px;
  font-size: 13.5px;
  color: rgba(243,241,236,.66);
  line-height: 1.5;
}
.topic .reg { color: var(--gold-soft); font-size: .7em; vertical-align: super; }
.topics-cta { margin-top: 44px; text-align: center; }

/* ---------- Programs: two distinct lists (Conferencias | Talleres) ---------- */
.programs {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
}
.program-col {
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line-navy);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px) clamp(24px, 3vw, 38px) clamp(28px, 3vw, 38px);
  position: relative;
  overflow: hidden;
}
.program-col::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
}
.program-col__head {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 20px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line-navy);
}
.program-col__num {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--navy-ink);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
}
.program-col__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  color: #fff;
  line-height: 1.1;
}
.program-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.program-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(243,241,236,.9);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .25s, padding-left .25s;
}
.program-list li:last-child { border-bottom: none; }
.program-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 19px;
  width: 7px; height: 7px;
  border-radius: 1px;
  background: var(--gold-soft);
  transform: rotate(45deg);
  transition: transform .25s, background .25s;
}
.program-list li:hover { color: #fff; padding-left: 30px; }
.program-list li:hover::before { transform: rotate(45deg) scale(1.25); background: var(--gold); }
.program-list .reg { color: var(--gold-soft); font-size: .62em; vertical-align: super; }
@media (max-width: 820px) {
  .programs { grid-template-columns: 1fr; }
}

/* ===========================================================
   BOOK
   =========================================================== */
.book__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}
.book__cover {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 279 / 445;   /* matches the real cover art */
}
/* real book cover image */
.book__cover .cover-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px 6px 6px 3px;
  box-shadow: 0 40px 70px -28px rgba(0,0,0,.7);
}
.book__cover .cover {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%;
  border-radius: 3px 6px 6px 3px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.28) 0 6px, rgba(255,255,255,.08) 6px 11px, transparent 11px),
    linear-gradient(155deg, var(--navy-deep), #2a66b3 60%, var(--navy));
  box-shadow: 0 40px 70px -28px rgba(0,0,0,.7);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
}
.book__cover .cover::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(201,150,44,.5);
  border-radius: 2px;
  pointer-events: none;
}
.cover__kick {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-soft);
}
.cover__title {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.04;
  margin-top: auto;
}
.cover__title em { color: var(--gold-soft); font-style: italic; }
.cover__rule { width: 46px; height: 2px; background: var(--gold); margin: 18px 0; }
.cover__author {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.cover__reg { color: var(--gold-soft); font-size: .65em; vertical-align: super; }
.book__cover::before {
  content: "";
  position: absolute;
  inset: 30px -26px -26px 18px;
  border: 1px solid rgba(201,150,44,.55);
  border-radius: 3px;
  z-index: 1;
}
.book__badge {
  position: absolute;
  z-index: 3;
  right: -22px; top: 28px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-ink);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  transform: rotate(7deg);
}
.book__badge b { font-family: var(--serif); font-size: 24px; line-height: 1; }
.book__badge span { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }

.book__body h2 { font-size: clamp(32px, 4vw, 52px); margin-top: 18px; }
.book__body h2 .reg { color: var(--gold-soft); font-size: .42em; vertical-align: super; }
.book__quote {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  color: #fff;
  margin-bottom: 4px;
}
.book__text { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-navy); color: rgba(243,241,236,.8); font-size: 17px; line-height: 1.65; max-width: 52ch; }
.book__cta { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testi-grid {
  margin-top: clamp(44px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.testi__mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: .6;
  color: var(--gold);
  height: 40px;
}
.testi__quote {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.testi__who {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testi__who b { font-family: var(--serif); font-size: 18px; color: var(--navy); }
.testi__who span { font-size: 13px; color: var(--ink-soft); letter-spacing: .01em; }
.testi__who .co { color: var(--gold-deep); font-weight: 600; }

.testi-note {
  margin-top: 26px;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}

/* ---------- interactive quote slider ---------- */
.quotes {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: clamp(8px, 3vw, 32px);
}
.quotes__viewport {
  overflow: hidden;
  contain: layout paint;
}
.quotes__track { display: flex; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.quote-slide {
  flex: 0 0 100%;
  margin: 0;
  text-align: center;
  padding: clamp(6px,2vw,20px) clamp(6px,3vw,40px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 96px;
  line-height: .5;
  color: var(--gold);
  height: 48px;
}
.quote-text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.55;
  color: var(--navy);
  margin: 20px auto 0;
  max-width: 820px;
  text-wrap: pretty;
  /* collapsed: show a clean preview, expand on demand */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}
.quote-slide.expanded .quote-text {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}
.quote-toggle {
  margin-top: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 2px;
  transition: color .2s;
}
.quote-toggle::after { content: "↓"; font-size: 13px; transition: transform .3s; }
.quote-slide.expanded .quote-toggle::after { transform: rotate(180deg); }
.quote-toggle:hover { color: var(--gold); }
.quote-toggle[hidden] { display: none; }
.quote-by { margin-top: 30px; display: flex; flex-direction: column; gap: 4px; }
.quote-by b { font-family: var(--serif); font-size: 20px; color: var(--navy); }
.quote-by span { font-size: 14px; color: var(--ink-soft); letter-spacing: .01em; }
.quote-by .co { color: var(--gold-deep); font-weight: 600; }
.quotes__arrow {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  display: grid; place-items: center;
  cursor: pointer;
  flex: none;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.quotes__arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }
.quotes__arrow svg { width: 22px; height: 22px; }
.quotes__dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.quotes__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: var(--line);
  transition: background .25s, width .25s, border-radius .25s;
}
.quotes__dots button.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ===========================================================
   ABOUT
   =========================================================== */
.about__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 420px;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 3px;
  filter: grayscale(.15) contrast(1.02);
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  z-index: -1;
}
.about__body h2 { font-size: clamp(32px, 4vw, 52px); margin-top: 18px; }
.creds {
  margin-top: 30px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.creds li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.creds li b { color: var(--ink); font-weight: 600; }
.creds__tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(201,150,44,.14);
  color: var(--gold-deep);
  display: grid; place-items: center;
  margin-top: 1px;
}
.creds__tick svg { width: 14px; height: 14px; stroke-width: 2.4; }
.about__cta { margin-top: 34px; }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact__head h2 { font-size: clamp(32px, 4.4vw, 56px); margin-top: 20px; color: #fff; }
.contact__head p { margin-top: 22px; color: rgba(243,241,236,.8); font-size: 18px; max-width: 44ch; }
.contact__direct {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line-navy);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  transition: background .25s, border-color .25s, transform .25s;
}
.contact__pill:hover { background: rgba(255,255,255,.09); border-color: rgba(201,150,44,.5); transform: translateX(4px); }
.contact__pill .ic {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--navy-ink);
}
.contact__pill .ic svg { width: 22px; height: 22px; }
.contact__pill b { display: block; font-family: var(--serif); font-size: 18px; color: #fff; }
.contact__pill span { font-size: 13px; color: rgba(243,241,236,.66); letter-spacing: .04em; }

.form {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: var(--shadow-card);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-soft);
}
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,44,.14);
}
.form .btn { width: 100%; margin-top: 6px; }
.form__note { margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); text-align: center; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--navy-ink); color: rgba(243,241,236,.7); padding-block: clamp(56px, 6vw, 80px) 32px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-navy);
}
.footer .brand { color: #fff; margin: 0; font-size: 26px; }
.footer__tag { margin-top: 16px; font-size: 14.5px; line-height: 1.6; max-width: 36ch; }
.footer__col h4 {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 18px; font-weight: 600;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 14.5px; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-navy);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.socials a:hover { background: var(--gold); color: var(--navy-ink); border-color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.6);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
.wa-float::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-ping 2.4s ease-out infinite;
}
@keyframes wa-ping {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* hero headline: line rise-in on load */
.hero h1 > span { display: inline-block; opacity: 0; transform: translateY(26px); animation: heroRise 1s cubic-bezier(.2,.7,.3,1) forwards; }
.hero h1 > span:nth-child(1){ animation-delay: .18s; }
.hero h1 > span:nth-child(2){ animation-delay: .40s; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

/* count-up numbers: subtle settle */
[data-count] { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero h1 > span { opacity: 1; transform: none; animation: none; }
  .logo-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; gap: 30px 44px; }
  .logo-item img, .news-item img { transition: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   CINEMA — full-bleed parallax quote band
   =========================================================== */
.cinema {
  position: relative;
  min-height: clamp(460px, 82vh, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--navy-ink);
  isolation: isolate;
}
.cinema__bg {
  position: absolute;
  inset: -12% 0 -12% 0;   /* extra height for parallax travel */
  width: 100%;
  height: 124%;
  z-index: 0;
  will-change: transform;
}
.cinema__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,36,56,.72), rgba(14,36,56,.55) 45%, rgba(14,36,56,.82)),
    radial-gradient(ellipse at 50% 40%, rgba(201,150,44,.16), transparent 60%);
}
.cinema__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 940px;
  padding: clamp(60px,10vw,120px) var(--gutter);
  color: #fff;
}
.cinema__mark {
  font-family: var(--serif);
  font-size: clamp(70px, 9vw, 130px);
  line-height: .5;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 6px;
}
.cinema__quote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 60px);
  line-height: 1.12;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.cinema__quote em { font-style: italic; color: var(--gold-soft); }
.cinema__by {
  margin-top: 30px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.cinema__by::before { content:""; width:36px; height:1px; background: var(--gold); }
.cinema__hint {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-family: var(--sans);
}

/* ===========================================================
   GALLERY — "En acción" editorial collage of image slots
   =========================================================== */
.gallery-grid {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  gap: 16px;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  grid-template-areas:
    "a b c"
    "a d e";
}
.gallery-grid > * { position: relative; overflow: hidden; border-radius: 3px; }
.g-a { grid-area: a; } .g-b { grid-area: b; } .g-c { grid-area: c; }
.g-d { grid-area: d; } .g-e { grid-area: e; }
.gallery-grid image-slot {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .4s;
}
.gallery-cell {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .4s, z-index 0s;
}
.gallery-cell::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(201,150,44,0);
  border-radius: 3px;
  transition: border-color .4s;
  pointer-events: none;
  z-index: 5;
}
.gallery-cell:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.gallery-cell:hover::after { border-color: rgba(201,150,44,.6); }
.g-a.gallery-cell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 2px;
  z-index: 4;
  pointer-events: none;
}
/* real photo, when present, fills its cell */
.gallery-cell > img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* elegant "stage photo coming" plate — swap a cell's contents for <img> to go live */
.gallery-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 24px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,150,44,.13), transparent 62%),
    linear-gradient(155deg, var(--navy), var(--navy-deep));
}
.gallery-ph::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(201,150,44,.36); border-radius: 2px; pointer-events: none;
}
.gallery-ph svg { width: 30px; height: 30px; color: var(--gold-soft); opacity: .9; }
.gallery-ph b { font-family: var(--serif); font-weight: 600; font-size: clamp(15px, 1.5vw, 18px); color: #fff; line-height: 1.15; }
.gallery-ph span { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); }
.g-a .gallery-ph svg { width: 40px; height: 40px; }

/* real-photo caption: gradient scrim + gold-accented label */
figure.gallery-cell { margin: 0; }
.gallery-cell > img {
  filter: saturate(1.03) contrast(1.02);
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.gallery-cell:hover > img { transform: scale(1.05); }
.gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  padding: 30px 18px 16px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(10,43,85,.82));
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateY(4px);
  opacity: .96;
  transition: transform .4s, opacity .4s;
}
.gallery-cap::before {
  content: "";
  width: 16px; height: 2px;
  background: var(--gold);
  flex: none;
}
.g-a .gallery-cap { font-size: 14px; padding: 40px 22px 20px; }
.gallery-cell:hover .gallery-cap { transform: none; opacity: 1; }

/* ===========================================================
   NEWS & MEDIA
   =========================================================== */
.news-grid {
  margin-top: clamp(40px, 5vw, 58px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.news-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.news-card:hover::before { transform: scaleX(1); }
.news-card__img { position: relative; aspect-ratio: 16/10; }
.news-card__img image-slot { width: 100%; height: 100%; display: block; }
.news-card__tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--navy-ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.news-card__body { padding: 34px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.news-card__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .04em; color: var(--ink-soft);
}
.news-card__meta b { color: var(--gold-deep); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.news-card__meta span::before { content: "·"; margin-right: 10px; color: var(--line); }
.news-card h3 {
  margin-top: 14px;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.18;
  flex: 1;
}
.news-card .text-link { margin-top: 20px; }

.news-strip {
  margin-top: clamp(44px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 46px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.news-strip__label {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.news-strip__logos {
  margin-top: clamp(24px, 3vw, 34px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(26px, 4vw, 54px);
}
/* media logos: big, grayscale, no cards — colour on hover (matches client wall) */
.news-item {
  display: flex; align-items: center; justify-content: center;
  height: clamp(38px, 4.4vw, 54px); width: clamp(108px, 12vw, 158px);
}
.news-item img {
  max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain;
  filter: grayscale(1);
  opacity: .58;
  transition: opacity .45s ease, filter .45s ease, transform .45s ease;
}
.news-item:hover img { opacity: 1; filter: none; transform: translateY(-2px); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__portrait { justify-self: start; max-width: 380px; margin-top: 12px; }
  .book__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 360px; }
  .contact__grid { grid-template-columns: 1fr; }
  .offers, .testi-grid { grid-template-columns: 1fr 1fr; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1200px) {
  .brand small { display: none; }
}
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    background: transparent; border: none; cursor: pointer;
    color: #fff;
  }
  .nav.scrolled .nav__burger { color: var(--navy); }
  .nav__burger svg { width: 24px; height: 24px; }
  .nav__cta.desktop { display: none; }
  .mobile-menu {
    position: fixed; inset: 0;
    z-index: 99;
    background: var(--navy);
    padding: 96px var(--gutter) 40px;
    display: none;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: #fff; font-family: var(--serif); font-size: 26px;
    padding: 14px 0; border-bottom: 1px solid var(--line-navy);
  }
  .mobile-menu .btn { margin-top: 24px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cred__stats { grid-template-columns: 1fr; gap: 36px; }
  .cred__stat + .cred__stat::before { display: none; }
  .cred__stat + .cred__stat { border-top: 1px solid var(--line-navy); padding-top: 30px; }
  .offers, .testi-grid, .topics-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__meta { gap: 24px; }
  .hero__tag { left: 0; }
  .book__badge { right: 8px; }
}

/* ---------- new sections: responsive ---------- */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px 220px;
    grid-template-areas:
      "a a"
      "b c"
      "d e";
  }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-grid .news-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 230px);
    grid-template-areas: "a" "b" "c" "d" "e";
  }
  .news-grid { grid-template-columns: 1fr; }
  .news-grid .news-card:last-child { grid-column: auto; }
}

/* ---------- overflow-safety: tame decorative offsets on small screens ---------- */
@media (max-width: 700px) {
  .hero__portrait::after { inset: 16px 0 -16px 16px; }
  .about__photo::after { inset: -14px 14px 14px 0; }
  .book__cover::before { inset: 24px 0 -20px 16px; }
  .hero__tag { left: 0; bottom: 24px; }
  .book__badge { right: 6px; }
}

/* ---------- mobile elite polish ---------- */
@media (max-width: 600px) {
  .hero__grid { padding-top: clamp(108px, 18vh, 150px); gap: 30px; }
  .hero h1 { font-size: clamp(38px, 11vw, 54px); }
  .hero__cta { gap: 12px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__portrait { max-width: 100%; }
  .hero__tag { max-width: 200px; }

  .quotes { gap: 4px; grid-template-columns: 40px minmax(0,1fr) 40px; }
  .quotes__arrow { width: 42px; height: 42px; }
  .quotes__arrow svg { width: 18px; height: 18px; }
  .quote-text { font-size: 20px; line-height: 1.4; }
  .quote-mark { font-size: 70px; height: 36px; }

  .cinema { min-height: 60vh; }
  .section { padding-block: clamp(56px, 14vw, 80px); }
  .news-card__body { padding: 28px 24px 26px; }
  .offer { padding: 32px 26px 28px; }
  .offer__num { font-size: 120px; top: -20px; }
  .book__cta .btn, .hero__cta .btn { min-height: 50px; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }

  .clients { padding-block: clamp(40px, 12vw, 60px); }
  .logo-marquee {
    overflow: hidden;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .logo-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px 26px;
    width: auto;
  }
  .logo-item { height: 38px; width: 100px; }
  .logo-item img { opacity: .64; }
  .news-strip__logos { gap: 24px 28px; }
  .news-item { height: 34px; width: 94px; }
  .news-item img { opacity: .64; }
}

/* tablet: keep testimonials arrows comfortable */
@media (max-width: 760px) and (min-width: 601px) {
  .quotes { grid-template-columns: 48px minmax(0,1fr) 48px; gap: 10px; }
  .quotes__arrow { width: 46px; height: 46px; }
}

/* ===========================================================
   ELITE MOBILE + TOUCH POLISH
   =========================================================== */
/* generous, always-legible tap targets on touch devices */
@media (hover: none) {
  .nav__links a, .mobile-menu a, .text-link, .footer__col a { -webkit-tap-highlight-color: transparent; }
  .logo-item img, .news-item img { opacity: .66; }  /* no hover to colourise, so keep them present */
  .offer:active, .news-card:active { transform: translateY(-3px); }
}
@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .hero h1 { font-size: clamp(34px, 12vw, 46px); }
  .hero__meta { gap: 18px 26px; }
  .hero__meta b { font-size: 26px; }
  .sec-head h2, .about__body h2, .book__body h2, .contact__head h2 { font-size: clamp(28px, 8.5vw, 38px); }
  .cred__stat b { font-size: clamp(42px, 15vw, 58px); }
  .lede { font-size: 17px; }
  .quote-text { font-size: 19px; }
  .cinema__quote { font-size: clamp(24px, 8vw, 34px); }
  .gallery-ph b { font-size: 14px; }
  .gallery-ph span { font-size: 9.5px; }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__col a {
    overflow-wrap: anywhere;
  }
}
/* very small / older phones: never let decorative frames cause overflow */
@media (max-width: 360px) {
  .hero__tag { position: static; margin-top: 16px; max-width: none; box-shadow: none; }
  .hero__portrait::after { display: none; }
}

/* ===========================================================
   BIO MODAL (semblanza)
   =========================================================== */
.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 4vw, 48px);
}
.bio-modal.open { display: flex; }
.bio-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,24,44,.74);
  backdrop-filter: blur(6px);
  animation: bioFade .3s ease;
}
.bio-dialog {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(88vh, 920px);
  background: var(--paper);
  border-radius: 4px;
  box-shadow: 0 50px 120px -40px rgba(0,0,0,.7);
  overflow: hidden;
  outline: none;
  animation: bioRise .4s cubic-bezier(.2,.7,.3,1);
  border-top: 4px solid var(--gold);
}
.bio-dialog__scroll {
  max-height: min(88vh, 920px);
  overflow-y: auto;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 60px) clamp(36px, 5vw, 56px);
  -webkit-overflow-scrolling: touch;
}
.bio-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.bio-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }
.bio-close svg { width: 20px; height: 20px; }
.bio-name {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-top: 16px;
  line-height: 1.05;
}
.bio-role {
  margin-top: 14px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--gold-deep);
}
.bio-loc {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.bio-body {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bio-body p {
  font-size: 16px;
  line-height: 1.66;
  color: var(--ink-soft);
}
.bio-body p:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--navy);
}
.bio-areas-title {
  margin-top: 36px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--navy);
}
.bio-areas {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.bio-area {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  position: relative;
  padding-left: 26px;
}
.bio-area::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 2px 0 0 2px;
}
.bio-area b {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}
.bio-area span {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.bio-cta-row { margin-top: 34px; }
@keyframes bioFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bioRise { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
@media (max-width: 640px) {
  .bio-areas { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .bio-modal__overlay, .bio-dialog { animation: none; }
  .bio-close:hover { transform: none; }
}
