:root {
  --ink: #1d1c1a;
  --charcoal: #343130;
  --forest: #173f35;
  --forest-deep: #0e2d26;
  --sage: #7bae94;
  --sage-pale: #dce9df;
  --brown: #7d4e27;
  --cream: #f6f1e7;
  --warm-white: #fcfaf5;
  --line: rgba(29, 28, 26, 0.16);
  --shell: min(1280px, calc(100vw - 80px));
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--sage); color: #fff; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 150px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow-light { color: var(--sage-pale); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 400; }
h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(52px, 5.8vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
h1 em, h2 em { color: var(--brown); font-style: italic; }

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--forest); color: #fff; }
.button-dark:hover { background: var(--forest-deep); }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: #fff; }
.button-sage { background: var(--sage); color: #10261f; }
.button-sage:hover { background: #91bea2; }
.text-link, .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 94px;
  border-bottom: 1px solid transparent;
  transition: height .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  height: 78px;
  background: rgba(252, 250, 245, 0.94);
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(23, 63, 53, 0.06);
  backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: grid; grid-template-columns: 250px 1fr auto; align-items: center; gap: 32px; }
.brand { display: block; width: 218px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 3vw, 46px); }
.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 1px;
  background: var(--forest);
  transition: right .3s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.menu-toggle { display: none; }
.mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 920px;
  padding: 175px 0 95px;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  left: -260px;
  top: 250px;
  border: 1px solid rgba(123, 174, 148, .34);
  border-radius: 50%;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}
.hero-copy { position: relative; z-index: 4; padding-top: 85px; }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-kicker::before { content: ""; width: 42px; height: 1px; background: var(--forest); }
.hero h1 {
  max-width: 770px;
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(72px, 7.4vw, 126px);
  line-height: .91;
  letter-spacing: -.045em;
}
.hero-intro { max-width: 520px; margin-bottom: 38px; color: #504b45; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.hero-visual {
  position: absolute;
  z-index: 2;
  top: 130px;
  right: max(0px, calc((100vw - 1440px) / 2));
  width: min(43vw, 650px);
  height: 680px;
}
.hero-main-image {
  position: absolute;
  inset: 0 0 0 72px;
  margin: 0;
  overflow: hidden;
  border-radius: 260px 260px 12px 12px;
  background: var(--sage-pale);
}
.hero-main-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; transition: transform 1.4s ease; }
.hero:hover .hero-main-image img { transform: scale(1.025); }
.hero-food-card {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: -12px;
  width: 220px;
  height: 270px;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--cream);
  box-shadow: 0 24px 70px rgba(34, 37, 29, .2);
}
.hero-food-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-note {
  position: absolute;
  right: -80px;
  top: 165px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--forest);
  transform: rotate(90deg);
  transform-origin: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-note p { margin: 0; line-height: 1.4; }
