/* ============================================================
   ELEVEN ONE KITCHEN — Main Stylesheet
   ============================================================ */

:root {
  --green:       #1B4D3E;
  --green-dark:  #143D31;
  --green-mid:   #235A49;
  --cream:       #FAF8F3;
  --gold:        #C9A96E;
  --gold-dark:   #A8843A;
  --white:       #FFFFFF;
  --text:        #1C1C1C;
  --text-muted:  #787878;
  --border:      rgba(27, 77, 62, 0.15);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-width:  1200px;
  --nav-height: 80px;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.35s var(--ease);

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.11);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold         { background: var(--gold);  color: var(--white); border-color: var(--gold); }
.btn--gold:hover   { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn--green        { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--green:hover  { background: var(--green-dark); border-color: var(--green-dark); }
.btn--outline      { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn--outline:hover{ border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--outline-green        { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline-green:hover  { background: var(--green); color: var(--white); }

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.nav--scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.1); }

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img { height: 50px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--green); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 0.55rem 1.4rem !important;
  border: 1.5px solid var(--green) !important;
  color: var(--green) !important;
  font-weight: 500 !important;
}
.nav__cta:hover { background: var(--green) !important; color: var(--white) !important; }
.nav__cta::after { display: none !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
.nav__burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s var(--ease);
}
.hero--loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14, 32, 24, 0.45) 0%,
    rgba(14, 32, 24, 0.68) 55%,
    rgba(14, 32, 24, 0.82) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 820px;
  padding: 0 1.5rem;
  margin-top: var(--nav-height);
}
.hero__kicker {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(3.6rem, 9vw, 6.8rem);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.hero__title em { font-style: italic; color: rgba(255,255,255,0.82); }
.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { background: var(--green); }
.pillars__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: 3rem 2.75rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  text-align: center;
}
.pillar:last-child { border-right: none; }
.pillar__icon {
  width: 40px; height: 40px;
  margin: 0 auto 1.4rem;
}
.pillar__icon svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}
.pillar p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
  overflow: hidden;
}
.about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  line-height: 1.15;
}
.about__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: var(--green);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 1.75rem;
  margin-bottom: 2rem;
}
.about__body {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.75rem;
}
.about__body p + p { margin-top: 1.1rem; }
.about__attribution {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 2rem;
}
.about__attribution span {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.about__image { position: relative; }
.about__image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}
.about__image::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px; bottom: 18px; left: 18px;
  border: 1px solid rgba(201,169,110,0.35);
  z-index: -1;
}

/* ============================================================
   SUSTAINABILITY
   ============================================================ */
.sustainability {
  background: var(--green);
  color: var(--white);
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.sustainability::before {
  content: '99%';
  position: absolute;
  right: -1.5rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(18vw, 25vw, 340px);
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.sustainability__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sustainability__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.sustainability__body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.sustainability__body strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.sustainability__cta { margin-top: 1.5rem; }
.sustainability__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat {
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.13);
  transition: border-color var(--transition);
}
.stat:hover { border-color: rgba(201,169,110,0.45); }
.stat__number {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   MENU PREVIEW
   ============================================================ */
.menu-preview {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream);
}
.menu-preview__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.menu-preview__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green);
  margin-top: 0.5rem;
  line-height: 1.15;
}
.menu-preview__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 0.9rem;
  max-width: 460px;
}
.menu-preview__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 3rem;
}
.dish-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--green-dark);
}
.dish-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.dish-card:hover img { transform: scale(1.07); }
.dish-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,40,30,0.92) 0%, rgba(14,40,30,0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.75rem;
}
.dish-card__category {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.dish-card__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.55rem;
}
.dish-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), opacity 0.35s ease;
  opacity: 0;
}
.dish-card:hover .dish-card__desc { max-height: 90px; opacity: 1; }
.menu-preview__cta { text-align: center; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
}
.locations__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.locations__header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.locations__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green);
  margin-top: 0.5rem;
  line-height: 1.15;
}
.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.location-card { border-top: 2px solid var(--green); padding-top: 2rem; }
.location-card__number {
  font-family: var(--serif);
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 0.7rem;
}
.location-card__name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.location-card__area {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.location-card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
.location-card__details { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.location-card__details li {
  font-size: 0.87rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.location-card__details strong { font-weight: 500; min-width: 64px; color: var(--green); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '\201C';
  position: absolute;
  left: -2rem; top: -5rem;
  font-family: var(--serif);
  font-size: clamp(30vw, 40vw, 480px);
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonials__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonials__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-top: 0.5rem;
  margin-bottom: 4rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}
.testimonial {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial:hover { border-color: rgba(201,169,110,0.4); }
.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.testimonial__star { width: 13px; height: 13px; fill: var(--gold); }
.testimonial__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.75rem;
  flex: 1;
}
.testimonial__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}
.testimonial__author {
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial__author span {
  display: block;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
  font-size: 0.72rem;
}
.testimonial__ta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.28rem 0.6rem;
  border-radius: 2px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.testimonial__ta:hover {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.3);
}
.testimonial__ta svg {
  width: 9px; height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.testimonials__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials__platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.testimonials__platforms a {
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: color var(--transition);
}
.testimonials__platforms a:hover { color: var(--white); }
.testimonials__platforms span { color: rgba(255,255,255,0.25); }

/* ============================================================
   EVENTS
   ============================================================ */
.events {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream);
}
.events__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.events__header { text-align: center; margin-bottom: 4rem; }
.events__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green);
  margin-top: 0.5rem;
  line-height: 1.15;
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.event-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.event-card:hover { border-bottom-color: var(--gold); box-shadow: var(--shadow-md); }
.event-card__when {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.event-card__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.event-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.82;
}
.event-card__desc strong { color: var(--text); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 5rem 0 2.5rem;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer__logo-wrap {
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 1.5rem;
}
.footer__logo-wrap img { height: 40px; width: auto; }
.footer__brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
  max-width: 290px;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--white); }
