/* ============================================================
   SBR ENTERPRISES LIMITED — Café & Kitchen, Finsbury Park
   Design System: Warm editorial / earthy / oversized serif type
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --espresso: #241811;
  --coffee: #3a2a1e;
  --cream: #f8f2e7;
  --paper: #fdfaf3;
  --terra: #c05a2e;
  --terra-dark: #9c4523;
  --terra-soft: #e8c3ad;
  --sage: #7c8a6a;
  --sage-deep: #57664a;
  --mustard: #d9a441;
  --ink: #2a2018;
  --muted: #6f6156;
  --line: rgba(42, 32, 24, 0.14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --max: 1200px;
  --radius: 18px;
  --shadow: 0 18px 50px -18px rgba(36, 24, 17, 0.28);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle grain texture overlay across the whole site */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

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

a { color: var(--terra-dark); text-decoration: none; }
a:hover { color: var(--terra); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--espresso);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 1.1rem; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1.1rem; color: var(--ink); }
ul, ol { margin: 0 0 1.1rem 1.3rem; }
li { margin-bottom: 0.45rem; }

::selection { background: var(--terra); color: var(--paper); }

.container {
  width: min(var(--max), 100% - 3rem);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section--tight { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section--dark { background: var(--espresso); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--dark p, .section--dark li { color: rgba(248, 242, 231, 0.82); }
.section--sage { background: #eef0e6; }
.section--paper { background: var(--paper); }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-dark);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--terra);
}
.section--dark .eyebrow { color: var(--mustard); }

.lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--coffee);
  max-width: 62ch;
}
.section--dark .lead { color: rgba(248, 242, 231, 0.85); }

.italic-accent { font-style: italic; font-weight: 500; color: var(--terra); }
.section--dark .italic-accent { color: var(--mustard); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn--primary {
  background: var(--terra);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--terra-dark);
  color: var(--paper);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -12px rgba(192, 90, 46, 0.55);
}
.btn--ghost {
  border-color: var(--espresso);
  color: var(--espresso);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-3px);
}
.btn--light {
  background: var(--cream);
  color: var(--espresso);
}
.btn--light:hover { background: var(--mustard); color: var(--espresso); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 242, 231, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(36, 24, 17, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--espresso);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra-dark);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--terra-dark); }
.nav-cta { margin-left: 0.6rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--espresso);
  margin: 6px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
/* Real photography — same frame language as the old placeholders */
.img-real {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 300px;
}
.img-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.img-frame .img-real { box-shadow: none; border-radius: 0; }
.img-real--tall { min-height: 460px; max-height: 640px; }
.img-real--short { min-height: 220px; max-height: 320px; }
.img-real--mid { min-height: 320px; max-height: 480px; }
.hero .img-real { min-height: clamp(380px, 44vw, 540px); max-height: 560px; }
.gallery-grid .img-real { min-height: 260px; height: 100%; box-shadow: none; }
.gallery-grid .img-frame { box-shadow: none; }
@media (max-width: 560px) {
  .img-real--tall, .hero .img-real { min-height: 300px; }
}