.note-line { width: 42px; height: 1px; margin-top: 7px; background: var(--forest); }
.hero-marquee {
  position: absolute;
  z-index: 5;
  left: 0; right: 0; bottom: 0;
  height: 56px;
  border-top: 1px solid rgba(23, 63, 53, .2);
  background: rgba(246, 241, 231, .8);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 26px;
  animation: marquee 34s linear infinite;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Experience */
.experience { background: var(--warm-white); }
.experience-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 9vw, 150px); align-items: center; }
.section-copy { padding-bottom: 40px; }
.section-copy p { max-width: 500px; margin-bottom: 34px; color: #5b5751; font-size: 17px; }
.experience-collage { position: relative; height: 720px; }
.experience-collage figure { position: absolute; margin: 0; overflow: hidden; }
.experience-collage img { width: 100%; height: 100%; object-fit: cover; }
.collage-large { left: 0; top: 0; width: 61%; height: 84%; }
.collage-small { right: 0; width: 34%; height: 40%; }
.collage-top { top: 7%; }
.collage-bottom { bottom: 4%; }
.collage-seal {
  position: absolute;
  z-index: 4;
  left: 47%;
  bottom: 2%;
  width: 170px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 60px rgba(14, 45, 38, .25);
}
.collage-seal::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; }
.collage-seal span { font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.collage-seal strong { font-family: var(--serif); font-size: 29px; font-weight: 400; }

/* Services */
.services { color: #fff; background: var(--forest-deep); }
.services .eyebrow { color: var(--sage); }
.services h2 em { color: var(--sage); }
.section-heading-row { display: grid; grid-template-columns: 1fr .52fr; gap: 70px; align-items: end; margin-bottom: 80px; }
.section-heading-row p { max-width: 500px; margin-bottom: 12px; color: rgba(255,255,255,.64); font-size: 17px; }
.service-list { border-top: 1px solid rgba(255,255,255,.18); }
.service-card { border-bottom: 1px solid rgba(255,255,255,.18); }
.service-card a { position: relative; min-height: 235px; display: grid; grid-template-columns: 80px 250px 1fr 60px; gap: 38px; align-items: center; padding: 32px 0; }
.service-number { align-self: start; margin-top: 10px; color: var(--sage); font-size: 11px; letter-spacing: .1em; }
.service-image { height: 170px; overflow: hidden; opacity: .88; transition: opacity .35s ease, transform .35s ease; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.service-content { display: grid; grid-template-columns: minmax(270px, .75fr) minmax(250px, 1fr); gap: 60px; align-items: center; }
.service-content h3 { margin: 0; font-family: var(--serif); font-size: clamp(37px, 3.4vw, 55px); line-height: 1.02; }
.service-content p { max-width: 400px; margin: 0; color: rgba(255,255,255,.6); font-size: 15px; }
.service-arrow { font-size: 28px; transition: transform .35s ease; }
.service-card a:hover .service-image { opacity: 1; transform: translateX(8px); }
.service-card a:hover .service-image img { transform: scale(1.06); }
.service-card a:hover .service-arrow { transform: translate(6px, -6px); }

/* Film */
.film-section { position: relative; min-height: 840px; color: #fff; background: #111; overflow: hidden; }
.film-frame { position: absolute; inset: 0; }
.film-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,18,15,.88) 0%, rgba(7,18,15,.52) 38%, rgba(7,18,15,.08) 70%), linear-gradient(0deg, rgba(5,10,9,.48), transparent 45%); }
.film-frame video { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.film-copy { position: relative; z-index: 3; padding-top: 190px; pointer-events: none; }
.film-copy h2 { max-width: 760px; color: #fff; font-size: clamp(60px, 7vw, 104px); }
.film-copy h2 em { color: var(--sage-pale); }
.film-copy p { max-width: 420px; color: rgba(255,255,255,.72); font-size: 18px; }
.sound-toggle {
  position: absolute;
  z-index: 4;
  right: 44px;
  bottom: 44px;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.sound-toggle svg { width: 21px; fill: currentColor; }
.sound-toggle span { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

/* Chef */
.chef { background: var(--cream); }
.chef-grid { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(70px, 10vw, 170px); align-items: center; }
.chef-portrait-wrap { position: relative; }
.chef-portrait { position: relative; margin: 0; aspect-ratio: 4/5; overflow: hidden; background: #070706; }
.chef-portrait::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.14); pointer-events: none; }
.chef-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.portrait-caption { position: absolute; left: -42px; bottom: 60px; color: var(--forest); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; transform: rotate(-90deg); }
.chef-copy { max-width: 610px; }
.chef-copy blockquote { margin: 0 0 30px; padding-left: 28px; border-left: 1px solid var(--sage); color: var(--forest); font-family: var(--serif); font-size: 27px; line-height: 1.45; }
.chef-copy > p { margin-bottom: 38px; color: #57524c; font-size: 17px; line-height: 1.85; }

/* Gallery */
.gallery { padding-bottom: 120px; background: var(--warm-white); overflow: hidden; }
.gallery-heading { margin-bottom: 60px; }
.gallery-heading h2 { max-width: 900px; }
.gallery-rail {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 0 max(40px, calc((100vw - 1280px) / 2));
  overflow: visible;
  cursor: grab;
  user-select: none;
}
.gallery-rail.dragging { cursor: grabbing; }
.gallery-item { width: 330px; height: 430px; flex: 0 0 auto; margin: 0; overflow: hidden; background: var(--sage-pale); }
.gallery-item.gallery-tall { height: 540px; }
.gallery-item:nth-child(even) { margin-top: 70px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform .8s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-hint { margin-top: 35px; color: #77716a; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.gallery-hint span { display: inline-block; margin-left: 8px; }

/* Quote */
.quote { position: relative; color: #fff; background: var(--forest); overflow: hidden; }
.quote-bg { position: absolute; inset: 0; opacity: .07; background: radial-gradient(circle at 10% 20%, #fff 0 1px, transparent 1px), radial-gradient(circle at 80% 30%, #fff 0 1px, transparent 1px); background-size: 44px 44px, 64px 64px; }
.quote::after { content: ""; position: absolute; width: 540px; height: 540px; left: -270px; bottom: -220px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.quote-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 8vw, 120px); align-items: start; }
.quote-intro h2 { color: #fff; }
.quote-intro h2 em { color: var(--sage-pale); }
.quote-intro > p { max-width: 430px; color: rgba(255,255,255,.68); font-size: 17px; }
.quote-steps { margin: 58px 0 0; padding: 0; list-style: none; }
.quote-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 20px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.18); }
.quote-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.quote-steps li > span { color: var(--sage); font-size: 11px; }
.quote-steps strong { display: block; margin-bottom: 5px; font-size: 14px; }
.quote-steps small { display: block; color: rgba(255,255,255,.55); font-size: 12px; }
.quote-form { padding: 50px; background: var(--warm-white); color: var(--ink); }
.form-progress { display: flex; justify-content: space-between; padding-bottom: 24px; margin-bottom: 34px; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.form-progress strong { color: var(--sage); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 26px; }
.quote-form label { display: block; }
.quote-form label > span { display: block; margin-bottom: 8px; color: #5f5951; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bbb5aa;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  padding: 11px 0 13px;
  transition: border-color .25s ease;
}
.quote-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #333 50%), linear-gradient(135deg, #333 50%, transparent 50%); background-position: calc(100% - 6px) 52%, 100% 52%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--forest); }
.quote-form .invalid { border-color: #aa3529; }
.full-field { margin-top: 28px; }
.quote-form textarea { resize: vertical; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 34px; }
.form-footer p { max-width: 220px; margin: 0; color: #77716a; font-size: 10px; line-height: 1.45; }
.form-status { margin: 16px 0 0; color: #9d332b; font-size: 12px; }

/* Footer */
.site-footer { color: rgba(255,255,255,.85); background: #171816; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding: 95px 0 70px; }
.footer-brand { max-width: 390px; }
.footer-logo-panel { width: 260px; margin-bottom: 26px; padding: 12px 14px; background: var(--warm-white); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: 14px; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.footer-nav div { display: flex; flex-direction: column; gap: 13px; }
.footer-nav span { margin-bottom: 8px; color: var(--sage); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-nav a { width: fit-content; color: rgba(255,255,255,.68); font-size: 14px; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 26px 0 34px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p, .back-top { margin: 0; color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.back-top { border: 0; background: transparent; cursor: pointer; }

/* Toast */
.toast {
  position: fixed;
  z-index: 2000;
  right: 24px;
  bottom: 24px;
  width: min(390px, calc(100vw - 48px));
  padding: 24px 48px 24px 24px;
  background: var(--warm-white);
  border-left: 4px solid var(--sage);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  transform: translateY(140%);
  opacity: 0;
  transition: .4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast button { position: absolute; right: 12px; top: 8px; border: 0; background: transparent; font-size: 24px; cursor: pointer; }
.toast strong { display: block; margin-bottom: 5px; color: var(--forest); }
.toast p { margin: 0; color: #625e57; font-size: 12px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 56px, 1120px); }
  .header-inner { grid-template-columns: 220px 1fr auto; }
  .brand { width: 190px; }
  .desktop-nav { gap: 24px; }
  .hero h1 { max-width: 620px; font-size: clamp(70px, 8vw, 105px); }
  .hero-visual { width: 46vw; right: -20px; }
  .hero-main-image { left: 100px; }
  .hero-food-card { width: 195px; height: 245px; }
  .service-card a { grid-template-columns: 52px 210px 1fr 40px; gap: 26px; }
  .service-content { gap: 34px; }
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 42px, 900px); }
  .section { padding: 110px 0; }
  .site-header { height: 82px; background: rgba(252,250,245,.92); backdrop-filter: blur(14px); }
  .site-header.scrolled { height: 72px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { width: 178px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { width: 100%; height: 1px; background: var(--ink); transition: transform .3s ease; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 72px 0 0;
    display: block;
    padding: 42px 21px;
    background: var(--warm-white);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu a { padding: 18px 6px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 34px; }
  .mobile-menu .mobile-quote { margin-top: 24px; border: 0; background: var(--forest); color: #fff; padding: 17px 20px; font-family: var(--sans); font-size: 13px; text-align: center; text-transform: uppercase; letter-spacing: .1em; }

  .hero { min-height: auto; padding: 150px 0 88px; }
  .hero-copy { padding-top: 0; }
  .hero h1 { max-width: 780px; font-size: clamp(68px, 11vw, 100px); }
  .hero-intro { max-width: 600px; }
  .hero-visual { position: relative; top: auto; right: auto; width: var(--shell); height: 680px; margin: 80px auto 0; }
  .hero-main-image { left: 10%; right: 0; }
  .hero-food-card { left: 0; bottom: -20px; }
  .hero-note { right: -65px; }
  .experience-grid, .chef-grid, .quote-grid { grid-template-columns: 1fr; }
  .experience-grid { gap: 70px; }
  .section-copy { max-width: 680px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 16px; }
  .service-card a { min-height: 210px; grid-template-columns: 42px 180px 1fr 30px; gap: 20px; }
  .service-content { grid-template-columns: 1fr; gap: 12px; }
  .service-content p { max-width: 500px; }
  .film-section { min-height: 760px; }
  .chef-grid { gap: 70px; }
  .chef-portrait-wrap { width: min(620px, 90%); }
  .quote-grid { gap: 70px; }
  .quote-intro { max-width: 690px; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 36px); }
  body { font-size: 15px; }
  .section { padding: 88px 0; }
  h2 { font-size: clamp(48px, 15vw, 69px); }
  .site-header { height: 72px; }
  .brand { width: 155px; }
  .mobile-menu { top: 68px; }
  .hero { padding: 122px 0 72px; }
  .hero-kicker { margin-bottom: 24px; font-size: 9px; }
  .hero h1 { font-size: clamp(58px, 17vw, 82px); margin-bottom: 28px; }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-visual { width: 100%; height: 520px; margin-top: 58px; }
  .hero-main-image { left: 36px; border-radius: 180px 180px 8px 8px; }
  .hero-food-card { width: 145px; height: 190px; border-width: 7px; }
  .hero-note { display: none; }
  .hero-marquee { height: 48px; }
  .experience-collage { height: 600px; }
  .collage-large { width: 72%; height: 78%; }
  .collage-small { width: 34%; height: 33%; }
  .collage-top { top: 5%; }
  .collage-bottom { bottom: 5%; }
  .collage-seal { left: 48%; width: 132px; height: 132px; }
  .collage-seal strong { font-size: 23px; }
  .section-heading-row { margin-bottom: 45px; }
  .service-card a { grid-template-columns: 1fr 32px; padding: 30px 0; }
  .service-number { position: absolute; top: 16px; left: 14px; z-index: 2; padding: 5px 8px; background: var(--forest-deep); }
  .service-image { grid-column: 1 / -1; width: 100%; height: 260px; }
  .service-content { grid-column: 1; }
  .service-content h3 { font-size: 43px; }
  .service-content p { font-size: 14px; }
  .service-arrow { grid-column: 2; grid-row: 2; align-self: start; }
  .film-section { min-height: 700px; }
  .film-copy { padding-top: 100px; }
  .film-copy h2 { font-size: clamp(55px, 17vw, 78px); }
  .film-frame::after { background: linear-gradient(0deg, rgba(6,18,15,.78), rgba(6,18,15,.22)), linear-gradient(90deg, rgba(6,18,15,.55), transparent); }
  .sound-toggle { right: 18px; bottom: 20px; width: 70px; height: 70px; }
  .chef-portrait-wrap { width: 100%; }
  .portrait-caption { display: none; }
  .chef-copy blockquote { font-size: 23px; }
  .gallery { padding-bottom: 90px; }
  .gallery-rail { gap: 14px; padding-inline: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .gallery-rail::-webkit-scrollbar { display: none; }
  .gallery-item, .gallery-item.gallery-tall { width: 270px; height: 390px; scroll-snap-align: start; }
  .gallery-item:nth-child(even) { margin-top: 38px; }
  .quote-form { padding: 30px 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 21px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-top { padding-top: 70px; }
  .footer-nav { gap: 30px; }
  .footer-logo-panel { width: 220px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
}

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


/* =========================================================
   Full-width rotating Meraki hero — approved homepage update
   ========================================================= */
.site-header {
  background: rgba(252, 250, 245, .92);
  border-bottom-color: rgba(29, 28, 26, .12);
  box-shadow: 0 12px 38px rgba(15, 38, 31, .06);
  backdrop-filter: blur(16px);
}
.site-header.scrolled { background: rgba(252, 250, 245, .96); }

.hero.hero-slider {
  position: relative;
  min-height: 900px;
  height: min(900px, 100svh);
  padding: 0;
  background: #14251f;
  color: #fff;
  overflow: hidden;
}
.hero.hero-slider::before { display: none; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: transform 8s cubic-bezier(.15,.55,.2,1);
}
.hero-slide.is-active > img { transform: scale(1); }
.hero-slide:nth-child(2) > img { object-position: center 49%; }
.hero-slide:nth-child(3) > img { object-position: center 53%; }
.hero-slide:nth-child(4) > img { object-position: center 48%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 16, .83) 0%, rgba(7, 20, 16, .67) 35%, rgba(7, 20, 16, .22) 65%, rgba(7, 20, 16, .10) 100%),
    linear-gradient(0deg, rgba(7, 20, 16, .56) 0%, transparent 45%);
}
.hero-slide-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 94px;
  padding-bottom: 110px;
}
.hero-copy-block { width: min(760px, 66vw); }
.hero-slider .hero-kicker {
  color: #dce9df;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease .15s, transform .7s ease .15s;
}
.hero-slider .hero-kicker::before { background: #dce9df; }
.hero-slider h1,
.hero-slider h2 {
  max-width: 820px;
  margin: 0 0 28px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(68px, 7.2vw, 124px);
  line-height: .91;
  letter-spacing: -.046em;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .78s ease .24s, transform .78s ease .24s;
}
.hero-slider h1 em,
.hero-slider h2 em { color: #c8ddcf; text-shadow: 0 2px 24px rgba(0,0,0,.12); }
.hero-slider .hero-copy-block > p {
  max-width: 590px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease .34s, transform .75s ease .34s;
}
.hero-slider .hero-actions {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease .44s, transform .7s ease .44s;
}
.hero-slide.is-active .hero-kicker,
.hero-slide.is-active h1,
.hero-slide.is-active h2,
.hero-slide.is-active .hero-copy-block > p,
.hero-slide.is-active .hero-actions { opacity: 1; transform: translateY(0); }
.button-hero {
  color: var(--forest-deep);
  background: #fff;
  border-color: #fff;
}
.button-hero:hover { background: var(--sage-pale); border-color: var(--sage-pale); }
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 600;
}
.hero-controls {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 78px;
  transform: translateX(-50%);
}
.hero-progress {
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background: rgba(255,255,255,.26);
  overflow: hidden;
}
.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
}
.hero-progress.is-running span { animation: merakiHeroProgress 6.5s linear forwards; }
@keyframes merakiHeroProgress { from { width: 0; } to { width: 100%; } }
.hero-control-row { display: flex; align-items: center; justify-content: space-between; }
.hero-dots { display: flex; align-items: center; gap: 24px; }
.hero-dot {
  position: relative;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}
.hero-dot.is-active { color: #fff; border-bottom-color: #fff; }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(8, 21, 17, .18);
  color: #fff;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.hero-arrow:hover { background: #fff; border-color: #fff; color: var(--forest); transform: translateY(-2px); }
.hero-slider .hero-marquee {
  z-index: 8;
  color: var(--forest-deep);
  border-top-color: rgba(255,255,255,.2);
  background: rgba(246, 241, 231, .94);
  backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .hero.hero-slider { height: min(850px, 100svh); min-height: 740px; padding: 0; }
  .hero-slide-content { padding-top: 84px; padding-bottom: 120px; }
  .hero-copy-block { width: min(760px, 90%); }
  .hero-slider h1, .hero-slider h2 { font-size: clamp(64px, 10.5vw, 98px); }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7,20,16,.80), rgba(7,20,16,.47) 68%, rgba(7,20,16,.20)),
      linear-gradient(0deg, rgba(7,20,16,.60), transparent 55%);
  }
  .hero-controls { bottom: 68px; }
}

@media (max-width: 680px) {
  .hero.hero-slider { min-height: 720px; height: 100svh; padding: 0; }
  .hero-slide-content { align-items: flex-end; padding-top: 92px; padding-bottom: 142px; }
  .hero-copy-block { width: 100%; }
  .hero-slider .hero-kicker { margin-bottom: 17px; font-size: 9px; }
  .hero-slider h1, .hero-slider h2 { font-size: clamp(51px, 15vw, 70px); margin-bottom: 22px; }
  .hero-slider .hero-copy-block > p { max-width: 94%; margin-bottom: 26px; font-size: 15px; line-height: 1.55; }
  .hero-slider .hero-actions { display: flex; flex-direction: row; align-items: center; gap: 18px; }
  .button-hero { min-height: 49px; padding: 13px 16px; font-size: 10px; }
  .hero-text-link { font-size: 12px; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6,18,15,.91) 0%, rgba(6,18,15,.72) 42%, rgba(6,18,15,.17) 76%, rgba(6,18,15,.08) 100%);
  }
  .hero-slide:nth-child(1) > img { object-position: 55% center; }
  .hero-slide:nth-child(2) > img { object-position: 58% center; }
  .hero-slide:nth-child(3) > img { object-position: 54% center; }
  .hero-slide:nth-child(4) > img { object-position: 57% center; }
  .hero-controls { bottom: 58px; }
  .hero-progress { margin-bottom: 12px; }
  .hero-dots { gap: 17px; }
  .hero-dot { font-size: 9px; }
  .hero-arrows { display: none; }
  .hero-slider .hero-marquee { height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide > img { transform: none !important; }
  .hero-progress span { animation: none !important; width: 100%; }
}



/* =========================================================
   MERAKI BRAND EDITION
   A distinct botanical Caribbean culinary identity.
   ========================================================= */
:root {
  --ink: #282620;
  --charcoal: #403b37;
  --forest: #1b5b49;
  --forest-deep: #103d32;
  --sage: #81ad95;
  --sage-pale: #e4eee7;
  --brown: #8b5a34;
  --clay: #b97850;
  --cream: #f8f0e2;
  --warm-white: #fffdf8;
  --paper: #f5ead8;
  --line: rgba(40, 38, 32, .13);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(129,173,149,.09), transparent 28%),
    var(--warm-white);
  font-family: var(--sans);
  color: var(--ink);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .19;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}
h1, h2, h3 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 65, "WONK" 1;
  letter-spacing: -.028em;
}
h2 {
  font-size: clamp(48px, 5.15vw, 84px);
  line-height: .98;
}
h1 em, h2 em {
  color: var(--clay);
  font-style: italic;
  font-variation-settings: "SOFT" 90, "WONK" 1;
}
.section { padding: 138px 0; }

.eyebrow {
  gap: 10px;
  margin-bottom: 22px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .19em;
}
.eyebrow::before {
  width: 21px;
  height: 21px;
  background: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231b5b49' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 27V13'/%3E%3Cpath d='M16 18C9 18 6 13 7 7c6 1 10 5 9 11Z'/%3E%3Cpath d='M16 22c7 0 10-5 9-11-6 1-10 5-9 11Z'/%3E%3C/g%3E%3C/svg%3E");
}
.eyebrow-light::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23dce9df' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 27V13'/%3E%3Cpath d='M16 18C9 18 6 13 7 7c6 1 10 5 9 11Z'/%3E%3Cpath d='M16 22c7 0 10-5 9-11-6 1-10 5-9 11Z'/%3E%3C/g%3E%3C/svg%3E");
}

.button {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  letter-spacing: .055em;
  box-shadow: none;
}
.button:hover { transform: translateY(-2px) rotate(-.25deg); }
.button-dark { background: var(--forest); }
.button-outline { border-color: rgba(40,38,32,.55); }
.button-sage { color: #fff; background: var(--clay); }
.button-sage:hover { background: #9c633f; }
.arrow-link, .text-link {
  gap: 15px;
  border: 0;
  padding: 0;
  font-size: 13px;
}
.arrow-link::after, .text-link::after {
  content: "";
  width: 38px;
  height: 18px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg viewBox='0 0 48 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23282620' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 10h42'/%3E%3Cpath d='m37 3 7 7-7 7'/%3E%3C/g%3E%3C/svg%3E");
  transition: transform .25s ease;
}
.arrow-link span, .text-link span { display: none; }
.arrow-link:hover::after, .text-link:hover::after { transform: translateX(5px); }

/* Header: light culinary studio bar rather than TCJ editorial navigation */
.site-header {
  height: 100px;
  background: rgba(255,253,248,.95);
  border-bottom: 0;
  box-shadow: 0 8px 34px rgba(27,91,73,.07);
  backdrop-filter: blur(18px);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 8px;
  opacity: .7;
  background: radial-gradient(ellipse at 50% 0, rgba(255,253,248,.96) 0 48%, transparent 52%) 0 0/28px 8px repeat-x;
}
.site-header.scrolled { height: 82px; background: rgba(255,253,248,.97); }
.header-inner { grid-template-columns: 235px 1fr auto; }
.brand { width: 204px; }
.desktop-nav { gap: clamp(20px, 2.7vw, 39px); }
.desktop-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .025em;
}
.desktop-nav a::after {
  left: 50%; right: 50%; bottom: -12px;
  height: 7px;
  border-radius: 50% 50% 50% 0;
  background: var(--sage);
  transform: rotate(35deg);
}
.desktop-nav a:hover::after { left: calc(50% - 4px); right: calc(50% - 4px); }
.header-cta {
  min-height: 46px;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(27,91,73,.35);
  border-radius: 999px;
  color: var(--forest);
  letter-spacing: .065em;
}
.header-cta:hover { color: #fff; background: var(--forest); }

/* Full-width hero, now with softer botanical controls and Meraki typography */
.hero.hero-slider {
  min-height: 850px;
  height: min(870px, 100svh);
  background: var(--forest-deep);
}
.hero-slide > img { filter: saturate(.94) contrast(.97); }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10,38,31,.89) 0%, rgba(10,38,31,.70) 33%, rgba(10,38,31,.24) 66%, rgba(10,38,31,.06) 100%),
    linear-gradient(0deg, rgba(10,38,31,.58), transparent 46%);
}
.hero-slide-content { padding-top: 110px; padding-bottom: 126px; }
.hero-copy-block { width: min(690px, 64vw); }
.hero-slider .hero-kicker {
  color: #dbeadd;
  font-size: 9px;
  letter-spacing: .22em;
}
.hero-slider .hero-kicker::before {
  width: 23px;
  height: 23px;
  background: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23dbeadd' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M16 28V12'/%3E%3Cpath d='M16 20C7 17 7 9 8 5c7 2 10 8 8 15Z'/%3E%3Cpath d='M16 23c8-2 10-8 9-14-7 2-10 7-9 14Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
}
.hero-slider h1, .hero-slider h2 {
  max-width: 780px;
  font-size: clamp(65px, 6.7vw, 112px);
  line-height: .94;
  letter-spacing: -.035em;
}
.hero-slider h1 em, .hero-slider h2 em {
  color: #c7dfcf;
}
.hero-slider .hero-copy-block > p {
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}
.button-hero {
  color: var(--forest-deep);
  border-color: var(--paper);
  background: var(--paper);
}
.button-hero:hover { color: #fff; background: var(--clay); border-color: var(--clay); }
.hero-text-link {
  border: 0;
  font-size: 13px;
}
.hero-text-link::after {
  content: "";
  width: 34px;
  height: 16px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg viewBox='0 0 48 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 10h42'/%3E%3Cpath d='m37 3 7 7-7 7'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-text-link span { display: none; }
.hero-controls {
  left: auto;
  right: max(40px, calc((100vw - 1280px)/2));
  bottom: 104px;
  width: auto;
  transform: none;
}
.hero-progress { display: none; }
.hero-control-row {
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.hero-dots {
  flex-direction: column;
  gap: 11px;
}
.hero-dot {
  width: 28px;
  height: 12px;
  padding: 0;
  border: 0;
}
.seed-dot {
  display: block;
  width: 9px;
  height: 9px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 70% 25% 70% 25%;
  transform: rotate(42deg);
  transition: width .3s ease, background .3s ease, border-color .3s ease;
}
.hero-dot.is-active .seed-dot {
  width: 25px;
  border-radius: 999px;
  background: #fff;
  border-color: #fff;
}
.hero-arrows { gap: 7px; }
.hero-arrow {
  width: 43px;
  height: 43px;
  border-radius: 62% 38% 62% 38%;
  font-size: 0;
}
.hero-prev::before, .hero-next::before {
  content: "";
  display: block;
  width: 18px; height: 18px;
  margin: auto;
  background: center / contain no-repeat;
}
.hero-prev::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12.5 4-6 6 6 6' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.hero-next::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7.5 4 6 6-6 6' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.hero-arrow:hover::before { filter: invert(25%) sepia(16%) saturate(1300%) hue-rotate(112deg); }
.hero-slider .hero-marquee {
  height: 52px;
  color: var(--forest);
  background: rgba(248,240,226,.96);
}
.marquee-track {
  gap: 24px;
  font-size: 9px;
  letter-spacing: .18em;
}
.marquee-track i {
  width: 8px;
  height: 13px;
  border-radius: 70% 20% 70% 20%;
  background: var(--sage);
  transform: rotate(42deg);
}

/* Meraki definition strip */
.meraki-philosophy {
  padding: 38px 0;
  color: var(--forest-deep);
  background: var(--paper);
  border-bottom: 1px solid rgba(27,91,73,.12);
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 56px minmax(280px,.8fr) 1fr;
  align-items: center;
  gap: 28px;
}
.philosophy-mark svg {
  width: 52px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.philosophy-inner p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px,2vw,28px);
  line-height: 1.25;
}
.philosophy-inner strong { color: var(--brown); font-style: italic; font-weight: 600; }
.philosophy-note {
  justify-self: end;
  color: rgba(16,61,50,.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Experience: organic frames inspired by leaves and plated curves */
.experience { background: var(--warm-white); }
.experience-grid {
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(70px,8vw,130px);
}
.section-copy p { color: #615b51; line-height: 1.85; }
.experience-collage { height: 690px; }
.experience-collage figure { box-shadow: 0 22px 65px rgba(16,61,50,.10); }
.collage-large {
  width: 62%; height: 86%;
  border-radius: 46% 46% 18px 18px / 26% 26% 18px 18px;
}
.collage-top {
  top: 4%;
  border-radius: 90px 20px 90px 20px;
}
.collage-bottom {
  bottom: 2%;
  border-radius: 20px 90px 20px 90px;
}
.collage-seal {
  left: 46%;
  bottom: 0;
  width: 162px; height: 162px;
  background: var(--clay);
  border-radius: 62% 38% 65% 35%;
  transform: rotate(-8deg);
}
.collage-seal::before { border-style: dashed; }
.collage-seal > * { transform: rotate(8deg); }
.collage-seal strong { font-family: var(--serif); font-style: italic; }

/* Services become distinct image-led culinary cards */
.services {
  position: relative;
  color: var(--ink);
  background: var(--sage-pale);
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  right: -180px; top: -160px;
  border: 1px solid rgba(27,91,73,.16);
  border-radius: 50%;
}
.services .eyebrow { color: var(--forest); }
.services h2 em { color: var(--brown); }
.section-heading-row { margin-bottom: 58px; }
.section-heading-row p { color: rgba(40,38,32,.67); line-height: 1.8; }
.service-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  border: 0;
}
.service-card {
  border: 0;
  background: rgba(255,253,248,.78);
  border-radius: 26px 26px 82px 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(16,61,50,.07);
}
.service-card:nth-child(2) { border-radius: 82px 26px 26px 26px; transform: translateY(28px); }
.service-card:nth-child(3) { border-radius: 26px 82px 26px 26px; }
.service-card a {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.service-icon {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 26px;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: rgba(248,240,226,.92);
  backdrop-filter: blur(10px);
}
.service-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-image {
  order: 1;
  width: 100%;
  height: 255px;
  opacity: 1;
  border-radius: 0 0 48% 0;
}
.service-content {
  order: 2;
  display: block;
  padding: 34px 32px 36px;
}
.service-content h3 {
  margin-bottom: 20px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(35px,3.1vw,47px);
  line-height: 1.02;
}
.service-content p {
  max-width: none;
  color: rgba(40,38,32,.66);
  line-height: 1.7;
}
.service-arrow {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 70% 30% 70% 30%;
  background: var(--forest);
}
.service-arrow svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card a:hover .service-image { transform: none; }
.service-card a:hover .service-image img { transform: scale(1.045); }
.service-card a:hover .service-arrow { transform: rotate(8deg) scale(1.04); }

/* Film: framed culinary journal rather than generic full-screen band */
.film-section {
  min-height: 900px;
  padding: 76px;
  color: #fff;
  background: var(--cream);
}
.film-frame {
  inset: 76px;
  overflow: hidden;
  border-radius: 34px 150px 34px 34px;
  box-shadow: 0 30px 80px rgba(16,61,50,.18);
}
.film-frame::after {
  background:
    linear-gradient(90deg, rgba(8,35,29,.88), rgba(8,35,29,.46) 48%, rgba(8,35,29,.07)),
    linear-gradient(0deg, rgba(8,35,29,.42), transparent 55%);
}
.film-copy { padding-top: 160px; }
.film-copy h2 { font-size: clamp(58px,6.6vw,96px); }
.sound-toggle {
  right: 116px;
  bottom: 112px;
  width: 76px; height: 76px;
  border-radius: 68% 32% 65% 35%;
  background: rgba(248,240,226,.92);
  color: var(--forest-deep);
}

/* Chef story */
.chef {
  background:
    radial-gradient(circle at 90% 18%, rgba(185,120,80,.13), transparent 27%),
    var(--warm-white);
}
.chef-grid { gap: clamp(75px,9vw,150px); }
.chef-portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 34px -28px -28px 42px;
  border: 1px solid rgba(27,91,73,.28);
  border-radius: 47% 47% 18px 18px / 25% 25% 18px 18px;
}
.chef-portrait {
  border-radius: 47% 47% 18px 18px / 25% 25% 18px 18px;
  box-shadow: 0 24px 75px rgba(16,61,50,.14);
}
.portrait-caption {
  right: -18px;
  bottom: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(27,91,73,.18);
  border-radius: 999px;
  color: var(--forest);
  background: var(--paper);
}
.chef-copy blockquote {
  position: relative;
  padding: 30px 0 30px 32px;
  border-left: 2px solid var(--clay);
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(24px,2.35vw,36px);
  font-style: italic;
  line-height: 1.35;
}
.chef-copy blockquote::before {
  content: "“";
  position: absolute;
  left: -18px; top: -20px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 78px;
}

/* Gallery: soft culinary frames */
.gallery { background: var(--paper); }
.gallery-heading { text-align: left; }
.gallery-rail { gap: 22px; padding: 0 max(40px,calc((100vw - 1280px)/2)); }
.gallery-item {
  border-radius: 22px 70px 22px 22px;
  box-shadow: 0 16px 45px rgba(16,61,50,.10);
}
.gallery-item:nth-child(even) { border-radius: 70px 22px 22px 22px; }
.gallery-item:nth-child(3n) { border-radius: 22px 22px 70px 22px; }
.gallery-hint {
  color: var(--forest);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Quote journey: warm hospitality, custom icons instead of timeline numbers */
.quote {
  background:
    radial-gradient(circle at 14% 12%, rgba(129,173,149,.18), transparent 29%),
    var(--forest-deep);
}
.quote-bg { opacity: .2; }
.quote-intro h2 em { color: #c8dfd0; }
.quote-steps li {
  grid-template-columns: 62px 1fr;
  gap: 20px;
}
.step-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(220,233,223,.32);
  border-radius: 65% 35% 65% 35%;
}
.step-icon svg {
  width: 28px;
  fill: none;
  stroke: var(--sage-pale);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.quote-form {
  border-radius: 28px 90px 28px 28px;
  background: #fffdf8;
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  border-radius: 13px;
  border: 1px solid rgba(40,38,32,.13);
  background: #fbf6ed;
}
.form-progress strong { color: var(--clay); }

/* Footer */
.site-footer {
  color: var(--forest-deep);
  background: var(--sage-pale);
}
.footer-logo-panel {
  border-radius: 22px 62px 22px 22px;
  background: rgba(255,253,248,.76);
}
.footer-nav span { color: var(--brown); }
.back-top {
  padding: 10px 16px;
  border: 1px solid rgba(27,91,73,.25);
  border-radius: 999px;
}

/* Responsive brand behaviour */
@media (max-width: 1100px) {
  .service-list { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2) { transform: none; }
  .service-card:nth-child(3) { grid-column: 1 / -1; }
  .service-card:nth-child(3) a { min-height: 470px; }
  .service-card:nth-child(3) .service-image { height: 260px; }
}
@media (max-width: 980px) {
  .philosophy-inner { grid-template-columns: 50px 1fr; }
  .philosophy-note { grid-column: 2; justify-self: start; }
  .film-section { min-height: 820px; padding: 44px; }
  .film-frame { inset: 44px; }
  .sound-toggle { right: 74px; bottom: 78px; }
  .hero-controls { right: 28px; }
}
@media (max-width: 760px) {
  .section { padding: 94px 0; }
  .site-header { height: 82px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { width: 174px; }
  .header-cta { display: none; }
  .menu-toggle {
    width: 48px; height: 48px;
    border: 1px solid rgba(27,91,73,.22);
    border-radius: 65% 35% 65% 35%;
  }
  .hero.hero-slider { min-height: 720px; height: 100svh; }
  .hero-slide-content { padding-top: 90px; padding-bottom: 132px; }
  .hero-copy-block { width: 100%; }
  .hero-slider h1, .hero-slider h2 {
    font-size: clamp(49px,14.2vw,68px);
    line-height: .95;
  }
  .hero-slider .hero-copy-block > p { max-width: 94%; font-size: 14px; }
  .hero-actions { gap: 15px; }
  .button-hero { min-height: 48px; padding: 12px 15px; font-size: 9px; }
  .hero-text-link { font-size: 11px; }
  .hero-controls {
    right: 17px;
    bottom: 61px;
  }
  .hero-arrows { display: none; }
  .hero-dots { gap: 9px; }
  .meraki-philosophy { padding: 30px 0; }
  .philosophy-inner { grid-template-columns: 42px 1fr; gap: 18px; }
  .philosophy-mark svg { width: 39px; }
  .philosophy-inner p { font-size: 19px; }
  .philosophy-note { font-size: 8px; line-height: 1.6; }
  .experience-collage { height: 540px; }
  .collage-seal { width: 124px; height: 124px; }
  .service-list { grid-template-columns: 1fr; gap: 18px; }
  .service-card, .service-card:nth-child(2), .service-card:nth-child(3) {
    grid-column: auto;
    border-radius: 22px 22px 68px 22px;
  }
  .service-card a, .service-card:nth-child(3) a { min-height: 500px; }
  .service-image, .service-card:nth-child(3) .service-image { height: 230px; }
  .film-section { min-height: 720px; padding: 18px; }
  .film-frame { inset: 18px; border-radius: 24px 86px 24px 24px; }
  .film-copy { padding-top: 112px; }
  .film-copy h2 { font-size: clamp(48px,13vw,67px); }
  .sound-toggle { right: 36px; bottom: 42px; width: 62px; height: 62px; }
  .chef-portrait-wrap::before { inset: 24px -12px -14px 22px; }
  .portrait-caption { right: 0; bottom: 22px; font-size: 8px; }
  .quote-form { border-radius: 22px 58px 22px 22px; }
}



/* =========================================================
   MERAKI TYPOGRAPHY REFINEMENT
   Distinct from the TCJ editorial serif look.
   ========================================================= */

:root {
  --display: "Bricolage Grotesque", "Arial Rounded MT Bold", Arial, sans-serif;
  --sans: "Outfit", Arial, sans-serif;
  --label: "DM Mono", Consolas, monospace;
  --serif: var(--display);
}

/* Main type system */
body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

h1,
h2,
h3,
.philosophy-inner p,
.chef-copy blockquote,
.footer-brand p,
.collage-seal strong {
  font-family: var(--display);
  font-style: normal;
  font-variation-settings: "wdth" 94, "opsz" 68;
}

h1,
h2 {
  font-weight: 540;
  letter-spacing: -.057em;
  line-height: .92;
}

h3 {
  font-weight: 590;
  letter-spacing: -.038em;
}

h1 em,
h2 em,
.chef-copy h2 em,
.quote-intro h2 em {
  position: relative;
  display: inline-block;
  color: var(--clay);
  font-family: var(--display);
  font-style: normal;
  font-weight: 430;
  letter-spacing: -.055em;
  font-variation-settings: "wdth" 88, "opsz" 74;
}

h1 em::after,
h2 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: -1%;
  bottom: .03em;
  height: .12em;
  z-index: -1;
  border-radius: 999px;
  background: currentColor;
  opacity: .18;
  transform: rotate(-1.2deg);
}

/* Small labels now feel like culinary notes, not editorial magazine labels. */
.eyebrow,
.hero-kicker,
.philosophy-note,
.gallery-hint,
.footer-nav span,
.form-progress,
.form-progress strong,
.portrait-caption,
.marquee-track,
.footer-bottom,
.header-cta,
.button,
.desktop-nav a {
  font-family: var(--label);
}

.eyebrow,
.hero-kicker {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .13em;
}

.desktop-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .015em;
}

.header-cta,
.button {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .025em;
}

.hero-slider h1,
.hero-slider h2 {
  max-width: 840px;
  font-size: clamp(64px, 7.15vw, 118px);
  font-weight: 520;
  line-height: .89;
  letter-spacing: -.065em;
}

.hero-slider h1 em,
.hero-slider h2 em {
  color: #c9dfd1;
  font-weight: 410;
}

.section h2 {
  max-width: 920px;
  font-size: clamp(50px, 5.55vw, 90px);
}

.section-copy p,
.section-heading-row p,
.chef-copy > p,
.film-copy > p,
.quote-intro > p,
.service-content p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.78;
}

.philosophy-inner p {
  font-size: clamp(23px, 2.15vw, 31px);
  font-weight: 470;
  letter-spacing: -.025em;
}

.philosophy-inner strong {
  color: var(--brown);
  font-family: var(--display);
  font-style: normal;
  font-weight: 670;
}

.service-content h3 {
  font-family: var(--display);
  font-size: clamp(35px, 3.3vw, 51px);
  font-weight: 560;
  line-height: .98;
  letter-spacing: -.048em;
}

.film-copy h2 {
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 102px);
  font-weight: 520;
  letter-spacing: -.06em;
}

.chef-copy blockquote {
  color: var(--forest-deep);
  font-size: clamp(25px, 2.45vw, 38px);
  font-weight: 430;
  font-style: normal;
  line-height: 1.28;
  letter-spacing: -.03em;
}

.chef-copy blockquote::before {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
}

.quote-steps h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 590;
  letter-spacing: -.025em;
}

.quote-form label > span {
  font-family: var(--label);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Refine spacing to suit the wider, rounded letterforms. */
.hero-copy-block {
  width: min(770px, 68vw);
}

.hero-slider .hero-copy-block > p {
  max-width: 590px;
}

.section-heading-row h2 {
  max-width: 780px;
}

/* High-contrast Meraki footer, preserving the original copy. */
.site-footer {
  position: relative;
  overflow: hidden;
  color: #fffaf0;
  background:
    radial-gradient(circle at 10% 0%, rgba(129,173,149,.18), transparent 30%),
    radial-gradient(circle at 95% 100%, rgba(185,120,80,.14), transparent 28%),
    #103d32;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    radial-gradient(circle at 18% 40%, transparent 0 72px, rgba(255,255,255,.25) 73px 74px, transparent 75px),
    radial-gradient(circle at 88% 68%, transparent 0 110px, rgba(255,255,255,.18) 111px 112px, transparent 113px);
}

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-logo-panel {
  background: #fffdf8;
  box-shadow: 0 18px 48px rgba(0,0,0,.14);
}

.footer-brand p {
  color: rgba(255,250,240,.82);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 430;
  line-height: 1.38;
}

.footer-nav span {
  color: #d6aa87;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .13em;
}

.footer-nav a {
  color: rgba(255,250,240,.82);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top-color: rgba(255,250,240,.17);
}

.footer-bottom p,
.back-top {
  color: rgba(255,250,240,.68);
}

.back-top {
  border-color: rgba(255,250,240,.28);
}

.back-top:hover {
  color: #103d32;
  background: #f8f0e2;
  border-color: #f8f0e2;
}

/* Mobile typography */
@media (max-width: 760px) {
  .hero-slider h1,
  .hero-slider h2 {
    font-size: clamp(49px, 14.6vw, 72px);
    line-height: .9;
    letter-spacing: -.064em;
  }

  .hero-copy-block {
    width: 100%;
  }

  .section h2 {
    font-size: clamp(46px, 13.4vw, 68px);
    line-height: .93;
  }

  .service-content h3 {
    font-size: clamp(35px, 10vw, 47px);
  }

  .film-copy h2 {
    font-size: clamp(49px, 13.8vw, 72px);
  }

  .chef-copy blockquote {
    font-size: 25px;
  }

  .footer-brand p {
    font-size: 22px;
  }
}



/* =========================================================
   MERAKI PREMIUM CORPORATE TYPOGRAPHY
   Clean, modern and restrained. The Meraki logo and imagery
   carry the personality; typography provides clarity.
   ========================================================= */

:root {
  --display: "Manrope", Arial, sans-serif;
  --sans: "DM Sans", Arial, sans-serif;
  --label: "Manrope", Arial, sans-serif;
  --serif: var(--display);
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
  font-feature-settings: "kern" 1, "liga" 1;
}

h1,
h2,
h3,
.philosophy-inner p,
.chef-copy blockquote,
.footer-brand p,
.collage-seal strong {
  font-family: var(--display);
  font-style: normal;
  font-variation-settings: normal;
}

h1,
h2 {
  font-weight: 600;
  line-height: .97;
  letter-spacing: -.046em;
}

h3 {
  font-weight: 600;
  letter-spacing: -.032em;
}

h1 em,
h2 em,
.chef-copy h2 em,
.quote-intro h2 em {
  display: inline;
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
  font-variation-settings: normal;
}

h1 em::after,
h2 em::after {
  display: none !important;
}

/* Small UI labels */
.eyebrow,
.hero-kicker,
.philosophy-note,
.gallery-hint,
.footer-nav span,
.form-progress,
.form-progress strong,
.portrait-caption,
.marquee-track,
.footer-bottom,
.header-cta,
.button,
.desktop-nav a,
.quote-form label > span {
  font-family: var(--label);
  font-style: normal;
}

.eyebrow,
.hero-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.header-cta,
.button {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}

/* Hero */
.hero-slider h1,
.hero-slider h2 {
  max-width: 860px;
  font-family: var(--display);
  font-size: clamp(62px, 6.6vw, 108px);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.hero-slider h1 em,
.hero-slider h2 em {
  color: #d3e4d8;
  font-weight: 500;
}

.hero-slider .hero-copy-block > p {
  max-width: 610px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -.006em;
}

/* Section typography */
.section h2 {
  max-width: 940px;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 80px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.section h2 em {
  color: var(--forest);
  font-weight: 500;
}

.section-copy p,
.section-heading-row p,
.chef-copy > p,
.film-copy > p,
.quote-intro > p,
.service-content p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: -.004em;
}

.philosophy-inner p {
  font-family: var(--display);
  font-size: clamp(21px, 1.9vw, 28px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.028em;
}

.philosophy-inner strong {
  color: var(--brown);
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
}

.service-content h3 {
  font-family: var(--display);
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.film-copy h2 {
  font-family: var(--display);
  font-size: clamp(54px, 6.2vw, 92px);
  font-weight: 600;
  line-height: .97;
  letter-spacing: -.05em;
}

.chef-copy blockquote {
  max-width: 660px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: clamp(24px, 2.25vw, 35px);
  font-weight: 500;
  font-style: normal;
  line-height: 1.34;
  letter-spacing: -.03em;
}

.chef-copy blockquote::before {
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
}

.quote-steps h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.quote-form label > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* More polished corporate spacing */
.hero-copy-block {
  width: min(760px, 66vw);
}

.section-heading-row h2 {
  max-width: 760px;
}

.section-copy,
.section-heading-row p,
.chef-copy > p {
  max-width: 620px;
}

/* Buttons and navigation */
.button,
.header-cta {
  border-radius: 8px;
  text-transform: none;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.desktop-nav a::after {
  left: 0;
  right: 100%;
  bottom: -10px;
  width: auto;
  height: 2px;
  border-radius: 0;
  background: var(--forest);
  transform: none;
}

.desktop-nav a:hover::after {
  left: 0;
  right: 0;
}

.button-hero {
  border-radius: 8px;
}

.hero-arrow {
  border-radius: 8px;
}

.seed-dot {
  border-radius: 50%;
  transform: none;
}

.hero-dot.is-active .seed-dot {
  width: 24px;
  border-radius: 999px;
}

/* Reduce decorative shape language for a more corporate finish */
.service-card,
.service-card:nth-child(2),
.service-card:nth-child(3) {
  border-radius: 16px;
}

.service-image,
.service-card:nth-child(3) .service-image {
  border-radius: 0;
}

.service-icon,
.service-arrow,
.step-icon,
.menu-toggle,
.sound-toggle {
  border-radius: 12px;
}

.film-frame {
  border-radius: 18px;
}

.quote-form {
  border-radius: 18px;
}

.footer-logo-panel {
  border-radius: 14px;
}

/* Footer remains high contrast and premium */
.site-footer {
  color: #fffaf0;
  background:
    radial-gradient(circle at 8% 0%, rgba(129,173,149,.16), transparent 28%),
    #103d32;
}

.site-footer::before {
  opacity: .07;
}

.footer-brand p {
  color: rgba(255,250,240,.82);
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -.02em;
}

.footer-nav span {
  color: #d6aa87;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.footer-nav a {
  color: rgba(255,250,240,.82);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
}

.footer-bottom p,
.back-top {
  color: rgba(255,250,240,.68);
}

/* Mobile */
@media (max-width: 760px) {
  .hero-slider h1,
  .hero-slider h2 {
    font-size: clamp(47px, 13.8vw, 66px);
    line-height: .95;
    letter-spacing: -.05em;
  }

  .hero-copy-block {
    width: 100%;
  }

  .section h2 {
    font-size: clamp(42px, 11.8vw, 60px);
    line-height: .99;
  }

  .service-content h3 {
    font-size: clamp(32px, 9vw, 43px);
  }

  .film-copy h2 {
    font-size: clamp(46px, 12.5vw, 66px);
  }

  .chef-copy blockquote {
    font-size: 24px;
  }

  .button,
  .header-cta {
    border-radius: 7px;
  }
}



/* =========================================================
   FINAL FOOTER COLOUR
   Restores the first concept's near-black charcoal footer.
   ========================================================= */
.site-footer {
  color: rgba(255,255,255,.88) !important;
  background: #171816 !important;
}

.site-footer::before {
  opacity: .025 !important;
}

.footer-logo-panel {
  background: #fffdf8;
  box-shadow: 0 16px 42px rgba(0,0,0,.28);
}

.footer-brand p {
  color: rgba(255,255,255,.76) !important;
}

.footer-nav span {
  color: #b9d3c2 !important;
}

.footer-nav a {
  color: rgba(255,255,255,.78) !important;
}

.footer-nav a:hover {
  color: #ffffff !important;
}

.footer-bottom {
  border-top-color: rgba(255,255,255,.12) !important;
}

.footer-bottom p,
.back-top {
  color: rgba(255,255,255,.48) !important;
}

.back-top {
  border-color: rgba(255,255,255,.18) !important;
}

.back-top:hover {
  color: #171816 !important;
  background: #f8f0e2 !important;
  border-color: #f8f0e2 !important;
}



/* =========================================================
   ABOUT MERAKI PAGE
   Premium corporate design with distinct Meraki character.
   ========================================================= */

.desktop-nav a.active::after,
.mobile-menu a.active::after {
  right: 0;
}

.about-hero {
  position: relative;
  min-height: 860px;
  height: min(900px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #171816;
}

.about-hero-media,
.about-hero-overlay {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 35%;
  transform: scale(1.015);
}

.about-hero-overlay {
  background:
    linear-gradient(90deg, rgba(23,24,22,.94) 0%, rgba(23,24,22,.82) 35%, rgba(23,24,22,.30) 66%, rgba(23,24,22,.08) 100%),
    linear-gradient(0deg, rgba(23,24,22,.64), transparent 50%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 55px;
  padding-top: 190px;
  padding-bottom: 100px;
}

.about-hero-copy {
  max-width: 820px;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: #c9dfd1;
  font-family: var(--label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.about-hero h1 {
  margin: 0 0 30px;
  max-width: 830px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(62px, 7vw, 110px);
  font-weight: 600;
  line-height: .93;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.about-hero h1 em {
  color: #c9dfd1;
  font-style: normal;
  font-weight: 500;
}

.about-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.75;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 35px;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
}

.about-text-link:hover {
  color: #fff;
}

.about-hero-facts {
  display: grid;
  gap: 1px;
  min-width: 250px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
}

.about-hero-facts div {
  display: grid;
  gap: 3px;
  padding: 21px 24px;
  background: rgba(23,24,22,.46);
}

.about-hero-facts strong {
  color: #fff;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.about-hero-facts span {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 500;
}

.about-scroll-note {
  position: absolute;
  z-index: 3;
  right: 27px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255,255,255,.50);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

.about-scroll-note i {
  width: 45px;
  height: 1px;
  background: currentColor;
}

.about-intro {
  background: var(--warm-white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(70px, 10vw, 155px);
  align-items: start;
}

.about-quote-block {
  position: sticky;
  top: 150px;
  padding: 42px;
  border: 1px solid rgba(40,38,32,.13);
  background: #f8f0e2;
}

.about-quote-block blockquote {
  margin: 15px 0 26px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: clamp(45px, 4.5vw, 70px);
  font-weight: 600;
  line-height: 1.01;
  letter-spacing: -.05em;
}

.quote-note {
  max-width: 390px;
  margin: 0;
  color: rgba(40,38,32,.64);
  font-size: 14px;
  line-height: 1.7;
}

.about-story-copy {
  padding-top: 10px;
}

.about-story-copy h2 {
  margin-bottom: 35px;
}

.about-story-copy p {
  max-width: 670px;
  color: #615b51;
  font-size: 17px;
  line-height: 1.85;
}

.about-story-copy p + p {
  margin-top: 22px;
}

.founder-feature {
  background: var(--paper);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(70px, 9vw, 145px);
  align-items: center;
}

.founder-images {
  position: relative;
  min-height: 700px;
}

.founder-portrait,
.founder-action {
  position: absolute;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 24px 70px rgba(23,24,22,.14);
}

.founder-portrait {
  inset: 0 18% 8% 0;
  background: #171816;
}

.founder-action {
  width: 39%;
  height: 48%;
  right: 0;
  bottom: 0;
  border: 10px solid var(--paper);
}

.founder-portrait img,
.founder-action img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-portrait img {
  object-position: center 30%;
}

.founder-caption {
  position: absolute;
  z-index: 3;
  left: 32px;
  bottom: 31px;
  padding: 11px 15px;
  color: var(--forest-deep);
  background: #fffdf8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.founder-copy > p {
  color: #615b51;
  font-size: 16px;
  line-height: 1.82;
}

.founder-copy > p + p {
  margin-top: 20px;
}

.founder-signature {
  margin-top: 42px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(40,38,32,.15);
}

.founder-signature span {
  display: block;
  margin-bottom: 9px;
  color: var(--brown);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.founder-signature strong {
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.credentials-band {
  padding: 75px 0;
  color: #fff;
  background: var(--forest-deep);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.credential {
  min-height: 245px;
  padding: 25px 31px;
  border-left: 1px solid rgba(255,255,255,.15);
}

.credential:first-child {
  border-left: 0;
}

.credential > span {
  display: block;
  margin-bottom: 40px;
  color: #b9d3c2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.credential h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 22px;
}

.credential p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 13px;
  line-height: 1.7;
}

.philosophy-section {
  background: var(--warm-white);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 9vw, 145px);
  align-items: center;
}

.philosophy-copy > p {
  max-width: 590px;
  color: #615b51;
  font-size: 16px;
  line-height: 1.82;
}

.principles {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}

.principles article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid rgba(40,38,32,.13);
}

.principle-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(27,91,73,.24);
  border-radius: 10px;
  color: var(--forest);
}

.principle-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principles h3 {
  margin: 2px 0 7px;
  color: var(--forest-deep);
  font-size: 20px;
}

.principles p {
  margin: 0;
  color: #6a645b;
  font-size: 14px;
  line-height: 1.65;
}

.philosophy-images {
  position: relative;
  min-height: 760px;
}

.philosophy-images figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 20px 60px rgba(23,24,22,.12);
}

.philosophy-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-main {
  inset: 0 24% 18% 0;
}

.philosophy-small {
  width: 39%;
  height: 41%;
  top: 5%;
  right: 0;
  border: 9px solid var(--warm-white);
}

.philosophy-wide {
  width: 59%;
  height: 30%;
  right: 0;
  bottom: 0;
  border: 9px solid var(--warm-white);
}

.journey-section {
  color: #fff;
  background: #171816;
}

.journey-heading {
  display: grid;
  grid-template-columns: .42fr 1fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 70px;
}

.journey-heading .eyebrow {
  align-self: start;
  color: #b9d3c2;
}

.journey-heading .eyebrow::before {
  background-image: none;
  width: 32px;
  height: 1px;
  background: currentColor;
}

.journey-heading h2 {
  margin: 0;
  color: #fff;
}

.journey-heading h2 em {
  color: #b9d3c2;
}

.journey-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(60px, 8vw, 125px);
}

.journey-image {
  position: sticky;
  top: 130px;
  height: 650px;
  overflow: hidden;
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: journey;
}

.journey-list li {
  position: relative;
  min-height: 180px;
  padding: 18px 0 42px 75px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.journey-list li::before {
  counter-increment: journey;
  content: "0" counter(journey);
  position: absolute;
  left: 0;
  top: 19px;
  color: #b9d3c2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.journey-list span {
  display: block;
  margin-bottom: 10px;
  color: #d6aa87;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.journey-list h3 {
  margin-bottom: 11px;
  color: #fff;
  font-size: 27px;
}

.journey-list p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.61);
  font-size: 14px;
  line-height: 1.7;
}

.about-capabilities {
  background: var(--paper);
}

.capabilities-heading {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 60px;
}

.capabilities-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.capabilities-heading h2 {
  margin: 0;
}

.capabilities-heading > p {
  margin: 0 0 4px;
  color: #655f56;
  font-size: 15px;
  line-height: 1.75;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.capability {
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid rgba(40,38,32,.10);
}

.capability-image {
  height: 315px;
  overflow: hidden;
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.capability:hover .capability-image img {
  transform: scale(1.04);
}

.capability-content {
  min-height: 245px;
  padding: 30px 29px 34px;
}

.capability-content > span {
  display: block;
  margin-bottom: 32px;
  color: var(--brown);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.capability-content h3 {
  margin-bottom: 14px;
  color: var(--forest-deep);
  font-size: 28px;
}

.capability-content p {
  margin: 0;
  color: #655f56;
  font-size: 14px;
  line-height: 1.7;
}

.about-cta {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.about-cta > img,
.about-cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-cta > img {
  object-fit: cover;
}

.about-cta-overlay {
  background:
    linear-gradient(90deg, rgba(23,24,22,.89), rgba(23,24,22,.62) 46%, rgba(23,24,22,.18)),
    linear-gradient(0deg, rgba(23,24,22,.35), transparent 60%);
}

.about-cta-content {
  position: relative;
  z-index: 2;
}

.about-cta-content h2 {
  max-width: 850px;
  margin-bottom: 25px;
  color: #fff;
}

.about-cta-content h2 em {
  color: #c9dfd1;
}

.about-cta-content p {
  max-width: 550px;
  margin: 0 0 31px;
  color: rgba(255,255,255,.73);
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }

  .about-hero-facts {
    grid-template-columns: repeat(3, 1fr);
    min-width: 0;
    max-width: 660px;
  }

  .about-intro-grid,
  .founder-grid,
  .philosophy-grid {
    gap: 65px;
  }

  .credentials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .credential:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.15);
  }

  .credential:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,.15);
  }

  .capabilities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .capability:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .about-hero {
    min-height: 790px;
  }

  .about-hero-media img {
    object-position: 62% center;
  }

  .about-hero-overlay {
    background:
      linear-gradient(90deg, rgba(23,24,22,.92), rgba(23,24,22,.66) 65%, rgba(23,24,22,.22)),
      linear-gradient(0deg, rgba(23,24,22,.60), transparent 50%);
  }

  .about-scroll-note {
    display: none;
  }

  .about-intro-grid,
  .founder-grid,
  .philosophy-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .about-quote-block,
  .journey-image {
    position: relative;
    top: auto;
  }

  .founder-images,
  .philosophy-images {
    min-height: 650px;
  }

  .journey-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .journey-image {
    height: 550px;
  }

  .capabilities-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .capabilities-heading .eyebrow {
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .about-hero {
    min-height: 760px;
    height: 100svh;
  }

  .about-hero-media img {
    object-position: 59% center;
  }

  .about-hero-overlay {
    background:
      linear-gradient(0deg, rgba(23,24,22,.94) 0%, rgba(23,24,22,.70) 58%, rgba(23,24,22,.20) 100%);
  }

  .about-hero-inner {
    padding-top: 130px;
    padding-bottom: 58px;
  }

  .about-hero h1 {
    font-size: clamp(48px, 13.3vw, 66px);
    line-height: .95;
  }

  .about-hero-copy > p {
    font-size: 14px;
  }

  .about-hero-facts {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-hero-facts div {
    padding: 15px 11px;
  }

  .about-hero-facts strong {
    font-size: 18px;
  }

  .about-hero-facts span {
    font-size: 8px;
  }

  .about-quote-block {
    padding: 29px;
  }

  .about-quote-block blockquote {
    font-size: 45px;
  }

  .founder-images,
  .philosophy-images {
    min-height: 520px;
  }

  .founder-portrait {
    inset: 0 12% 10% 0;
  }

  .founder-action {
    width: 42%;
    height: 42%;
  }

  .founder-caption {
    left: 18px;
    bottom: 20px;
    font-size: 7px;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .credential,
  .credential:first-child,
  .credential:nth-child(3) {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 27px 4px;
  }

  .credential:first-child {
    border-top: 0;
  }

  .credential > span {
    margin-bottom: 18px;
  }

  .philosophy-main {
    inset: 0 17% 17% 0;
  }

  .philosophy-small {
    width: 42%;
    height: 38%;
  }

  .philosophy-wide {
    width: 64%;
  }

  .journey-image {
    height: 470px;
  }

  .journey-list li {
    padding-left: 48px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .capability:last-child {
    grid-column: auto;
  }

  .capability-image {
    height: 270px;
  }

  .about-cta {
    min-height: 620px;
  }

  .about-cta > img {
    object-position: 64% center;
  }

  .about-cta-overlay {
    background:
      linear-gradient(0deg, rgba(23,24,22,.92), rgba(23,24,22,.58) 70%, rgba(23,24,22,.20));
  }
}



/* =========================================================
   CATERING & EVENTS PAGE
   Premium corporate Meraki direction.
   ========================================================= */

.catering-page .desktop-nav a.active::after,
.catering-page .mobile-menu a.active::after {
  right: 0;
}

.catering-hero {
  position: relative;
  min-height: 850px;
  height: min(900px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #171816;
}

.catering-hero-media,
.catering-hero-overlay {
  position: absolute;
  inset: 0;
}

.catering-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.01);
}

.catering-hero-overlay {
  background:
    linear-gradient(90deg, rgba(23,24,22,.93) 0%, rgba(23,24,22,.79) 38%, rgba(23,24,22,.29) 70%, rgba(23,24,22,.08) 100%),
    linear-gradient(0deg, rgba(23,24,22,.66), transparent 53%);
}

.catering-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 70px;
  padding-top: 185px;
  padding-bottom: 96px;
}

.catering-hero-copy {
  max-width: 875px;
}

.catering-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: #c9dfd1;
  font-family: var(--label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.catering-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.catering-hero h1 {
  margin: 0 0 30px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(61px, 6.7vw, 107px);
  font-weight: 600;
  line-height: .93;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.catering-hero h1 em {
  color: #c9dfd1;
  font-style: normal;
  font-weight: 500;
}

.catering-hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.74;
}

.catering-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 35px;
}

.catering-text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 600;
}

.catering-text-link:hover {
  color: #fff;
}

.catering-brief {
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(23,24,22,.58);
  backdrop-filter: blur(16px);
}

.catering-brief > span {
  display: block;
  padding: 16px 19px;
  color: #c9dfd1;
  border-bottom: 1px solid rgba(255,255,255,.13);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catering-brief ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.catering-brief li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  align-items: start;
  padding: 18px 19px;
  color: rgba(255,255,255,.75);
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
  line-height: 1.5;
}

.catering-brief li:first-child {
  border-top: 0;
}

.catering-brief strong {
  color: #d6aa87;
  font-size: 9px;
  letter-spacing: .10em;
}

.catering-intro {
  background: var(--warm-white);
}

.catering-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.catering-intro-copy h2 {
  margin: 0;
}

.catering-intro-body {
  padding-top: 44px;
}

.catering-intro-body > p {
  color: #615b51;
  font-size: 17px;
  line-height: 1.84;
}

.catering-intro-body > p + p {
  margin-top: 20px;
}

.catering-intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.catering-intro-points span {
  padding: 10px 13px;
  color: var(--forest-deep);
  border: 1px solid rgba(27,91,73,.20);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.event-types {
  background: var(--paper);
}

.event-types-heading {
  display: grid;
  grid-template-columns: 1fr .54fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.event-types-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -25px;
}

.event-types-heading h2 {
  margin: 0;
}

.event-types-heading > p {
  margin: 0 0 4px;
  color: #625c53;
  font-size: 15px;
  line-height: 1.75;
}

.event-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.event-type-card {
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid rgba(40,38,32,.10);
  transition: transform .35s ease, box-shadow .35s ease;
}

.event-type-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 65px rgba(23,24,22,.10);
}

.event-type-image {
  height: 325px;
  overflow: hidden;
}

.event-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.event-type-card:hover .event-type-image img {
  transform: scale(1.045);
}

.event-type-content {
  min-height: 445px;
  display: flex;
  flex-direction: column;
  padding: 29px 29px 31px;
}

.event-type-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.event-type-top span {
  color: var(--brown);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.event-type-top small {
  color: #7a7369;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.event-type-content h3 {
  margin: 0 0 19px;
  color: var(--forest-deep);
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.05;
}

.event-type-content > p {
  margin: 0;
  color: #655f56;
  font-size: 14px;
  line-height: 1.72;
}

.event-type-content ul {
  list-style: none;
  padding: 24px 0 0;
  margin: 25px 0 25px;
  border-top: 1px solid rgba(40,38,32,.11);
}

.event-type-content li {
  position: relative;
  padding: 6px 0 6px 18px;
  color: #5d574e;
  font-size: 12px;
}

.event-type-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--forest);
}

.event-type-content > a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

.format-explorer {
  color: #fff;
  background: var(--forest-deep);
}

.format-heading {
  display: grid;
  grid-template-columns: 1fr .52fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 65px;
}

.format-heading h2 {
  margin: 0;
  color: #fff;
}

.format-heading h2 em {
  color: #c9dfd1;
}

.format-heading > p {
  margin: 0 0 5px;
  color: rgba(255,255,255,.64);
  font-size: 15px;
  line-height: 1.75;
}

.format-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 48px;
}

.format-tabs {
  border-top: 1px solid rgba(255,255,255,.15);
}

.format-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.15);
  background: transparent;
  text-align: left;
  transition: color .25s ease, padding-left .25s ease;
}

.format-tab span {
  color: #d6aa87;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
}

.format-tab strong {
  font-size: 15px;
  font-weight: 600;
}

.format-tab:hover,
.format-tab.active {
  color: #fff;
  padding-left: 8px;
}

.format-tab.active {
  box-shadow: inset 3px 0 #c9dfd1;
}

.format-panels {
  min-height: 620px;
}

.format-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.format-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23,24,22,.88), rgba(23,24,22,.12) 66%);
}

.format-panel-copy {
  position: absolute;
  z-index: 2;
  left: 38px;
  right: 38px;
  bottom: 38px;
  max-width: 620px;
}

.format-panel-copy > span {
  display: block;
  margin-bottom: 14px;
  color: #c9dfd1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.format-panel-copy h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.03;
}

.format-panel-copy p {
  max-width: 570px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.7;
}

.menu-direction {
  background: var(--warm-white);
}

.menu-direction-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(70px, 9vw, 145px);
  align-items: center;
}

.menu-direction-visual {
  position: relative;
  min-height: 730px;
}

.menu-direction-visual figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 25px 70px rgba(23,24,22,.13);
}

.menu-direction-main {
  inset: 0 14% 9% 0;
}

.menu-direction-small {
  width: 38%;
  height: 39%;
  right: 0;
  bottom: 0;
  border: 9px solid var(--warm-white);
}

.menu-direction-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-direction-note {
  position: absolute;
  z-index: 3;
  left: 30px;
  bottom: 35px;
  max-width: 235px;
  padding: 17px 19px;
  color: var(--forest-deep);
  background: #f8f0e2;
}

.menu-direction-note strong,
.menu-direction-note span {
  display: block;
}

.menu-direction-note strong {
  margin-bottom: 5px;
  font-size: 11px;
}

.menu-direction-note span {
  color: #655f56;
  font-size: 11px;
  line-height: 1.5;
}

.menu-direction-copy > p {
  color: #625c53;
  font-size: 16px;
  line-height: 1.82;
}

.menu-considerations {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
}

.menu-considerations li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid rgba(40,38,32,.13);
}

.menu-considerations > li > span {
  color: var(--brown);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
}

.menu-considerations h3 {
  margin: -3px 0 7px;
  color: var(--forest-deep);
  font-size: 20px;
}

.menu-considerations p {
  margin: 0;
  color: #6a645b;
  font-size: 13px;
  line-height: 1.65;
}

.planning-process {
  background: var(--paper);
}

.planning-heading {
  display: grid;
  grid-template-columns: 1fr .52fr;
  gap: 58px;
  align-items: end;
  margin-bottom: 65px;
}

.planning-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.planning-heading h2 {
  margin: 0;
}

.planning-heading > p {
  margin: 0 0 5px;
  color: #625c53;
  font-size: 15px;
  line-height: 1.75;
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(40,38,32,.14);
  border-bottom: 1px solid rgba(40,38,32,.14);
}

.planning-step {
  position: relative;
  min-height: 330px;
  padding: 27px 27px 32px;
  border-left: 1px solid rgba(40,38,32,.14);
}

.planning-step:first-child {
  border-left: 0;
}

.planning-step > span {
  display: block;
  color: var(--brown);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.planning-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 48px 0 28px;
  color: var(--forest);
  border: 1px solid rgba(27,91,73,.23);
  border-radius: 10px;
}

.planning-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.planning-step h3 {
  margin: 0 0 13px;
  color: var(--forest-deep);
  font-size: 23px;
}

.planning-step p {
  margin: 0;
  color: #655f56;
  font-size: 13px;
  line-height: 1.68;
}

.catering-gallery {
  overflow: hidden;
  background: #171816;
}

.catering-gallery-track {
  display: grid;
  grid-template-columns: 1.15fr .8fr 1fr .8fr 1.1fr;
  height: 410px;
}

.catering-gallery figure {
  margin: 0;
  overflow: hidden;
  border-left: 2px solid #171816;
}

.catering-gallery figure:first-child {
  border-left: 0;
}

.catering-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .65s ease;
}

.catering-gallery figure:hover img {
  transform: scale(1.055);
}

.catering-faq {
  background: var(--warm-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 145px;
}

.faq-intro > p {
  max-width: 430px;
  color: #625c53;
  font-size: 15px;
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid rgba(40,38,32,.15);
}

.faq-item {
  border-bottom: 1px solid rgba(40,38,32,.15);
}

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 26px;
  gap: 20px;
  align-items: center;
  padding: 27px 0;
  color: var(--forest-deep);
  background: transparent;
  text-align: left;
}

.faq-item button span {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: -.03em;
}

.faq-item button i {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 10px;
  height: 1px;
  background: var(--forest);
  transition: transform .25s ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 52px 28px 0;
}

.faq-answer p {
  max-width: 720px;
  margin: 0;
  color: #655f56;
  font-size: 14px;
  line-height: 1.75;
}

.event-enquiry {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.event-enquiry-bg {
  position: absolute;
  inset: 0;
  opacity: .14;
  background:
    radial-gradient(circle at 9% 13%, rgba(201,223,209,.7), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(214,170,135,.55), transparent 27%);
}

.event-enquiry-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(65px, 8vw, 120px);
  align-items: start;
}

.event-enquiry-intro h2 {
  color: #fff;
}

.event-enquiry-intro h2 em {
  color: #c9dfd1;
}

.event-enquiry-intro > p {
  max-width: 480px;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.78;
}

.event-enquiry-contact {
  margin-top: 42px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.event-enquiry-contact span,
.event-enquiry-contact a {
  display: block;
}

.event-enquiry-contact span {
  margin-bottom: 7px;
  color: #c9dfd1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.event-enquiry-contact a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .catering-hero-inner {
    grid-template-columns: 1fr;
  }

  .catering-brief {
    max-width: 760px;
  }

  .catering-brief ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .catering-brief li {
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,.10);
  }

  .catering-brief li:first-child {
    border-left: 0;
  }

  .event-type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-type-card:last-child {
    grid-column: 1 / -1;
  }

  .event-type-card:last-child .event-type-image {
    height: 390px;
  }

  .planning-grid {
    grid-template-columns: 1fr 1fr;
  }

  .planning-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(40,38,32,.14);
  }

  .planning-step:nth-child(4) {
    border-top: 1px solid rgba(40,38,32,.14);
  }

  .catering-gallery-track {
    grid-template-columns: repeat(5, 300px);
    overflow-x: auto;
  }
}

@media (max-width: 900px) {
  .catering-intro-grid,
  .menu-direction-grid,
  .faq-layout,
  .event-enquiry-grid {
    grid-template-columns: 1fr;
  }

  .catering-intro-body {
    padding-top: 0;
  }

  .event-types-heading,
  .format-heading,
  .planning-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .event-types-heading .eyebrow,
  .planning-heading .eyebrow {
    margin-bottom: 0;
  }

  .format-layout {
    grid-template-columns: 1fr;
  }

  .format-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .format-tab {
    padding: 17px;
    border: 1px solid rgba(255,255,255,.15);
  }

  .format-tab.active {
    padding-left: 17px;
    box-shadow: inset 0 -3px #c9dfd1;
  }

  .menu-direction-visual {
    min-height: 640px;
  }

  .faq-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 700px) {
  .catering-hero {
    min-height: 780px;
    height: 100svh;
  }

  .catering-hero-media img {
    object-position: 63% center;
  }

  .catering-hero-overlay {
    background:
      linear-gradient(0deg, rgba(23,24,22,.95) 0%, rgba(23,24,22,.70) 61%, rgba(23,24,22,.22) 100%);
  }

  .catering-hero-inner {
    padding-top: 130px;
    padding-bottom: 54px;
    gap: 30px;
  }

  .catering-hero h1 {
    font-size: clamp(48px, 13.2vw, 65px);
    line-height: .95;
  }

  .catering-hero-copy > p {
    font-size: 14px;
  }

  .catering-brief {
    display: none;
  }

  .event-type-grid {
    grid-template-columns: 1fr;
  }

  .event-type-card:last-child {
    grid-column: auto;
  }

  .event-type-image,
  .event-type-card:last-child .event-type-image {
    height: 285px;
  }

  .event-type-content {
    min-height: 0;
  }

  .format-tabs {
    grid-template-columns: 1fr;
  }

  .format-panels,
  .format-panel {
    min-height: 520px;
  }

  .format-panel-copy {
    left: 23px;
    right: 23px;
    bottom: 25px;
  }

  .menu-direction-visual {
    min-height: 520px;
  }

  .menu-direction-main {
    inset: 0 11% 9% 0;
  }

  .menu-direction-small {
    width: 43%;
    height: 38%;
  }

  .menu-direction-note {
    left: 18px;
    bottom: 20px;
  }

  .planning-grid {
    grid-template-columns: 1fr;
  }

  .planning-step,
  .planning-step:nth-child(3),
  .planning-step:nth-child(4) {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(40,38,32,.14);
  }

  .planning-step:first-child {
    border-top: 0;
  }

  .planning-icon {
    margin: 28px 0 22px;
  }

  .catering-gallery-track {
    height: 330px;
    grid-template-columns: repeat(5, 260px);
  }

  .faq-item button span {
    font-size: 20px;
  }

  .event-enquiry .quote-form {
    padding: 25px 20px;
  }
}



/* =========================================================
   CLASSES WITH CHEF SIMMONE
   Premium, modern and corporate Meraki page.
   ========================================================= */

.classes-page .desktop-nav a.active::after,
.classes-page .mobile-menu a.active::after {
  right: 0;
}

@media (min-width: 981px) {
  .classes-page .header-inner,
  .about-page .header-inner,
  .catering-page .header-inner {
    grid-template-columns: 205px 1fr auto;
    gap: 22px;
  }

  .classes-page .brand,
  .about-page .brand,
  .catering-page .brand {
    width: 184px;
  }

  .classes-page .desktop-nav,
  .about-page .desktop-nav,
  .catering-page .desktop-nav {
    gap: clamp(14px, 1.55vw, 24px);
  }

  .classes-page .desktop-nav a,
  .about-page .desktop-nav a,
  .catering-page .desktop-nav a {
    font-size: 11.5px;
  }
}

/* Hero */
.classes-hero {
  position: relative;
  min-height: 850px;
  padding-top: 100px;
  color: #fff;
  background: #171816;
  overflow: hidden;
}

.classes-hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: 54% 46%;
}

.classes-hero-copy-panel {
  display: flex;
  align-items: center;
  padding: 82px max(44px, calc((100vw - 1280px) / 2)) 78px;
  padding-right: clamp(54px, 6vw, 108px);
  background:
    radial-gradient(circle at 10% 8%, rgba(123,174,148,.14), transparent 29%),
    #171816;
}

.classes-hero-copy {
  max-width: 790px;
}

.classes-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 27px;
  color: #c9dfd1;
  font-family: var(--label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.classes-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.classes-hero h1 {
  margin: 0 0 30px;
  max-width: 820px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(57px, 5.8vw, 94px);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.052em;
}

.classes-hero h1 em {
  color: #c9dfd1;
  font-style: normal;
  font-weight: 500;
}

.classes-hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.75;
}

.classes-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.classes-text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 600;
}

.classes-text-link:hover {
  color: #fff;
}

.classes-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 45px;
}

.classes-hero-meta span {
  padding: 9px 12px;
  color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
}

.classes-hero-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #403b37;
}

.classes-hero-main,
.classes-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.classes-hero-main {
  object-fit: cover;
  object-position: 57% center;
}

.classes-hero-shade {
  background:
    linear-gradient(90deg, rgba(23,24,22,.20), transparent 32%),
    linear-gradient(0deg, rgba(23,24,22,.55), transparent 53%);
}

.classes-hero-portrait {
  position: absolute;
  left: 34px;
  bottom: 35px;
  width: 175px;
  margin: 0;
  padding: 8px;
  color: #171816;
  background: #fffdf8;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
}

.classes-hero-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.classes-hero-portrait figcaption {
  padding: 11px 4px 4px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.classes-hero-portrait figcaption span {
  color: #766f66;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
}

.classes-hero-note {
  position: absolute;
  right: 30px;
  bottom: 35px;
  display: grid;
  min-width: 180px;
  padding: 20px 22px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(23,24,22,.52);
  backdrop-filter: blur(12px);
}

.classes-hero-note strong {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
}

.classes-hero-note span {
  margin-top: 12px;
  color: #c9dfd1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.classes-hero-strip {
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--forest-deep);
  background: #f8f0e2;
}

.classes-strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  animation: marquee 34s linear infinite;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.classes-strip-track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

/* Intro */
.classes-intro {
  background: var(--warm-white);
}

.classes-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.classes-intro-heading h2 {
  margin: 0;
}

.classes-intro-copy {
  padding-top: 43px;
}

.classes-intro-copy > p {
  color: #615b51;
  font-size: 17px;
  line-height: 1.84;
}

.classes-intro-copy > p + p {
  margin-top: 20px;
}

.classes-intro-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid rgba(40,38,32,.14);
  border-bottom: 1px solid rgba(40,38,32,.14);
}

.classes-intro-values article {
  min-height: 125px;
  padding: 23px 17px;
  border-left: 1px solid rgba(40,38,32,.14);
}

.classes-intro-values article:first-child {
  border-left: 0;
}

.classes-intro-values strong,
.classes-intro-values span {
  display: block;
}

.classes-intro-values strong {
  margin-bottom: 7px;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 18px;
}

.classes-intro-values span {
  color: #706960;
  font-size: 11px;
  line-height: 1.55;
}

/* Formats */
.class-formats {
  background: var(--paper);
}

.class-formats-heading,
.class-process-heading {
  display: grid;
  grid-template-columns: 1fr .52fr;
  gap: 58px;
  align-items: end;
  margin-bottom: 64px;
}

.class-formats-heading .eyebrow,
.class-process-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -25px;
}

.class-formats-heading h2,
.class-process-heading h2 {
  margin: 0;
}

.class-formats-heading > p,
.class-process-heading > p {
  margin: 0 0 4px;
  color: #625c53;
  font-size: 15px;
  line-height: 1.75;
}

.class-format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.class-format-card {
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid rgba(40,38,32,.10);
  transition: transform .35s ease, box-shadow .35s ease;
}

.class-format-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 65px rgba(23,24,22,.10);
}

