/* ============================================================
   BARRIQUE LYTHAM — Complete Stylesheet
   ============================================================ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --olive:       #7d9472;
  --olive-mid:   #6a7f60;
  --olive-deep:  #556652;
  --olive-pale:  #d6e2d0;
  --olive-faint: #eef3eb;
  --gold:        #c9a040;
  --bg:          #faf9f5;
  --bg-cream:    #f3efe4;
  --bg-dark:     #1c1b18;
  --text:        #1c1b18;
  --text-mid:    #4a4845;
  --text-soft:   #7a7774;
  --text-faint:  #b0aca8;
  --border:      #dddad3;
  --border-mid:  #c4c0b7;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Montserrat', system-ui, sans-serif;
  --ease:        cubic-bezier(0.33, 1, 0.68, 1);
}

/* ── Display headings ────────────────────────────────────── */
.display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.1;
  color: var(--text);
}
.display em { font-style: italic; color: var(--olive-mid); font-weight: 300; }

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--olive); border-radius: 2px; }

/* ── Layout ──────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px)  { .wrap { padding: 0 36px; } }
@media (min-width: 1024px) { .wrap { padding: 0 60px; } }

/* ── Sections ────────────────────────────────────────────── */
.sec { padding: 64px 0; }
@media (min-width: 768px)  { .sec { padding: 88px 0; } }
@media (min-width: 1024px) { .sec { padding: 112px 0; } }

.sec--bg    { background: var(--bg); }
.sec--cream { background: var(--bg-cream); }
.sec--white { background: var(--bg-white, #fff); }

/* ── Typography helpers ──────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive-mid);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--olive);
  flex-shrink: 0;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--center::after  { content: ''; display: block; width: 20px; height: 1.5px; background: var(--olive); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: all .22s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn i { font-size: .78em; }

.btn-olive { background: var(--olive); color: #fff; box-shadow: 0 4px 14px rgba(125,148,114,.28); }
.btn-olive:hover { background: var(--olive-mid); transform: translateY(-2px); box-shadow: 0 7px 20px rgba(125,148,114,.35); }

.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 4px 14px rgba(201,160,64,.28); }
.btn-gold:hover { background: #b8902e; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--text-mid); border: 1.5px solid var(--border-mid); }
.btn-outline:hover { border-color: var(--olive); color: var(--olive-deep); background: var(--olive-faint); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ── Button row ──────────────────────────────────────────── */
.btn-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
@media (min-width: 480px) {
  .btn-row { flex-direction: row; align-items: center; flex-wrap: wrap; }
}
@media (max-width: 479px) {
  .btn { width: 100%; }
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  background: rgba(250,249,245,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.06);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
}
@media (min-width: 640px)  { .nav__inner { padding: 0 36px; } }
@media (min-width: 1024px) { .nav__inner { padding: 0 60px; } }

.nav__logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .28em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  flex-shrink: 0;
  transition: color .2s;
  line-height: 1;
}
.nav.scrolled .nav__logo { color: var(--text); text-shadow: none; }

/* desktop links — hidden on mobile */
.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 860px) { .nav__links { display: flex; } }

.nav__link {
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}
.nav.scrolled .nav__link { color: var(--text-mid); text-shadow: none; }
.nav__link::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--olive);
  transition: width .22s var(--ease);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link:hover { color: #fff; }
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active { color: var(--olive-deep); }

/* book button — desktop only */
.nav__cta {
  display: none;
  align-items: center;
  gap: 7px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--olive);
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
  box-shadow: 0 3px 12px rgba(125,148,114,.3);
}
@media (min-width: 860px) { .nav__cta { display: inline-flex; } }
.nav__cta:hover { background: var(--olive-mid); transform: translateY(-1px); }

/* hamburger — mobile only */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
  z-index: 501;
}
@media (min-width: 860px) { .nav__burger { display: none; } }

.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,.9);
  border-radius: 1px;
  transition: transform .22s var(--ease), opacity .22s;
}
.nav.scrolled .nav__burger span { background: var(--text); }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translateY(4.5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-4.5px); }

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mmenu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 48px;
  gap: 0;
  transform: translateX(100%);
  transition: transform .48s var(--ease);
  visibility: hidden;
}
.mmenu.open {
  transform: translateX(0);
  visibility: visible;
}

