/* ============================================================
   CA LA RULLA · CAFÉ-BAR — Design System
   Palette drawn from the real façade: chalk white wall,
   deep ink-navy sign lettering, terracotta roof tiles.
   ============================================================ */

:root {
  --ink: #22303a;          /* deep navy from the sign, warmed a touch */
  --ink-soft: #4a5760;
  --cream: #f4ecdc;        /* warm chalky wall */
  --paper: #fbf6ec;        /* warm cream paper */
  --white: #fffdf8;
  --terracotta: #c05f38;   /* roof tiles, slightly richer */
  --terracotta-dark: #9e4a28;
  --coffee: #6f4e37;       /* café con leche */
  --amber: #d9932f;        /* soft amber */
  --amber-soft: #f4e3c2;
  --olive: #7c7f52;        /* olive green */
  --olive-soft: #eef0e2;
  --line: rgba(111, 78, 55, 0.16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --shadow: 0 16px 44px -20px rgba(111, 78, 55, 0.35);
  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Warm, golden-hour grade applied to photography */
  --warm-grade: sepia(0.14) saturate(1.12) brightness(1.02) contrast(1.02) hue-rotate(-4deg);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* Warm golden-hour grade across photography */
.hero-media img,
.split .media img,
.gallery-grid img,
.page-hero .bg,
.lightbox img {
  filter: var(--warm-grade);
}

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 580;
  line-height: 1.1;
  margin: 0 0 0.55em;
  letter-spacing: -0.012em;
}

p { margin: 0 0 1em; }

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 0.7rem 1.2rem;
  z-index: 200; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  transition: padding 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.scrolled .bar { padding: 0.65rem 0; }

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 620;
  letter-spacing: 0.02em;
}
.brand .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 0.35rem;
  font-weight: 600;
}

