/* ============================================================
   Casa Guarani · Sable & Terracotta
   Shared stylesheet for /fr /pt /en — mobile-first, vanilla
   ============================================================ */

:root {
  /* — Palette — */
  --bg: #F6F0E4;
  --bg-warm: #EFE5D2;
  --surface: #FFFBF3;
  --fg: #2D2419;
  --fg-soft: #4A3E2D;
  --muted: #7A6A55;
  --border: #E8DCC6;
  --border-strong: #D5C5A5;
  --accent: #B8633E;         /* terracotta */
  --accent-dark: #9A4F30;
  --accent-soft: #D9A57A;
  --palm: #5A6E3F;           /* végétal — usage discret */
  --palm-soft: #8FA070;

  /* — Type — */
  --font-display: 'Cormorant Garamond', 'Iowan Old Style', 'Charter', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* — Espacement — */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* — Layout — */
  --container: 1240px;
  --container-tight: 880px;
  --radius: 2px;
  --radius-md: 4px;
  --radius-lg: 12px;

  /* — Ombrages — */
  --shadow-sm: 0 1px 2px rgba(45, 36, 25, 0.05);
  --shadow: 0 4px 16px rgba(45, 36, 25, 0.08);
  --shadow-lift: 0 12px 32px rgba(45, 36, 25, 0.16);

  /* — Motion — */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.2, 0.7, 0.3, 1);

  /* — Hero image (path is resolved relative to this stylesheet) — */
  --hero-img: url('../img/casa-guarani-4-chambres-icaraizinho-02.jpg');
}

/* ============================================================
   Reset minimal
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; padding: 0; }
ul, ol { padding: 0; margin: 0; list-style: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ============================================================
   Typo
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--fg);
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
}
h2 { font-size: clamp(32px, 4.2vw, 54px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
h4 { font-size: clamp(17px, 1.6vw, 21px); font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
p { text-wrap: pretty; color: var(--fg-soft); }
.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--fg);
  font-weight: 300;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}
em, i { font-style: italic; }
strong { font-weight: 600; color: var(--fg); }

/* ============================================================
   Layout
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.container-tight { max-width: var(--container-tight); }
section { padding: var(--s-9) 0; position: relative; }
@media (max-width: 768px) { section { padding: var(--s-7) 0; } }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-4) 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              border-color 0.4s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(246, 240, 228, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--border);
  padding: var(--s-3) 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1;
}
.brand-logo {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand-text {
  font-style: italic;
}
.brand .brand-mark { display: none; }
.nav {
  display: flex;
  gap: var(--s-6);
  align-items: center;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg);
  position: relative;
  padding: var(--s-2) 0;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--accent); }
.nav-actions { display: flex; gap: var(--s-3); align-items: center; }
.nav-actions-mobile { display: none; }

.lang-switch {
  display: inline-flex;
  gap: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  align-items: center;
}
.lang-switch a {
  padding: 4px 8px;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
  border-radius: var(--radius);
}
.lang-switch a:hover { color: var(--fg); }
.lang-switch a.active { color: var(--accent); }
.lang-switch .sep { color: var(--border-strong); padding: 0 2px; }

/* Header sitting transparent over the hero — light text for contrast.
   Reverts to dark text via .scrolled state once the user scrolls past
   the hero. The mobile drawer (.nav) has its own cream background and
   keeps dark text inside; we only retint its direct-child top links and
   the brand/toggle that visibly sit on the photo. */
.site-header:not(.scrolled) .brand { color: var(--surface); }
.site-header:not(.scrolled) .nav-toggle { color: var(--surface); }
@media (min-width: 881px) {
  .site-header:not(.scrolled) .nav > a { color: rgba(255, 251, 243, 0.92); }
  .site-header:not(.scrolled) .nav > a:hover { color: var(--accent-soft); }
  .site-header:not(.scrolled) .nav-actions .lang-switch a { color: rgba(255, 251, 243, 0.72); }
  .site-header:not(.scrolled) .nav-actions .lang-switch a:hover { color: var(--surface); }
  .site-header:not(.scrolled) .nav-actions .lang-switch a.active { color: var(--accent-soft); }
  .site-header:not(.scrolled) .nav-actions .lang-switch .sep { color: rgba(255, 251, 243, 0.3); }
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--fg);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 84%; max-width: 360px;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--s-8) var(--s-6);
    gap: var(--s-5);
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    box-shadow: var(--shadow-lift);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 20px; font-family: var(--font-display); font-style: italic; font-weight: 500; letter-spacing: -0.01em; }
  .nav-actions { display: none; }
  .nav .nav-actions-mobile {
    display: flex; flex-direction: column;
    gap: var(--s-5); margin-top: var(--s-5);
    width: 100%;
  }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(45, 36, 25, 0.4);
    opacity: 0; pointer-events: none;
    transition: opacity 0.32s var(--ease);
    z-index: 99;
  }
  .nav-overlay.open { opacity: 1; pointer-events: auto; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
              color 0.2s var(--ease), border-color 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--surface);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(184, 99, 62, 0.25);
}
.btn-secondary {
  background: transparent;
  border-color: var(--fg);
  color: var(--fg);
}
.btn-secondary:hover {
  background: var(--fg);
  color: var(--surface);
}
.btn-ghost {
  color: var(--fg);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--accent); }
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 18px 36px; font-size: 15px; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: var(--s-8) 0 var(--s-9);
  color: var(--surface);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center 35%;
  z-index: -2;
  animation: hero-zoom 16s var(--ease-out) forwards;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: -1;
}
@media (max-width: 768px) {
  .hero::before { background-position: center 42%; }
}
@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero .container { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--accent-soft); }
.hero h1 { color: var(--surface); max-width: 16ch; margin-bottom: var(--s-5); }
.hero p.lead { color: rgba(255, 251, 243, 0.92); max-width: 50ch; margin-bottom: var(--s-6); }
.hero-ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.hero-ctas .btn-secondary {
  border-color: rgba(255, 251, 243, 0.7);
  color: var(--surface);
}
.hero-ctas .btn-secondary:hover {
  background: var(--surface);
  color: var(--fg);
  border-color: var(--surface);
}