.mmenu__link {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: .06em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: color .2s;
}
.mmenu__link:hover { color: var(--olive-deep); }

.mmenu__cta {
  margin-top: 28px;
}

.mmenu__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border: 1.5px solid var(--border-mid);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 1rem;
  transition: border-color .2s, color .2s;
}
.mmenu__close:hover { border-color: var(--olive); color: var(--olive-deep); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 24s ease-in-out infinite alternate;
  filter: brightness(.5) saturate(.85);
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10) translate(-1%, .8%); }
}
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,8,.3) 0%, rgba(10,10,8,.1) 45%, rgba(10,10,8,.55) 100%);
  z-index: 1;
}
.hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--olive-pale);
  margin-bottom: 20px;
}
.hero__tag::before, .hero__tag::after {
  content: ''; display: block;
  width: 24px; height: 1px;
  background: var(--olive-pale);
}

.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 10vw, 9rem);
  font-weight: 300;
  letter-spacing: .14em;
  line-height: .95;
  color: #fff;
  margin-bottom: 18px;
}
@media (min-width: 640px) {
  .hero__h1 { font-size: clamp(4rem, 12vw, 9rem); letter-spacing: .26em; }
}
.hero__rule {
  width: 44px; height: 1px;
  background: var(--olive-pale);
  margin: 0 auto 18px;
}
.hero__sub {
  font-size: clamp(.58rem, 1.8vw, .72rem);
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}
.hero__loc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
}
.hero__loc i { color: var(--olive-pale); font-size: .72rem; }

/* scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--olive-pale), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.5) translateY(-4px); }
  50%       { opacity: .8; transform: scaleY(1) translateY(0); }
}
.hero__scroll-txt {
  font-size: .54rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.phero {
  position: relative;
  height: 42vh;
  min-height: 280px;
  max-height: 460px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 52px;
  overflow: hidden;
}
@media (min-width: 768px) { .phero { min-height: 340px; padding-bottom: 68px; } }

.phero__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.4) saturate(.75);
}
.phero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,8,.1), rgba(10,10,8,.72));
}
.phero__body {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 640px)  { .phero__body { padding: 0 36px; } }
@media (min-width: 1024px) { .phero__body { padding: 0 60px; } }

.phero__tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive-pale);
  margin-bottom: 12px;
}
.phero__tag::before { content: ''; display: block; width: 16px; height: 1px; background: var(--olive-pale); }
.phero__h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 8vw, 5rem);
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1;
  color: #fff;
}

/* ── TWO COLUMN ──────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 60px; }
  .two-col--flip > :first-child { order: 2; }
  .two-col--flip > :last-child  { order: 1; }
}
@media (min-width: 1024px) { .two-col { gap: 80px; } }

/* ── IMAGE FRAME ─────────────────────────────────────────── */
.img-frame { position: relative; }
.img-frame img {
  width: 100%;
  border-radius: 3px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.img-frame::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 56%; height: 56%;
  border: 2px solid var(--olive-pale);
  border-radius: 3px;
  z-index: -1;
  transition: all .4s var(--ease);
}
.img-frame:hover::after { bottom: -6px; right: -6px; border-color: var(--olive); }
@media (max-width: 767px) { .img-frame::after { display: none; } }

/* ── ABOUT TEXT ──────────────────────────────────────────── */
.about-lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 18px;
}
.about-body {
  font-size: .9rem;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.about-sig {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.about-sig span {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--olive-mid);
}

/* ── STATS ROW ───────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--olive);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(125,148,114,.25);
  margin: 0 20px;
}
@media (min-width: 640px) { .stats { margin: 0 36px; } }
@media (min-width: 1024px) { .stats { margin: 0 60px; } }
@media (max-width: 520px) { .stats { grid-template-columns: 1fr; } }

.stat {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.14);
  transition: background .2s;
}
.stat:last-child { border-right: none; }
@media (max-width: 520px) {
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.14); }
  .stat:last-child { border-bottom: none; }
}
.stat:hover { background: var(--olive-mid); }
.stat__n {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat__l {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
}

/* ── FEATURE CARDS ───────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px)  { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }

.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.feat-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); transform: translateY(-3px); border-color: var(--border-mid); }
.feat-card__ico {
  width: 46px; height: 46px;
  background: var(--olive-faint);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--olive);
  margin-bottom: 18px;
  transition: background .2s;
}
.feat-card:hover .feat-card__ico { background: var(--olive-pale); }
.feat-card__title { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.feat-card__txt   { font-size: .84rem; line-height: 1.82; color: var(--text-soft); }

/* ── TEASE CARDS (events) ────────────────────────────────── */
.tease-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .tease-grid { grid-template-columns: repeat(2, 1fr); } }

