/* ============================================================
   Ca l'Anella — estils compartits
   Paleta càlida de muntanya · Cormorant Garamond + Hanken Grotesk
   ============================================================ */

:root {
  --cream:       #f4eede;
  --cream-2:     #ece3cf;
  --card:        #fbf8f0;
  --ink:         #2a2722;
  --ink-soft:    #58513f;
  --muted:       #9a917c;
  --green-d:     #2b3e30;  /* franges fosques verdes */
  --green:       #3a5340;  /* accent verd */
  --green-title: #2a3a2e;  /* títols */
  --terra:       #c47a4a;  /* accent terracota */
  --terra-2:     #e0a877;  /* terracota sobre fons fosc */
  --footer:      #20281c;
  --on-dark:     #eef0e6;
  --gold:        #f3e9c9;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { -webkit-tap-highlight-color: transparent; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* ---------- Tipografia ---------- */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--terra); margin: 0 0 16px;
}
.eyebrow--light { color: var(--terra-2); }
.h1 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.h2 {
  font-family: var(--serif); font-size: 52px; line-height: 1.04; font-weight: 600;
  margin: 0 0 20px; color: var(--green-title); letter-spacing: -0.01em; text-wrap: balance;
}
.h3 { font-family: var(--serif); font-weight: 600; margin: 0; color: var(--green-title); }
.lead { font-size: 18px; line-height: 1.6; color: var(--ink-soft); }
.p { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); }

/* ---------- Botons ---------- */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: 999px;
  font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: 0.01em;
  cursor: pointer; border: none; font-family: inherit;
}
.btn-terra { background: var(--terra); color: #fff; }
.btn-green { background: var(--green); color: var(--cream); }
.btn-ghost {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.5);
  color: #f6f1e4; backdrop-filter: blur(4px);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 13px 32px;
  background: rgba(244,238,222,0.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,39,34,0.1);
}
.brand {
  font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--green-title); text-decoration: none; line-height: 1; white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 26px; white-space: nowrap; }
