/* ============================================================
   GO AUTHENTIC TOURS — Design System
   Bodoni Moda (display) + Jost (body)
   Palette: Espresso · Gold · Parchment · Stone
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --c-dark:       #0D0B09;
  --c-espresso:   #1C1917;
  --c-brown:      #44403C;
  --c-muted:      #78716C;
  --c-stone:      #D6D3D1;
  --c-parchment:  #FAF8F3;
  --c-white:      #FFFFFF;
  --c-gold:       #C9813A;
  --c-gold-light: #E8A84A;
  --c-gold-pale:  #F5E6C8;

  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 72px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--c-parchment);
  color: var(--c-espresso);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Accessibility ──────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--c-gold); color: var(--c-dark); padding: 0.5rem 1rem;
  font-family: var(--font-body); font-weight: 600; border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.125rem; }
p  { line-height: 1.7; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 56ch;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px)  { .container { padding: 0 2.5rem; } }
@media (min-width: 1280px) { .container { padding: 0 4rem; } }

.section { position: relative; padding: 6rem 0; }
.section--lg { padding: 9rem 0; }
.section--sm { padding: 4rem 0; }

.section-dark { background: var(--c-espresso); color: var(--c-parchment); }
.section-darker { background: var(--c-dark); color: var(--c-parchment); }
.section-light { background: var(--c-parchment); color: var(--c-espresso); }
.section-stone { background: #F0EDE6; color: var(--c-espresso); }

/* Diagonal dividers */
.diagonal-down::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--c-parchment);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}
.diagonal-down-dark::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--c-espresso);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}
.diagonal-up::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--c-espresso);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 1;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  transition: all 300ms var(--ease-out);
  cursor: pointer;
  min-height: 48px;
  touch-action: manipulation;
}
.btn-primary {
  background: var(--c-gold);
  color: var(--c-dark);
}
.btn-primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,129,58,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--c-parchment);
  border: 1px solid rgba(250,248,243,0.35);
}
.btn-outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-espresso);
  border: 1px solid var(--c-brown);
}
.btn-outline-dark:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 400ms var(--ease-out), backdrop-filter 400ms, box-shadow 400ms;
}
.nav.scrolled {
  background: rgba(13,11,9,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-parchment);
  line-height: 1.2;
}
.nav__logo span { display: block; font-size: 0.6rem; letter-spacing: 0.25em; font-family: var(--font-body); font-weight: 400; color: var(--c-gold); text-transform: uppercase; margin-top: 1px; }
.nav__links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.75);
  transition: color 250ms;
}
.nav__link:hover, .nav__link.active { color: var(--c-gold); }
.nav__cta {
  display: none;
}
@media (min-width: 768px) { .nav__cta { display: inline-flex; } }

