/* ============================================================
   FINCA IDOIZE — styles.css
   Archetype: Editorial Light Cream (mountain/Georgian variant)
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background-color: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== DESIGN TOKENS — mountain stone palette ===== */
:root {
  --bg:         #f0ebe2;   /* warm stone cream */
  --bg-alt:     #e6e0d6;   /* sand */
  --bg-dark:    #1c1814;   /* warm near-black */
  --paper:      #faf8f4;
  --ink:        #1c1814;
  --ink-soft:   #3a342c;
  --ink-mute:   #7e7668;
  --accent:     #3d5e36;   /* forest / vineyard green */
  --accent-lt:  #547a4d;
  --amber:      #8b6b3d;   /* warm wood */
  --line:       rgba(28, 24, 20, 0.10);
  --line-light: rgba(242, 237, 229, 0.14);
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h:      118px;     /* top-row + secondary-nav combined */
}

/* ===== BASE ===== */
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; background: none; border: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3,
.section-title,
.hero-title,
.manifesto-text,
.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}
em { font-style: italic; }

.section-kicker {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  font-weight: 400;
}
.section-title {
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 2rem;
}
.body-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 1.5rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4.5rem);
}
.section-pad { padding-block: clamp(5rem, 9vw, 10rem); }
.section-alt  { background-color: var(--bg-alt); }
.section-header { margin-bottom: clamp(3rem, 5vw, 5rem); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Mandatory defensive rule — prevents split-text elements staying invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(240, 235, 226, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(28, 24, 20, 0.08);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 32px;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), opacity 0.25s;
}
.nav-hamburger-lang {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1;
}
.nav-hamburger.is-open span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.is-open span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Logo — centered absolutely so it doesn't push other items */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  /* Invert to white when over dark hero */
  filter: invert(0);
  transition: filter 0.3s;
}
/* Over dark hero (before scroll) — make logo white */
.nav:not(.is-scrolled) .nav-logo-img {
  filter: invert(1);
}

/* Nav top-right group */
.nav-top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language toggle */
.lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
}
.lang-opt {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.35;
  transition: opacity 0.2s;
}
.lang-opt.is-active { opacity: 1; }
.lang-sep {
  font-size: 0.65rem;
  color: var(--ink);
  opacity: 0.25;
}
.nav.is-scrolled .lang-opt { color: var(--ink); }

/* CTA button */
.nav-cta {
  display: inline-block;
  background: var(--accent);
  color: #f0ebe2;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  font-weight: 500;
  transition: background 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--ink); }

/* Secondary nav links */
.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 2.8vw, 3.5rem);
  padding: 0.8rem clamp(1.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(28, 24, 20, 0.06);
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Mobile nav panel */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out);
}
.nav-mobile.is-open {
  display: flex;
  max-height: 500px;
}
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
  padding: 0.9rem clamp(1.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.3s var(--ease-out);
}
.nav-mobile a:hover {
  color: var(--accent);
  padding-left: calc(clamp(1.5rem, 4vw, 3.5rem) + 0.5rem);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  transition: transform 6s ease-out;
  transform: scale(1.04);
}
.hero-img.is-loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 11, 8, 0.72) 0%,
    rgba(14, 11, 8, 0.25) 50%,
    rgba(14, 11, 8, 0.08) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 6vw, 6rem) clamp(3.5rem, 6vw, 7rem);
  padding-top: 18rem;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.9);
  margin-bottom: 1.1rem;
}
.hero-title {
  font-size: clamp(3.2rem, 8vw, 7rem);
  color: #f0ebe2;
  line-height: 1.0;
  text-wrap: balance;
  max-width: 12ch;
  margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(240, 235, 226, 0.75);
  max-width: 44ch;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}
.btn-primary {
  display: inline-block;
  background: #f0ebe2;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover { background: var(--accent); color: #f0ebe2; }

/* ===== MANIFIESTO ===== */
.manifesto-inner {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}
.manifesto-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(28, 24, 20, 0.12);
  line-height: 1;
}
.manifesto-text {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ===== COTTAGES ===== */
.cottages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
.cottage-card { display: flex; flex-direction: column; }
.cottage-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.cottage-img-wrap img {
  transition: transform 0.7s var(--ease-out), filter 0.5s;
}
.cottage-card:hover .cottage-img-wrap img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1.02);
}
.cottage-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.cottage-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.cottage-info p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink-mute);
}

/* ===== FULL BLEED IMAGE ===== */
.full-bleed-img {
  height: clamp(45vh, 55vw, 65vh);
  overflow: hidden;
}
.full-bleed-img img {
  transition: transform 12s linear;
  transform: scale(1.06);
}
.full-bleed-img.is-visible img { transform: scale(1); }

/* ===== TWO COLUMN SECTION ===== */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 9rem);
  align-items: center;
}
.two-col-reverse {
  direction: rtl;
}
.two-col-reverse > * { direction: ltr; }

.two-col-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.two-col-img img {
  transition: transform 0.8s var(--ease-out);
}
.two-col-section:hover .two-col-img img { transform: scale(1.04); }

.camping-imgs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.camping-img-main,
.camping-img-small {
  overflow: hidden;
}
.camping-img-main { aspect-ratio: 16 / 9; }
.camping-img-small { aspect-ratio: 16 / 9; }
.camping-img-main img,
.camping-img-small img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.camping-img-small img { object-position: center 60%; }
.camping-imgs:hover img { transform: scale(1.03); }
@media (max-width: 860px) {
  .camping-img-main,
  .camping-img-small { aspect-ratio: 16 / 9; }
}

