@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Manrope:wght@400;500;600&display=swap');

:root {
  --ink: #11100e;
  --ink-soft: #25221e;
  --ivory: #f5f0e7;
  --paper: #fbf8f2;
  --gold: #b88a3b;
  --gold-light: #d4b372;
  --wood: #7d4f2a;
  --muted: #756e64;
  --line: rgba(17, 16, 14, 0.14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', 'Segoe UI', sans-serif;
  --max: 1240px;
  --shadow: 0 28px 70px rgba(26, 20, 12, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { color: var(--paper); background: var(--wood); }

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
}
.skip-link:focus { top: 18px; }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 116px 0; }
.section-sm { padding: 74px 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--wood);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { width: 38px; height: 1px; content: ''; background: currentColor; }
.display,
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 500; line-height: .98; }
h1 { margin-bottom: 24px; font-size: clamp(3.6rem, 8vw, 7.6rem); letter-spacing: -.045em; }
h2 { margin-bottom: 26px; font-size: clamp(2.8rem, 5.4vw, 5rem); letter-spacing: -.035em; }
h3 { margin-bottom: 14px; font-size: 2rem; line-height: 1.08; }
.lead { max-width: 760px; color: #4c473f; font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.8; }
.muted { color: var(--muted); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-link::after { content: '↗'; font-size: 1rem; transition: transform .2s ease; }
.text-link:hover::after { transform: translate(3px, -3px); }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.btn:hover { color: var(--paper); background: var(--ink); transform: translateY(-2px); }
.btn-gold { color: var(--ink); border-color: var(--gold-light); background: var(--gold-light); }
.btn-gold:hover { color: var(--paper); border-color: var(--gold); background: var(--gold); }
.btn-ghost { color: var(--paper); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { color: var(--ink); border-color: var(--paper); background: var(--paper); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.19);
}
.site-header.light { position: relative; color: var(--ink); border-bottom-color: var(--line); background: var(--paper); }
.nav-wrap { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.38rem; font-weight: 600; letter-spacing: .02em; }
.brand-role { margin-top: 4px; font-size: .58rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; opacity: .72; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { position: relative; font-size: .67rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  content: '';
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }
.nav-tools { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  padding: 8px;
  color: inherit;
  border: 0;
  background: transparent;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  cursor: pointer;
}
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; color: inherit; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; }

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100vh);
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hero-media,
.hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 50%; }
.hero-overlay { background: linear-gradient(90deg, rgba(8,8,7,.91) 0%, rgba(8,8,7,.66) 38%, rgba(8,8,7,.08) 72%), linear-gradient(0deg, rgba(8,8,7,.55), transparent 48%); }
.hero-content { position: relative; z-index: 2; padding-top: 190px; padding-bottom: 92px; }
.hero-copy { max-width: 760px; }
.hero .eyebrow { color: var(--gold-light); }
.hero-title span { display: block; }
.hero-title .surname { margin-left: .75em; font-style: italic; color: var(--gold-light); }
.hero-subtitle { max-width: 590px; margin: 0; color: rgba(255,255,255,.8); font-size: clamp(1.04rem, 2vw, 1.27rem); }
.hero-index { position: absolute; right: 40px; bottom: 88px; z-index: 2; color: rgba(255,255,255,.64); writing-mode: vertical-rl; font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; }

.intro-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start; gap: 9vw; }
.intro-title { position: sticky; top: 50px; }
.intro-copy p { margin-top: 0; color: #4d4840; font-family: var(--serif); font-size: clamp(1.55rem, 2.6vw, 2.18rem); line-height: 1.45; }
.micro-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 56px; background: var(--line); }
.fact { min-height: 130px; padding: 24px; background: var(--paper); }
.fact strong { display: block; margin-bottom: 10px; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.fact span { color: var(--muted); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.dark-section { color: var(--paper); background: var(--ink); }
.dark-section .lead,
.dark-section .muted { color: rgba(255,255,255,.64); }
.feature-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; }
.feature-image { min-height: 680px; box-shadow: var(--shadow); }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 48px 18px 22px 54px; }
.quote { margin: 0 0 36px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.14; }
.quote em { color: var(--gold-light); }

