/* ═══════════════════════════════════════════════════════════════════════════
   Goldteig Churros – Stylesheet
   Logo palette: deep espresso #402000 + caramel gold #c0a060–#e0c080
   → Hero uses warm parchment/honey so logo shows its natural dark-gold colours.
   → Dark sections (footer, scrolled nav) invert logo to warm-white via filter.
   Fonts: Cormorant Garamond (headings) · Nunito (body)
═══════════════════════════════════════════════════════════════════════════ */

/* ── Custom properties ───────────────────────────────────────────────────── */
:root {
  /* Logo's own palette */
  --logo-brown:  #402000;
  --logo-gold:   #c0a060;

  /* Site palette built from the logo */
  --c-espresso:   #1C0800;
  --c-choco:      #3A1800;
  --c-dark:       #4A2008;
  --c-rust:       #B84D1F;
  --c-rust-dark:  #8C3210;
  --c-gold:       #C89420;
  --c-gold-light: #DBA830;
  --c-warm:       #EDBE60;
  --c-honey:      #F0C844;
  --c-cream:      #F5EAD2;
  --c-light:      #FAF5E8;
  --c-parchment:  #FFF7E6;
  --c-white:      #FFFDF6;
  --c-muted-dark: rgba(58, 24, 0, 0.55);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --container-max:    1120px;
  --container-narrow: 800px;
  --nav-height:       80px;
  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px  rgba(64, 32, 0, 0.10);
  --shadow-md:   0 6px 24px rgba(64, 32, 0, 0.15);
  --shadow-lg:   0 16px 48px rgba(64, 32, 0, 0.22);
  --shadow-warm: 0 8px 32px rgba(184, 77, 31, 0.22);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition:    0.3s var(--ease-out-expo);
}

/* ── Reset & base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-espresso);
  background: var(--c-white);
  overflow-x: hidden;
}

/* Subtle grain overlay – handcrafted feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9998;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Scroll-reveal ───────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.fade-up.is-visible   { opacity: 1; transform: translateY(0); }
.fade-up--delay       { transition-delay: 0.15s; }
.fade-up--delay-2     { transition-delay: 0.30s; }
.fade-up--delay-3     { transition-delay: 0.45s; }

/* ── Layout helpers ──────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}
.container--narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

/* ── Typography helpers ──────────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-rust);
  background: rgba(184, 77, 31, 0.10);
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}
.section-tag--light {
  color: var(--c-warm);
  background: rgba(237, 190, 96, 0.15);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-choco);
  margin-bottom: var(--space-md);
}
.section-title--light { color: var(--c-cream); }

.section-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-dark);
  margin-bottom: var(--space-sm);
  max-width: 52ch;
}
.section-body--light  { color: rgba(245, 234, 210, 0.85); }
.section-body--muted  { color: rgba(245, 234, 210, 0.62); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.75em 1.75em;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

/* Gold – works on both light and dark backgrounds */
.btn--gold {
  background: var(--c-gold);
  color: var(--c-espresso);
  box-shadow: 0 4px 18px rgba(200, 148, 32, 0.35);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--c-gold-light);
  box-shadow: 0 6px 24px rgba(200, 148, 32, 0.5);
  transform: translateY(-2px);
}

/* Warm outline – for use on the light parchment hero */
.btn--outline-warm {
  background: transparent;
  color: var(--c-choco);
  border: 2px solid rgba(58, 24, 0, 0.35);
}
.btn--outline-warm:hover, .btn--outline-warm:focus-visible {
  background: rgba(58, 24, 0, 0.06);
  border-color: var(--c-choco);
  transform: translateY(-2px);
}

/* Light outline – for dark-background sections */
.btn--outline-light {
  background: transparent;
  color: var(--c-cream);
  border: 2px solid rgba(245, 234, 210, 0.45);
}
.btn--outline-light:hover, .btn--outline-light:focus-visible {
  background: rgba(245, 234, 210, 0.12);
  border-color: var(--c-cream);
  transform: translateY(-2px);
}

