/* ═══════════════════════════════════════════════════════
   AITOR BIDÁSOLO — Personal Brand Website
   Cinematographic · Warm · Premium · Deep
   ═══════════════════════════════════════════════════════ */

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

:root {
  --ivory: #FAF8F5;
  --ivory-warm: #F3EDE4;
  --navy: #1B2A4A;
  --navy-light: #2D3E5F;
  --navy-dark: #111D35;
  --navy-muted: #3A4D6E;
  --gold: #C9A96E;
  --gold-light: #D4B87A;
  --gold-muted: #B89B5E;
  --gold-pale: #E8D5A8;
  --text-dark: #1B2A4A;
  --text-body: #2D3E5F;
  --text-muted: #6A7B9A;
  --text-light: #9AA5B8;
  --bg-section-alt: #F0EBE3;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-muted); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.divider-gold {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  margin: 1.5rem 0;
  border: none;
}

.divider-gold.center { margin: 1.5rem auto; }

blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(201,169,110,0.05);
  border-radius: 0 8px 8px 0;
}

/* ── NAVIGATION ─────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(27,42,74,0.08);
  padding: 0.6rem 0;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 42px; transition: height var(--transition); }
.navbar.scrolled .nav-logo img { height: 36px; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--navy);
  position: relative; padding: 0.2rem 0;
}
.navbar:not(.scrolled) .nav-links a { color: rgba(250,248,245,0.9); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-lang {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  border: 1px solid var(--gold); border-radius: 4px;
  padding: 0.3rem 0.7rem; color: var(--gold);
  transition: all var(--transition);
}
.navbar:not(.scrolled) .nav-lang { border-color: rgba(250,248,245,0.6); color: rgba(250,248,245,0.9); }
.nav-lang:hover { background: var(--gold); color: white; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 24px; position: relative; z-index: 1001;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--navy);
  position: absolute; left: 0; transition: all 0.3s;
}
.navbar:not(.scrolled) .hamburger span { background: rgba(250,248,245,0.9); }
.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.open span:nth-child(1) { top: 11px; transform: rotate(45deg); background: var(--navy); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 11px; transform: rotate(-45deg); background: var(--navy); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,248,245,0.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; opacity: 0; transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy);
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ──────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/img/hero.jpg');
  background-size: cover; background-position: center bottom;
  animation: kenBurns 25s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17,29,53,0.55) 0%,
    rgba(17,29,53,0.35) 40%,
    rgba(17,29,53,0.6) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 2rem; max-width: 800px;
}
.hero-monogram {
  width: clamp(180px, 28vw, 260px);
  height: clamp(180px, 28vw, 260px);
  margin: 0 auto 1.5rem;
  opacity: 1;
  display: block;
  border: none;
  border-radius: 0;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
}
.hero-name {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--ivory); font-weight: 400; letter-spacing: 0.05em;
  margin-bottom: 0.3rem; text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-tagline {
  font-family: var(--font-serif); font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--gold-light); font-style: italic; font-weight: 400;
  margin-bottom: 1rem;
}
.hero-sub {
  font-family: var(--font-sans); font-size: 0.95rem;
  color: rgba(250,248,245,0.8); max-width: 550px; margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem; border-radius: 6px;
  font-family: var(--font-sans); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition); border: none;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold); color: white;
  box-shadow: 0 4px 15px rgba(201,169,110,0.3);
}
.btn-gold:hover {
  background: var(--gold-muted); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.4);
  color: white;
}
.btn-outline {
  background: transparent; color: var(--ivory);
  border: 1.5px solid rgba(250,248,245,0.5);
}
.btn-outline:hover {
  background: rgba(250,248,245,0.1); border-color: var(--ivory);
  color: var(--ivory);
}
.btn-navy {
  background: var(--navy); color: var(--ivory);
  border: 1.5px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-light); color: var(--ivory); transform: translateY(-2px); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--ivory); }

/* ── SECTIONS ──────────────────────────────────── */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-section-alt); }
.section-navy { background: var(--navy); color: var(--ivory); }
.section-navy h2, .section-navy h3 { color: var(--ivory); }
.section-navy p { color: rgba(250,248,245,0.8); }
.section-navy .section-subtitle { color: var(--gold-light); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }

/* ── SCROLL ANIMATION ────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ── METHOD (VODA) ─────────────────────────────── */
.method-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 2rem;
}
.method-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: white; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(27,42,74,0.06);
  transition: all var(--transition);
  position: relative;
  border-top: 3px solid transparent;
}
.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(27,42,74,0.1);
  border-top-color: var(--gold);
}
.method-number {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.method-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.method-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* ── CARDS (services, books) ──────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: white; border-radius: 12px; padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px rgba(27,42,74,0.05);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27,42,74,0.08);
  border-left-color: var(--gold);
}
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.92rem; color: var(--text-muted); }