.feature-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.feature-list li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}
.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
}

/* ===== GASTRONOMÍA — dark section ===== */
.section-dark { background-color: var(--bg-dark); }

.kicker-light { color: rgba(240, 235, 226, 0.4) !important; }
.section-title-light { color: #f0ebe2; }
.body-text-light { color: rgba(240, 235, 226, 0.65); }

.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
  margin-top: clamp(3rem, 5vw, 5rem);
}
.food-img-main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.food-img-main img { transition: transform 0.8s var(--ease-out); }
.food-img-main:hover img { transform: scale(1.04); }

.food-imgs-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
}
.food-img-s {
  aspect-ratio: 1;
  overflow: hidden;
}
.food-img-s img { transition: transform 0.6s var(--ease-out); }
.food-img-s:hover img { transform: scale(1.06); }

.food-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(240, 235, 226, 0.7);
  letter-spacing: 0.03em;
}

/* ===== STATS ===== */
.stats-row {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ===== FULL BLEED DOUBLE ===== */
.full-bleed-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(40vh, 50vw, 60vh);
  gap: 2px;
  overflow: hidden;
}
.fbd-left, .fbd-right {
  overflow: hidden;
}
.fbd-left img, .fbd-right img {
  transition: transform 0.8s var(--ease-out);
}
.fbd-left.is-visible img,
.fbd-right.is-visible img {
  transform: scale(1);
}
.fbd-left img  { transform: scale(1.06); }
.fbd-right img { transform: scale(1.06); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 3rem;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-item.gi-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.gallery-item img {
  transition: transform 0.65s var(--ease-out), filter 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.1);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 9rem);
  align-items: start;
}
.booking-option {
  margin-top: 1.8rem;
  padding: 1.5rem 1.8rem;
  border: 1px solid rgba(0,0,0,0.1);
}
.booking-option-highlight {
  border-color: var(--accent);
  border-width: 2px;
}
.booking-option-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}
.booking-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.booking-badge {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 0.2em 0.6em;
}
.booking-desc {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink-mid, #666);
  line-height: 1.55;
  margin-bottom: 1.1rem;
}
.booking-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7em 1.6em;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.booking-btn:hover { background: var(--ink); color: var(--bg); }

.contact-details {
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease-out);
}
a.contact-item:hover { padding-left: 0.6rem; }
.ci-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.ci-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
}
a.contact-item:hover .ci-value { color: var(--accent); }

.contact-map {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== RESEÑAS ===== */
.reviews-sec { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem 1.8rem;
  background: #fff;
  border-top: 3px solid var(--accent);
}
.review-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.review-text {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.review-name {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.review-origin {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--ink-light, #888);
}
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  padding-block: 3.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}
.footer-brand {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #f0ebe2;
  font-weight: 400;
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(240, 235, 226, 0.4);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.38);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(240, 235, 226, 0.85); }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: rgba(240, 235, 226, 0.2);
  margin-top: 0.5rem;
}

/* ===== NUESTRA HISTORIA ===== */
.historia-sec { background: var(--bg-alt); }

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(4rem, 7vw, 9rem);
  align-items: start;
}

.historia-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 2.5rem;
  text-wrap: balance;
}
.historia-title em { font-style: italic; color: var(--accent); }

.historia-body { margin-bottom: 2.5rem; }

.historia-p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.historia-firma { padding-top: 2rem; }

.historia-line {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

.historia-cita {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1rem;
}

.historia-lugar {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.historia-imgs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 140px;
}

.historia-img-main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.historia-img-main img {
  transition: transform 0.8s var(--ease-out);
}
.historia-img-main:hover img { transform: scale(1.04); }

.historia-img-small {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.historia-img-small img {
  transition: transform 0.8s var(--ease-out);
}
.historia-img-small:hover img { transform: scale(1.04); }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .cottages-grid { grid-template-columns: repeat(2, 1fr); }
  .food-grid     { grid-template-columns: 1fr; }
  .food-img-main { aspect-ratio: 16 / 9; }
}

@media (max-width: 860px) {
  .historia-grid {
    grid-template-columns: 1fr;
  }
  .historia-imgs {
    position: static;
    flex-direction: row;
  }
  .historia-img-main { flex: 1; aspect-ratio: 1; }
  .historia-img-small { flex: 1; aspect-ratio: 1; }

  .two-col-section,
  .two-col-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .two-col-img { aspect-ratio: 16 / 9; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map  { aspect-ratio: 16 / 9; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 0.5rem; }
  .manifesto-num { font-size: 2.5rem; }
  .full-bleed-double { height: 50vw; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --nav-h: 108px; }
  .nav-links { display: none; }
  .cottages-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gi-wide { grid-column: span 2; aspect-ratio: 16 / 9; }
  .stats-row { gap: 1.75rem; }
  .full-bleed-double { height: 55vw; }
  .fbd-right { display: none; }
  .full-bleed-double { grid-template-columns: 1fr; }
  .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-title { max-width: none; }
  .food-imgs-small { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .lang-toggle:not(.lang-toggle-mobile) { display: none; }
}
.lang-toggle-mobile {
  margin-top: 1.5rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(28,24,20,0.1);
  width: 100%;
  justify-content: center;
  gap: 0.5rem;
}
.lang-toggle-mobile .lang-opt { font-size: 0.85rem; color: var(--ink); }

@media (max-width: 440px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gi-wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .stats-row { flex-direction: column; gap: 1.25rem; }
}