/* Mobile hamburger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
@media (min-width: 768px) { .nav__burger { display: none; } }
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-parchment);
  transition: all 300ms var(--ease-out);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 350ms var(--ease-out);
  z-index: 999;
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__mobile .nav__link {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--c-parchment);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8rem;
  overflow: hidden;
  background: var(--c-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  background:
    linear-gradient(160deg, #0D1A14 0%, #1A2410 25%, #2D3A1C 45%, #4A3520 65%, #2A1F12 85%, #0D0B09 100%);
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,129,58,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(45,74,34,0.15) 0%, transparent 50%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.95) 0%, rgba(13,11,9,0.4) 50%, rgba(13,11,9,0.2) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--c-parchment);
  max-width: 900px;
}
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--c-gold);
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(250,248,243,0.7);
  max-width: 50ch;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,248,243,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(250,248,243,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* Photo placeholder blocks */
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.3);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.ph-atlas    { background: linear-gradient(150deg, #1A2E1A 0%, #2D4A22 30%, #5C7A3C 55%, #8B7355 75%, #C4A882 100%); }
.ph-desert   { background: linear-gradient(150deg, #3A1C08 0%, #8B4513 30%, #C4832A 60%, #E8B86D 85%, #F5D99A 100%); }
.ph-tea      { background: linear-gradient(150deg, #0D2318 0%, #1B3A2D 30%, #2D6B4F 60%, #5A8A2A 85%, #8FBF5E 100%); }
.ph-pottery  { background: linear-gradient(150deg, #2A1508 0%, #6B3A2A 35%, #A0522D 60%, #C4832A 85%, #E8B86D 100%); }
.ph-village  { background: linear-gradient(150deg, #1A1208 0%, #3A2D1B 30%, #6B4A2A 55%, #A07855 75%, #C4A882 100%); }
.ph-berber   { background: linear-gradient(150deg, #0D1A1F 0%, #1B2D3A 30%, #2A4A5C 55%, #4A7B8C 80%, #8CB5C4 100%); }
.ph-mountain { background: linear-gradient(160deg, #0D1408 0%, #1A2810 25%, #2D4020 45%, #526B3A 65%, #8BA06B 80%, #C4C8A0 100%); }
.ph-home     { background: linear-gradient(150deg, #1F1208 0%, #4A2818 30%, #7B4A2A 55%, #B07850 75%, #D4A882 100%); }

/* ── Philosophy section ─────────────────────────────────── */
.philosophy { text-align: center; }
.philosophy__quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  max-width: 22ch;
  margin: 0 auto 4rem;
  color: var(--c-parchment);
}
.philosophy__quote em { color: var(--c-gold); font-style: normal; }
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}
.pillar {
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: background 300ms;
}
.pillar:hover { background: rgba(201,129,58,0.08); }
.pillar__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  opacity: 0.7;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.pillar__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(250,248,243,0.55);
}

/* ── Section header ─────────────────────────────────────── */
.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }
.section-header--center .lead { margin: 1rem auto 0; }
.section-title { margin: 0.5rem 0 0; }

/* ── Experience cards ───────────────────────────────────── */
.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
@media (min-width: 768px) { .experiences-grid { grid-template-columns: 1fr 1fr; } }

.experience-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
@media (min-width: 768px) { .experience-card { aspect-ratio: auto; min-height: 600px; } }

.experience-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 600ms var(--ease-out);
}
.experience-card:hover .experience-card__bg { transform: scale(1.04); }

.experience-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.92) 0%, rgba(13,11,9,0.3) 60%, rgba(13,11,9,0.1) 100%);
  transition: background 400ms;
}
.experience-card:hover .experience-card__overlay {
  background: linear-gradient(to top, rgba(13,11,9,0.95) 0%, rgba(13,11,9,0.5) 60%, rgba(13,11,9,0.2) 100%);
}
.experience-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem;
  color: var(--c-parchment);
  transform: translateY(0);
  transition: transform 400ms var(--ease-out);
}
.experience-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
}
.experience-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.experience-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(250,248,243,0.65);
  margin-bottom: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out), opacity 400ms;
  opacity: 0;
}
.experience-card:hover .experience-card__desc {
  max-height: 200px;
  opacity: 1;
}
.experience-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 350ms var(--ease-out);
}
.experience-card:hover .experience-card__cta {
  opacity: 1;
  transform: translateY(0);
}
.experience-card__cta svg { transition: transform 250ms; }
.experience-card__cta:hover svg { transform: translateX(4px); }

/* ── Moments grid ───────────────────────────────────────── */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 768px) { .moments-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .moments-grid { grid-template-columns: repeat(6, 1fr); } }

.moment {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 1024px) { .moment { aspect-ratio: auto; height: 280px; } }
.moment:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
@media (min-width: 1024px) { .moment:first-child { grid-column: span 2; aspect-ratio: auto; height: 280px; } }

.moment__bg {
  position: absolute;
  inset: 0;
  transition: transform 600ms var(--ease-out);
}
.moment:hover .moment__bg { transform: scale(1.06); }
.moment__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(13,11,9,0.7) 0%, transparent 60%);
  color: var(--c-parchment);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 300ms;
}
.moment:hover .moment__label { opacity: 1; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 300ms, background 300ms;
}
.testimonial:hover {
  border-color: rgba(201,129,58,0.25);
  background: rgba(201,129,58,0.04);
}
.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.testimonial__star {
  width: 14px;
  height: 14px;
  fill: var(--c-gold);
}
.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c-parchment);
  margin-bottom: 1.5rem;
}
.testimonial__author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.testimonial__origin {
  font-size: 0.7rem;
  color: rgba(250,248,243,0.4);
  margin-top: 0.2rem;
}