/* Dark outline – for legal page back-links on light sections */
.btn--outline-dark {
  background: transparent;
  color: var(--c-dark);
  border: 2px solid rgba(61, 26, 8, 0.32);
  border-radius: var(--radius-md);
}
.btn--outline-dark:hover, .btn--outline-dark:focus-visible {
  background: rgba(61, 26, 8, 0.06);
  border-color: var(--c-dark);
}

/* WhatsApp green */
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover, .btn--whatsapp:focus-visible {
  background: #20bd5a;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.btn--large { font-size: 1.05rem; padding: 0.9em 2.2em; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Solid dark nav once user scrolls past hero */
.nav--scrolled {
  background: rgba(28, 8, 0, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0.75rem var(--space-lg);
}

/* ── Logo ── */
.nav__logo { flex-shrink: 0; }
.nav__logo img {
  height: 64px;   /* larger as requested */
  width: auto;
  transition: opacity 0.3s ease, filter 0.4s ease;
}
.nav__logo:hover img { opacity: 0.85; }

/*
 * Logo colour logic:
 * – transparent nav (light parchment hero) → natural logo colours (dark brown/gold)
 * – scrolled dark nav → invert to warm white so logo is legible on dark background
 */
.nav--scrolled .nav__logo img {
  filter: brightness(0) invert(1) sepia(0.15) hue-rotate(8deg);
}

/* ── Nav links (default = over light hero) ── */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(58, 24, 0, 0.72);
  padding: 0.5em 0.85em;
  border-radius: var(--radius-full);
  transition: color 0.25s ease, background 0.25s ease;
  letter-spacing: 0.02em;
}
.nav__link:hover, .nav__link:focus-visible {
  color: var(--c-espresso);
  background: rgba(58, 24, 0, 0.07);
}

/* Scrolled state – links go light on dark background */
.nav--scrolled .nav__link { color: rgba(245, 234, 210, 0.82); }
.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link:focus-visible {
  color: var(--c-cream);
  background: rgba(245, 234, 210, 0.1);
}

/* CTA link */
.nav__link--cta {
  background: var(--c-gold);
  color: var(--c-espresso) !important;
  padding: 0.5em 1.1em;
}
.nav__link--cta:hover, .nav__link--cta:focus-visible { background: var(--c-gold-light); }
.nav--scrolled .nav__link--cta { color: var(--c-espresso) !important; }

/* ── Language switcher ── */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: var(--space-sm);
  padding-left: var(--space-sm);
  border-left: 1px solid rgba(58, 24, 0, 0.18);
  transition: border-color 0.4s ease;
}
.nav--scrolled .nav__lang { border-left-color: rgba(245, 234, 210, 0.2); }

.nav__lang-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(58, 24, 0, 0.42);
  padding: 0.3em 0.5em;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease;
}
.nav__lang-link:hover, .nav__lang-link:focus-visible { color: var(--c-choco); }
.nav__lang-link--active { color: var(--c-rust); }

.nav--scrolled .nav__lang-link { color: rgba(245, 234, 210, 0.45); }
.nav--scrolled .nav__lang-link:hover { color: var(--c-cream); }
.nav--scrolled .nav__lang-link--active { color: var(--c-warm); }

/* ── Hamburger ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.4rem;
  margin-left: auto;
  z-index: 1100;
}
.nav__hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-choco);   /* dark on light hero */
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease;
}
.nav--scrolled .nav__hamburger-bar { background: var(--c-cream); }

/* X animation */
.nav--open .nav__hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__hamburger-bar:nth-child(2) { opacity: 0; }
.nav--open .nav__hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--c-espresso);
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  border-top: 1px solid rgba(245, 234, 210, 0.07);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav--open .nav__mobile { opacity: 1; transform: translateY(0); }

.nav__mobile-links { display: flex; flex-direction: column; gap: 0.25rem; }
.nav__mobile-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(245, 234, 210, 0.85);
  padding: 0.7em 0;
  border-bottom: 1px solid rgba(245, 234, 210, 0.08);
  transition: color 0.2s ease;
}
.nav__mobile-link:hover { color: var(--c-warm); }