.book-card {
  background: white; border-radius: 16px; padding: 3rem 2.5rem;
  box-shadow: 0 4px 24px rgba(27,42,74,0.06);
  transition: all var(--transition); text-align: center;
}
.book-cover {
  display: block;
  width: auto;
  max-width: 200px;
  max-height: 280px;
  margin: 0 auto 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(27,42,74,0.18);
  object-fit: cover;
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27,42,74,0.1);
}
.book-card h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 0.8rem; }
.book-card .book-quote {
  font-family: var(--font-serif); font-style: italic;
  color: var(--gold); font-size: 1.1rem; margin-bottom: 1.2rem;
}
.book-card p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.92rem; }

/* ── COACHING LIST ─────────────────────────────── */
.coaching-list {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.8rem;
}
.coaching-list li {
  padding: 0.8rem 1rem 0.8rem 2rem;
  position: relative; color: var(--text-body); font-size: 0.92rem;
}
.coaching-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); transform: translateY(-50%);
}

/* ── MANIFESTO ─────────────────────────────────── */
.manifesto-lines { max-width: 700px; margin: 0 auto; }
.manifesto-lines p {
  font-family: var(--font-serif); font-size: 1.25rem;
  line-height: 1.9; margin-bottom: 0.8rem;
}
.manifesto-lines p.lead-line {
  font-size: 1.5rem; color: var(--navy); font-weight: 500;
}

/* ── INFLUENCE TAGS ──────────────────────────── */
.influence-cloud {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  justify-content: center; margin: 2rem 0;
}
.influence-tag {
  font-family: var(--font-serif); font-size: 1rem;
  padding: 0.5rem 1.2rem; border-radius: 30px;
  border: 1px solid var(--gold-pale); color: var(--navy);
  transition: all var(--transition); background: white;
}
.influence-tag:hover {
  background: var(--gold); color: white; border-color: var(--gold);
  transform: scale(1.05);
}

/* ── CONTACT FORM ──────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
.contact-reasons { list-style: none; }
.contact-reasons li {
  padding: 0.6rem 0; font-size: 0.95rem;
  border-bottom: 1px solid rgba(27,42,74,0.08);
}
.contact-reasons li::before { content: '→ '; color: var(--gold); font-weight: 600; }

/* ── SCROLL INDICATOR ──────────────────────────── */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator svg { width: 24px; height: 24px; stroke: var(--gold-light); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ── FOOTER ────────────────────────────────────── */
.footer {
  background: var(--navy-dark); color: rgba(250,248,245,0.7);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,248,245,0.1);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-top: 1rem; max-width: 300px; }
.footer-links h4 {
  font-family: var(--font-sans); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold-light); margin-bottom: 1rem; font-weight: 600;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(250,248,245,0.6); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; font-size: 0.8rem; color: rgba(250,248,245,0.4);
}
.footer-bottom a { color: rgba(250,248,245,0.4); }
.footer-bottom a:hover { color: var(--gold); }
.footer-logo img { height: 32px; opacity: 0.6; }
.footer-gold-line {
  width: 60px; height: 2px; margin: 1.5rem 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ── PAGE HEADER (inner pages) ─────────────────── */
.page-header {
  background: var(--navy); padding: 8rem 0 4rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url('../assets/img/hero.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--ivory); font-weight: 400; margin-bottom: 0.5rem; }
.page-header .lead { color: rgba(250,248,245,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ── CONTENT PAGES ─────────────────────────────── */
.content-section {
  padding: 4rem 0;
}
.content-section .container { max-width: 800px; }
.content-section h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content-section h3 { margin-top: 2rem; }
.content-section ul {
  padding-left: 1.2rem; margin-bottom: 1.5rem;
}
.content-section li {
  margin-bottom: 0.4rem; font-size: 0.94rem;
}
.pending-note {
  background: var(--ivory-warm); border-radius: 8px; padding: 1.5rem;
  border-left: 3px solid var(--gold); font-size: 0.9rem;
  color: var(--text-muted); margin: 1.5rem 0;
}

/* ── REGIONAL PAGES ────────────────────────────── */
.regional-hero {
  background: var(--navy); padding: 8rem 0 5rem;
  text-align: center; position: relative; overflow: hidden;
}
.regional-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../assets/img/hero.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.regional-hero .container { position: relative; z-index: 2; }
.regional-hero h1 { color: var(--ivory); margin-bottom: 1rem; }
.regional-hero p { color: rgba(250,248,245,0.75); font-size: 1.05rem; max-width: 650px; margin: 0 auto; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }
  .method-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-monogram { width: clamp(140px, 45vw, 200px); height: clamp(140px, 45vw, 200px); }
  .hero-name { letter-spacing: 0.02em; }
  .hero-bg { background-image: url('../assets/img/hero-mobile.jpg'); }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-indicator { animation: none; }
  html { scroll-behavior: auto; }
}
