/* ==========================================================================
   The Overstone Arms — design system
   Colour palette sampled from the official logo (muted teal / ivory).
   ========================================================================== */

:root {
  --teal-primary: #365b5e;
  --teal-deep: #294b4e;
  --teal-mid: #547377;
  --ivory: #f5f3ec;
  --off-white: #ece9df;
  --charcoal: #252a29;
  --accent-warm: #b8a988;

  --teal-primary-rgb: 54, 91, 94;
  --teal-deep-rgb: 41, 75, 78;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-s: 3px;
  --radius-m: 4px;
  --container: 1180px;

  --shadow-card: 0 8px 24px rgba(37, 42, 41, 0.09);
  --shadow-lift: 0 14px 34px rgba(37, 42, 41, 0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--teal-deep);
}
p { margin: 0 0 1em; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container { padding: 0 32px; }
}

section { padding: 64px 0; }
@media (min-width: 900px) { section { padding: 96px 0; } }

.section--ivory { background: var(--ivory); }
.section--off { background: var(--off-white); }
.section--teal { background: var(--teal-primary); color: var(--ivory); }
.section--teal h2, .section--teal h3 { color: var(--ivory); }
.section--deep { background: var(--teal-deep); color: var(--ivory); }
.section--deep h2, .section--deep h3 { color: var(--ivory); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.9em;
  font-weight: 600;
}
.section--teal .eyebrow, .section--deep .eyebrow { color: var(--off-white); opacity: 0.85; }

.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-head p { color: var(--teal-mid); font-size: 1.05rem; }
.section--teal .section-head p, .section--deep .section-head p { color: var(--off-white); opacity: 0.92; }

/* Event panel — a text-led card with a fine double border, echoing the logo's frame */
.event-section { padding-top: 64px; padding-bottom: 64px; }
.event-panel {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 48px;
  text-align: center;
  border: 1px solid var(--teal-primary);
}
.event-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--accent-warm);
  opacity: 0.6;
  pointer-events: none;
}
.event-panel--invert { border-color: var(--ivory); }
.event-panel--invert::before { border-color: rgba(245, 243, 236, 0.5); opacity: 1; }
.event-panel .eyebrow { display: block; margin-bottom: 8px; }
.event-panel h2 { margin-bottom: 4px; }
.event-panel p { color: var(--teal-mid); max-width: 520px; margin: 0 auto 28px; }
.event-panel--invert p { color: var(--off-white); opacity: 0.92; }
.event-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--teal-primary);
  color: var(--teal-primary);
  margin-bottom: 22px;
}
.event-icon svg { width: 24px; height: 24px; }
.event-panel--invert .event-icon { border-color: var(--ivory); color: var(--ivory); }
@media (max-width: 640px) {
  .event-panel { padding: 40px 22px; }
  .event-panel::before { inset: 7px; }
  .event-section { padding-top: 48px; padding-bottom: 48px; }
}

.rule {
  width: 64px;
  height: 2px;
  background: var(--accent-warm);
  border: none;
  margin: 18px auto;
}
.section-head.align-left { margin-left: 0; text-align: left; }
.section-head.align-left .rule { margin-left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-s);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
  min-height: 48px;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--teal-primary);
  color: var(--ivory);
  border-color: var(--teal-primary);
}
.btn--primary:hover { background: var(--teal-deep); border-color: var(--teal-deep); }

.btn--outline {
  background: transparent;
  color: var(--teal-primary);
  border-color: var(--teal-primary);
}
.btn--outline:hover { background: var(--teal-primary); color: var(--ivory); }

.btn--invert {
  background: var(--ivory);
  color: var(--teal-deep);
  border-color: var(--ivory);
}
.btn--invert:hover { background: transparent; color: var(--ivory); border-color: var(--ivory); }

.btn--ghost-on-dark {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245, 243, 236, 0.55);
}
.btn--ghost-on-dark:hover { background: rgba(245, 243, 236, 0.12); border-color: var(--ivory); }

.btn--sm { padding: 10px 20px; font-size: 0.75rem; min-height: 40px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 236, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(41, 75, 78, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}
.brand img { height: 48px; width: 48px; flex-shrink: 0; object-fit: contain; border-radius: 6px; }
@media (min-width: 480px) { .brand img { height: 58px; width: 58px; } }
@media (min-width: 1024px) { .brand img { height: 66px; width: 66px; } }
.brand-text {
  font-family: var(--font-display);
  line-height: 1.05;
  color: var(--teal-deep);
  min-width: 0;
}
.brand-text .name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 400px) { .brand-text .name { font-size: 1.15rem; } }
@media (min-width: 480px) { .brand-text .name { font-size: 1.32rem; } }
.brand-text .tag {
  display: none;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 480px) { .brand-text .tag { display: block; } }