.class-format-image {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.class-format-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.class-format-card:hover .class-format-image img {
  transform: scale(1.045);
}

.class-format-image > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  color: #171816;
  background: rgba(255,253,248,.94);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.class-format-content {
  min-height: 465px;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 31px;
}

.class-format-number {
  margin-bottom: 32px;
  color: var(--brown);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.class-format-content h3 {
  margin: 0 0 18px;
  color: var(--forest-deep);
  font-size: clamp(29px, 2.6vw, 40px);
  line-height: 1.05;
}

.class-format-content > p {
  margin: 0;
  color: #655f56;
  font-size: 14px;
  line-height: 1.72;
}

.class-format-content ul {
  list-style: none;
  padding: 23px 0 0;
  margin: 24px 0 26px;
  border-top: 1px solid rgba(40,38,32,.11);
}

.class-format-content li {
  position: relative;
  padding: 6px 0 6px 17px;
  color: #5d574e;
  font-size: 12px;
}

.class-format-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--forest);
}

.class-format-content > a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

/* Theme explorer */
.class-themes {
  color: #fff;
  background: var(--forest-deep);
}

.class-themes-heading {
  display: grid;
  grid-template-columns: 1fr .52fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 65px;
}

.class-themes-heading h2 {
  margin: 0;
  color: #fff;
}