.footer__social a svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}
.footer__col li a:hover { color: var(--white); }
.footer__col address {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__inner,
  .sustainability__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__image { order: -1; }
  .about__image img { height: 420px; }
  .about__image::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }
  .nav__burger { display: flex; }

  .pillars__inner { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pillar:last-child { border-bottom: none; }

  .menu-preview__header { flex-direction: column; align-items: flex-start; }
  .menu-preview__grid { grid-template-columns: 1fr 1fr; }

  .locations__grid { grid-template-columns: 1fr; }
  .testimonials__grid,
  .testimonials__grid--two { grid-template-columns: 1fr; }
  .events__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 480px) {
  .menu-preview__grid { grid-template-columns: 1fr; }
  .sustainability__stats { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ============================================================
   INNER PAGE HERO (shared by catering, menu, stories)
   ============================================================ */
.page-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s var(--ease);
}
.page-hero--loaded .page-hero__bg { transform: scale(1); }
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14, 32, 24, 0.42) 0%,
    rgba(14, 32, 24, 0.72) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 760px;
  padding: 0 1.5rem;
}
.page-hero__kicker {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}
.page-hero__title {
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.page-hero__title em { font-style: italic; color: rgba(255,255,255,0.82); }
.page-hero__subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 2.25rem;
}
.page-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CATERING — INTRO
   ============================================================ */
.cater-intro {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
  overflow: hidden;
}
.cater-intro__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.cater-intro__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.cater-intro__body {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.cater-intro__body p + p { margin-top: 1.1rem; }
.cater-intro__body strong { color: var(--text); font-weight: 500; }
.cater-intro__actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.cater-intro__image { position: relative; }
.cater-intro__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.cater-intro__image::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px; bottom: 18px; right: 18px;
  border: 1px solid rgba(201,169,110,0.35);
  z-index: -1;
}

/* ============================================================
   CATERING — EVENT TYPES
   ============================================================ */
.event-types {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream);
}
.event-types__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.event-types__header {
  text-align: center;
  margin-bottom: 4rem;
}
.event-types__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green);
  margin-top: 0.5rem;
  line-height: 1.15;
}
.event-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.type-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.type-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.type-card__icon {
  width: 36px; height: 36px;
  margin-bottom: 1.25rem;
}
.type-card__icon svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.type-card__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.type-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.82;
}

/* ============================================================
   CATERING — WHAT WE PROVIDE
   ============================================================ */
.cater-includes {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--green);
  color: var(--white);
}
.cater-includes__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.cater-includes__header {
  text-align: center;
  margin-bottom: 4rem;
}
.cater-includes__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-top: 0.5rem;
  line-height: 1.15;
}
.cater-includes__sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  margin-top: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.include-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.include-item:last-child { border-right: none; }
.include-item__icon {
  width: 40px; height: 40px;
  margin: 0 auto 1.25rem;
}
.include-item__icon svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.include-item__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
}
.include-item__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* ============================================================
   CATERING — FOOD GALLERY STRIP
   ============================================================ */
.cater-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--green-dark);
}
.cater-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.cater-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
  display: block;
}
.cater-gallery__item:hover img { transform: scale(1.07); }
.cater-gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(14,40,30,0.85), transparent);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

/* ============================================================
   CATERING — HOW IT WORKS
   ============================================================ */
.cater-process {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
}
.cater-process__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.cater-process__header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.cater-process__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green);
  margin-top: 0.5rem;
  line-height: 1.15;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.process-step__number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.process-step__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.process-step__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.82;
}

/* ============================================================
   CATERING — CONTACT FORM
   ============================================================ */
.cater-contact {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream);
}
.cater-contact__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.cater-contact__info-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.cater-contact__info-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.contact-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.contact-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-checklist li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  margin-top: 2px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.contact-detail__label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail__value {
  font-size: 0.95rem;
  color: var(--text);
}
.contact-detail__value a { color: var(--green); }
.contact-detail__value a:hover { text-decoration: underline; }

/* Form */
.cater-form {
  background: var(--white);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
}
.cater-form__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.form-group {
  margin-bottom: 1.75rem;
}
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23787878' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 18px;
  padding-right: 1.5rem;
  cursor: pointer;
}
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.quote-banner {
  background: var(--green-dark);
  padding: 4rem 2rem;
  text-align: center;
}
.quote-banner__inner {
  max-width: 860px;
  margin: 0 auto;
}
.quote-banner__text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.5;
}

