/* =============================================
   El Nido Andino — Custom Stylesheet
   ============================================= */

/* Google Fonts — Onest (headings) + Inter Tight (body), matching elnidoandino.com */
/* Google Fonts loaded via <link> preconnect in each HTML <head> — avoids render-blocking @import */

/* Antique Olive Std kept available for the brand wordmark only (PNG used in nav/hero) */
@font-face {
  font-family: 'Antique Olive Std';
  src: url('fonts/AntiqueOliveStd-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables ── */
:root {
  --cream:   #F4F1E0;
  --dark:    #1D1D1D;
  --orange:  #C84020;
  --yellow:  #F6CD45;
  --green:   #25D366;
  --blue:    #3077B5;
  --radius:  20px;
  --max-w:   1500px;
  --gap:     1.5rem;
  --nav-h:   132px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip; /* clip (not hidden) so position:sticky still works for descendants */
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Onest', sans-serif;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem);   font-weight: 900; line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.15; }
h4 { font-size: clamp(1rem, 2vw, 1.4rem);   font-weight: 600; line-height: 1.2; }
p  { font-size: 1rem; color: rgba(29,29,29,0.82); }

/* ── Layout helpers ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 5rem);
}

.section { padding-block: 5rem; }
.section--sm { padding-block: 3rem; }

/* ── Cancellation note ── */
.cancel-note {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: rgba(29,29,29,0.5);
  font-style: italic;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
  text-align: center;
}
.btn:hover { opacity: 0.85; }
.btn--primary   { background: var(--orange); color: #fff; }
.btn--outline   { background: transparent; border: 2px solid var(--dark); color: var(--dark); }
.btn--dark      { background: var(--dark);   color: var(--cream); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--cream);
  z-index: 1000;
  border-bottom: 1px solid rgba(29,29,29,0.1);
}
/* When a section-nav is present, the two bars should read as one block */
.nav:has(~ main .section-nav) {
  border-bottom: none;
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.6rem 4vw;
  gap: 0.75rem;
}

.nav__logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo img {
  height: 38px;
  width: auto;
}
.nav__hummingbird {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.nav__links {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  overflow: visible;
}

.nav__links a {
  padding: 0.25rem 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: underline;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.nav__links a:hover { opacity: 0.72; }
.nav__links a.active { opacity: 0.72; }

.nav__actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: end;
  align-self: center;
}

/* Social icons in nav */
.nav__social {
  display: flex;
  align-items: center;
  color: var(--dark);
  transition: opacity 0.15s;
}
.nav__social:hover { opacity: 0.7; }
.nav__social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Language toggle */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border: 1.5px solid rgba(29,29,29,0.25);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color 0.15s;
}
.lang-btn:hover { border-color: var(--dark); }
.lang-btn img   { width: 18px; border-radius: 2px; filter: saturate(0.8) brightness(0.95); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid rgba(29,29,29,0.1);
  padding: 1.5rem 4vw 2rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  padding: 0.75rem 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid rgba(29,29,29,0.08);
}
.nav__drawer .btn--primary { color: #fff; }

/* ── Page offset for fixed nav ── */
.page-content { padding-top: var(--nav-h); }

/* ── Review Ticker ── */
.ticker {
  background: var(--dark);
  color: var(--cream);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  display: inline-block;
  padding: 0 3rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Hero ── */
/* ── Home hero: typographic ── */
.hero {
  padding: 4rem 0 2rem;
}
.hero--image {
  position: relative;
  min-height: clamp(520px, 78vh, 920px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0) 100%);
}
.hero--image .hero__text {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}
.hero--image .hero__logo-img {
  filter: brightness(0) invert(1);
  width: min(560px, 55vw);
}
.hero--image .hero__tagline { color: #fff; }
.hero--image .hero__desc { color: rgba(255,255,255,0.82); }
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero__logo-img {
  width: min(900px, 62vw);
  height: auto;
  display: block;
}
.hero__tagline {
  font-size: clamp(2.2rem, 6.7vw, 6.2rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero__cta-inline {
  align-self: flex-start;
  font-size: 1.2rem;
  padding: 1rem 2.8rem;
}
.hero__desc {
  font-size: 1.05rem;
  max-width: 70ch;
  color: var(--dark);
}

/* Panorama below ticker */
.hero__panorama {
  position: relative;
  width: 100%;
  margin: 0;
}
.hero__panorama img {
  width: 100%;
  height: clamp(280px, 40vw, 520px);
  object-fit: cover;
  display: block;
}
.hero__panorama-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 1.1rem;
  padding: 1rem 2.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* ── Section cards (Home) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.25s;
}
.card:hover { transform: translateY(-4px); }

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
}
.card:hover .card__img { transform: scale(1.04); }

.card__label {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.35rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.card__label--orange { background: var(--orange); }
.card__label--blue   { background: var(--blue); }
.card__label--dark   { background: var(--dark); }
.card--wide { aspect-ratio: 21/9; display: block; }
.sobre-family-wrap { aspect-ratio: 4/3; }
@media (min-width: 769px) {
  .card--wide { aspect-ratio: auto; height: 190px; }
  .sobre-family-wrap { aspect-ratio: 8/3; }
}

/* ── Blue page (Sobre Nosotros) ── */
.page-blue { background: var(--blue); color: #fff; }
.page-blue .nav { background: var(--blue); }
.page-blue .nav__links a,
.page-blue .nav__logo { color: #fff; }
.page-blue .page-hero h1,
.page-blue .page-hero__sub { color: #fff; }
.page-blue .page-hero__sub { color: #fff; opacity: 1; }
.page-blue .btn--primary { background: var(--yellow); color: var(--dark); }
.page-blue p { color: rgba(255,255,255,0.9); }
.page-blue h2, .page-blue h3 { color: #fff; }
.page-blue .location-yellow { background: #2e5499; }
.page-blue .footer { background: #2e5499; color: #fff; }

/* ── Location yellow section ── */
.location-yellow {
  background: var(--yellow);
  padding: 4rem 0;
}
.location-yellow__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.location-cta {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 420px;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 3rem clamp(1.2rem, 5vw, 5rem) 1.5rem;
  text-align: center;
}
/* Collapse bottom padding when a section nav immediately follows the hero */
.page-hero:has(+ .section-nav) {
  padding-bottom: 0.5rem;
}
.page-hero h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.page-hero--left { text-align: left; }
.page-hero--sm h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
.page-hero--left .page-hero__bar { margin-left: 0; }
.page-hero--left .page-hero__sub {
  margin-left: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  max-width: none;
}

.page-hero__bar {
  display: block;
  width: clamp(120px, 60vw, 900px);
  height: 6px;
  background: var(--orange);
  transform: rotate(-2deg);
  margin: 0.9rem auto 1rem;
  border-radius: 3px;
}
.page-hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--orange);
  max-width: 72ch;
  margin: 0 auto;
  opacity: 1;
  line-height: 1.5;
}

/* ── Section nav (experiencias in-page anchor nav) ── */
.section-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: var(--cream);
  border-bottom: 1px solid rgba(29,29,29,0.08);
  box-shadow: 0 2px 10px rgba(29,29,29,0.06);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.section-nav::-webkit-scrollbar { display: none; }
.section-nav__inner {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.6rem 1.5rem;
  white-space: nowrap;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 1.05rem;
  border-radius: 100px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(29,29,29,0.5);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.section-nav a:hover,
.section-nav a.active {
  background: var(--orange);
  color: #fff;
}
/* Shared section heading — used on every section of /experiencias */
.section-h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--orange);
  align-self: center;
  text-align: center;
  margin-bottom: 1rem;
}

/* Scroll offset so anchor targets clear both sticky bars */
.section-anchor {
  scroll-margin-top: calc(var(--nav-h) + 52px);
}

/* ── Habitaciones two-column layout ── */
.rooms-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-block: 2rem 4rem;
  align-items: start;
}
.room-col {
  display: flex;
  flex-direction: column;
}
.room-col__name {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}
.room-col__name--orange { color: var(--dark); }
.room-col__name--blue   { color: var(--dark); }
.room-col__name--orange::after {
  content: '';
  display: block;
  width: clamp(80px, 22vw, 270px);
  height: 5px;
  background: var(--orange);
  border-radius: 3px;
  transform: rotate(-1.5deg);
  margin: 0.4rem auto 0.6rem;
}
.room-col__name--blue::after {
  content: '';
  display: block;
  width: clamp(80px, 22vw, 270px);
  height: 5px;
  background: var(--blue);
  border-radius: 3px;
  transform: rotate(-1.5deg);
  margin: 0.4rem auto 0.6rem;
}
.room-col__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
.room-col__img2 {
  width: 50%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.room-col__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.5rem 0 0.5rem;
}
.room-col__gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.room-col__feats-title {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.2rem;
}
.room-col__underline {
  display: block;
  height: 4px;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 2px;
}
.room-col__underline--orange { background: var(--orange); }
.room-col__underline--blue   { background: var(--blue); }

/* ── Room layout (legacy, kept for responsive) ── */
.room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
  border-top: 1px solid rgba(29,29,29,0.12);
}
.room:first-of-type { border-top: none; }

.room__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.room__gallery-main {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.room__gallery-main img,
.room__gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room__gallery-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.room__info { display: flex; flex-direction: column; gap: 1.5rem; }
.room__features { display: flex; flex-direction: column; gap: 0.6rem; }
.room__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.97rem;
}
.room__features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ── Instalaciones page ── */
.facilities-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0 0 4rem;
  align-items: start;
}
.facility-col { display: flex; flex-direction: column; }
.facility-col .btn { align-self: center; }
.facility-oval {
  display: inline-block;
  font-size: clamp(2.5rem, 4.7vw, 4.25rem);
  font-weight: 900;
  line-height: 1.15;
  padding: 0.2em 0.85em;
  border-radius: 50%;
  border: 4px solid;
  margin-bottom: 1.2rem;
  align-self: flex-start;
}
.facility-oval--orange { border-color: var(--orange); }
.facility-oval--blue { border-color: var(--blue); }
.facility-col__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.facility-col__subtitle {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 0.4rem;
}

/* ── Pasadía page layout ── */
.pasadia-desc {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  max-width: 80ch;
  margin: 0 auto 3rem;
  line-height: 1.5;
}
.pasadia-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 0 0 1rem;
}
.pasadia-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.pasadia-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.pasadia-includes-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.pasadia-opt-title { font-size: 1.2rem; font-weight: 700; opacity: 0.6; }
.room__features--muted li { opacity: 0.65; }
.room__features--muted li::before { opacity: 0.65; }

/* ── Two-column content layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col--reverse > *:first-child { order: 1; }

.two-col__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.two-col__img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Features list (general) ── */
.feature-list { display: flex; flex-direction: column; gap: 0.65rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1rem;
}
.feature-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Instalaciones sections ── */
.facility-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
  border-top: 1px solid rgba(29,29,29,0.12);
}
.facility-card:nth-child(even) .facility-card__img { order: -1; }

.facility-card__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.facility-card__img img { width: 100%; height: 100%; object-fit: cover; }
.facility-card__content { display: flex; flex-direction: column; gap: 1.2rem; }

/* ── Activities ── */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.activity-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(29,29,29,0.04);
  border-radius: var(--radius);
}
.activity-card h3 { font-size: 1.3rem; }

/* ── FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(29,29,29,0.15); }
.faq-item:first-child { border-top: 1px solid rgba(29,29,29,0.15); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--dark);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 1.4rem;
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(29,29,29,0.75);
}
.faq-item.open .faq-answer { display: block; animation: faq-reveal 0.22s ease; }
@keyframes faq-reveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ── FAQ three-column grid ── */
.faq-section { padding: 1rem 0 3rem; }
.faq-section__heading {
  font-size: clamp(2rem, 4.7vw, 4.25rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
}
.faq-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}
.faq-col-item__q { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; text-align: center; }
.faq-col-item__a { font-size: 0.95rem; line-height: 1.65; color: rgba(29,29,29,0.75); text-align: center; }

/* ── Gallery grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  padding: 1rem;
  border-radius: 8px;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-weight: 600; font-size: 0.9rem; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(29,29,29,0.2);
  border-radius: 10px;
  background: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.97rem;
  color: var(--dark);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-info-item strong { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.6; }
.contact-info-item a { font-size: 1.05rem; font-weight: 600; }
.contact-info-item a:hover { color: var(--orange); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 3rem 4vw 1.5rem;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.footer__logo { height: 38px; width: auto; filter: brightness(0) invert(1); margin-bottom: 0.25rem; }
.footer__tagline { font-size: 0.92rem; line-height: 1.6; opacity: 0.75; margin: 0; max-width: 280px; color: var(--cream); }
.footer__address { font-size: 0.85rem; line-height: 1.5; opacity: 0.6; margin: 0; color: var(--cream); }

.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  opacity: 0.5;
  margin: 0 0 0.4rem;
}
.footer__col a {
  font-size: 0.92rem;
  opacity: 0.78;
  transition: opacity 0.15s;
  text-decoration: none;
  color: var(--cream);
}
.footer__col a:hover { opacity: 1; }

.footer__social { display: flex; gap: 0.7rem; margin-top: 0.2rem; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(244,241,224,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.footer__social a:hover { border-color: var(--cream); background: rgba(244,241,224,0.1); }
.footer__social svg { width: 17px; height: 17px; fill: var(--cream); }

.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.55rem 0.9rem;
  background: var(--green);
  color: white !important;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 1 !important;
  white-space: nowrap;
  align-self: flex-start;
}
.footer__whatsapp:hover { filter: brightness(0.88); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(244,241,224,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Intro section (Sobre, etc.) ── */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.mission-card {
  padding: 2rem;
  background: rgba(29,29,29,0.05);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mission-card h3 { font-size: 1.05rem; }

.sobre-img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 5rem;
}
.sobre-img-strip img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── Location section ── */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.location-info { display: flex; flex-direction: column; gap: 1.2rem; }
.location-info p { font-size: 1rem; line-height: 1.75; }

/* ── Pasadía / Camping includes ── */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1rem 1.2rem;
  background: rgba(29,29,29,0.04);
  border-radius: 12px;
  font-size: 0.97rem;
}
.include-item::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Info banner ── */
.info-banner {
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}
.info-banner h3 { font-size: 1.5rem; }
.info-banner p { opacity: 0.75; color: inherit; }

/* ── Language switching ── */
[data-lang="en"] { display: none; }
body.lang-en [data-lang="es"] { display: none; }
body.lang-en [data-lang="en"] { display: revert; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
  .location-yellow__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 58px; }

  .nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0.9rem;
  }
  .nav__logo { grid-column: unset; justify-self: unset; flex-shrink: 0; gap: 0.3rem; }
  .nav__logo img { height: 20px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__social { display: none; }
  .nav__actions .btn--primary { display: none; }
  .nav__actions { gap: 0.5rem; }
  .lang-btn { padding: 0.2rem 0.4rem; gap: 0; font-size: 0; }
  .lang-btn img { width: 16px; }
  .lang-btn__label { display: none; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-two-col { grid-template-columns: 1fr; }
  .pasadia-two-col { grid-template-columns: 1fr; }
  .pasadia-two-col__right { order: -1; }
  .pasadia-gallery { grid-template-columns: repeat(2, 1fr); }
  .facilities-two-col { grid-template-columns: 1fr; }
  .faq-col-grid { grid-template-columns: 1fr; }
  .room { grid-template-columns: 1fr; }
  .room__gallery { grid-template-columns: 1fr; }
  .room__gallery-main { grid-column: 1; }
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }
  .facility-card { grid-template-columns: 1fr; }
  .facility-card:nth-child(even) .facility-card__img { order: 0; }
  .activity-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .intro-section { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .sobre-img-strip { grid-template-columns: 1fr; }
  .location-section { grid-template-columns: 1fr; }
  .location-yellow__inner { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 clamp(0.75rem, 4vw, 5rem); gap: 3px; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__social { justify-content: flex-start; }
  .section-nav__inner { justify-content: flex-start; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .info-banner { flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; }
  .info-banner .btn { display: block; width: 100%; text-align: center; box-sizing: border-box; }
  .hero--image .hero__logo-img { width: 80vw; }
}

/* ── Instagram feed ── */
.instagram-section {
  padding: 1.5rem 0 2rem;
}
.instagram-section__heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.4rem;
}
.instagram-section__sub {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.55;
  margin-bottom: 2rem;
}
.instagram-section__sub a {
  color: var(--orange);
  text-decoration: underline;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.instagram-item:hover img { transform: scale(1.06); }
.instagram-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.instagram-item:hover .instagram-item__overlay {
  background: rgba(0,0,0,0.35);
}
.instagram-item__icon {
  opacity: 0;
  transition: opacity 0.25s;
  width: 32px;
  height: 32px;
  fill: #fff;
}
.instagram-item:hover .instagram-item__icon { opacity: 1; }

.instagram-load-more {
  display: flex;
  justify-content: center;
  padding: 2rem 0 3rem;
}

.instagram-skeleton {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.instagram-skeleton__cell {
  aspect-ratio: 1/1;
  background: rgba(29,29,29,0.07);
  animation: ig-pulse 1.4s ease-in-out infinite;
}
.instagram-skeleton__cell:nth-child(2n)   { animation-delay: 0.2s; }
.instagram-skeleton__cell:nth-child(3n)   { animation-delay: 0.4s; }
.instagram-skeleton__cell:nth-child(4n)   { animation-delay: 0.6s; }
@keyframes ig-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@media (max-width: 1024px) {
  .instagram-grid,
  .instagram-skeleton { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .instagram-grid,
  .instagram-skeleton { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .instagram-grid,
  .instagram-skeleton { grid-template-columns: repeat(2, 1fr); }
}

/* ── Skip-to-content link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1.2rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  transition: top 0.1s;
}
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ── Nomad page ── */
.nomad-stats {
  background: var(--dark);
  padding: 1.25rem 0;
}
.nomad-stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.nomad-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
  text-align: center;
}
.nomad-stat__num {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.nomad-stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,241,224,0.65);
  margin-top: 0.2rem;
}
.nomad-stat__divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(244,241,224,0.15);
}
.nomad-package {
  background: var(--dark);
  padding: 5rem 0;
}
.nomad-package__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.nomad-package__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.nomad-package__desc {
  color: rgba(244,241,224,0.72);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.nomad-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.nomad-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(244,241,224,0.85);
  font-size: 0.95rem;
  line-height: 1.4;
}
.nomad-includes li svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  flex-shrink: 0;
}
.nomad-package__pricing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nomad-price-card {
  background: rgba(244,241,224,0.06);
  border: 1px solid rgba(244,241,224,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}
.nomad-price-card--featured {
  background: var(--orange);
  border-color: var(--orange);
}
.nomad-price-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.25rem;
}
.nomad-price-card__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,224,0.55);
  margin-bottom: 0.4rem;
}
.nomad-price-card--featured .nomad-price-card__label { color: rgba(255,255,255,0.75); }
.nomad-price-card__price {
  font-size: 0.9rem;
  color: rgba(244,241,224,0.6);
  line-height: 1.4;
}
.nomad-price-card__price strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
}
.nomad-price-card--featured .nomad-price-card__price { color: rgba(255,255,255,0.8); }
.nomad-price-card--featured .nomad-price-card__price strong { color: #fff; }
.nomad-price-card__note {
  font-size: 0.8rem;
  color: rgba(244,241,224,0.45);
  margin-top: 0.5rem;
  line-height: 1.4;
}
.nomad-price-card--featured .nomad-price-card__note { color: rgba(255,255,255,0.65); }
.nomad-price-card__disclaimer {
  font-size: 0.78rem;
  color: rgba(244,241,224,0.4);
  text-align: center;
  line-height: 1.5;
}
.nomad-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.nomad-feature {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.nomad-feature__icon {
  width: 44px;
  height: 44px;
  background: rgba(235,80,39,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.nomad-feature__icon svg { width: 22px; height: 22px; }
.nomad-feature h3 { font-size: 1rem; margin: 0; }
.nomad-feature p { font-size: 0.9rem; line-height: 1.65; color: rgba(29,29,29,0.7); margin: 0; }
.nomad-day {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}
.nomad-day__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.nomad-day__time {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3.5rem;
}
.nomad-day__item h3 { color: var(--cream); font-size: 1rem; margin: 0 0 0.3rem; }
.nomad-day__item p { color: rgba(244,241,224,0.62); font-size: 0.88rem; line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
  .nomad-package__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .nomad-package { padding-block-start: 2.5rem; }
  .nomad-features { grid-template-columns: repeat(2, 1fr); }
  .nomad-day { grid-template-columns: 1fr; }
  .nomad-stat { padding: 0.5rem 1.25rem; }
  .nomad-stat__divider { height: 1.5rem; }
}
@media (max-width: 480px) {
  .nomad-features { grid-template-columns: 1fr; }
  .nomad-stats__inner { gap: 0.5rem; }
  .nomad-stat__divider { display: none; }
}

/* ── Café page ── */
.cafe-hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: -0.25rem;
}
.cafe-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.cafe-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cafe-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--dark);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}
.cafe-process {
  background: var(--dark);
  padding: 5rem 0;
}
.cafe-process__title {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.cafe-process__subtitle {
  color: rgba(244,241,224,0.65);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 540px;
}
.cafe-process__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.cafe-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.cafe-step__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cafe-step h3 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.cafe-step p {
  color: rgba(244,241,224,0.65);
  font-size: 0.9rem;
  line-height: 1.65;
}
.cafe-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card__img-wrap img {
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img-wrap img {
  transform: scale(1.04);
}
.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.product-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.product-card__body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(29,29,29,0.7);
  flex: 1;
  margin-bottom: 1rem;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.cafe-shipping {
  text-align: center;
  padding: 1.25rem;
  background: rgba(29,29,29,0.05);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: rgba(29,29,29,0.7);
}

/* ── Homepage café widget ── */
.cafe-widget {
  background: var(--dark);
  padding: 3.5rem 0;
}
.cafe-widget__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cafe-widget__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.cafe-widget__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cafe-widget__text { display: flex; flex-direction: column; gap: 1rem; }
.cafe-widget__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.cafe-widget__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin: 0;
}
.cafe-widget__desc {
  color: rgba(244,241,224,0.7);
  line-height: 1.75;
  margin: 0;
}

/* Café responsive */
@media (max-width: 768px) {
  .cafe-process__strip { grid-template-columns: 1fr 1fr; }
  .cafe-process__steps { grid-template-columns: repeat(2, 1fr); }
  .cafe-products { grid-template-columns: 1fr; }
  .cafe-widget__inner { grid-template-columns: 1fr; }
  .cafe-widget__img { order: -1; }
}
@media (max-width: 480px) {
  .cafe-process__strip { grid-template-columns: 1fr; }
  .cafe-process__steps { grid-template-columns: 1fr; }
}