.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .main-nav a {
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--charcoal);
    position: relative;
    padding: 6px 0;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--accent-warm);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
  }
  .main-nav a:hover::after,
  .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .main-nav a[aria-current="page"] { color: var(--teal-deep); }
}

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-actions .call-link {
  display: none;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--teal-deep);
}
@media (min-width: 1024px) { .header-actions .call-link { display: inline-flex; align-items: center; gap: 6px; } }
.header-actions .header-book {
  display: none;
}
@media (min-width: 480px) { .header-actions .header-book { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--teal-primary);
  background: transparent;
  color: var(--teal-deep);
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--teal-deep);
  color: var(--ivory);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(245, 243, 236, 0.18);
}
.mobile-nav-top .brand img { height: 52px; width: 52px; border-radius: 6px; }
.mobile-nav-top .brand-text .name { color: var(--ivory); font-size: 1.1rem; }
.mobile-nav-close {
  width: 44px; height: 44px;
  border-radius: var(--radius-s);
  border: 1.5px solid rgba(245,243,236,0.5);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}
.mobile-nav ul { padding: 18px 20px 8px; }
.mobile-nav li { border-bottom: 1px solid rgba(245, 243, 236, 0.12); }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ivory);
}
.mobile-nav-cta { padding: 20px; margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-cta .btn { width: 100%; font-family: var(--font-body); }
.mobile-nav-cta .btn.btn--invert { color: var(--teal-deep); }
.mobile-nav-cta .btn.btn--ghost-on-dark { color: var(--ivory); }
body.nav-open { overflow: hidden; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  color: var(--ivory);
  display: flex;
  align-items: flex-end;
  min-height: 78svh;
  overflow: hidden;
}
@media (min-width: 900px) { .hero { min-height: 88svh; } }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media .ph-block { height: 100%; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
}
@media (max-width: 640px) {
  .hero-media img { object-position: 72% 42%; }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(41,75,78,0.35) 0%, rgba(41,75,78,0.32) 40%, rgba(30,52,54,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 0 56px;
  max-width: 720px;
}
@media (min-width: 900px) { .hero-content { padding: 0 0 88px; } }
.hero-crest { height: 84px; width: 84px; margin-bottom: 20px; border-radius: 8px; box-shadow: 0 10px 28px rgba(0,0,0,0.28); }
@media (min-width: 640px) { .hero-crest { height: 108px; width: 108px; margin-bottom: 26px; } }
.hero-content .eyebrow { color: var(--off-white); }
.hero-content h1 {
  color: var(--ivory);
  font-size: clamp(2.3rem, 6vw, 3.9rem);
  margin-bottom: 0.3em;
}
.hero-content .lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--off-white);
  max-width: 52ch;
  margin-bottom: 1.8em;
}
.hero .btn-row .btn { min-width: 168px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  color: var(--ivory);
  padding: 120px 0 56px;
  overflow: hidden;
}
.page-hero .ph-block { position: absolute; inset: 0; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(41,75,78,0.55), rgba(41,75,78,0.86));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ivory); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.25em; }
.page-hero p { color: var(--off-white); max-width: 60ch; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.05em; color: var(--off-white); opacity: 0.85; margin-bottom: 16px; }
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- placeholder photography blocks ---------- */
.ph-block {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal-deep) 100%);
  overflow: hidden;
}
.ph-block::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(245,243,236,0.05) 0 2px, transparent 2px 14px);
}
.ph-label {
  position: relative;
  z-index: 1;
  margin: 14px;
  padding: 8px 12px;
  background: rgba(37, 42, 41, 0.55);
  color: var(--off-white);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-s);
  border: 1px dashed rgba(245,243,236,0.5);
  max-width: calc(100% - 28px);
}
.ph-block.ratio-16-9 { aspect-ratio: 16/9; }
.ph-block.ratio-4-3 { aspect-ratio: 4/3; }
.ph-block.ratio-1-1 { aspect-ratio: 1/1; }
.ph-block.ratio-3-4 { aspect-ratio: 3/4; }
.ph-block.ratio-21-9 { aspect-ratio: 21/9; }