.hero-meta {
  position: absolute;
  right: var(--s-5); bottom: var(--s-7);
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 251, 243, 0.78);
  text-align: right;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .hero-meta { display: none; }
}

.hero-scroll {
  position: absolute;
  left: 50%; bottom: var(--s-5);
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 251, 243, 0.7);
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: var(--s-2);
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: rgba(255, 251, 243, 0.5);
  animation: scroll-line 2.2s var(--ease) infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}
@media (max-width: 768px) {
  .hero-scroll { display: none; }
}

/* ============================================================
   Intro
   ============================================================ */

.intro {
  background: var(--bg);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.intro-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.intro-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.intro-image:hover img { transform: scale(1.04); }
.intro-text h2 { margin-bottom: var(--s-5); }
.intro-text .lead { margin-bottom: var(--s-5); }
.intro-text p + p { margin-top: var(--s-4); }
.intro-text .eyebrow { margin-bottom: var(--s-4); }

@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .intro-image { aspect-ratio: 5 / 4; order: -1; }
}

/* ============================================================
   Houses
   ============================================================ */

.houses { background: var(--bg-warm); }
.section-head {
  text-align: center;
  margin-bottom: var(--s-8);
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.section-head .eyebrow { margin-bottom: var(--s-3); }
.section-head h2 { margin-bottom: var(--s-4); }
.section-head p { color: var(--muted); font-size: 17px; }

.house-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}
@media (max-width: 880px) {
  .house-grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

.house-card {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  cursor: pointer;
}
.house-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.house-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.house-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.house-card:hover .house-card-img img { transform: scale(1.06); }
.house-card-badge {
  position: absolute; top: var(--s-3); left: var(--s-3);
  background: rgba(255, 251, 243, 0.94);
  color: var(--fg);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
}
.house-card-body { padding: var(--s-5) var(--s-5) var(--s-6); }
.house-card-body h3 {
  margin-bottom: var(--s-2);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
}
.house-card-tagline {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: var(--s-4);
}
.house-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-4);
  margin-bottom: var(--s-5);
  font-size: 13px;
  color: var(--fg-soft);
}
.house-card-amenities li { display: inline-flex; align-items: center; gap: 6px; }
.house-card-amenities svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.house-card-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-soft);
  margin-bottom: var(--s-5);
}
.house-card-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
}
.house-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease);
}
.house-card-link:hover { border-color: var(--accent); }
.house-wa {
  font-size: 12px;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.house-wa svg { width: 14px; height: 14px; color: var(--palm); }

.gallery-data { display: none; }

/* ============================================================
   Icaraizinho — bloc éditorial
   ============================================================ */

.icaraizinho { background: var(--surface); }
.icaraizinho .container { max-width: 1080px; }
.ica-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: end;
  margin-bottom: var(--s-7);
}
.ica-head h2 { line-height: 1.05; }
.ica-head p { color: var(--muted); font-size: 17px; }
@media (max-width: 760px) {
  .ica-head { grid-template-columns: 1fr; gap: var(--s-4); }
}

.ica-hero {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: var(--s-8);
}
.ica-hero img { width: 100%; height: 100%; object-fit: cover; }

.ica-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7) var(--s-8);
  margin-bottom: var(--s-7);
}
@media (max-width: 760px) {
  .ica-grid { grid-template-columns: 1fr; gap: var(--s-6); }
}
.ica-grid h3 {
  margin-bottom: var(--s-3);
  font-style: italic;
}
.ica-grid p { font-size: 15.5px; line-height: 1.7; }
.ica-grid p + p { margin-top: var(--s-3); }