.tease {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.tease::before {
  content: ''; position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--olive);
  transition: height .4s var(--ease);
}
.tease:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); transform: translateY(-3px); border-color: var(--border-mid); }
.tease:hover::before { height: 100%; }
.tease__ico   { font-size: 1.35rem; color: var(--olive); margin-bottom: 14px; display: block; }
.tease__title { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.tease__txt   { font-size: .83rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 16px; }
.more-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .63rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--olive-deep);
  transition: gap .2s;
}
.more-link:hover { gap: 10px; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--olive);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-band { padding: 80px 36px; } }
.cta-band::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.cta-band__tag {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: .6rem; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(255,255,255,.72);
  margin-bottom: 12px;
}
.cta-band__tag::before, .cta-band__tag::after {
  content: ''; display: block; width: 20px; height: 1px;
  background: rgba(255,255,255,.5);
}
.cta-band__title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vw, 3rem);
  font-weight: 300; color: #fff;
  letter-spacing: .03em; margin-bottom: 8px;
}
.cta-band__sub {
  font-size: .8rem; color: rgba(255,255,255,.65);
  letter-spacing: .06em; margin-bottom: 30px;
}

/* ── EVENT BLOCKS (what's on) ────────────────────────────── */
.ev-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.ev-block:last-child { border-bottom: none; }

.ev-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400; color: var(--text);
  margin-bottom: 14px; line-height: 1.18;
}
.ev-body {
  font-size: .88rem; line-height: 1.95;
  color: var(--text-mid); margin-bottom: 14px;
}
.ev-details { display: flex; flex-direction: column; gap: 8px; margin: 16px 0 22px; }
.ev-detail {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 15px;
  background: var(--olive-faint);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: .82rem; color: var(--text-mid);
}
.ev-detail i { color: var(--olive); width: 14px; flex-shrink: 0; }

.ev-visual {
  background: var(--olive-faint);
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  padding: 36px 28px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 13px;
  min-height: 240px;
}
.ev-visual__ico   { font-size: 2.4rem; color: var(--olive); }
.ev-visual__title { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: var(--text); line-height: 1.15; }
.ev-visual__sub   { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--olive-mid); border-top: 1px solid var(--border-mid); padding-top: 11px; width: 100%; }
.ev-visual__rows  { width: 100%; display: flex; flex-direction: column; gap: 7px; }
.ev-visual__row   { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .8rem; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--border); }
.ev-visual__row:last-child { border-bottom: none; }
.ev-visual__row i { color: var(--olive); }

/* ── BEURRE CARD ─────────────────────────────────────────── */
.beurre {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
@media (min-width: 768px) { .beurre { grid-template-columns: 1fr 1.4fr; } }

.beurre__vis {
  background: linear-gradient(145deg, #fdf0d8 0%, #f5e0b8 60%, #e8cc98 100%);
  padding: 44px 28px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 13px;
  border-bottom: 1px solid var(--border-mid);
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .beurre__vis { border-bottom: none; border-right: 1px solid var(--border-mid); } }
.beurre__vis::before {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%; background: rgba(255,255,255,.25); pointer-events: none;
}
.beurre__name {
  font-family: var(--serif); font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 300; letter-spacing: .24em; color: #7a500e;
  line-height: 1; text-align: center; position: relative; z-index: 1;
}
.beurre__sub {
  font-family: var(--serif); font-size: clamp(.85rem, 2vw, 1.2rem);
  font-weight: 300; letter-spacing: .5em; color: #9a6820;
  border-top: 1px solid rgba(154,104,32,.28); padding-top: 10px;
  text-align: center; position: relative; z-index: 1;
}
.beurre__pills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; position: relative; z-index: 1; }
.beurre__pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(154,104,32,.22);
  border-radius: 20px;
  font-size: .62rem; font-weight: 700; color: #7a500e;
}
.beurre__pill i { color: var(--gold); font-size: .68rem; }