/* Header over hero (light text) */
.site-header.on-dark:not(.scrolled) { color: #fff; }
.site-header.on-dark:not(.scrolled) .brand-sub { color: #f2c397; }

.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a {
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 550;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  padding: 0.4rem 0;
  position: relative;
  transition: opacity 0.25s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--terracotta);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { opacity: 1; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.lang-switch {
  display: flex;
  border: 1px solid currentColor;
  border-radius: 99px;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.lang-switch button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  padding: 0.38rem 0.66rem;
  cursor: pointer;
  min-width: 42px;
}
.lang-switch button[aria-pressed="true"] {
  background: var(--terracotta);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.55rem;
  color: inherit;
}
.nav-toggle .lines {
  display: block;
  width: 26px; height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s;
}
.nav-toggle .lines::before, .nav-toggle .lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px; height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle .lines::before { top: -8px; }
.nav-toggle .lines::after { top: 8px; }
body.nav-open .nav-toggle .lines { background: transparent; }
body.nav-open .nav-toggle .lines::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle .lines::after { top: 0; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 620;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(158, 74, 40, 0.7);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--terracotta-dark), #86391c);
  box-shadow: 0 16px 30px -12px rgba(158, 74, 40, 0.8);
}
.btn-ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn-ghost:hover { background: rgba(244, 227, 194, 0.16); }
.btn-ink { background: var(--coffee); color: #fff; }
.btn-ink:hover { background: #5c3f2c; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 620;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--terracotta-dark);
  border-bottom: 2px solid rgba(194, 96, 60, 0.35);
  padding-bottom: 3px;
  transition: border-color 0.25s;
}
.text-link:hover { border-color: var(--terracotta); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-media img { animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(43, 27, 16, 0.82) 0%, rgba(60, 38, 20, 0.28) 48%, rgba(87, 55, 26, 0.18) 100%);
}
.hero-inner { padding: 9rem 0 5.5rem; max-width: 780px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  font-weight: 640;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.kicker::before {
  content: "";
  width: 34px; height: 1.5px;
  background: var(--terracotta);
}
.hero .kicker { color: #f2c397; }
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  margin-bottom: 1rem;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(43, 27, 16, 0.45);
}
.hero h1 em {
  font-style: italic;
  font-weight: 420;
  color: #f6cfa4;
}
.hero p.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 34em;
  opacity: 0.95;
  margin-bottom: 2rem;
  text-shadow: 0 1px 14px rgba(43, 27, 16, 0.5);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-meta {
  position: absolute;
  right: 2.2rem;
  bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: right;
  opacity: 0.85;
}

/* ---------- Info strip ---------- */
.strip {
  background: var(--ink);
  color: var(--cream);
}
.strip ul {
  list-style: none;
  margin: 0;
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 3rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.strip li { display: flex; align-items: center; gap: 0.8rem; }
.strip li::before { content: "◆"; font-size: 0.5rem; color: var(--amber); }

/* ---------- Sections ---------- */
.section { padding: clamp(4.2rem, 9vw, 7.5rem) 0; }
.section.tint { background: var(--cream); }
.section.dark { background: var(--ink); color: var(--cream); }

.section-head { max-width: 640px; margin-bottom: clamp(2.4rem, 5vw, 3.8rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  text-wrap: balance;
}
/* Thin decorative divider under section headings */
.section-head.center h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, var(--terracotta), var(--amber));
}
.section.dark .section-head.center h2::after {
  background: linear-gradient(90deg, var(--amber), var(--terracotta));
}
.section-head .kicker { color: var(--terracotta-dark); }
.section.dark .kicker { color: #f2c397; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section.dark .section-head p { color: rgba(243, 238, 227, 0.75); }

/* ---------- Intro (split) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split .media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.6;
}
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split .media.media-wide { aspect-ratio: auto; box-shadow: var(--shadow); }
.split .media.media-wide img { height: auto; }
.split .media .badge {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  background: rgba(250, 247, 240, 0.94);
  color: var(--ink);
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 640;
}
.split .media .badge span { color: var(--terracotta-dark); }
.split h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.split .body p { color: var(--ink-soft); }
.split .sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--terracotta-dark);
  margin-top: 1.6rem;
}

/* ---------- Feature cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(194, 96, 60, 0.28);
}
.card .icon {
  width: 54px; height: 54px;
  /* organic "ceramic" shape inspired by Mediterranean pottery */
  border-radius: 58% 42% 48% 52% / 52% 48% 52% 48%;
  background: linear-gradient(135deg, var(--amber-soft), var(--cream));
  color: var(--terracotta-dark);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 1.15rem;
  transition: border-radius 0.5s var(--ease), transform 0.5s var(--ease);
}
.card:hover .icon {
  border-radius: 46% 54% 55% 45% / 46% 52% 48% 54%;
  transform: rotate(-4deg) scale(1.05);
}
.card h3 { font-size: 1.22rem; margin-bottom: 0.45rem; }
.card p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

/* ---------- Menu preview / carta ---------- */
.menu-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.4rem);
}
.menu-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--terracotta);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.menu-group:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.menu-group > h3 {
  font-size: 1.45rem;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.1rem;
}
.menu-group > h3 .em { color: var(--terracotta-dark); font-size: 1.1rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.72rem 0;
}
.menu-item + .menu-item { border-top: 1px dashed var(--line); }
.menu-item .thumb {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 12px;
  flex: 0 0 56px;
  box-shadow: 0 4px 12px -6px rgba(111, 78, 55, 0.4);
}
.menu-item .name { font-weight: 620; font-size: 0.99rem; }
.menu-item .desc { font-size: 0.86rem; color: var(--ink-soft); margin: 0.15rem 0 0; }
.menu-item .price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--terracotta-dark);
  white-space: nowrap;
}
.menu-note {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.gallery-grid a {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  box-shadow: 0 6px 22px -14px rgba(111, 78, 55, 0.4);
  transition: box-shadow 0.4s var(--ease);
}
.gallery-grid a:hover { box-shadow: var(--shadow); }
.gallery-grid a.tall { grid-row: span 2; }
.gallery-grid a.wide { grid-column: span 2; }
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-grid a:hover img { transform: scale(1.05); }
.gallery-grid a::after {
  content: attr(data-caption);
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.1rem 0.9rem;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  background: linear-gradient(to top, rgba(48, 30, 16, 0.78), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-grid a:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(18, 28, 36, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox .lb-caption {
  position: absolute;
  bottom: 2rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.25s;
}
.lightbox button:hover { background: rgba(255,255,255,0.22); }
.lightbox .lb-close { top: 1.4rem; right: 1.4rem; }
.lightbox .lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* ---------- Trust / values ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
}
.pillar { text-align: center; padding: 0 0.5rem; }
.pillar .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 560;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.pillar h3 { font-size: 1.25rem; }
.pillar p { color: rgba(243, 238, 227, 0.72); font-size: 0.94rem; margin: 0; }
.trust-cta { text-align: center; margin-top: 3rem; }

/* ---------- Visit / contact band ---------- */
.visit {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.visit-details { display: grid; gap: 1.4rem; }
.v-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.v-item .icon {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  border-radius: 58% 42% 48% 52% / 52% 48% 52% 48%;
  background: linear-gradient(135deg, var(--amber-soft), var(--cream));
  color: var(--terracotta-dark);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.section.dark .v-item .icon { background: rgba(217, 147, 47, 0.14); color: #f2c397; }
.v-item h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin-bottom: 0.25rem;
}
.section.dark .v-item h4 { color: #f2c397; }
.v-item p, .v-item a { margin: 0; font-size: 1.02rem; }
.v-item a { text-decoration: none; }
.v-item a:hover { text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px dashed var(--line); }
.section.dark .hours-table td { border-color: rgba(255,255,255,0.14); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.closed td:last-child { color: var(--terracotta); }
.hours-note { font-size: 0.82rem; opacity: 0.65; margin-top: 0.8rem; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 640;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(194, 96, 60, 0.14);
}
.form-msg {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: #e8f2e4;
  color: #2c5e2a;
  font-size: 0.92rem;
}
.form-msg.show { display: block; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  margin-top: 2rem;
}
.map-embed iframe { display: block; width: 100%; height: 340px; border: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 10.5rem 0 4.5rem;
  background: var(--ink);
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(48, 30, 16, 0.35), transparent 60%);
}
.page-hero .bg {
  position: absolute; inset: 0; z-index: -2;
  object-fit: cover; width: 100%; height: 100%;
  opacity: 0.34;
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 0.4rem; }
.page-hero .kicker { color: #f2c397; }
.page-hero p { max-width: 560px; opacity: 0.85; margin: 0; }

/* ---------- Story blocks (about) ---------- */
.story + .story { margin-top: clamp(3.5rem, 8vw, 6rem); }
.story.flip .media { order: 2; }
.values-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 0.9rem; }
.values-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.values-list li strong { color: var(--ink); }
.values-list li::before {
  content: "✦";
  color: var(--olive);
  line-height: 1.6;
}

/* ---------- Announcement ---------- */
.announcement {
  background: var(--terracotta);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.55rem 1rem;
  position: relative;
  z-index: 101;
}
.announcement strong { font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(rgba(48, 30, 16, 0.78), rgba(35, 24, 14, 0.82)),
    var(--cta-img, none) center / cover no-repeat, var(--coffee);
  color: #fff;
  text-align: center;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-band p { opacity: 0.85; max-width: 460px; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(243, 238, 227, 0.8);
  padding: 4.5rem 0 2rem;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer .brand-name { color: #fff; font-size: 1.6rem; }
.site-footer h4 {
  font-family: var(--font-body);
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #f2c397; }
.social-row { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-row a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.25s, border-color 0.25s;
}
.social-row a:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 1.6rem;
  font-size: 0.8rem;
  opacity: 0.65;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .visit, .contact-grid { grid-template-columns: 1fr; }
  .split .media { aspect-ratio: 16 / 11; }
  .story.flip .media { order: 0; }
  .hero-meta { display: none; }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    font-size: 1.1rem;
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease);
    z-index: 90;
  }
  .main-nav a { font-size: 1.05rem; padding: 0.6rem 1rem; }
  body.nav-open .main-nav { transform: none; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { color: var(--cream); }
  .nav-toggle { display: block; position: relative; z-index: 95; }
  .menu-groups { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .pillars { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { min-height: 88svh; }
  .hero-inner { padding: 8rem 0 4rem; }
  .hero-ctas .btn { width: 100%; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-grid a.wide { grid-column: auto; }
  .gallery-grid a.tall { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .strip ul { gap: 0.5rem 1.6rem; font-size: 0.7rem; }
  .lang-switch { font-size: 0.68rem; }
}