.class-themes-heading h2 em {
  color: #c9dfd1;
}

.class-themes-heading > p {
  margin: 0 0 4px;
  color: rgba(255,255,255,.64);
  font-size: 15px;
  line-height: 1.75;
}

.class-theme-layout {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 48px;
}

.class-theme-tabs {
  border-top: 1px solid rgba(255,255,255,.15);
}

.class-theme-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
  color: rgba(255,255,255,.55);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, padding-left .25s ease;
}

.class-theme-tab span {
  color: #d6aa87;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
}

.class-theme-tab strong {
  font-size: 15px;
  font-weight: 600;
}

.class-theme-tab:hover,
.class-theme-tab.active {
  color: #fff;
  padding-left: 8px;
}

.class-theme-tab.active {
  box-shadow: inset 3px 0 #c9dfd1;
}

.class-theme-panels,
.class-theme-panel {
  min-height: 630px;
}

.class-theme-panel {
  position: relative;
  overflow: hidden;
}

.class-theme-panel > img,
.class-theme-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.class-theme-panel > img {
  object-fit: cover;
}

.class-theme-overlay {
  background:
    linear-gradient(0deg, rgba(23,24,22,.92), rgba(23,24,22,.12) 68%),
    linear-gradient(90deg, rgba(23,24,22,.22), transparent 45%);
}