.beurre__info { padding: 36px 32px; background: #fff; }
@media (max-width: 767px) { .beurre__info { padding: 28px 22px; } }
.beurre__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--olive-faint); border: 1px solid var(--border-mid);
  border-radius: 2px; padding: 6px 13px;
  font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--olive-deep); margin-bottom: 14px;
}
.beurre__badge i { color: var(--gold); }
.beurre__title { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 400; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.beurre__dets  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 14px 0; }
@media (max-width: 400px) { .beurre__dets { grid-template-columns: 1fr; } }
.beurre__det {
  text-align: center; padding: 13px 8px;
  background: var(--olive-faint); border: 1px solid var(--border); border-radius: 3px;
  transition: border-color .2s;
}
.beurre__det:hover { border-color: var(--border-mid); }
.beurre__det i    { display: block; font-size: 1.1rem; color: var(--olive); margin-bottom: 7px; }
.beurre__det span { font-size: .7rem; color: var(--text-mid); line-height: 1.5; display: block; }

.notice {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 15px;
  background: rgba(201,160,64,.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 3px 3px 0;
  font-size: .79rem; color: var(--text-mid);
  line-height: 1.65; font-style: italic;
  margin: 12px 0 18px;
}
.notice i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── AFTERNOON TEA ───────────────────────────────────────── */
.tea {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--border-mid);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
@media (min-width: 768px) { .tea { grid-template-columns: 1fr 1.5fr; } }

.tea__vis {
  background: linear-gradient(145deg, #fef8e8 0%, #faefd2 100%);
  padding: 44px 28px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 15px; text-align: center;
  border-bottom: 1px solid var(--border-mid);
}
@media (min-width: 768px) { .tea__vis { border-bottom: none; border-right: 1px solid var(--border-mid); } }

.tea-ring {
  width: 120px; height: 120px;
  border: 1.5px solid rgba(201,160,64,.38);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: spin 36s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.tea-ring span { font-size: 3rem; animation: spin 36s linear infinite reverse; }
.tea__name     { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; letter-spacing: .18em; color: #7a500e; line-height: 1; }
.tea__name-sub { font-size: .6rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: #9a6820; border-top: 1px solid rgba(154,104,32,.22); padding-top: 9px; width: 100%; }
.tea__pills    { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.tea__pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px;
  background: rgba(255,255,255,.6); border: 1px solid rgba(154,104,32,.2); border-radius: 20px;
  font-size: .6rem; font-weight: 700; color: #7a500e;
}
.tea__pill i { color: var(--gold); }

.tea__info { background: #fff; padding: 36px 32px; }
@media (max-width: 767px) { .tea__info { padding: 26px 20px; } }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin: 14px 0; }
@media (max-width: 380px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  background: var(--olive-faint); border: 1px solid var(--border); border-radius: 3px;
  font-size: .76rem; font-weight: 500; color: var(--text-mid);
  transition: border-color .2s;
}
.menu-item:hover { border-color: var(--border-mid); }
.menu-item i { color: var(--olive); font-size: .78rem; flex-shrink: 0; }

.booking-box { background: var(--olive-faint); border: 1px solid var(--border-mid); border-radius: 3px; padding: 17px 20px; margin: 13px 0; }
.booking-box h5 {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--olive-deep); margin-bottom: 11px;
  display: flex; align-items: center; gap: 7px;
}
.booking-box h5 i { color: var(--olive); }
.booking-row {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .8rem; color: var(--text-mid);
  margin-bottom: 7px; line-height: 1.5;
}
.booking-row:last-child { margin-bottom: 0; }
.booking-row i { color: var(--olive); width: 14px; flex-shrink: 0; margin-top: 2px; }

.dietary { background: var(--olive-faint); border: 1px solid var(--border); border-radius: 3px; padding: 12px 16px; margin: 10px 0 16px; font-size: .76rem; color: var(--text-mid); line-height: 1.75; }
.dietary strong { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; font-size: .76rem; color: var(--olive-deep); }
.dietary strong i { color: var(--olive); }

/* ── OCCASIONS ───────────────────────────────────────────── */
.occasions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin: 16px 0;
}
@media (max-width: 400px) { .occasions { grid-template-columns: repeat(2, 1fr); } }
.occ {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 13px 8px;
  background: var(--bg-cream); border: 1px solid var(--border); border-radius: 3px;
  font-size: .68rem; font-weight: 600; color: var(--text-mid); text-align: center;
  transition: background .2s, border-color .2s;
}
.occ:hover { background: var(--olive-faint); border-color: var(--border-mid); }
.occ i { font-size: 1.15rem; color: var(--olive); }

/* ── MUSIC ROWS ──────────────────────────────────────────── */
.music-rows { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.music-row {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 17px;
  background: var(--olive-faint); border: 1px solid var(--border); border-radius: 3px;
  transition: border-color .2s;
}
.music-row:hover { border-color: var(--border-mid); }
.music-row i { color: var(--olive); font-size: .95rem; width: 16px; flex-shrink: 0; }
.music-row__t { font-size: .84rem; color: var(--text-mid); line-height: 1.45; }
.music-row__t strong { color: var(--text); display: block; margin-bottom: 1px; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px)  { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 340px 260px;
  }
  .g-a { grid-column: 1 / 8; grid-row: 1; }
  .g-b { grid-column: 8 / 13; grid-row: 1 / 3; }
  .g-c { grid-column: 1 / 5; grid-row: 2; }
  .g-d { grid-column: 5 / 8; grid-row: 2; }
  /* On desktop let the grid control height — no aspect-ratio */
  .gi--wide, .gi--tall, .gi--land { aspect-ratio: unset; height: 100%; }
}

.gi {
  position: relative; overflow: hidden; border-radius: 4px;
  cursor: pointer; background: var(--bg-cream);
}
.gi--wide { aspect-ratio: 16/9; }
.gi--tall { aspect-ratio: 3/4; }
.gi--land { aspect-ratio: 4/3; }
@media (max-width: 1023px) { .gi--wide, .gi--tall, .gi--land { aspect-ratio: 4/3; } }

.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .7s var(--ease); filter: brightness(.86) saturate(.82); }
.gi:hover img { transform: scale(1.06); filter: brightness(1) saturate(.95); }
.gi__over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,.72) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
}
.gi:hover .gi__over { opacity: 1; }
.gi__label { font-family: var(--serif); font-size: 1.2rem; color: #fff; font-weight: 400; }
.gi__sub   { font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--olive-pale); margin-top: 2px; }