.ica-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-6);
  padding: var(--s-6) var(--s-5);
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.ica-stat { text-align: center; }
.ica-stat-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--s-2);
  font-style: italic;
}
.ica-stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 760px) {
  .ica-stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-5) var(--s-4); }
}

/* ============================================================
   Gallery mosaïque
   ============================================================ */

.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--s-3);
}
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: zoom-in;
  background: var(--border);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 880px) {
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
}

/* ============================================================
   Testimonials
   ============================================================ */

.testimonials { background: var(--bg-warm); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  gap: var(--s-4);
}
.testi-stars {
  color: var(--accent);
  letter-spacing: 0.15em;
  font-size: 14px;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg);
  text-wrap: pretty;
}
.testi-author {
  display: flex; align-items: center; gap: var(--s-3);
  border-top: 1px solid var(--border);
  padding-top: var(--s-4);
  margin-top: auto;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.testi-meta { display: flex; flex-direction: column; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--fg); }
.testi-loc { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* ============================================================
   FAQ
   ============================================================ */

.faq { background: var(--surface); }
.faq .container { max-width: 880px; }
.faq-list { margin-top: var(--s-6); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--s-5) 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--s-4);
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 500;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  line-height: 1.3;
  padding: var(--s-2) 0;
}
.faq-question .icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  margin-top: 4px;
}
.faq-question .icon svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-question .icon { background: var(--accent); color: var(--surface); border-color: var(--accent); }
.faq-item.open .faq-question .icon svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: var(--s-4) 40px 0 0;
  color: var(--fg-soft);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ============================================================
   Contact / WhatsApp
   ============================================================ */

.contact {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  text-align: center;
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--s-8) var(--s-5);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact h2 { margin-bottom: var(--s-3); }
.contact .lead { margin-bottom: var(--s-5); color: var(--muted); }
.contact-cta { display: inline-flex; margin-bottom: var(--s-6); }
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  font-size: 14px;
  color: var(--muted);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}
.contact-meta a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 0.2s var(--ease); }
.contact-meta a:hover { border-color: var(--accent); }
.contact-socials {
  display: inline-flex; gap: var(--s-3);
  justify-content: center; margin-top: var(--s-3);
}
.contact-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.contact-socials a:hover { background: var(--accent); color: var(--surface); }
.contact-socials svg { width: 18px; height: 18px; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--fg);
  color: rgba(255, 251, 243, 0.75);
  padding: var(--s-7) 0 var(--s-5);
  font-size: 13px;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-7);
}
@media (max-width: 760px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
.foot-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--surface);
  margin-bottom: var(--s-3);
  display: block;
}
.foot-tag { color: rgba(255, 251, 243, 0.6); font-size: 13px; line-height: 1.6; max-width: 30ch; }
.foot-col h5 {
  color: var(--surface);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.foot-col ul { display: flex; flex-direction: column; gap: var(--s-2); }
.foot-col a {
  color: rgba(255, 251, 243, 0.7);
  transition: color 0.2s var(--ease);
}
.foot-col a:hover { color: var(--accent-soft); }
.foot-bottom {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 251, 243, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 12px;
  color: rgba(255, 251, 243, 0.45);
}
.foot-bottom .foot-langs { display: flex; gap: var(--s-3); }
.foot-bottom .foot-langs a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.foot-bottom .foot-langs a.active { color: var(--accent-soft); }

/* ============================================================
   WhatsApp sticky (mobile)
   ============================================================ */

.wa-sticky {
  position: fixed;
  bottom: var(--s-4);
  left: var(--s-4); right: var(--s-4);
  z-index: 90;
  background: #25D366;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 999px;
  display: none;
  align-items: center; justify-content: center;
  gap: var(--s-3);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease);
}
.wa-sticky svg { width: 20px; height: 20px; }
@media (max-width: 880px) {
  .wa-sticky { display: inline-flex; }
}

/* ============================================================
   Lightbox
   ============================================================ */

.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 14, 6, 0.94);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--s-5);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-stage {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}
.lightbox-meta {
  position: absolute;
  bottom: var(--s-5);
  left: 50%; transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 251, 243, 0.7);
  text-align: center;
}
.lightbox-caption {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 251, 243, 0.85);
  margin-top: 6px;
  max-width: 60ch;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 251, 243, 0.08);
  color: var(--surface);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease);
  backdrop-filter: blur(8px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 251, 243, 0.2); }
.lightbox-close { top: var(--s-4); right: var(--s-4); }
.lightbox-prev { left: var(--s-4); }
.lightbox-next { right: var(--s-4); }
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 20px; height: 20px; }

/* ============================================================
   Reveal on scroll
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Utilities
   ============================================================ */

.center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 auto;
  max-width: 80px;
}