.nav__mobile-lang {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}
.nav__mobile-lang .nav__lang-link { font-size: 0.85rem; color: rgba(245, 234, 210, 0.45); }
.nav__mobile-lang .nav__lang-link--active { color: var(--c-warm); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
/*
 * LIGHT parchment/honey hero so the logo shows its natural
 * dark-espresso and gold colours with maximum contrast.
 */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 55% at 12% 88%, rgba(185, 105, 18, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse 55% 60% at 88% 12%, rgba(215, 165, 50, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 70% 80% at 55% 45%, rgba(240, 200, 90, 0.10) 0%, transparent 60%),
    linear-gradient(155deg, #FFFAEE 0%, #F5E6B4 55%, #EAC84A 100%);
  padding-top: var(--nav-height);
}

/* Warm golden orbs – visible on light background */
.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.42;
  pointer-events: none;
}
.hero__bg-orb--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(200, 140, 30, 0.55) 0%, transparent 70%);
  top: -120px; left: -180px;
  animation: orb-float 12s ease-in-out infinite alternate;
}
.hero__bg-orb--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(220, 170, 60, 0.45) 0%, transparent 70%);
  bottom: -90px; right: -120px;
  animation: orb-float 14s ease-in-out infinite alternate-reverse;
}
.hero__bg-orb--3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(180, 90, 10, 0.25) 0%, transparent 70%);
  top: 40%; left: 60%;
  opacity: 0.22;
  animation: orb-float 10s ease-in-out infinite alternate;
}

@keyframes orb-float {
  from { transform: translate(0, 0)   scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  max-width: 700px;
  animation: hero-enter 1.1s var(--ease-out-expo) both;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__logo-wrap {
  margin-bottom: var(--space-lg);
  /* Warm shadow echoes the logo's own gold tones */
  filter: drop-shadow(0 6px 28px rgba(64, 32, 0, 0.18));
}
.hero__logo { width: min(320px, 60vw); height: auto; }

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  color: var(--c-choco);        /* dark on light background */
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}
.hero__tagline em { font-style: italic; color: var(--c-rust); }

.hero__subtitle {
  font-size: clamp(0.97rem, 2vw, 1.12rem);
  color: rgba(58, 24, 0, 0.60);
  max-width: 48ch;
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  animation: hero-enter 1.1s 0.25s var(--ease-out-expo) both;
}

/* Scroll hint – dark on light background */
.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(58, 24, 0, 0.32);
  font-size: 1.4rem;
  z-index: 1;
  animation: bounce 2.5s ease-in-out infinite;
  transition: color 0.3s ease;
}
.hero__scroll:hover { color: var(--c-rust); }
.hero__scroll-arrow { display: block; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Generic sections ────────────────────────────────────────────────────── */
.section { padding-block: var(--space-3xl); }
.section--cream { background: var(--c-cream); }
.section--light { background: var(--c-light); }
.section--white { background: var(--c-white); }

/* Dark warm events section */
.section--rust {
  background:
    radial-gradient(ellipse 60% 80% at 82% 50%, rgba(200, 148, 32, 0.10) 0%, transparent 60%),
    linear-gradient(135deg, #1C0700 0%, #3A1408 50%, #501A08 100%);
}

/* Dark contact section */
.section--dark {
  background:
    radial-gradient(ellipse 50% 60% at 28% 78%, rgba(140, 50, 16, 0.28) 0%, transparent 55%),
    linear-gradient(160deg, #150800 0%, #2C1205 100%);
}

/* ── Split grid ──────────────────────────────────────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.split-grid--reverse          { direction: rtl; }
.split-grid--reverse > *      { direction: ltr; }

/* ── Highlight cards (no emojis) ─────────────────────────────────────────── */
.highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 253, 246, 0.8);
  border: 1px solid rgba(184, 77, 31, 0.12);
  border-radius: var(--radius-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.highlight:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }

/* Decorative bullet instead of emoji */
.highlight::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
  margin-top: 0.45em;
}

.highlight__title {
  display: block;
  font-weight: 700;
  color: var(--c-dark);
  font-size: 0.95rem;
  margin-bottom: 0.15em;
}
.highlight__text { font-size: 0.88rem; color: rgba(61, 26, 8, 0.68); line-height: 1.5; }

/* ── Image frame ─────────────────────────────────────────────────────────── */
.image-frame { position: relative; }
.image-frame--tilted {
  transform: rotate(2.5deg);
  transition: transform 0.5s var(--ease-out-expo);
}
.image-frame--tilted:hover { transform: rotate(0deg) scale(1.02); }
.image-frame__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.image-frame--shadowed .image-frame__img {
  box-shadow: -8px 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(200, 148, 32, 0.18);
  border-radius: var(--radius-lg);
}

/* ── Events section ──────────────────────────────────────────────────────── */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-block: var(--space-md);
}
.event-list__item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.97rem;
  color: rgba(245, 234, 210, 0.85);
  font-weight: 500;
}
.event-list__item::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}