/* ── Partners strip ─────────────────────────────────────── */
.partners {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0;
  text-align: center;
}
.partners__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.35);
  margin-bottom: 2rem;
}
.partners__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}
.partner-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(250,248,243,0.4);
  transition: color 300ms;
}
.partner-item:hover { color: var(--c-gold); }

/* ── Final CTA ──────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1A2E1A 0%, #2D3A1C 30%, #4A3520 60%, #2A1F12 100%);
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,11,9,0.72);
}
.cta-section__content {
  position: relative;
  z-index: 1;
  color: var(--c-parchment);
}
.cta-section__title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.cta-section__sub {
  color: rgba(250,248,243,0.6);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.cta-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(250,248,243,0.35);
  letter-spacing: 0.1em;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--c-dark);
  color: rgba(250,248,243,0.5);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer__brand {}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c-parchment);
  margin-bottom: 0.25rem;
}
.footer__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.footer__desc { font-size: 0.875rem; line-height: 1.7; max-width: 36ch; }
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-parchment);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link {
  font-size: 0.875rem;
  transition: color 250ms;
}
.footer__link:hover { color: var(--c-gold); }
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── WhatsApp float ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: transform 300ms var(--ease-out), box-shadow 300ms;
  animation: waPulse 3s ease-in-out infinite;
  touch-action: manipulation;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ── Scroll animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }

/* ── Page header (inner pages) ──────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--c-dark);
  color: var(--c-parchment);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: radial-gradient(ellipse 80% 50% at 50% 80%, rgba(201,129,58,0.15) 0%, transparent 60%);
}
.page-hero__eyebrow { margin-bottom: 1rem; }
.page-hero__title { font-size: clamp(2.5rem, 6vw, 5rem); }
.page-hero__sub { margin-top: 1.25rem; max-width: 55ch; color: rgba(250,248,243,0.6); font-size: 1.05rem; line-height: 1.7; }

/* ── Gallery grid ───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item__bg {
  width: 100%; height: 100%;
  transition: transform 600ms var(--ease-out);
}
.gallery-item:hover .gallery-item__bg { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,11,9,0.4);
  opacity: 0;
  transition: opacity 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg { width: 32px; height: 32px; fill: white; }

/* ── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.wa-cta {
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: background 300ms, border-color 300ms;
}
.wa-cta:hover { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.35); }
.wa-cta__icon { margin: 0 auto 1rem; width: 48px; height: 48px; fill: #25D366; }
.wa-cta__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.wa-cta__sub { color: var(--c-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1DAA56; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.form-field { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-brown);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: white;
  border: 1px solid var(--c-stone);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-espresso);
  transition: border-color 250ms, box-shadow 250ms;
  border-radius: 1px;
  min-height: 48px;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(201,129,58,0.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-hint { font-size: 0.75rem; color: var(--c-muted); margin-top: 0.35rem; }

/* ── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-scale { opacity: 1; transform: none; }
}

/* ── Utilities ──────────────────────────────────────────── */
.text-gold { color: var(--c-gold); }
.text-muted { color: var(--c-muted); }
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 4rem; }
.divider {
  width: 48px;
  height: 1px;
  background: var(--c-gold);
  margin: 1.5rem 0;
}
.divider--center { margin: 1.5rem auto; }
