/* =====================================================================
   CENA CATERING — faithful rebuild of cenacatering.com (2026 polish)
   Brand: vivid orange #FF8000 on white, curved-wave section dividers,
   Libre Baskerville (display) + Almarai (body), white pill buttons.
   ===================================================================== */

:root {
  --orange:   #FF8000;
  --orange-d: #E66E00;
  --ink:      #211d19;
  --ink-soft: #4d463f;
  --muted:    #8a8077;
  --bg:       #FFFFFF;
  --dark:     #141210;
  --line:     rgba(33,29,25,.14);

  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans:  "Almarai", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --step--1: clamp(.82rem, .8rem + .12vw, .9rem);
  --step-0:  clamp(1rem, .97rem + .2vw, 1.1rem);
  --step-1:  clamp(1.12rem, 1.04rem + .35vw, 1.35rem);
  --step-2:  clamp(1.6rem, 1.3rem + 1.4vw, 2.6rem);
  --step-3:  clamp(2rem, 1.5rem + 2.4vw, 3.4rem);
  --step-4:  clamp(2.7rem, 1.8rem + 4.4vw, 5.6rem);

  --container: 1180px;
  --radius: 10px;
  --shadow: 0 30px 70px -34px rgba(33,25,15,.5);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: var(--step-0); line-height: 1.72; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--orange); color: #fff; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.14; color: var(--ink); }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