.events__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.events__area {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.88rem;
  color: rgba(237, 190, 96, 0.72);
  font-weight: 500;
}
.events__area strong { color: var(--c-warm); }

/* ── About section ───────────────────────────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.about__portrait-wrap { position: relative; }
.about__portrait {
  position: relative;
  width: 260px; height: 260px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 6px var(--c-cream), 0 0 0 10px rgba(184, 77, 31, 0.22), var(--shadow-lg);
  margin: 0 auto;
  transition: box-shadow 0.4s ease;
}
.about__portrait:hover {
  box-shadow: 0 0 0 6px var(--c-cream), 0 0 0 10px rgba(200, 148, 32, 0.38), var(--shadow-lg);
}
.about__portrait-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about__quote {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-dark);
  padding: var(--space-md) var(--space-lg);
  margin-block: var(--space-md);
  border-left: 3px solid var(--c-rust);
  background: rgba(184, 77, 31, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about__quote::before {
  content: '"';
  position: absolute;
  top: -0.3em; left: 0.3em;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(184, 77, 31, 0.10);
  line-height: 1;
  pointer-events: none;
}
.about__role {
  font-size: 0.9rem;
  color: var(--c-rust);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── Contact section ─────────────────────────────────────────────────────── */
.contact { text-align: center; }
.contact__header { margin-bottom: var(--space-xl); }
.contact__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.contact__or {
  font-size: 0.85rem;
  color: rgba(245, 234, 210, 0.38);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.contact__response {
  font-size: 0.88rem;
  color: rgba(245, 234, 210, 0.38);
  margin-bottom: var(--space-xl);
}
.contact__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-lg);
}
.contact__detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.9rem;
  color: rgba(245, 234, 210, 0.55);
}
.contact__detail svg { color: var(--c-gold); flex-shrink: 0; }
.contact__link { color: rgba(245, 234, 210, 0.72); transition: color 0.25s ease; }
.contact__link:hover { color: var(--c-warm); }

/* ── Floating WhatsApp FAB ───────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ── Cookie banner ───────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: 0.85rem var(--space-lg);
  background: rgba(28, 8, 0, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(200, 148, 32, 0.2);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner.is-hidden  { transform: translateY(110%); }

.cookie-banner__text {
  font-size: 0.85rem;
  color: rgba(245, 234, 210, 0.68);
  max-width: 600px;
}
.cookie-banner__btn {
  background: var(--c-gold);
  color: var(--c-espresso);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45em 1.2em;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: background 0.25s ease;
}
.cookie-banner__btn:hover { background: var(--c-gold-light); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--c-espresso);
  color: rgba(245, 234, 210, 0.62);
  border-top: 1px solid rgba(200, 148, 32, 0.10);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  padding-block: var(--space-2xl);
  align-items: start;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.footer__logo {
  height: 80px;   /* larger as requested */
  width: auto;
  margin-bottom: var(--space-md);
  /* Invert to warm-white so logo is legible on espresso background */
  filter: brightness(0) invert(1) sepia(0.12) hue-rotate(8deg);
  transition: filter 0.3s ease;
}
.footer__logo:hover { filter: brightness(0) invert(1) sepia(0.28) hue-rotate(12deg) saturate(1.3); }

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(245, 234, 210, 0.52);
  line-height: 1.55;
  margin-bottom: var(--space-md);
}