/* ---------- real photography (mirrors .ph-block ratio system) ---------- */
.photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--teal-mid);
}
.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo.ratio-16-9 { aspect-ratio: 16/9; }
.photo.ratio-4-3 { aspect-ratio: 4/3; }
.photo.ratio-1-1 { aspect-ratio: 1/1; }
.photo.ratio-3-4 { aspect-ratio: 3/4; }
.photo.ratio-21-9 { aspect-ratio: 21/9; }
/* full-bleed variant for section backgrounds (page-hero / final-cta) */
.photo.fill { position: absolute; inset: 0; aspect-ratio: auto; }
.photo.fill img { object-position: var(--photo-pos, center); }

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- welcome / intro ---------- */
.welcome-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .welcome-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .welcome-grid.reverse { direction: rtl; }
  .welcome-grid.reverse > * { direction: ltr; }
}
.welcome-copy h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.welcome-copy .rule { margin-left: 0; }
.trait-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin-top: 24px; }
.trait-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--teal-deep); font-weight: 600; }
.trait-list svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; color: var(--accent-warm); }
.frame-border { border: 8px solid var(--ivory); box-shadow: var(--shadow-lift); }

/* ---------- food feature cards ---------- */
.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.food-card {
  background: var(--off-white);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.food-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.food-card .ph-block, .food-card > .photo { aspect-ratio: 4/3; }
.food-card-body { padding: 22px 20px 26px; }
.food-card-body h3 { font-size: 1.3rem; margin-bottom: 6px; }
.food-card-body p { color: var(--teal-mid); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- weekly schedule ---------- */
.week-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) { .week-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .week-grid { grid-template-columns: repeat(5, 1fr); } }
.week-card {
  background: rgba(245, 243, 236, 0.06);
  border: 1px solid rgba(245, 243, 236, 0.22);
  border-radius: var(--radius-m);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.week-card:hover { background: rgba(245, 243, 236, 0.12); border-color: rgba(245,243,236,0.4); }
.week-card .day {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 700;
}
.week-card h3 { color: var(--ivory); font-size: 1.4rem; margin-bottom: 2px; }
.week-card p { color: var(--off-white); font-size: 0.88rem; opacity: 0.92; margin-bottom: 0; }
.week-card .price-tag {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--accent-warm);
  padding: 5px 10px;
  border-radius: var(--radius-s);
  font-weight: 700;
}

/* ---------- garden / feature split ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
@media (min-width: 900px) { .feature-split { grid-template-columns: 1.1fr 1fr; } }
.feature-split .ph-block, .feature-split > .photo { aspect-ratio: 16/9; }
@media (min-width: 900px) { .feature-split .ph-block, .feature-split > .photo { aspect-ratio: auto; height: 100%; } }
.garden-collage { display: flex; flex-direction: column; gap: 10px; height: 100%; }
.garden-collage .photo.main { flex: 2 1 auto; aspect-ratio: 4/3; min-height: 0; }
.garden-collage .photo.support { flex: 1 1 auto; aspect-ratio: 16/9; min-height: 0; }
@media (min-width: 900px) { .garden-collage .photo { aspect-ratio: auto; flex-basis: 0; } }
.feature-copy {
  background: var(--teal-deep);
  color: var(--ivory);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 900px) { .feature-copy { padding: 56px 48px; } }
.feature-copy h2, .feature-copy h3 { color: var(--ivory); }
.feature-copy p { color: var(--off-white); }
.tick-list { margin: 18px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.tick-list li { display: flex; gap: 10px; font-size: 0.95rem; }
.tick-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent-warm); margin-top: 3px; }

/* ---------- sunday feature ---------- */
.sunday-feature {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .sunday-feature { grid-template-columns: 1fr 1fr; gap: 60px; } }
.sunday-times {
  display: flex;
  gap: 22px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.sunday-times .time-block { border-left: 2px solid var(--accent-warm); padding-left: 14px; }
.sunday-times .time-block .label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-mid); }
.sunday-times .time-block .value { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-deep); font-weight: 600; }