p { color: inherit; }
p + p { margin-top: 1em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 3rem); }
.section { padding-block: clamp(3rem, 6.5vw, 6.5rem); }
.center { text-align: center; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .9rem; letter-spacing: .02em;
  padding: 1rem 2.3rem; border-radius: 100px; border: 2px solid transparent; line-height: 1;
  transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.btn--white { background: #fff; color: var(--ink); box-shadow: 0 12px 30px -16px rgba(0,0,0,.4); }
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -16px rgba(0,0,0,.45); color: var(--orange-d); }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 12px 30px -14px rgba(255,128,0,.85); }
.btn--orange:hover { background: var(--orange-d); transform: translateY(-3px); }
.btn--outline-w { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-w:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.btn--sm { padding: .7rem 1.6rem; font-size: .82rem; }

/* ---------------- header (overlay → solid) ---------------- */
/* header sits over the hero and scrolls away with the page (not sticky), like the live site */
.site-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 100; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 96px; }
.nav__logo img { height: 56px; width: auto; filter: brightness(0) invert(1); }
.nav__menu { display: flex; align-items: center; gap: .1rem; list-style: none; }
.nav__link { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .6rem .85rem; border-radius: 8px; color: #fff; transition: color .25s var(--ease); }
.nav__link:hover { color: var(--orange); }
.nav__link .caret { width: 7px; height: 7px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.nav__item { position: relative; }
.nav__item--has > .nav__dropdown { position: absolute; top: 100%; left: 0; min-width: 250px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: .5rem; list-style: none; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .22s var(--ease); }
.nav__item--has:hover > .nav__dropdown, .nav__item--has:focus-within > .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(6px); }
.nav__dropdown a { display: block; padding: .6rem .8rem; border-radius: 8px; font-size: .9rem; font-weight: 400; color: var(--ink-soft); font-family: var(--sans); }
.nav__dropdown a:hover { background: #FFF3E6; color: var(--orange-d); }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .4rem; z-index: 120; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s, background .3s; }
.is-solid .nav__toggle span { background: var(--ink); }

@media (max-width: 1080px) {
  .nav__menu { position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); flex-direction: column; align-items: stretch; gap: .1rem; background: #fff; padding: 6.5rem 1.6rem 2.5rem; border-left: 1px solid var(--line); overflow-y: auto; transform: translateX(105%); transition: transform .4s var(--ease); box-shadow: var(--shadow); }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link { color: var(--ink); padding: .85rem .6rem; font-size: 1rem; border-bottom: 1px solid rgba(33,29,25,.07); }
  .nav__item--has > .nav__link { border-bottom: 0; }
  .nav__link .caret { margin-left: auto; }
  .nav__item--has > .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; min-width: 0; border-left: 2px solid #FFE0BF; border-radius: 0; margin: 0 0 .4rem .85rem; padding: .1rem 0 .1rem .5rem; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
  .nav__item--has.is-open > .nav__dropdown { max-height: 500px; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-active span { background: var(--ink); }
  .nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__cta { display: none; }
  .nav__menu .nav__cta-mobile { display: inline-flex; margin-top: 1.4rem; }
}
.nav__cta-mobile { display: none; }

/* ---------------- hero ---------------- */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; text-align: center; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(10,7,4,.55), rgba(10,7,4,.45) 55%, rgba(10,7,4,.6)); }
.hero__inner { padding: 7rem 1.5rem 4rem; color: #fff; }
.hero__title { color: #fff; font-size: var(--step-4); letter-spacing: .01em; }
.hero__tag { color: #fff; font-family: var(--serif); font-size: var(--step-2); margin-top: 1rem; font-weight: 400; }

/* ---------------- colour bands + curved wave dividers ----------------
   Colored sections (orange/red) bulge their OWN colour into neighbours with
   a thin white edge line; white sections are the canvas (no wave). The hero
   carries a white wave at its bottom. This reproduces the live site's
   alternating orange/red/white striped bands. */
.oband, .band-orange { background: var(--orange); color: #fff; }
.band-red { background: #ED1D23; color: #fff; }
.band-white { background: #fff; color: var(--ink); }
.oband, .band-orange, .band-red { position: relative; padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.oband > .container, .band-orange > .container, .band-red > .container { position: relative; z-index: 5; }
.oband h2, .oband h3, .band-orange h2, .band-orange h3, .band-red h2, .band-red h3 { color: #fff; }
.oband p, .band-orange p, .band-red p { color: #fff; }
.t-orange { color: var(--orange) !important; }

.hero::after,
.oband::before, .oband::after,
.band-orange::before, .band-orange::after,
.band-red::before, .band-red::after {
  content: ""; position: absolute; left: 0; width: 100%; height: clamp(24px, 3.1vw, 44px);
  background-repeat: no-repeat; background-size: 100% 100%; pointer-events: none;
}
.oband::before, .band-orange::before, .band-red::before { bottom: 100%; z-index: 2; }
.oband::after, .band-orange::after, .band-red::after { top: 100%; z-index: 3; }
.hero::after { bottom: 0; z-index: 4; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 44' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,44 H1440 V20 C1080,4 360,4 0,20 Z'/%3E%3C/svg%3E"); }
.oband::before, .band-orange::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 44' preserveAspectRatio='none'%3E%3Cpath fill='%23FF8000' d='M0,44 H1440 V36 C1080,2 360,2 0,36 Z'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' vector-effect='non-scaling-stroke' d='M0,36 C360,2 1080,2 1440,36'/%3E%3C/svg%3E"); }
.oband::after, .band-orange::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 44' preserveAspectRatio='none'%3E%3Cpath fill='%23FF8000' d='M0,0 H1440 V8 C1080,42 360,42 0,8 Z'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' vector-effect='non-scaling-stroke' d='M0,8 C360,42 1080,42 1440,8'/%3E%3C/svg%3E"); }
.band-red::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 44' preserveAspectRatio='none'%3E%3Cpath fill='%23ED1D23' d='M0,44 H1440 V36 C1080,2 360,2 0,36 Z'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' vector-effect='non-scaling-stroke' d='M0,36 C360,2 1080,2 1440,36'/%3E%3C/svg%3E"); }
.band-red::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 44' preserveAspectRatio='none'%3E%3Cpath fill='%23ED1D23' d='M0,0 H1440 V8 C1080,42 360,42 0,8 Z'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' vector-effect='non-scaling-stroke' d='M0,8 C360,42 1080,42 1440,8'/%3E%3C/svg%3E"); }

/* ---------------- split (image + text) ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; aspect-ratio: 7/5; object-fit: cover; transition: transform .9s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split__body p { font-size: var(--step-1); }
.split__body .btn { margin-top: 1.8rem; }
@media (max-width: 840px) { .split { grid-template-columns: 1fr; gap: 1.8rem; } .split--rev .split__media { order: 0; } .split { text-align: center; } }

/* scribble annotation */
.scribble { position: relative; display: inline-block; white-space: nowrap; }
.scribble > svg { position: absolute; left: 50%; top: 50%; width: 124%; height: 150%; transform: translate(-50%,-52%); overflow: visible; fill: none; stroke-width: 3.4; stroke-linecap: round; pointer-events: none; }
.scribble--dark > svg { stroke: #1a1410; }
.scribble--orange > svg { stroke: var(--orange); }
.scribble > svg path { stroke-dasharray: 760; stroke-dashoffset: 760; }
.scribble.is-in > svg path { transition: stroke-dashoffset 1s var(--ease) .25s; stroke-dashoffset: 0; }

/* intro orange section layout */
.intro-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.intro-grid__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.intro-grid__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.intro-grid h2 { font-size: var(--step-3); margin-bottom: 1.2rem; }
.intro-grid p { font-size: var(--step-1); color: rgba(255,255,255,.95); }
.intro-grid .btn { margin-top: 1.8rem; }
@media (max-width: 840px) { .intro-grid { grid-template-columns: 1fr; gap: 1.8rem; text-align: center; } .intro-grid__media { order: 2; } }

/* overview centered */
.overview { max-width: 880px; margin-inline: auto; text-align: center; }
.overview p { font-size: var(--step-1); }

/* seasonal heading orange on white */
.seasonal h2 { color: var(--orange); font-size: var(--step-3); }

/* ---------------- menu carousel ---------------- */
.carousel { position: relative; }
.carousel__head { text-align: center; margin-bottom: clamp(2rem,4vw,3rem); }
.carousel__head h2 { color: #fff; font-size: var(--step-3); }
.carousel__track { display: flex; gap: 1.3rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: .3rem .2rem 1rem; -ms-overflow-style: none; scrollbar-width: none; }
.carousel__track::-webkit-scrollbar { display: none; }
.mcard { flex: 0 0 clamp(230px, 31%, 330px); scroll-snap-align: center; text-align: center; color: #fff; }
.mcard__img { aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; background: rgba(255,255,255,.15); box-shadow: 0 18px 40px -22px rgba(0,0,0,.5); }
.mcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.mcard:hover .mcard__img img { transform: scale(1.06); }
.mcard__title { font-family: var(--serif); font-size: clamp(1.15rem,2.4vw,1.5rem); color: #fff; margin: 1rem 0 .9rem; line-height: 1.2; min-height: 2.5em; display: flex; align-items: center; justify-content: center; }
.carousel__btn { position: absolute; top: 35%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--orange); border: 0; display: grid; place-items: center; font-size: 1.3rem; box-shadow: 0 12px 30px -12px rgba(0,0,0,.4); z-index: 3; transition: transform .25s var(--ease); }
.carousel__btn:hover { transform: translateY(-50%) scale(1.08); }
.carousel__btn--prev { left: -16px; } .carousel__btn--next { right: -16px; }
@media (max-width: 700px) { .mcard { flex-basis: 76%; } .carousel__btn { display: none; } }
/* carousel placed on a WHITE section (e.g. Meals page): dark titles, orange heading */
section.section .carousel__head h2, .band-white .carousel__head h2 { color: var(--orange); }
section.section .mcard__title, .band-white .mcard__title { color: var(--ink); }

/* ---------------- quote form ---------------- */
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.quote-grid__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: sticky; top: 100px; }
.quote-grid__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.quote-intro h2 { color: #fff; font-size: var(--step-3); margin-bottom: 1.1rem; }
.quote-intro p { color: rgba(255,255,255,.92); }
.qform { display: grid; gap: 1.1rem; margin-top: .5rem; }
.qform label { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: #fff; margin-bottom: .4rem; }
.qform label .req { font-weight: 400; opacity: .8; font-size: .72rem; }
.qform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.qform input, .qform select, .qform textarea { width: 100%; font-family: var(--sans); font-size: .95rem; color: var(--ink); background: #fff; border: 1.5px solid rgba(0,0,0,.12); border-radius: 10px; padding: .85rem 1rem; transition: border-color .2s, box-shadow .2s; }
.qform textarea { min-height: 130px; resize: vertical; }
.qform input::placeholder, .qform textarea::placeholder { color: var(--muted); }
.qform input:focus, .qform select:focus, .qform textarea:focus { outline: none; border-color: var(--orange-d); box-shadow: 0 0 0 3px rgba(255,128,0,.3); }
.qform select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23211d19' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.qform select option { color: #211d19; }
.qform .check { display: flex; align-items: flex-start; gap: .6rem; font-weight: 400; }
.qform .check input { width: auto; accent-color: #fff; margin-top: .25rem; }
.qform .check label { margin: 0; font-weight: 400; letter-spacing: 0; }
.qform .checks { display: grid; gap: .5rem; }
.qform .btn { justify-self: start; margin-top: .6rem; }
.hint { font-size: .78rem; color: rgba(255,255,255,.72); margin-top: -.5rem; }
@media (max-width: 840px) { .quote-grid { grid-template-columns: 1fr; } .quote-grid__media { position: static; max-width: 420px; margin-inline: auto; } }
@media (max-width: 520px) { .qform .row { grid-template-columns: 1fr; } }

/* ---------------- visit + map ---------------- */
.visit { text-align: center; }
.visit h2 { color: var(--orange); }
.visit .addr { font-family: var(--serif); font-size: var(--step-1); margin-top: .6rem; }
.map-wrap { margin-top: 2.4rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.15); }

/* ---------------- testimonials / faq / prose (other pages) ---------------- */
.testi-list { display: grid; gap: 1.4rem; max-width: 1000px; margin-inline: auto; }
@media (min-width: 760px) { .testi-list { grid-template-columns: 1fr 1fr; } }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; box-shadow: 0 16px 40px -26px rgba(0,0,0,.3); }
.testi__quote { color: var(--ink-soft); }
.testi__name { margin-top: 1.1rem; font-weight: 700; color: var(--orange); }
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.faq summary { list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; font-family: var(--serif); font-size: var(--step-1); color: var(--ink); display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 1.5rem; }
.faq details[open] summary::after { content: "\2013"; }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }
/* inner-page menu — centered, orange serif item names (matches live site) */
.menu-2col { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.menu-2col__aside { text-align: center; }
.menu-2col__aside img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.menu-2col__aside .intro { color: var(--orange); font-size: var(--step-1); margin-top: 1.6rem; }
.menu-2col__aside .intro strong { color: var(--orange); }
.menu-2col__aside .cta-line { color: var(--orange); font-family: var(--serif); font-size: var(--step-1); margin: 1.8rem 0 1.2rem; }
@media (max-width: 840px) { .menu-2col { grid-template-columns: 1fr; } }
.menu-list { display: grid; gap: 1.5rem; max-width: 760px; margin-inline: auto; }
.menu-section-title { text-align: center; color: var(--orange); }
.menu-note { text-align: center; color: var(--ink-soft); font-size: .95rem; margin-top: .3rem; margin-bottom: 2rem; }
.menu-item { text-align: left; border-bottom: 1px solid var(--line); padding-bottom: 1.4rem; overflow: hidden; }
.menu-item:last-child { border-bottom: 0; }
.menu-item__name { display: inline; font-family: var(--serif); font-size: var(--step-1); color: var(--orange); }
.menu-item__price { float: right; margin-left: 1.2rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.menu-item__desc { margin-top: .5rem; color: var(--ink-soft); font-size: .97rem; }
.menu-item__veg { margin-top: .5rem; font-size: .9rem; color: var(--muted); }
.menu-disclaimer { text-align: center; color: var(--muted); font-style: italic; font-size: .88rem; margin-top: 1.6rem; }
.price-rows { display: grid; gap: .25rem; margin-top: .4rem; color: var(--ink-soft); font-size: .95rem; }
.tag { display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--orange); border: 1px solid rgba(255,128,0,.4); border-radius: 100px; padding: .1rem .5rem; margin-left: .4rem; vertical-align: middle; }
.emblem { display: grid; place-items: center; padding-block: 1.5rem; }
.emblem img { width: clamp(90px,11vw,130px); }
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { color: var(--orange); font-size: var(--step-2); margin: 2rem 0 .7rem; }
.prose h3 { font-size: var(--step-1); margin: 1.4rem 0 .5rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
/* inner hero (photo + dark scrim + centered title) */
.hero--inner { min-height: clamp(360px, 52vh, 520px); }
.hero--inner .hero__scrim { background: linear-gradient(to bottom, rgba(10,7,4,.5), rgba(10,7,4,.42) 55%, rgba(10,7,4,.5)); }
.hero--inner .hero__title { font-size: var(--step-3); }
/* intro paragraph block under a hero */
.page-intro { max-width: 820px; margin-inline: auto; text-align: center; }
.page-intro p { font-size: var(--step-1); }
.page-intro--orange p { color: var(--orange); }

/* ---------------- footer ---------------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding-block: clamp(3rem,5vw,4.5rem) 2rem; }
.footer-top { display: grid; place-items: center; gap: 1.2rem; text-align: center; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo img { height: 64px; }
.footer-ig { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4); display: grid; place-items: center; color: #fff; transition: background .25s, color .25s; }
.footer-ig:hover { background: var(--orange); border-color: var(--orange); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 2rem; padding-block: 2.4rem; }
.footer-col h4 { color: #fff; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 1rem; }
.footer-col a, .footer-col p { color: rgba(255,255,255,.72); font-size: .95rem; }
.footer-col a:hover { color: var(--orange); }
.footer-col ul { list-style: none; display: grid; gap: .5rem; padding: 0; }
.footer-credit { text-align: center; font-size: .82rem; color: rgba(255,255,255,.5); padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-credit a { color: rgba(255,255,255,.7); }
.footer-credit a:hover { color: var(--orange); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; text-align: center; } .footer-col ul { justify-items: center; } }

/* ---------------- contact points + narrow (CTA bands / contact / venues) ---------------- */
.narrow { max-width: 760px; margin-inline: auto; }
.contact-points { display: grid; gap: .8rem; margin: 1.6rem 0; padding: 0; }
.contact-points li { list-style: none; color: var(--ink-soft); font-size: .98rem; padding-left: 1rem; border-left: 2px solid var(--orange); }
.contact-points .lbl { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: .1rem; }
.oband .contact-points li, .hero__inner .contact-points li { color: rgba(255,255,255,.92); border-left-color: rgba(255,255,255,.55); }
.oband .contact-points .lbl, .hero__inner .contact-points .lbl { color: #fff; }

/* ---------------- scroll reveal ---------------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } [data-reveal] { opacity: 1; transform: none; } .scribble > svg path { stroke-dashoffset: 0; } }

/* ---------------- post-audit central refinements ---------------- */
/* contact points readable on ANY coloured band (not just .oband) */
.band-orange .contact-points li, .band-red .contact-points li { color: rgba(255,255,255,.92); border-left-color: rgba(255,255,255,.55); }
.band-orange .contact-points .lbl, .band-red .contact-points .lbl { color: #fff; }
/* sub-headings placed inside a hero (e.g. venue pages) stay light on the dark photo */
.hero__inner h2, .hero__inner h3, .hero__inner h4 { color: #fff; }
/* kill widows/orphans site-wide (preserves design, just better line breaks) */
h1, h2, h3, h4 { text-wrap: balance; }
p, li, figcaption { text-wrap: pretty; }
/* inline prose links are visibly clickable */
.prose a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--orange-d); }
/* base cta-line styling so menu pages don't depend on inline styles */
.cta-line { color: var(--orange); font-family: var(--serif); font-size: var(--step-1); }
/* lists inside FAQ answers */
.faq__a ul { padding-left: 1.2rem; margin-top: .5rem; }
.faq__a li { margin-bottom: .3rem; }

/* coloured→coloured boundary: keep ONLY the upper band's bottom wave (kills the double-wave stripe) */
:is(.oband,.band-orange,.band-red) + :is(.oband,.band-orange,.band-red)::before { display: none; }

/* venue pages: an orange rounded card floating on a dark page (Black Barn / Sparrow Lane) */
.venue { background: var(--dark); padding-block: clamp(128px, 15vh, 200px) clamp(3rem, 7vw, 6rem); }
.venue-card { background: var(--orange); color: #fff; border-radius: 28px; padding: clamp(1.8rem, 4vw, 3.75rem); box-shadow: 0 50px 100px -55px rgba(0,0,0,.85); }
.venue-card h1, .venue-card h2 { color: #fff; }
.venue-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: stretch; }
.venue-text p { color: rgba(255,255,255,.95); }
.venue-text h2 { margin-top: 1.6rem; font-size: var(--step-2); }
.venue-text .btn { margin-top: 1.9rem; }
.venue-text .contact-points li { color: rgba(255,255,255,.95); border-left-color: rgba(255,255,255,.55); }
.venue-media { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); min-height: 440px; }
.venue-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 840px) { .venue-grid { grid-template-columns: 1fr; } .venue-media { min-height: 300px; } }