.nav-links a { font-size: 14px; font-weight: 500; color: #4a4438; text-decoration: none; padding-bottom: 3px; }
.nav-links a.active { font-weight: 600; color: var(--green-title); border-bottom: 2px solid var(--terra); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-row { display: flex; gap: 5px; }
.lang-btn {
  padding: 5px 9px; border-radius: 999px; border: 1px solid rgba(42,39,34,0.18);
  background: transparent; color: #6f675a; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.04em; cursor: pointer; font-family: inherit; line-height: 1;
}
.lang-btn.active { background: var(--green); border-color: var(--green); color: var(--cream); }
.btn-book {
  padding: 9px 18px; border-radius: 999px; background: var(--green); color: var(--cream);
  font-size: 13px; font-weight: 600; text-decoration: none; letter-spacing: 0.02em; white-space: nowrap;
}
.btn-book--terra { background: var(--terra); color: #fff; }

/* ---------- Botó menú mòbil (hamburger) ---------- */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; padding: 0; border: none; background: transparent;
  cursor: pointer; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--green-title); transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  background-size: cover;
  background-image: linear-gradient(to bottom, rgba(28,32,26,0.16) 0%, rgba(28,32,26,0) 32%, rgba(24,28,22,0.12) 60%, rgba(20,24,18,0.74) 100%), url('assets/hero-casa.jpg');
  background-position: center 38%;
}
.hero-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px 78px; color: #f6f1e4; }
.hero .eyebrow { color: rgba(246,241,228,0.9); }
.hero-title { font-size: 120px; line-height: 0.92; margin: 0 0 22px; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero-sub { font-size: 21px; line-height: 1.5; max-width: 560px; margin: 0 0 32px; color: rgba(246,241,228,0.94); }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Features (franja fosca) ---------- */
.band-dark { background: var(--green-d); color: var(--on-dark); }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px; padding-top: 52px; padding-bottom: 52px; }
.feat h3 { font-size: 25px; color: var(--gold); margin-bottom: 9px; }
.feat p { font-size: 14.5px; line-height: 1.55; margin: 0; color: rgba(238,240,230,0.78); }

/* ---------- Seccions ---------- */
.section { padding-top: 92px; padding-bottom: 92px; }
.section-sm { padding-top: 80px; padding-bottom: 80px; }
.band-cream { background: var(--cream-2); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two--wide { gap: 64px; }
.two--res { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
.head-narrow { max-width: 640px; margin-bottom: 48px; }

.quote {
  font-family: var(--serif); font-size: 28px; font-style: italic; line-height: 1.3;
  color: var(--green); margin: 0; border-left: 3px solid var(--terra); padding-left: 20px;
}
.media { border-radius: 8px; overflow: hidden; box-shadow: 0 24px 60px -28px rgba(42,39,34,0.45); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.ar-4-5 { aspect-ratio: 4/5; }
.ar-4-3 { aspect-ratio: 4/3; }
.ar-16-11 { aspect-ratio: 16/11; }

/* ---------- Targetes de previsualització ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--card); border: 1px solid rgba(42,39,34,0.08); border-radius: 10px;
  overflow: hidden; box-shadow: 0 14px 36px -26px rgba(42,39,34,0.4);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover { box-shadow: 0 22px 50px -24px rgba(42,39,34,0.5); transform: translateY(-3px); }
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 28px; line-height: 1.1; }
.card-body p { font-size: 14.5px; line-height: 1.6; margin: 0; color: var(--ink-soft); flex: 1; }
.card-link { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--terra); margin-top: 6px; }

/* ---------- Opinions ---------- */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.score { font-family: var(--serif); font-size: 56px; font-weight: 600; margin: 0; line-height: 1; color: var(--green); }
.score-label { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 8px 0 0; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { background: var(--card); border: 1px solid rgba(42,39,34,0.08); border-radius: 8px; padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; }
.stars { font-size: 15px; letter-spacing: 0.16em; color: var(--terra); }
.review-quote { font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.45; color: var(--green-title); margin: 0; flex: 1; }
.review-quote--lg { font-size: 21px; }
.review-name { font-size: 14px; font-weight: 600; color: var(--green-title); }

/* ---------- CTA banner ---------- */
.cta-banner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-top: 76px; padding-bottom: 76px; }
.cta-banner h2 { font-family: var(--serif); font-size: 46px; font-weight: 600; margin: 0 0 10px; color: var(--gold); letter-spacing: -0.01em; }
.cta-banner p { font-size: 16.5px; line-height: 1.6; margin: 0; color: rgba(238,240,230,0.8); max-width: 520px; }

/* ---------- Capçalera de pàgina ---------- */
.page-head { padding: 64px 32px 58px; }
.page-head .h1 { font-size: 84px; line-height: 0.98; color: var(--gold); margin-bottom: 18px; }
.page-head .lead { color: rgba(238,240,230,0.84); max-width: 600px; }
.page-head--img {
  position: relative; min-height: 78vh; display: flex; align-items: flex-end;
  background-size: cover; background-position: center 46%; color: #f6f1e4;
  background-image: linear-gradient(to bottom, rgba(20,24,18,0.32) 0%, rgba(20,24,18,0.06) 34%, rgba(20,24,18,0.82) 100%), url('assets/pedraforca.jpg');
}
.page-head--img .inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px 64px; }
.page-head--img .h1 { font-size: 78px; max-width: 760px; text-shadow: 0 2px 26px rgba(0,0,0,0.25); }
.page-head--img .eyebrow { color: rgba(246,241,228,0.86); }
.page-head--img .lead { color: rgba(246,241,228,0.92); max-width: 560px; }

/* ---------- Specs ---------- */
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.spec { background: var(--cream-2); border-radius: 8px; padding: 24px 26px; }
.spec.on-cream { background: var(--card); border: 1px solid rgba(42,39,34,0.08); }
.spec-k { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.spec-v { font-family: var(--serif); font-size: 28px; font-weight: 600; margin: 0; color: var(--green-title); line-height: 1.05; }

/* ---------- Distribució / equipament / vistes ---------- */
.rooms3 { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 48px; }
.row-list { display: flex; flex-direction: column; }
.row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(42,39,34,0.14); }
.row-name { font-size: 15px; font-weight: 600; color: var(--green-title); }
.row-detail { font-size: 14.5px; color: #6f675a; text-align: right; }
.views { display: flex; flex-direction: column; gap: 8px; }
.view { font-size: 14.5px; color: var(--green); font-weight: 500; }
.view::before { content: "▲"; color: var(--terra); margin-right: 9px; font-size: 10px; vertical-align: middle; }
.amen2 { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; }
.amen { display: flex; align-items: center; gap: 9px; }
.amen .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--terra); flex-shrink: 0; }
.amen span { font-size: 14px; color: var(--ink-soft); line-height: 1.3; }
.section-title-mt { margin-top: 30px; margin-bottom: 14px; }

/* ---------- Galeria ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.gallery figure { margin: 0; border-radius: 8px; overflow: hidden; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 22px 16px;
  background: linear-gradient(transparent, rgba(20,24,18,0.66)); color: #f6f1e4;
  font-size: 14px; font-weight: 500;
}
.col-2 { grid-column: span 2; } .col-3 { grid-column: span 3; } .col-4 { grid-column: span 4; }
.h-420 { height: 420px; } .h-440 { height: 440px; } .h-340 { height: 340px; }
/* Galeria de la casa: fotos més horitzontals */
.gallery--casa .h-420 { height: 300px; } .gallery--casa .h-340 { height: 250px; }

/* ---------- Pedraforca stats ---------- */
.peak-bar { display: flex; gap: 64px; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; padding-top: 56px; padding-bottom: 56px; }
.peak-quote { font-family: var(--serif); font-size: 30px; font-style: italic; line-height: 1.3; margin: 0; color: var(--gold); max-width: 560px; }
.peak-stats { display: flex; gap: 48px; }
.stat-v { font-family: var(--serif); font-size: 40px; font-weight: 600; margin: 0; line-height: 1; color: var(--terra-2); }
.stat-k { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(238,240,230,0.7); margin: 8px 0 0; }

/* ---------- Activitats ---------- */
.act { border: 1px solid rgba(243,233,201,0.18); border-radius: 8px; padding: 26px 24px; background: rgba(243,233,201,0.04); display: flex; flex-direction: column; gap: 12px; }
.act-num { font-family: var(--serif); font-size: 30px; color: var(--terra-2); line-height: 1; }
.act h3 { font-size: 24px; color: var(--gold); line-height: 1.12; }
.act p { font-size: 14.5px; line-height: 1.6; margin: 0; color: rgba(238,240,230,0.78); }

/* ---------- Contacte ---------- */
.contact-tile {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  text-decoration: none; padding: 18px 22px; border: 1px solid rgba(42,39,34,0.14);
  border-radius: 10px; background: var(--card); transition: border-color 0.2s ease;
}
.contact-tile:hover { border-color: var(--terra); }
.contact-tile .k { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact-tile .v { font-size: 18px; font-weight: 600; color: var(--green-title); }
.contact-list { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Mapa (Google Maps) ---------- */
.map-embed {
  position: relative; width: 100%; aspect-ratio: 16/11; border-radius: 8px; overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(42,39,34,0.45); margin-bottom: 20px;
  border: 1px solid rgba(42,39,34,0.1);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Lightbox (ampliar imatges) ---------- */
.media img, .gallery img { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(20,24,18,0.93); cursor: zoom-out;
}
.lightbox.open { display: flex; animation: caFade 0.25s ease; }
.lightbox img { max-width: 94vw; max-height: 92vh; border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; width: 44px; height: 44px;
  border-radius: 999px; border: none; background: rgba(255,255,255,0.16);
  color: #fff; font-size: 26px; line-height: 1; cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }

/* ---------- Reserva ---------- */
.price-box { background: var(--cream-2); border-radius: 12px; padding: 28px 30px; margin-bottom: 22px; }
.price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.price-num { font-family: var(--serif); font-size: 52px; font-weight: 600; color: var(--green-title); line-height: 1; }
.price-per { font-size: 16px; color: #6f675a; }
.price-min { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

.form-card { background: var(--card); border: 1px solid rgba(42,39,34,0.1); border-radius: 12px; padding: 34px; box-shadow: 0 24px 60px -34px rgba(42,39,34,0.4); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  font-family: inherit; font-size: 15px; font-weight: 400; text-transform: none; letter-spacing: 0;
  color: var(--ink); padding: 11px 13px; border: 1px solid rgba(42,39,34,0.18); border-radius: 7px; background: #fff;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field input::placeholder, .field textarea::placeholder { color: #a89f8e; }
.form-submit { margin-top: 4px; padding: 15px; border: none; border-radius: 8px; background: var(--green); color: var(--cream); font-family: inherit; font-size: 15px; font-weight: 600; letter-spacing: 0.02em; cursor: pointer; }
.form-note { font-size: 12.5px; color: var(--muted); margin: 0; text-align: center; line-height: 1.5; }
.form-success { background: #eaf0e6; border: 1px solid #c3d4b8; border-radius: 8px; padding: 16px 18px; animation: caFade 0.4s ease; }
.form-success.hidden { display: none; }
.form-success .t { font-size: 15px; font-weight: 600; color: var(--green); margin: 0 0 4px; }
.form-success .b { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
@keyframes caFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- Calendari de disponibilitat ---------- */
.cal { background: var(--card); border: 1px solid rgba(42,39,34,0.1); border-radius: 12px; padding: 24px 24px 20px; box-shadow: 0 24px 60px -34px rgba(42,39,34,0.4); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-title { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--green-title); margin: 0; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 34px; height: 34px; border-radius: 999px; border: 1px solid rgba(42,39,34,0.18);
  background: #fff; color: var(--green-title); font-size: 16px; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center; font-family: inherit;
}
.cal-nav button:hover { border-color: var(--green); }
.cal-nav button:disabled { opacity: 0.35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); text-align: center; padding: 4px 0 6px; }
.cal-day {
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
  font-size: 14px; border-radius: 7px; color: var(--green-title); border: 1px solid transparent; cursor: pointer; user-select: none;
}
.cal-day.empty { cursor: default; }
.cal-day.past { color: #c9c1ac; cursor: default; }
.cal-day.free:hover { border-color: var(--green); }
.cal-day.booked { background: rgba(196,122,74,0.14); color: #b06a3a; text-decoration: line-through; cursor: default; }
.cal-day.sel { background: var(--green); color: var(--cream); }
.cal-day.in-range { background: rgba(58,83,64,0.16); color: var(--green-title); border-radius: 0; }
.cal-legend { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.cal-legend span { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink-soft); }
.cal-legend i { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.cal-legend .lg-free { background: #fff; border: 1px solid rgba(42,39,34,0.25); }
.cal-legend .lg-booked { background: rgba(196,122,74,0.3); }
.cal-legend .lg-sel { background: var(--green); }

/* ---------- Footer ---------- */
.footer { background: var(--footer); color: #cfd3c2; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; padding: 56px 32px 40px; max-width: var(--maxw); margin: 0 auto; }
.footer-brand { font-family: var(--serif); font-size: 32px; font-weight: 600; margin: 0 0 8px; color: var(--gold); }
.footer-tag { font-size: 14px; margin: 0; color: rgba(207,211,194,0.72); line-height: 1.5; }
.footer-links { display: flex; gap: 24px; align-items: center; font-size: 14px; }
.footer-links a { color: #cfd3c2; text-decoration: none; }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 16px 32px; border-top: 1px solid rgba(207,211,194,0.14); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.footer-bottom p { font-size: 12.5px; margin: 0; color: rgba(207,211,194,0.55); }
.footer-credit { font-size: 12.5px; color: rgba(207,211,194,0.55); text-decoration: none; }
.footer-credit:hover { color: rgba(207,211,194,0.85); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-title { font-size: 84px !important; }
  .page-head .h1 { font-size: 64px; }
  .page-head--img .h1 { font-size: 64px; }
  .h2 { font-size: 44px; }
  .two, .rooms3 { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: repeat(2, 1fr); }
  .gallery > * { grid-column: span 3 !important; height: 300px !important; }
}

@media (max-width: 640px) {
  .nav { padding: 11px 16px; gap: 10px; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  /* Menú desplegable mòbil */
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid rgba(42,39,34,0.12);
    box-shadow: 0 18px 40px -24px rgba(42,39,34,0.5); padding: 6px 16px 14px;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { font-size: 16px; padding: 13px 4px; border-bottom: 1px solid rgba(42,39,34,0.08); }
  .nav-links a.active { border-bottom: 1px solid rgba(42,39,34,0.08); color: var(--terra); }
  .nav-right { gap: 10px; margin-left: auto; }
  .lang-btn { padding: 5px 8px; }
  .container { padding-left: 20px; padding-right: 20px; }
  .section, .section-sm { padding-top: 54px; padding-bottom: 54px; }
  .hero-inner { padding: 0 20px 46px; }
  .hero-title { font-size: 50px !important; line-height: 0.96; }
  .hero-sub { font-size: 18px; }
  .h2 { font-size: 31px; line-height: 1.08; }
  .page-head { padding: 40px 20px 36px; }
  .page-head .h1, .page-head--img .h1 { font-size: 44px; }
  .page-head--img .inner { padding: 0 20px 36px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); padding: 44px 0; }
  .grid3 { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: 1fr; }
  .gallery > * { grid-column: span 6 !important; height: 240px !important; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .peak-stats { gap: 28px; }
  .footer-main { padding: 40px 20px 30px; }
  .footer-bottom { padding: 16px 20px; }
}