.class-theme-copy {
  position: absolute;
  z-index: 2;
  left: 38px;
  right: 38px;
  bottom: 36px;
  max-width: 680px;
}

.class-theme-copy > span {
  display: block;
  margin-bottom: 13px;
  color: #c9dfd1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.class-theme-copy h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.03;
}

.class-theme-copy > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.7;
}

.class-theme-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.class-theme-copy li {
  padding: 8px 10px;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
}

/* Learning method */
.learning-method {
  background: var(--warm-white);
}

.learning-method-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(70px, 9vw, 145px);
  align-items: center;
}

.learning-method-visual {
  position: relative;
  min-height: 730px;
}

.learning-method-visual figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 25px 70px rgba(23,24,22,.13);
}

.learning-method-main {
  inset: 0 14% 9% 0;
}

.learning-method-detail {
  width: 38%;
  height: 39%;
  right: 0;
  bottom: 0;
  border: 9px solid var(--warm-white);
}

.learning-method-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.learning-method-badge {
  position: absolute;
  z-index: 3;
  left: 28px;
  bottom: 34px;
  max-width: 240px;
  padding: 17px 19px;
  color: var(--forest-deep);
  background: #f8f0e2;
}

.learning-method-badge strong,
.learning-method-badge span {
  display: block;
}