.video-strip { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.video-frame { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #0b0b0b; box-shadow: var(--shadow); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.cta-band { position: relative; overflow: hidden; color: var(--paper); background: var(--wood); }
.cta-band::before { position: absolute; right: -8%; bottom: -130px; width: 420px; height: 420px; content: ''; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.cta-inner h2 { max-width: 760px; margin-bottom: 0; }

.page-hero { padding: 100px 0 88px; border-bottom: 1px solid var(--line); background: var(--ivory); }
.page-hero h1 { max-width: 1000px; margin-bottom: 20px; font-size: clamp(3.8rem, 8vw, 7rem); }
.page-hero .lead { max-width: 690px; }
.page-number { float: right; margin-top: -44px; color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }

.bio-grid { display: grid; grid-template-columns: .42fr 1fr; gap: 8vw; }
.bio-sidebar { position: sticky; top: 40px; align-self: start; }
.portrait-tall { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 28px; }
.portrait-tall img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.bio-meta { padding: 22px 0; border-top: 1px solid var(--line); }
.bio-meta:last-child { border-bottom: 1px solid var(--line); }
.bio-meta span { display: block; color: var(--muted); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.bio-meta strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.bio-content { max-width: 780px; }
.bio-content p { margin: 0 0 26px; color: #37332e; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.65rem); line-height: 1.62; }
.language-heading { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.language-heading h2 { margin: 0; font-size: 2.7rem; }
.language-pill { padding: 6px 12px; border: 1px solid var(--gold); color: var(--wood); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; }
.bio-language + .bio-language { margin-top: 90px; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 54px; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; border: 0; background: #ddd; cursor: zoom-in; }
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 9; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 7; }
.gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 8; }
.gallery-item:nth-child(4) { grid-column: span 7; grid-row: span 6; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-label { position: absolute; right: 18px; bottom: 16px; padding: 6px 10px; color: var(--paper); background: rgba(12,11,10,.74); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }

.videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 54px 28px; }
.video-card .video-frame { margin-bottom: 22px; box-shadow: none; }
.video-card h3 { margin-bottom: 8px; }
.video-card p { margin: 0; color: var(--muted); font-size: .85rem; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: start; }
.contact-photo { min-height: 730px; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.contact-copy { padding-top: 36px; }
.contact-list { margin-top: 46px; border-top: 1px solid var(--line); }
.contact-item { display: grid; grid-template-columns: 68px 1fr auto; align-items: center; gap: 18px; min-height: 104px; border-bottom: 1px solid var(--line); transition: padding .2s ease, color .2s ease; }
.contact-item:hover { padding-left: 8px; color: var(--wood); }
.contact-icon { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--serif); font-size: 1.15rem; }
.contact-item strong { display: block; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; line-height: 1.15; }
.contact-item small { color: var(--muted); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-item .arrow { font-size: 1.2rem; }
.availability { margin-top: 36px; padding: 26px; border-left: 2px solid var(--gold); background: var(--ivory); }
.availability strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 1.35rem; }

.lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 26px; background: rgba(7,7,6,.95); }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 28px; width: 46px; height: 46px; color: white; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: transparent; cursor: pointer; }

.site-footer { padding: 78px 0 30px; color: var(--paper); background: #0c0c0b; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-brand .brand { display: inline-flex; }
.footer-brand p { max-width: 430px; margin-top: 24px; color: rgba(255,255,255,.54); }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 50px; align-content: start; }
.footer-nav a { padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.13); font-family: var(--serif); font-size: 1.3rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.42); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }

[data-lang-block='en'] { display: none; }
body.lang-en [data-lang-block='es'] { display: none; }
body.lang-en [data-lang-block='en'] { display: block; }

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 10vw;
    color: var(--paper);
    background: rgba(14,13,11,.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .nav-links a { font-family: var(--serif); font-size: 2.5rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
  .menu-open .nav-links { opacity: 1; pointer-events: auto; }
  .menu-toggle { display: block; }
  .site-header.light .nav-links { color: var(--paper); }
  .intro-grid,
  .feature-grid,
  .video-strip,
  .bio-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .intro-title,
  .bio-sidebar { position: static; }
  .feature-image { min-height: 540px; }
  .feature-copy { padding: 28px 0 0; }
  .video-strip { gap: 42px; }
  .bio-sidebar { display: grid; grid-template-columns: .8fr 1fr; gap: 30px; }
  .contact-photo { min-height: 580px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 82px 0; }
  .section-sm { padding: 58px 0; }
  .site-header .nav-wrap { min-height: 76px; }
  .brand-role { display: none; }
  .brand-name { font-size: 1.15rem; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { min-height: 780px; }
  .hero-media img { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8,8,7,.88), rgba(8,8,7,.22)), linear-gradient(0deg, rgba(8,8,7,.65), transparent); }
  .hero-content { padding-bottom: 54px; }
  h1 { font-size: clamp(3.2rem, 18vw, 5.2rem); }
  .hero-title .surname { margin-left: .3em; }
  .hero-index { display: none; }
  .micro-facts { grid-template-columns: 1fr; }
  .fact { min-height: auto; }
  .feature-image { min-height: 430px; }
  .cta-inner { display: block; }
  .cta-inner .btn { margin-top: 30px; }
  .page-hero { padding: 76px 0 66px; }
  .page-number { display: none; }
  .bio-sidebar { display: block; }
  .bio-content p { font-size: 1.23rem; }
  .language-heading { align-items: flex-start; }
  .gallery { display: grid; grid-template-columns: 1fr; grid-auto-rows: 340px; }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .videos-grid { grid-template-columns: 1fr; }
  .contact-photo { min-height: 430px; }
  .contact-item { grid-template-columns: 58px 1fr auto; }
  .contact-item strong { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