/* ---------- reviews ---------- */
.review-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--ivory);
  border: 1px solid rgba(41,75,78,0.14);
  border-radius: var(--radius-m);
  padding: 26px 24px;
}
.review-card .stars { color: var(--accent-warm); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.95rem; }
.review-card p.quote { font-style: italic; color: var(--charcoal); font-size: 0.96rem; }
.review-card .who { font-size: 0.82rem; color: var(--teal-mid); font-weight: 600; }
.review-note {
  text-align: center;
  max-width: 640px;
  margin: 8px auto 0;
  font-size: 0.85rem;
  color: var(--teal-mid);
}

/* ---------- events/functions ---------- */
.event-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) { .event-type-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .event-type-grid { grid-template-columns: repeat(6, 1fr); } }
.event-type {
  border: 1px solid rgba(245,243,236,0.28);
  border-radius: var(--radius-m);
  padding: 18px 12px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ivory);
}
.event-type svg { width: 26px; height: 26px; margin: 0 auto 10px; color: var(--accent-warm); }

/* ---------- visit us ---------- */
.visit-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.info-list { display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; gap: 16px; }
.info-item svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--teal-primary); margin-top: 2px; }
.info-item h4 { margin-bottom: 4px; font-size: 1.05rem; }
.info-item p { margin-bottom: 0; color: var(--teal-mid); font-size: 0.95rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours-table td { padding: 6px 0; border-bottom: 1px dashed rgba(41,75,78,0.15); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--teal-deep); }
.map-embed { border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-card); }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- final CTA ---------- */
.final-cta { position: relative; color: var(--ivory); overflow: hidden; }
.final-cta .ph-block { position: absolute; inset: 0; aspect-ratio: auto; }
.final-cta::after { content: ""; position: absolute; inset: 0; background: rgba(41,75,78,0.72); }
.final-cta .container { position: relative; z-index: 1; text-align: center; }
.final-cta h2 { color: var(--ivory); font-size: clamp(2rem, 5vw, 3rem); }

/* ---------- footer ---------- */
.site-footer { background: var(--teal-deep); color: var(--off-white); padding: 56px 0 24px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px; } }
.footer-brand { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-brand img { height: 58px; width: 58px; border-radius: 6px; flex-shrink: 0; }
.footer-brand .name { font-family: var(--font-display); font-size: 1.2rem; color: var(--ivory); display: block; }
.footer-brand .tag { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-warm); }
.site-footer p { color: var(--off-white); opacity: 0.85; font-size: 0.9rem; }
.site-footer h4 { color: var(--ivory); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.92rem; opacity: 0.9; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,243,236,0.3);
  border-radius: var(--radius-s);
}
.social-row a:hover { background: rgba(245,243,236,0.12); }
.social-row svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(245,243,236,0.16);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.75;
}
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- sticky mobile action bar ---------- */
.mobile-action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  background: var(--teal-deep);
  border-top: 1px solid rgba(245,243,236,0.18);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (min-width: 1024px) { .mobile-action-bar { display: none; } }
.mobile-action-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--ivory);
  padding: 9px 4px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-height: 56px;
  border-right: 1px solid rgba(245,243,236,0.12);
}
.mobile-action-bar a:last-child { border-right: none; }
.mobile-action-bar a.is-primary { background: var(--accent-warm); color: var(--teal-deep); }
.mobile-action-bar svg { width: 19px; height: 19px; }
body.has-mobile-bar { padding-bottom: 62px; }
@media (min-width: 1024px) { body.has-mobile-bar { padding-bottom: 0; } }