/* ============================================================
   TRUSTED PARTNERS SECTION
   ============================================================ */
.trusted {
  background: var(--cream);
  padding: 6rem 2rem;
}
.trusted__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.trusted__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.trusted__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-top: 0.5rem;
}
.trusted__group {
  margin-bottom: 3rem;
}
.trusted__group-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trusted__group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.trusted__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.partner-badge {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.partner-badge:hover {
  border-color: rgba(27,77,62,0.35);
  box-shadow: var(--shadow-sm);
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 1.8rem;
  height: 95px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.partner-logo img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter var(--transition), opacity var(--transition);
}
.partner-logo:hover {
  border-color: rgba(27,77,62,0.35);
  box-shadow: var(--shadow-sm);
}
.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ============================================================
   RESPONSIVE — CATERING PAGE
   ============================================================ */
@media (max-width: 1024px) {
  .cater-intro__inner,
  .cater-contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .cater-intro__image { order: -1; }
  .cater-intro__image img { height: 420px; }
  .cater-intro__image::before { display: none; }
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .include-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .include-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .include-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 768px) {
  .event-types__grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .cater-gallery { grid-template-columns: 1fr; }
  .cater-gallery__item { aspect-ratio: 16/9; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .event-types__grid { grid-template-columns: 1fr; }
  .cater-form { padding: 2rem 1.5rem; }
  .page-hero__actions { flex-direction: column; align-items: center; }
  .page-hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ============================================================
   CANTEEN PAGE
   ============================================================ */

/* Stats bar */
.canteen-stats-bar {
  background: var(--green);
  padding: 2.5rem 0;
}
.canteen-stats-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.canteen-stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.canteen-stat__number {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.canteen-stat__label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Who We Serve */
.canteen-who {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream);
}
.canteen-who__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.canteen-who__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.canteen-who__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green);
  margin-top: 0.75rem;
  line-height: 1.2;
}
.canteen-who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.who-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
}
.who-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.who-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--green);
}
.who-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.who-card__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.85rem;
}
.who-card__desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Sample Weekly Menu */
.canteen-menu {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
}
.canteen-menu__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.canteen-menu__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.canteen-menu__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green);
  margin-top: 0.75rem;
  line-height: 1.2;
}
.canteen-menu__sub {
  max-width: 640px;
  margin: 1.25rem auto 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}
.canteen-menu__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
}
.canteen-menu__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.83rem;
  min-width: 820px;
}
.canteen-menu__table thead tr {
  background: var(--green);
  color: var(--white);
}
.canteen-menu__table thead th {
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  white-space: nowrap;
}
.canteen-menu__table thead th:first-child {
  width: 90px;
}
.canteen-menu__table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.canteen-menu__table tbody tr:last-child { border-bottom: none; }
.canteen-menu__table tbody tr:nth-child(even) { background: var(--cream); }
.canteen-menu__table tbody tr:hover { background: rgba(201,169,110,0.07); }
.canteen-menu__table tbody td,
.canteen-menu__table tbody th {
  padding: 0.85rem 1rem;
  vertical-align: top;
  line-height: 1.5;
  color: var(--text);
  font-weight: 300;
}
.canteen-menu__table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.canteen-menu__note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Canteen photo gallery (4-col) */
.canteen-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.canteen-gallery__item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.canteen-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.canteen-gallery__item:hover img { transform: scale(1.04); }

/* Canteen callout banner (used on catering.html) */
.canteen-callout {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.canteen-callout__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.canteen-callout__text {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.canteen-callout__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
}
.canteen-callout__copy {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
}
.canteen-callout__copy strong { color: var(--text); font-weight: 500; }

/* ============================================================
   TEAM SECTION (index.html)
   ============================================================ */
.team-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
}
.team-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.team-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.team-section__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--green);
  line-height: 1.15;
  margin-top: 0.75rem;
}
.team-section__body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}
.team-section__body p + p { margin-top: 1rem; }
.team-section__body strong { color: var(--text); font-weight: 500; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.team-card--wide {
  grid-column: span 2;
}
.team-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.team-card--wide .team-card__img-wrap {
  aspect-ratio: 16/9;
}
.team-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}
.team-card:hover .team-card__img-wrap img { transform: scale(1.04); }

/* ============================================================
   RESPONSIVE — CANTEEN & TEAM
   ============================================================ */
@media (max-width: 1024px) {
  .canteen-stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .canteen-who__grid { grid-template-columns: 1fr 1fr; }
  .team-section__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card--wide { grid-column: span 2; }
}
@media (max-width: 768px) {
  .canteen-who__grid { grid-template-columns: 1fr; }
  .canteen-gallery { grid-template-columns: 1fr 1fr; }
  .canteen-gallery__item { aspect-ratio: 1/1; }
  .canteen-callout__inner { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card--wide { grid-column: span 1; }
  .team-card--wide .team-card__img-wrap { aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .canteen-stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .canteen-gallery { grid-template-columns: 1fr; }
  .canteen-gallery__item { aspect-ratio: 4/3; }
}