.hero {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -12%;
  width: 60vw;
  height: 60vw;
  max-width: 780px;
  max-height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.22), transparent 65%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
}
.hero h1 { margin-bottom: 1.4rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  margin: 1.8rem 0 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__meta svg { color: var(--terra); flex: none; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Image placeholders (descriptive, bracketed) ---------- */
.img-ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  min-height: 300px;
  background:
    linear-gradient(160deg, rgba(36, 24, 17, 0.15), rgba(36, 24, 17, 0.72)),
    linear-gradient(135deg, #c05a2e 0%, #8a4b2d 45%, #3a2a1e 100%);
  box-shadow: var(--shadow);
}
.img-ph--sage {
  background:
    linear-gradient(160deg, rgba(36, 24, 17, 0.12), rgba(36, 24, 17, 0.7)),
    linear-gradient(135deg, #9aa888 0%, #57664a 55%, #2e3a26 100%);
}
.img-ph--mustard {
  background:
    linear-gradient(160deg, rgba(36, 24, 17, 0.1), rgba(36, 24, 17, 0.7)),
    linear-gradient(135deg, #e3b45f 0%, #b97a2e 55%, #5c3a14 100%);
}
.img-ph--cream {
  background:
    linear-gradient(160deg, rgba(36, 24, 17, 0.08), rgba(36, 24, 17, 0.66)),
    linear-gradient(135deg, #e8d9bd 0%, #b98d5f 55%, #5f4126 100%);
}
.img-ph__label {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: rgba(253, 250, 243, 0.92);
  border-left: 3px solid var(--mustard);
  padding-left: 0.8rem;
}
.img-ph--tall { min-height: 460px; }
.img-ph--short { min-height: 220px; }
.img-ph--round { border-radius: 50% 50% var(--radius) var(--radius); }

.hero .img-ph { min-height: clamp(380px, 44vw, 540px); }

/* Duotone hover energy on placeholders */
.img-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 15%, rgba(217, 164, 65, 0.35), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.75;
  transition: opacity 0.5s ease;
}
.img-ph:hover::before { opacity: 1; }

/* ---------- Marquee ticker ---------- */
.marquee {
  background: var(--espresso);
  color: var(--cream);
  overflow: hidden;
  padding: 0.95rem 0;
  border-top: 3px solid var(--terra);
  border-bottom: 3px solid var(--terra);
  transform: rotate(-0.6deg) scale(1.01);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee__track span::after { content: "✳"; color: var(--mustard); font-style: normal; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Cards / grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3.5vw, 3rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.3rem, 3vw, 2.2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.align-center { align-items: center; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--terra), var(--mustard));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card p:last-child { margin-bottom: 0; }

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(192, 90, 46, 0.12);
  color: var(--terra-dark);
  margin-bottom: 1.2rem;
}
.card--dark {
  background: rgba(253, 250, 243, 0.06);
  border-color: rgba(248, 242, 231, 0.16);
}
.card--dark h3, .card--dark h4 { color: var(--cream); }

/* ---------- Stat counters ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--mustard);
  line-height: 1;
  display: block;
}
.stat__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 242, 231, 0.72);
  margin-top: 0.6rem;
  display: block;
}
.stats--light .stat__number { color: var(--terra); }
.stats--light .stat__label { color: var(--muted); }

/* ---------- Menu list ---------- */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item__name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--espresso); }
.menu-item__desc { font-size: 0.94rem; color: var(--muted); margin: 0.25rem 0 0; max-width: 56ch; }
.menu-item__price { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--terra-dark); white-space: nowrap; }
.menu-item__tags { display: inline-flex; gap: 0.4rem; margin-left: 0.5rem; }
.tag {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(124, 138, 106, 0.18);
  color: var(--sage-deep);
  vertical-align: middle;
}
.tag--terra { background: rgba(192, 90, 46, 0.14); color: var(--terra-dark); }

/* ---------- Tabs ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.4rem; }
.tab-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s ease;
}
.tab-btn:hover { border-color: var(--terra); color: var(--terra-dark); }
.tab-btn.is-active { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeUp 0.5s ease both; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0.4rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--espresso);
  transition: color 0.25s ease;
}
.accordion__btn:hover { color: var(--terra-dark); }
.accordion__btn .acc-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.accordion__item.is-open .acc-icon {
  transform: rotate(45deg);
  background: var(--terra);
  border-color: var(--terra);
  color: var(--paper);
}
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.accordion__panel-inner { padding: 0 0.4rem 1.6rem; max-width: 68ch; }
.accordion__panel-inner p:last-child { margin-bottom: 0; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--terra), var(--mustard));
}
.timeline__item { position: relative; padding-bottom: 2.2rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--terra);
}
.timeline__year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--terra-dark);
  display: block;
  margin-bottom: 0.25rem;
}

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse > .split__media { order: 2; }

/* ---------- Big statement ---------- */
.statement {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.3;
  font-weight: 500;
  max-width: 22ch;
}
.statement .italic-accent { font-weight: 500; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-grid .img-ph { min-height: 260px; box-shadow: none; }
.gallery-grid > *:nth-child(4n + 1) { grid-row: span 2; min-height: 100%; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail svg { flex: none; color: var(--terra-dark); margin-top: 0.25rem; }
.contact-detail strong { display: block; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.contact-detail p { margin: 0; }

.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { margin-bottom: 1.15rem; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 0.45rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(192, 90, 46, 0.14);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }
.form-success {
  display: none;
  background: rgba(124, 138, 106, 0.16);
  border: 1.5px solid var(--sage);
  color: var(--sage-deep);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-weight: 600;
  margin-top: 1.2rem;
}
.form-success.is-visible { display: block; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 420px; border: 0; filter: sepia(0.25) saturate(0.85); }

/* ---------- Hours table ---------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 1rem;
}
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--coffee); }

/* ---------- Legal pages ---------- */
.legal h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.6rem; }
.legal h3 { font-size: 1.2rem; margin-top: 1.8rem; }
.legal p, .legal li { max-width: 74ch; }
.legal address { font-style: normal; margin-bottom: 1.1rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.6rem; font-size: 0.95rem; }
.legal th, .legal td { text-align: left; padding: 0.75rem 0.9rem; border: 1px solid var(--line); vertical-align: top; }
.legal th { background: var(--paper); font-family: var(--font-display); font-size: 1rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--terra);
  color: var(--paper);
  border-radius: calc(var(--radius) * 1.4);
  padding: clamp(2.6rem, 6vw, 4.5rem);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -10%;
  width: 50%;
  height: 220%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.4), transparent 65%);
}
.cta-band h2 { color: var(--paper); }
.cta-band p { color: rgba(253, 250, 243, 0.88); max-width: 56ch; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: rgba(248, 242, 231, 0.78);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(248, 242, 231, 0.14);
}
.site-footer h4 {
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(248, 242, 231, 0.78); font-size: 0.95rem; transition: color 0.25s ease; }
.site-footer a:hover { color: var(--mustard); }
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.2rem;
}
.footer-brand__sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mustard);
  display: block;
  margin-bottom: 1.2rem;
}
.site-footer address { font-style: normal; font-size: 0.95rem; line-height: 1.8; }
.footer-legal {
  padding-top: 1.8rem;
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(248, 242, 231, 0.55);
}
.footer-legal p { color: rgba(248, 242, 231, 0.55); font-size: 0.82rem; margin-bottom: 0.35rem; }
.footer-legal a { color: rgba(248, 242, 231, 0.7); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1500;
  max-width: 720px;
  margin-inline: auto;
  background: var(--espresso);
  color: rgba(248, 242, 231, 0.88);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  display: none;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner.is-visible { display: flex; animation: fadeUp 0.5s ease both; }
.cookie-banner p { color: rgba(248, 242, 231, 0.85); font-size: 0.9rem; margin: 0; flex: 1 1 320px; }
.cookie-banner a { color: var(--mustard); text-decoration: underline; }
.cookie-banner .btn { padding: 0.65rem 1.4rem; font-size: 0.85rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-44px); }
.reveal--right { transform: translateX(44px); }
.reveal--left.is-visible, .reveal--right.is-visible { transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--espresso);
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--terra); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -8%;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 90, 46, 0.14), transparent 65%);
  pointer-events: none;
}
.page-hero .lead { margin-bottom: 0; }
.breadcrumb {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--terra-dark); }

/* ---------- Notice pill ---------- */
.notice-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(124, 138, 106, 0.16);
  border: 1.5px solid rgba(124, 138, 106, 0.5);
  color: var(--sage-deep);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  margin-bottom: 1.4rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 860px) {
  .hero__grid, .split, .contact-grid, .grid-2 { grid-template-columns: 1fr; }
  .split--reverse > .split__media { order: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 1050;
  }
  .main-nav.is-open { transform: none; }
  .main-nav ul { flex-direction: column; gap: 1.4rem; text-align: center; }
  .main-nav a { font-size: 1.4rem; font-family: var(--font-display); }
  .nav-cta { margin: 0.6rem 0 0; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero .img-ph { min-height: 300px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}