.learning-method-badge strong {
  margin-bottom: 5px;
  font-size: 11px;
}

.learning-method-badge span {
  color: #655f56;
  font-size: 11px;
  line-height: 1.5;
}

.learning-method-copy > p {
  color: #625c53;
  font-size: 16px;
  line-height: 1.82;
}

.learning-method-list {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
}

.learning-method-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid rgba(40,38,32,.13);
}

.learning-method-list > li > span {
  color: var(--brown);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
}

.learning-method-list h3 {
  margin: -3px 0 7px;
  color: var(--forest-deep);
  font-size: 20px;
}

.learning-method-list p {
  margin: 0;
  color: #6a645b;
  font-size: 13px;
  line-height: 1.65;
}

/* Private learning */
.private-learning {
  color: #fff;
  background: #171816;
}

.private-learning-heading {
  max-width: 950px;
  margin-bottom: 58px;
}

.private-learning-heading h2 {
  margin: 0;
  color: #fff;
}

.private-learning-heading h2 em {
  color: #c9dfd1;
}

.private-learning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.private-learning-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.private-learning-card > img,
.private-learning-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.private-learning-card > img {
  object-fit: cover;
  transition: transform .7s ease;
}

.private-learning-card:hover > img {
  transform: scale(1.045);
}

.private-learning-overlay {
  background:
    linear-gradient(0deg, rgba(23,24,22,.92), rgba(23,24,22,.10) 68%),
    linear-gradient(90deg, rgba(23,24,22,.26), transparent 55%);
}