/* ── CONTACT CARDS ───────────────────────────────────────── */
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.cc {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; background: #fff;
  border: 1px solid var(--border-mid); border-radius: 4px;
  transition: all .2s; box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.cc:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); transform: translateX(3px); border-color: var(--olive); }
.cc__ico {
  width: 40px; height: 40px;
  background: var(--olive-faint); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--olive); flex-shrink: 0;
  transition: background .2s;
}
.cc:hover .cc__ico { background: var(--olive-pale); }
.cc__lbl  { font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--olive-mid); margin-bottom: 4px; }
.cc__val  { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--text); line-height: 1.35; transition: color .2s; }
a.cc__val:hover { color: var(--olive-deep); }
.cc__note { font-size: .7rem; color: var(--text-faint); margin-top: 3px; font-style: italic; }

/* ── HOURS TABLE ─────────────────────────────────────────── */
.hours-table { border: 1px solid var(--border-mid); border-radius: 4px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.hr-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  background: #fff; transition: background .2s; gap: 10px; flex-wrap: wrap;
}
.hr-row:last-child { border-bottom: none; }
.hr-row:hover { background: var(--olive-faint); }
.hr-row__day   { font-size: .84rem; font-weight: 600; color: var(--text-mid); }
.hr-row__badge { font-size: .58rem; font-weight: 700; letter-spacing: .07em; background: var(--olive-faint); color: var(--olive-deep); padding: 2px 8px; border-radius: 2px; }
.hr-row__time  { font-size: .84rem; font-weight: 600; color: var(--olive-deep); }
.hr-row__time.closed { color: var(--text-faint); font-weight: 400; }