/* ---------- misc pages: menus / gallery / private events / about / whats-on ---------- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.menu-tabs button {
  border: 1.5px solid var(--teal-primary);
  background: transparent;
  color: var(--teal-primary);
  padding: 10px 18px;
  border-radius: var(--radius-s);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  min-height: 44px;
}
.menu-tabs button.is-active,
.menu-tabs button:hover { background: var(--teal-primary); color: var(--ivory); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; }
.menu-panel-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .menu-panel-grid { grid-template-columns: 1fr 1fr; } }
.menu-card {
  background: var(--off-white);
  border-radius: var(--radius-m);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}
.menu-card h3 { font-size: 1.35rem; }
.menu-card .desc { color: var(--teal-mid); font-size: 0.92rem; margin-bottom: 18px; }
.menu-file-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.menu-image { cursor: zoom-in; border-radius: var(--radius-m); }
.menu-image:hover { opacity: 0.92; }

.menu-subtabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.menu-subtabs button {
  border: 1.5px solid var(--teal-mid);
  background: transparent;
  color: var(--teal-deep);
  padding: 8px 16px;
  border-radius: var(--radius-s);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  min-height: 40px;
}
.menu-subtabs button.is-active,
.menu-subtabs button:hover { background: var(--teal-mid); color: var(--ivory); border-color: var(--teal-mid); }
.menu-subpanel { display: none; }
.menu-subpanel.is-active { display: block; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.gallery-filters button {
  border: 1px solid var(--teal-mid);
  background: transparent;
  color: var(--teal-deep);
  padding: 8px 16px;
  border-radius: var(--radius-s);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 40px;
}
.gallery-filters button.is-active, .gallery-filters button:hover { background: var(--teal-deep); color: var(--ivory); border-color: var(--teal-deep); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { border-radius: var(--radius-m); overflow: hidden; cursor: pointer; }
.gallery-item .ph-block { aspect-ratio: 1/1; transition: transform 0.4s var(--ease); }
.gallery-item:hover .ph-block { transform: scale(1.04); }
.gallery-item.is-hidden { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(37,42,41,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox-inner { max-width: 900px; width: 100%; }
.lightbox-inner .ph-block { aspect-ratio: 4/3; border-radius: var(--radius-m); }
.lightbox-inner .photo-frame {
  max-height: 82vh;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-inner .photo-frame img { max-width: 100%; max-height: 82vh; width: auto; height: auto; object-fit: contain; display: block; }
.lightbox-inner .caption { color: var(--ivory); font-size: 0.85rem; margin-top: 12px; text-align: center; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 46px; height: 46px;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--ivory);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

/* Career timeline — linear on mobile, alternating either side of a centre line on desktop */
.timeline-v2 { list-style: none; margin: 0; padding: 12px 0; position: relative; }
.timeline-v2::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--teal-mid);
  opacity: 0.35;
}
.timeline-v2-item {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  padding: 22px 0;
}
.timeline-v2-marker { grid-column: 1; display: flex; justify-content: center; padding-top: 5px; }
.timeline-v2-marker .dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--accent-warm);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 1px var(--teal-mid);
  position: relative;
  z-index: 1;
}
.timeline-v2-content { grid-column: 2; text-align: left; }
.timeline-v2-content .when { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-mid); font-weight: 600; }
.timeline-v2-content h4 { margin: 4px 0 6px; font-size: 1.2rem; }
.timeline-v2-content p { color: var(--teal-mid); font-size: 0.92rem; max-width: 440px; }
@media (min-width: 860px) {
  .timeline-v2::before { left: 50%; transform: translateX(-0.5px); }
  .timeline-v2-item { grid-template-columns: 1fr 32px 1fr; gap: 32px; }
  .timeline-v2-marker { grid-column: 2; }
  .timeline-v2-item:nth-child(odd) .timeline-v2-content { grid-column: 1; text-align: right; }
  .timeline-v2-item:nth-child(odd) .timeline-v2-content p { margin-left: auto; }
  .timeline-v2-item:nth-child(even) .timeline-v2-content { grid-column: 3; text-align: left; }
}

/* Bell's Kitchen video facade — lightweight, no YouTube script/iframe until clicked */
.video-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 720px) { .video-grid { grid-template-columns: 1fr 1fr; } }
.video-card { text-align: center; }
.video-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--teal-mid);
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-facade .play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-facade .play-btn svg { width: 58px; height: 58px; transition: transform 0.2s var(--ease); }
.video-facade:hover .play-btn svg, .video-facade:focus-visible .play-btn svg { transform: scale(1.08); }
.video-embed { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-m); overflow: hidden; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-caption { margin-top: 12px; font-size: 0.85rem; color: var(--off-white); opacity: 0.85; }

.enquiry-form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--teal-deep); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid rgba(41,75,78,0.25);
  border-radius: var(--radius-s);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(54,91,94,0.15);
}
.form-note { font-size: 0.82rem; color: var(--teal-mid); }

.badge-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,169,136,0.16);
  border: 1px solid rgba(184,169,136,0.4);
  color: var(--teal-deep);
  padding: 10px 14px;
  border-radius: var(--radius-s);
  font-size: 0.85rem;
  margin-bottom: 22px;
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--accent-warm);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-deep);
  color: var(--ivory);
  padding: 12px 18px;
  z-index: 500;
}
.skip-link:focus { left: 12px; top: 12px; }

.two-col { display: grid; gap: 40px; }
@media (min-width: 900px) { .two-col { grid-template-columns: 2fr 1fr; } }