.private-learning-copy {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 34px;
  max-width: 560px;
}

.private-learning-copy > span {
  display: block;
  margin-bottom: 13px;
  color: #c9dfd1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.private-learning-copy h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: clamp(32px, 3.3vw, 50px);
  line-height: 1.04;
}

.private-learning-copy p {
  max-width: 500px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 1.7;
}

.private-learning-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* Process */
.class-process {
  background: var(--paper);
}

.class-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(40,38,32,.14);
  border-bottom: 1px solid rgba(40,38,32,.14);
}

.class-process-step {
  min-height: 335px;
  padding: 27px 27px 32px;
  border-left: 1px solid rgba(40,38,32,.14);
}

.class-process-step:first-child {
  border-left: 0;
}

.class-process-step > span {
  display: block;
  color: var(--brown);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.class-process-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 48px 0 28px;
  color: var(--forest);
  border: 1px solid rgba(27,91,73,.23);
  border-radius: 10px;
}

.class-process-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.class-process-step h3 {
  margin: 0 0 13px;
  color: var(--forest-deep);
  font-size: 23px;
}

.class-process-step p {
  margin: 0;
  color: #655f56;
  font-size: 13px;
  line-height: 1.68;
}

/* Photo strip */
.classes-photo-strip {
  height: 410px;
  display: grid;
  grid-template-columns: 1.05fr .85fr 1fr .85fr 1.1fr;
  overflow: hidden;
  background: #171816;
}