.footer__social { display: flex; gap: 0.6rem; }
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: rgba(245, 234, 210, 0.48);
  border: 1px solid rgba(245, 234, 210, 0.14);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.footer__social-link:hover {
  color: var(--c-warm);
  border-color: var(--c-warm);
  background: rgba(237, 190, 96, 0.10);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer__contact strong { color: rgba(245, 234, 210, 0.85); font-size: 0.95rem; }

.footer__link { color: rgba(245, 234, 210, 0.58); transition: color 0.25s ease; }
.footer__link:hover { color: var(--c-warm); }

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.footer__legal a { color: rgba(245, 234, 210, 0.52); transition: color 0.25s ease; }
.footer__legal a:hover { color: var(--c-warm); }

.footer__bottom {
  border-top: 1px solid rgba(245, 234, 210, 0.07);
  padding-block: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  font-size: 0.78rem;
  color: rgba(245, 234, 210, 0.28);
}

/* ── Legal pages ─────────────────────────────────────────────────────────── */
.legal-page {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-3xl);
  background: var(--c-light);
  min-height: 100vh;
}
.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-choco);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(184, 77, 31, 0.18);
}
.legal-page__notice {
  background: rgba(200, 148, 32, 0.07);
  border: 1px solid rgba(200, 148, 32, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
  color: var(--c-dark);
}
.legal-section { margin-bottom: var(--space-xl); }
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
}
.legal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
  margin-top: var(--space-md);
}
.legal-section p, .legal-section li {
  font-size: 0.95rem;
  color: rgba(61, 26, 8, 0.82);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal-section ul { list-style: disc; padding-left: 1.5em; margin-bottom: 0.75rem; }
.legal-section ul li { margin-bottom: 0.3rem; }
.legal-link { color: var(--c-rust); text-decoration: underline; text-underline-offset: 3px; }
.legal-link:hover { color: var(--c-rust-dark); }
.legal-page__updated { margin-top: var(--space-lg); font-size: 0.85rem; color: rgba(61, 26, 8, 0.45); }
.legal-page__back { margin-top: var(--space-xl); }

/* ── Active nav link ─────────────────────────────────────────────────────── */
.nav__link--active { color: var(--c-rust) !important; }
.nav--scrolled .nav__link--active { color: var(--c-warm) !important; }

/* ── Accessibility ───────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Tablet ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .split-grid--reverse { direction: ltr; }
  .split-grid__image { order: -1; }
  .about__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .about__portrait-wrap { display: flex; justify-content: center; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  :root {
    --space-xl:  3rem;
    --space-2xl: 4.5rem;
    --space-3xl: 6rem;
    --nav-height: 72px;
  }

  .nav__links, .nav__lang { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile.is-open { display: flex; }

  .section { padding-block: var(--space-2xl); }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .image-frame--tilted { transform: none; }

  .about__portrait { width: 200px; height: 200px; }

  .contact__actions { flex-direction: column; align-items: stretch; max-width: 300px; margin-inline: auto; }
  .contact__actions .btn { justify-content: center; }
  .contact__or { text-align: center; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cookie-banner { flex-direction: column; text-align: center; }
  .whatsapp-fab { bottom: 1rem; right: 1rem; }
}

/* ── Print ───────────────────────────────────────────────────────────────── */
@media print {
  .nav, .whatsapp-fab, .cookie-banner, .hero__scroll, .hero__bg-orb { display: none !important; }
  .hero { min-height: auto; padding: 2rem; background: #fff !important; }
  .fade-up { opacity: 1 !important; transform: none !important; }
}