/* ── MAP ─────────────────────────────────────────────────── */
.map-wrap { border: 1px solid var(--border-mid); border-radius: 4px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.map-wrap iframe { width: 100%; height: 220px; border: none; display: block; filter: saturate(.7) brightness(.95); }
@media (min-width: 768px) { .map-wrap iframe { height: 280px; } }
.map-wrap__body { padding: 24px 26px; background: #fff; border-top: 1px solid var(--border); }
.map-wrap__addr { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--text); line-height: 1.5; margin-bottom: 13px; }
.map-wrap__rows { display: flex; flex-direction: column; gap: 7px; }
.map-row { display: flex; align-items: flex-start; gap: 9px; font-size: .78rem; color: var(--text-soft); line-height: 1.5; }
.map-row i { color: var(--olive); width: 13px; flex-shrink: 0; margin-top: 2px; }
.map-row a { color: var(--text-soft); transition: color .2s; }
.map-row a:hover { color: var(--olive-deep); }

/* ── SOCIAL ──────────────────────────────────────────────── */
.social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.soc {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border-mid); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft); font-size: .88rem; background: #fff;
  transition: all .2s;
}
.soc:hover { border-color: var(--olive); color: var(--olive-deep); background: var(--olive-faint); transform: translateY(-2px); }
.soc--lt   { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.65); background: transparent; }
.soc--lt:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--bg-dark); padding: 64px 0 36px; }
@media (min-width: 768px) { .footer { padding: 80px 0 40px; } }

.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  padding-bottom: 44px; margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (min-width: 600px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 52px; } }

.footer__brand .logo-txt { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; letter-spacing: .24em; color: #fff; display: block; margin-bottom: 4px; }
.footer__brand .logo-sub { font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--olive); margin-bottom: 12px; display: block; }
.footer__brand p  { font-size: .82rem; color: rgba(255,255,255,.42); line-height: 1.85; max-width: 260px; }

.footer__col h4   { font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--olive-pale); margin-bottom: 14px; }
.footer__col a    { display: block; font-size: .84rem; color: rgba(255,255,255,.46); margin-bottom: 8px; transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: var(--olive-pale); padding-left: 4px; }
.footer__col p    { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.44); margin-bottom: 8px; line-height: 1.6; }
.footer__col p i  { color: var(--olive); width: 13px; flex-shrink: 0; margin-top: 3px; }
.footer__col p a  { display: inline; margin: 0; padding: 0; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: .72rem; color: rgba(255,255,255,.26);
}
.footer__bottom a { color: var(--olive); transition: color .2s; }
.footer__bottom a:hover { color: var(--olive-pale); }

/* ── 404 ─────────────────────────────────────────────────── */
.nf {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 100px 24px 80px; position: relative; overflow: hidden;
}
.nf__bg-num {
  position: absolute; font-family: var(--serif);
  font-size: clamp(10rem, 40vw, 28rem); font-weight: 700; line-height: .85;
  color: var(--olive-faint); pointer-events: none; user-select: none;
  z-index: 0; letter-spacing: -.02em;
}
.nf__body   { position: relative; z-index: 1; max-width: 460px; }
.nf__eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: .63rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--olive-mid); margin-bottom: 16px;
}
.nf__eyebrow::before, .nf__eyebrow::after { content: ''; display: block; width: 20px; height: 1px; background: var(--olive); }
.nf__title { font-family: var(--serif); font-size: clamp(1.9rem, 6vw, 3.6rem); font-weight: 400; color: var(--text); margin-bottom: 13px; }
.nf__title em { font-style: italic; color: var(--olive-mid); }
.nf__txt   { font-size: .9rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 30px; }
.nf__links { display: flex; gap: 20px; justify-content: center; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.nf__link  { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); transition: color .2s; }
.nf__link:hover { color: var(--olive-deep); }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.btt {
  position: fixed; bottom: 22px; right: 22px;
  width: 40px; height: 40px;
  background: var(--olive); color: #fff; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s, background .2s;
  z-index: 400; box-shadow: 0 4px 16px rgba(125,148,114,.3);
}
.btt.show { opacity: 1; visibility: visible; }
.btt:hover { background: var(--olive-mid); transform: translateY(-3px); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── ACCESSIBILITY ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; }