.classes-photo-strip figure {
  margin: 0;
  overflow: hidden;
  border-left: 2px solid #171816;
}

.classes-photo-strip figure:first-child {
  border-left: 0;
}

.classes-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.classes-photo-strip figure:hover img {
  transform: scale(1.055);
}

/* FAQ */
.classes-faq {
  background: var(--warm-white);
}

.classes-faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.classes-faq-intro {
  position: sticky;
  top: 145px;
}

.classes-faq-intro > p {
  max-width: 430px;
  color: #625c53;
  font-size: 15px;
  line-height: 1.75;
}

/* Class enquiry */
.class-enquiry {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.class-enquiry-bg {
  position: absolute;
  inset: 0;
  opacity: .14;
  background:
    radial-gradient(circle at 9% 13%, rgba(201,223,209,.7), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(214,170,135,.55), transparent 27%);
}

.class-enquiry-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(65px, 8vw, 120px);
  align-items: start;
}

.class-enquiry-intro h2 {
  color: #fff;
}

.class-enquiry-intro h2 em {
  color: #c9dfd1;
}

.class-enquiry-intro > p {
  max-width: 480px;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.78;
}

.class-enquiry-contact {
  margin-top: 42px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.class-enquiry-contact span,
.class-enquiry-contact a {
  display: block;
}

.class-enquiry-contact span {
  margin-bottom: 7px;
  color: #c9dfd1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.class-enquiry-contact a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .classes-hero-grid {
    grid-template-columns: 58% 42%;
  }

  .class-format-grid {
    grid-template-columns: 1fr 1fr;
  }

  .class-format-card:last-child {
    grid-column: 1 / -1;
  }

  .class-format-card:last-child .class-format-image {
    height: 380px;
  }

  .class-process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .class-process-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(40,38,32,.14);
  }

  .class-process-step:nth-child(4) {
    border-top: 1px solid rgba(40,38,32,.14);
  }

  .classes-photo-strip {
    grid-template-columns: repeat(5, 300px);
    overflow-x: auto;
  }
}

@media (max-width: 900px) {
  .classes-hero {
    padding-top: 82px;
  }

  .classes-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .classes-hero-copy-panel {
    min-height: 650px;
    padding: 115px 42px 75px;
  }

  .classes-hero-visual {
    min-height: 600px;
  }

  .classes-intro-grid,
  .learning-method-grid,
  .classes-faq-layout,
  .class-enquiry-grid {
    grid-template-columns: 1fr;
  }

  .classes-intro-copy {
    padding-top: 0;
  }

  .class-formats-heading,
  .class-themes-heading,
  .class-process-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .class-formats-heading .eyebrow,
  .class-process-heading .eyebrow {
    margin-bottom: 0;
  }

  .class-theme-layout {
    grid-template-columns: 1fr;
  }

  .class-theme-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .class-theme-tab {
    padding: 17px;
    border: 1px solid rgba(255,255,255,.15);
  }

  .class-theme-tab.active {
    padding-left: 17px;
    box-shadow: inset 0 -3px #c9dfd1;
  }

  .learning-method-visual {
    min-height: 640px;
  }

  .classes-faq-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 700px) {
  .classes-hero {
    padding-top: 72px;
  }

  .classes-hero-copy-panel {
    min-height: 610px;
    padding: 95px 18px 62px;
  }

  .classes-hero h1 {
    font-size: clamp(46px, 13.2vw, 64px);
    line-height: .95;
  }

  .classes-hero-copy > p {
    font-size: 14px;
  }

  .classes-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .classes-hero-meta {
    margin-top: 34px;
  }

  .classes-hero-visual {
    min-height: 520px;
  }

  .classes-hero-main {
    object-position: 58% center;
  }

  .classes-hero-portrait {
    left: 18px;
    bottom: 20px;
    width: 135px;
  }

  .classes-hero-note {
    right: 18px;
    bottom: 20px;
    min-width: 145px;
    padding: 16px;
  }

  .classes-hero-note strong {
    font-size: 18px;
  }

  .classes-intro-values {
    grid-template-columns: 1fr;
  }

  .classes-intro-values article,
  .classes-intro-values article:first-child {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(40,38,32,.14);
  }

  .classes-intro-values article:first-child {
    border-top: 0;
  }

  .class-format-grid {
    grid-template-columns: 1fr;
  }

  .class-format-card:last-child {
    grid-column: auto;
  }

  .class-format-image,
  .class-format-card:last-child .class-format-image {
    height: 280px;
  }

  .class-format-content {
    min-height: 0;
  }

  .class-theme-tabs {
    grid-template-columns: 1fr;
  }

  .class-theme-panels,
  .class-theme-panel {
    min-height: 570px;
  }

  .class-theme-copy {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .class-theme-copy h3 {
    font-size: 35px;
  }

  .class-theme-copy ul {
    display: none;
  }

  .learning-method-visual {
    min-height: 520px;
  }

  .learning-method-main {
    inset: 0 11% 9% 0;
  }

  .learning-method-detail {
    width: 43%;
    height: 38%;
  }

  .learning-method-badge {
    left: 18px;
    bottom: 20px;
  }

  .private-learning-grid {
    grid-template-columns: 1fr;
  }

  .private-learning-card {
    min-height: 510px;
  }

  .private-learning-copy {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .class-process-grid {
    grid-template-columns: 1fr;
  }

  .class-process-step,
  .class-process-step:nth-child(3),
  .class-process-step:nth-child(4) {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(40,38,32,.14);
  }

  .class-process-step:first-child {
    border-top: 0;
  }

  .class-process-icon {
    margin: 28px 0 22px;
  }

  .classes-photo-strip {
    height: 330px;
    grid-template-columns: repeat(5, 260px);
  }

  .class-enquiry .quote-form {
    padding: 25px 20px;
  }
}
