@font-face {
  font-family: "Tatoo Sailor";
  src: url("assets/tatoo-sailor.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Ogdred Weary";
  src: url("assets/ogdred-weary.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Seaworthy";
  src: url("assets/seaworthy.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --navy: #123f42;
  --navy-deep: #0a2021;
  --sea: #2f706a;
  --sky: #83b5aa;
  --cream: #f0e3cc;
  --paper: #ded0b8;
  --red: #b4593f;
  --ink: #071919;
  --wood: #a8794d;
  --timber: #b38355;
  --timber-light: #d0a271;
  --timber-dark: #68452c;
  --black: #070909;
  --line: rgba(8, 47, 61, .2);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --vintage: "Rye", Georgia, serif;
  --sailor: "Seaworthy", "Ogdred Weary", "Tatoo Sailor", "Rye", Georgia, serif;
  --accent: "Londrina Solid", "Barlow Condensed", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }
.svg-filters { position: absolute; pointer-events: none; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--navy-deep);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  mix-blend-mode: soft-light;
  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='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}
body::after {
  content: "";
  position: fixed;
  z-index: 89;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 140px rgba(0, 0, 0, .34);
}
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  background: white;
  color: var(--navy);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 86px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
  background: rgba(6, 13, 14, .96);
  border-bottom: 1px solid rgba(232, 221, 199, .17);
  backdrop-filter: blur(12px);
}
.brand {
  display: block;
  color: var(--cream);
  text-decoration: none;
}
.site-header .brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark { width: 43px; height: 58px; object-fit: contain; }
.brand__name { font-family: var(--sailor); font-size: 2.35rem; font-weight: 400; letter-spacing: .015em; line-height: .8; text-transform: uppercase; }
.brand__logo { display: block; width: 152px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.4rem); }
.primary-nav > a:not(.button) {
  position: relative;
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.4rem;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}
.primary-nav > a:hover::after { right: 0; }
.primary-nav > a[aria-current="page"]::after { right: 0; }
.primary-nav .nav-order { min-height: 44px; padding: .7rem 1rem; }
.primary-nav .nav-order::before { display: none; }
.nav-toggle { display: none; }

.button {
  position: relative;
  overflow: visible;
  min-height: 52px;
  padding: .95rem 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232,221,199,.42);
  color: #fff;
  background: transparent;
  box-shadow: none;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.button::before { content: ""; position: absolute; z-index: 2; left: -8px; right: -8px; bottom: -12px; height: 24px; background: url("assets/rope-knot-white.png") center / 100% 100% no-repeat; filter: drop-shadow(0 2px 0 rgba(0,0,0,.7)); pointer-events: none; }
.button::after { display: none; }
.button:hover { color: #fff; background: rgba(232,221,199,.08); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 rgba(0,0,0,.3); }
.button--small { min-height: 43px; padding: .7rem 1.2rem; }
.button--red, .button--cream, .button--navy { color: #fff; background: transparent; border-color: rgba(232,221,199,.42); }
.button--red:hover, .button--cream:hover, .button--navy:hover { color: #fff; background: rgba(232,221,199,.08); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-underline-offset: .35rem;
  text-transform: uppercase;
}
.text-link span { font-size: 1.2rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--navy { color: var(--navy); }

.eyebrow, .kicker {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: .75rem; color: var(--timber-light); }
.eyebrow span { width: 32px; height: 2px; background: var(--red); }
.kicker { color: var(--red); }

.hero {
  position: relative;
  min-height: 600px;
  padding: clamp(4rem, 8vw, 7.5rem) 6vw 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 900px);
  gap: 7vw;
  overflow: hidden;
  color: var(--cream);
  background: #123b3b;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: .38;
  background-image: url("data:image/svg+xml,%3Csvg width='440' height='260' viewBox='0 0 440 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23e8ddc7' stroke-opacity='.16' fill='none'%3E%3Cpath d='M9 39l83-11M122 215l116-18M309 62l98-9M41 146l39-5M275 171l151-24'/%3E%3Cpath stroke-dasharray='2 9' d='M17 72h178M214 237h208M279 112h89'/%3E%3C/g%3E%3C/svg%3E");
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(39vw, 485px);
  height: 570px;
  top: 2.4rem;
  right: 4vw;
  opacity: .32;
  background-image: url("assets/sailor-official-logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(2deg);
}
.hero__copy, .hero__visual { position: relative; z-index: 2; }
.hero__copy { max-width: 900px; }
.hero h1 {
  margin: 1.2rem 0 1.3rem;
  font-family: var(--sailor);
  font-size: clamp(4.2rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .88;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(0,0,0,.22);
}
.hero h1 em { color: var(--timber-light); font-family: var(--accent); font-size: .9em; font-style: normal; font-weight: 400; letter-spacing: .025em; }
.hero__lead { max-width: 620px; margin: 0; color: rgba(243, 234, 216, .82); font-size: clamp(1rem, 1.4vw, 1.22rem); }
.hero__actions { margin-top: 2rem; display: flex; align-items: center; gap: 1.6rem; }
.hero__proof {
  margin: 3rem 0 0;
  padding: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(243, 234, 216, .18);
  list-style: none;
}
.hero__proof strong, .hero__proof span { display: block; }
.hero__proof strong { font-family: var(--display); font-size: 1.18rem; letter-spacing: .04em; text-transform: uppercase; }
.hero__proof span { color: rgba(243, 234, 216, .58); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; }
.hero__visual { align-self: center; padding: 1.3rem 1.4rem 4rem 0; }
.hero__visual--frontage {
  min-height: 500px;
  padding: 3rem 2rem;
  display: grid;
  place-items: center;
  background-color: #0a0c0c;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(255,255,255,.018) 90px 91px);
  border: 1px solid rgba(189,140,92,.28);
  box-shadow: 16px 16px 0 #020303;
  clip-path: polygon(1% 2%, 100% 0, 99% 98%, 0 100%);
  transform: rotate(1deg);
}
.hero__timber-sign {
  position: absolute;
  z-index: 4;
  top: -2.5rem;
  left: -2.4rem;
  width: 260px;
  min-height: 88px;
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #11100d;
  background-color: var(--timber);
  background-image:
    repeating-linear-gradient(2deg, rgba(46,25,10,.16) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(91deg, transparent 0 43px, rgba(255,235,197,.08) 44px 45px, transparent 46px 91px);
  border: 2px solid #1a130e;
  box-shadow: 8px 9px 0 rgba(0,0,0,.42);
  clip-path: polygon(1% 4%, 98% 0, 100% 94%, 3% 100%, 0 11%);
  transform: rotate(-4deg);
}
.hero__timber-sign::after { content: ""; position: absolute; inset: 6px; border: 1px dashed rgba(22,16,12,.35); }
.hero__timber-sign > * { position: relative; z-index: 1; filter: url(#stamp-filter); }
.hero__timber-sign svg { width: 48px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.hero__timber-sign strong, .hero__timber-sign small { display: block; }
.hero__timber-sign strong { font-family: var(--vintage); font-size: 1.45rem; letter-spacing: .07em; line-height: 1; }
.hero__timber-sign small { margin-top: .25rem; font-family: var(--display); font-size: .58rem; font-weight: 800; letter-spacing: .1em; }
.hero__timber-sign--large {
  position: relative;
  top: auto;
  left: auto;
  width: min(430px, 92%);
  min-height: 350px;
  padding: 2.2rem;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transform: rotate(-2deg);
}
.hero__timber-sign--large svg { width: 96px; height: 112px; }
.hero__timber-sign--large span { display: block; margin-bottom: .5rem; font-family: var(--display); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.hero__timber-sign--large strong { font-size: clamp(2.6rem, 5vw, 4.4rem); }
.hero__timber-sign--large small { margin-top: .65rem; font-size: .72rem; letter-spacing: .16em; }
.hero__frontage-meta {
  position: absolute;
  right: 2.2rem;
  bottom: 1.5rem;
  margin: 0;
  color: rgba(232,221,199,.65);
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  transform: rotate(-1deg);
}
.hero__frontage-meta span { margin-right: .55rem; color: var(--timber-light); }
.hero__image-frame {
  position: relative;
  padding: 10px;
  background: var(--cream);
  transform: rotate(2.6deg);
  background: #c8b99e;
  clip-path: polygon(1% 2%, 99% 0, 100% 97%, 3% 100%, 0 8%);
  box-shadow: 18px 18px 0 #0c4a50;
}
.hero__image-frame img { aspect-ratio: 1.26; object-fit: cover; object-position: center; filter: saturate(.65) contrast(1.18) sepia(.12); }
.hero__stamp {
  position: absolute;
  right: -1.8rem;
  bottom: -2.6rem;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--black);
  border: 4px double var(--timber-light);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.14rem;
  font-weight: 800;
  line-height: .95;
  text-align: center;
  transform: rotate(10deg);
}
.hero__note { position: absolute; left: -2.2rem; bottom: 0; color: var(--cream); transform: rotate(-5deg); }
.hero__note svg { width: 110px; fill: none; stroke: currentColor; stroke-width: 2; }
.hero__note span { display: block; margin-left: 1rem; font-family: var(--vintage); font-size: .75rem; }
.hero__wave {
  position: absolute;
  z-index: 1;
  left: -3%;
  right: -3%;
  bottom: -58px;
  height: 105px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
}

.two-ways { padding: .75rem 6vw 7rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; background: linear-gradient(120deg, var(--cream), #d4c3a5); }
.way-card { position: relative; min-height: 650px; padding: clamp(2rem, 4vw, 4rem); overflow: hidden; }
.way-card::after { content: ""; position: absolute; inset: 8px; pointer-events: none; border: 1px dashed rgba(232,221,199,.17); }
.way-card--restaurant {
  color: var(--cream);
  background-color: #173b35;
  background-image:
    linear-gradient(115deg, rgba(7,19,18,.63), rgba(24,61,54,.74)),
    url("assets/sailor-exterior.jpg");
  background-position: center;
  background-size: cover;
  border: 8px solid var(--timber-dark);
  clip-path: polygon(0 1%, 99% 0, 100% 98%, 1% 100%);
}
.way-card--truck { color: var(--cream); background: #174744; border: 1px solid rgba(208,162,113,.5); clip-path: polygon(1% 0, 100% 1%, 99% 100%, 0 98%); }
.way-card--truck { min-height: 860px; }
.way-card--truck .way-card__body { padding-bottom: min(520px, 28vw); }
.way-card--restaurant::after { border-color: rgba(232,221,199,.3); }
.way-card__number { position: absolute; top: 1.5rem; right: 1.8rem; font-family: var(--display); font-size: 1.1rem; font-weight: 800; }
.way-card__body { position: relative; z-index: 3; max-width: 460px; }
.way-card h2 { margin: 1rem 0 1.4rem; font-family: var(--display); font-size: clamp(4rem, 7vw, 6.8rem); line-height: .78; letter-spacing: -.04em; text-transform: uppercase; }
.way-card h2 { font-family: var(--sailor); font-size: clamp(2.7rem, 3.75vw, 3.4rem); font-weight: 400; line-height: .95; letter-spacing: -.015em; }
.way-card__body > p { max-width: 430px; margin-bottom: 2rem; color: rgba(232,221,199,.7); }
.way-card--restaurant .way-card__body > p { color: rgba(243,234,216,.82); }
.way-card--truck .way-card__body > p { color: rgba(243,234,216,.82); }
.way-card--restaurant .way-card__notice { margin: 0 0 1.5rem; padding: 1rem; color: rgba(243,234,216,.82); background: rgba(5,14,14,.58); border: 1px dashed rgba(208,162,113,.52); font-size: .78rem; line-height: 1.5; }
.way-card__notice span { display: block; margin-bottom: .3rem; color: var(--timber-light); font-family: var(--accent); font-size: 1.05rem; font-weight: 400; letter-spacing: .025em; }
.way-card__details { padding: 1.2rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; border-top: 1px dashed rgba(232,221,199,.24); border-bottom: 1px dashed rgba(232,221,199,.24); }
.way-card__details p { margin: 0; font-size: .82rem; }
.way-card__details span { display: block; margin-bottom: .35rem; color: var(--red); font-family: var(--display); font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.way-card--restaurant .way-card__details { border-color: rgba(232,221,199,.28); }
.way-card--restaurant .way-card__details span { color: var(--timber-light); }
.way-card--restaurant .text-link--navy { color: var(--cream); }
.way-card--restaurant .button--navy { color: #fff; background: transparent; }
.way-card__actions { margin-top: 1.8rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.way-card--restaurant .way-card__actions { max-width: 190px; display: grid; grid-template-columns: 1fr; }
.way-card--restaurant .way-card__actions .button {
  width: 100%;
  min-height: 60px;
  padding-inline: 0.75rem;
  text-align: center;
}
.way-card__illustration { position: absolute; right: -1rem; bottom: -1rem; width: 54%; opacity: .22; }
.way-card__illustration .line { fill: none; stroke: var(--navy); stroke-width: 3; stroke-linejoin: round; }
.way-card__illustration .thin { stroke-width: 1.5; }
.way-card__illustration .fill { fill: var(--navy); opacity: .15; }
.way-card--restaurant .way-card__illustration .line { stroke: var(--timber-light); }
.way-card--restaurant .way-card__illustration .fill { fill: var(--timber-light); }
.truck-status { margin-top: 1.6rem; padding: 1.2rem; display: flex; align-items: center; gap: .8rem; color: var(--navy); background: var(--sky); }
.truck-status p { margin: 0; font-size: .8rem; }
.truck-status__dot { width: 9px; height: 9px; flex: 0 0 auto; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 5px rgba(201,75,53,.18); }
.truck-photo { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: min(540px, 28vw); margin: 0; overflow: hidden; border-top: 8px solid var(--timber-dark); background: var(--black); }
.truck-photo::after { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(232,221,199,.24); pointer-events: none; }
.truck-photo img { height: 100%; object-fit: cover; object-position: 50% 54%; filter: saturate(.72) contrast(1.13) sepia(.06); }
.truck-photo figcaption { position: absolute; z-index: 2; left: 1.2rem; bottom: 1rem; padding: .5rem .65rem; color: #17110d; background: var(--timber-light); font-family: var(--display); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }

.manifesto { position: relative; min-height: 590px; padding: 4.5rem 6vw 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr); align-items: end; gap: clamp(2rem, 5vw, 5.5rem); overflow: hidden; color: var(--cream); background-color: #58706a; background-image: url("assets/driftwood-slogan.jpg"); background-position: center 58%; background-size: cover; background-repeat: no-repeat; background-blend-mode: multiply; border-top: 1px dashed rgba(208,162,113,.48); border-bottom: 1px dashed rgba(208,162,113,.48); }
.manifesto__speech { position: relative; z-index: 3; align-self: center; width: min(760px, 100%); margin-bottom: 4rem; padding: clamp(2rem, 4vw, 3.4rem); color: var(--ink); background: rgba(240,227,204,.94); border: 2px solid rgba(7,9,9,.76); border-radius: 30px 38px 32px 42px / 34px 28px 40px 30px; box-shadow: 0 16px 32px rgba(7,9,9,.36); transform: rotate(-.5deg); }
.manifesto__speech::before { content: ""; position: absolute; z-index: 1; right: -47px; top: 54%; border-top: 27px solid transparent; border-bottom: 27px solid transparent; border-left: 46px solid rgba(7,9,9,.76); }
.manifesto__speech::after { content: ""; position: absolute; z-index: 2; right: -39px; top: calc(54% + 5px); border-top: 22px solid transparent; border-bottom: 22px solid transparent; border-left: 39px solid #efe1c8; }
.manifesto__small { margin: 0 0 1rem; color: var(--red); font-size: .68rem; font-weight: 800; letter-spacing: .22em; }
.manifesto__big { margin: 0; font-family: var(--display); font-size: clamp(3rem, 5.8vw, 5.7rem); font-weight: 800; letter-spacing: .015em; line-height: .88; text-transform: uppercase; }
.manifesto__big em { color: var(--timber-dark); font: inherit; }
.manifesto__mermaid { position: relative; z-index: 2; width: min(430px, 31vw); max-height: 540px; justify-self: end; object-fit: contain; object-position: bottom; filter: drop-shadow(7px 8px 0 rgba(7,9,9,.3)); }
.manifesto__logo { position: absolute; z-index: 1; left: 2.2vw; bottom: .8rem; width: 128px; height: auto; opacity: .42; transform: rotate(-7deg); filter: saturate(.55) contrast(1.08); }

.menu-section { padding: 7rem 7vw; color: var(--cream); background: #0b1718; }
.section-heading { display: grid; grid-template-columns: 1fr .65fr; gap: 8vw; align-items: end; }
.section-heading h2 { margin: .6rem 0 0; font-family: var(--sailor); font-size: clamp(3.4rem, 6.5vw, 6rem); font-weight: 400; line-height: .95; letter-spacing: -.015em; text-transform: uppercase; }
.section-heading > p { max-width: 470px; margin: 0 0 .4rem; color: rgba(243,234,216,.67); }
.menu-tabs { margin-top: 4rem; display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(243,234,216,.22); }
.menu-tabs button { padding: 1.2rem 1rem; color: rgba(243,234,216,.5); background: transparent; border: 0; border-bottom: 4px solid transparent; cursor: pointer; font-family: var(--display); font-size: 1.55rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.menu-tabs button span { display: block; margin-bottom: .2rem; font-family: var(--body); font-size: .6rem; font-weight: 700; letter-spacing: .16em; }
.menu-tabs button[aria-selected="true"] { color: var(--cream); border-bottom-color: var(--red); }
.menu-board { padding: 3.5rem 0; display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; border-bottom: 1px solid rgba(243,234,216,.22); }
.menu-board[hidden] { display: none; }
.menu-board--images { grid-template-columns: .55fr 1.45fr; gap: 4vw; }
.menu-board__intro {
  position: relative;
  min-height: 350px;
  padding: 3.3rem 2rem 2rem;
  color: #17110d;
  background-color: var(--timber);
  background-image: repeating-linear-gradient(2deg, rgba(47,27,12,.14) 0 1px, transparent 1px 8px);
  border: 2px solid #1d140d;
  transform: rotate(-1.2deg);
  box-shadow: 11px 11px 0 #131a1b;
  clip-path: polygon(1% 1%, 99% 0, 100% 97%, 2% 100%, 0 8%);
}
.menu-board__intro--truck { color: var(--cream); background: #10191b; border-color: var(--timber-dark); }
.menu-board__script { font-family: var(--vintage); font-size: .7rem; }
.menu-board__intro h3 { margin: 1rem 0; font-family: var(--display); font-size: clamp(3rem, 5vw, 5rem); line-height: .82; letter-spacing: -.03em; text-transform: uppercase; }
.menu-board__intro p { max-width: 340px; font-size: .83rem; }
.menu-list article { padding: 1.2rem 0; display: grid; grid-template-columns: 1fr auto; gap: 1.2rem; border-bottom: 1px dashed rgba(243,234,216,.25); }
.menu-list h4 { margin: 0 0 .35rem; font-family: var(--display); font-size: 1.6rem; letter-spacing: .02em; text-transform: uppercase; }
.menu-list article p { margin: 0; color: rgba(243,234,216,.62); font-size: .8rem; }
.menu-list article > span { align-self: start; padding: .35rem .5rem; color: var(--cream); border: 1px solid rgba(232,221,199,.5); font-size: .55rem; font-weight: 800; letter-spacing: .1em; }
.menu-list article > strong { font-family: var(--display); color: var(--cream); font-size: 1.5rem; }
.menu-note { margin: 1rem 0 0; color: rgba(243,234,216,.48); font-size: .65rem; }
.menu-image-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.menu-image-card { margin: 0; background: #e9e4d9; border: 1px solid rgba(232,221,199,.42); box-shadow: 8px 8px 0 rgba(112,73,40,.55); }
.menu-image-card a { position: relative; display: block; overflow: hidden; background: #fff; }
.menu-image-card a::after { content: ""; position: absolute; inset: 0; background: rgba(5,10,10,.28); pointer-events: none; transition: background .25s ease; }
.menu-image-card img { width: 100%; height: auto; display: block; object-fit: contain; filter: grayscale(1) contrast(1.08) brightness(.9); transition: transform .25s ease; }
.menu-image-card a:hover img { transform: scale(1.012); }
.menu-image-card a:hover::after { background: rgba(5,10,10,.2); }
.menu-image-card figcaption { padding: .9rem 1rem 1rem; display: flex; flex-direction: column; gap: .15rem; color: #17110d; background: var(--timber-light); }
.menu-image-card figcaption strong { font-family: var(--display); font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; }
.menu-image-card figcaption span { font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.menu-image-note { grid-column: 1 / -1; margin: .45rem 0 0; color: rgba(243,234,216,.5); font-size: .65rem; }
.gallery { padding: 2.75rem 6vw 3.5rem; display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: auto auto; gap: 1rem; background: linear-gradient(135deg, var(--cream), #d6c5a7); }
.gallery figure { position: relative; margin: 0; overflow: hidden; background: var(--navy); }
.gallery figure img { height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.15) sepia(.08); transition: transform .5s ease; }
.gallery figure::after { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(232,221,199,.26); pointer-events: none; }
.gallery figure:hover img { transform: scale(1.035); }
.gallery figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: .45rem .65rem; color: var(--navy); background: var(--cream); font-size: .6rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.gallery__wide { grid-row: 1 / 3; min-height: 560px; }
.gallery > figure:not(.gallery__wide) { min-height: 270px; }
.gallery__quote { grid-column: 2 / 4; min-height: 270px; padding: 1.4rem 2rem; display: grid; grid-template-columns: minmax(0, 1fr) minmax(210px, .7fr); align-items: center; gap: 1rem; overflow: hidden; color: var(--cream); background: var(--sea); }
.gallery__quote-copy > span { color: var(--cream); font-family: Georgia, serif; font-size: 4rem; line-height: .6; }
.gallery__quote blockquote { margin: .7rem 0 1rem; font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 700; line-height: 1; text-transform: uppercase; }
.gallery__quote cite { color: rgba(243,234,216,.6); font-size: .62rem; font-style: normal; letter-spacing: .12em; text-transform: uppercase; }
.review-mascot { position: relative; min-height: 225px; display: flex; align-items: flex-end; justify-content: center; }
.review-mascot img { width: 185px; filter: drop-shadow(5px 7px 0 rgba(0,0,0,.24)); transform: rotate(-2deg); }
.review-mascot span { position: absolute; top: .5rem; right: 0; padding: .8rem 1.15rem; color: var(--ink); background: var(--cream); border: 2px solid var(--black); border-radius: 50%; font-family: var(--accent); font-size: 1.6rem; line-height: 1; transform: rotate(7deg); }
.review-mascot span::before { content: ""; position: absolute; left: -17px; bottom: 7px; border-top: 13px solid transparent; border-bottom: 5px solid transparent; border-right: 19px solid var(--black); transform: rotate(-17deg); }
.review-mascot span::after { content: ""; position: absolute; left: -12px; bottom: 9px; border-top: 9px solid transparent; border-bottom: 4px solid transparent; border-right: 15px solid var(--cream); transform: rotate(-17deg); }

.functions { padding: 4.5rem 7vw 8rem; display: grid; grid-template-columns: minmax(0, 1180px); justify-content: center; color: var(--cream); background: #153f3d; }
.functions__heading { margin-bottom: 2rem; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.functions h2 { margin: .8rem 0 1.4rem; font-family: var(--sailor); font-size: clamp(3.4rem, 6.2vw, 5.8rem); font-weight: 400; line-height: .95; letter-spacing: -.015em; text-transform: uppercase; }
.functions__copy > p { max-width: 570px; color: rgba(232,221,199,.68); }
.functions__image { position: relative; margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid rgba(232,221,199,.24); background: var(--black); box-shadow: 12px 12px 0 var(--timber-dark); transform: rotate(1deg); }
.functions__image::after { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(232,221,199,.3); pointer-events: none; }
.functions__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.14) sepia(.08); }
.event-accordion { margin: 2rem 0; border-top: 1px dashed rgba(232,221,199,.28); }
.event-accordion__item { border-bottom: 1px dashed rgba(232,221,199,.28); }
.event-accordion__item button { width: 100%; padding: 1rem 0; display: grid; grid-template-columns: 38px 1fr 34px; align-items: center; gap: .8rem; color: var(--cream); background: transparent; border: 0; cursor: pointer; text-align: left; }
.event-accordion__number { color: var(--red); font-family: var(--display); font-size: .75rem; font-weight: 800; }
.event-accordion__item strong { font-family: var(--display); font-size: 1.25rem; letter-spacing: .05em; text-transform: uppercase; }
.event-accordion__icon { width: 30px; height: 30px; display: grid; place-items: center; color: var(--cream); border: 1px solid rgba(232,221,199,.35); font-family: var(--display); font-size: 1.35rem; line-height: 1; transition: transform .2s ease, color .2s ease, border-color .2s ease; }
.event-accordion__item button:hover .event-accordion__icon { color: var(--timber-light); border-color: var(--timber-light); }
.event-accordion__item button[aria-expanded="true"] .event-accordion__icon { color: var(--timber-light); border-color: var(--timber-light); transform: rotate(45deg); }
.event-accordion__panel { padding: 0 3.2rem 1.25rem 46px; }
.event-accordion__panel p { margin: 0; max-width: 620px; color: rgba(232,221,199,.72); font-size: .86rem; line-height: 1.65; }
.functions__visual { position: relative; min-height: 600px; }
.functions__photo { position: absolute; padding: 8px; background: #bbaa8e; box-shadow: 12px 12px 0 #123f45; clip-path: polygon(1% 0, 100% 2%, 98% 100%, 0 97%); }
.functions__photo img { height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.18) sepia(.1); }
.functions__photo--one { top: 0; left: 0; width: 67%; height: 65%; transform: rotate(-3deg); }
.functions__photo--two { right: 0; bottom: 0; width: 58%; height: 51%; transform: rotate(4deg); }
.functions__tag { position: absolute; z-index: 2; right: 4%; top: 12%; width: 116px; height: 116px; display: grid; place-items: center; color: var(--cream); background: var(--red); border-radius: 50%; font-family: var(--vintage); font-size: .72rem; line-height: 1.25; text-align: center; transform: rotate(10deg); }

.event-page { color: var(--cream); background: #103132; }
.event-enquiry {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) 6vw clamp(5rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(540px, 1.22fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  background: #123839;
}
.event-enquiry__intro { position: relative; z-index: 2; }
.event-enquiry__intro h1 { margin: .8rem 0 1.4rem; font-family: var(--sailor); font-size: clamp(4rem, 7vw, 6.5rem); font-weight: 400; line-height: .92; text-transform: uppercase; }
.event-enquiry__intro > p { max-width: 510px; margin-bottom: 2rem; color: rgba(232,221,199,.7); }
.event-enquiry__photo { aspect-ratio: 1 / 1; margin: 2.5rem 0 2rem; overflow: hidden; background: var(--black); border: 1px solid rgba(232,221,199,.24); box-shadow: -12px 12px 0 var(--timber-dark); }
.event-enquiry__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.06); }
.event-enquiry__contact { padding-top: 1.5rem; display: flex; flex-direction: column; gap: .35rem; border-top: 1px dashed rgba(232,221,199,.28); }
.event-enquiry__contact span { color: var(--timber-light); font-family: var(--display); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.event-enquiry__contact a { width: fit-content; color: rgba(232,221,199,.74); font-size: .82rem; text-underline-offset: .25rem; }
.event-enquiry__anchor { position: absolute; right: -8rem; bottom: -9rem; width: 440px; height: 440px; fill: none; stroke: rgba(189,140,92,.055); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; transform: rotate(-11deg); }

.event-form { position: relative; z-index: 2; padding: clamp(1.5rem, 3vw, 2.75rem); color: var(--cream); background: rgba(8,40,41,.9); border: 1px solid rgba(240,227,204,.34); box-shadow: 14px 14px 0 rgba(104,69,44,.62); }
.event-form::before { content: ""; position: absolute; inset: 8px; pointer-events: none; border: 1px dashed rgba(232,221,199,.13); }
.event-form__heading { position: relative; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px dashed rgba(232,221,199,.25); }
.event-form__heading > span { font-family: var(--display); font-size: 2rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.event-form__heading p { max-width: 540px; margin: .5rem 0 0; color: rgba(232,221,199,.62); font-size: .8rem; }
.event-form__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; }
.event-form label { min-width: 0; display: flex; flex-direction: column; gap: .45rem; }
.event-form [hidden] { display: none; }
.event-form label > span, .event-form legend { color: var(--timber-light); font-family: var(--display); font-size: .73rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.event-form input, .event-form select, .event-form textarea { width: 100%; min-height: 48px; padding: .78rem .85rem; color: var(--cream); background: rgba(2,14,17,.82); border: 1px solid rgba(232,221,199,.3); border-radius: 0; font: 500 .84rem/1.35 var(--body); }
.event-form input[type="date"] { min-width: 0; max-width: 100%; color-scheme: dark; cursor: pointer; }
.event-form input[type="date"]::-webkit-calendar-picker-indicator { opacity: 1; cursor: pointer; filter: sepia(1) saturate(.7) brightness(1.65); }
.event-form select { color-scheme: dark; }
.event-form textarea { resize: vertical; min-height: 150px; }
.event-form input::placeholder, .event-form textarea::placeholder { color: rgba(232,221,199,.34); }
.event-form input:focus, .event-form select:focus, .event-form textarea:focus { outline: 2px solid var(--timber-light); outline-offset: 2px; border-color: transparent; }
.event-form__full { grid-column: 1 / -1; }
.event-form__choices { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; border: 0; }
.event-form__choices legend { margin-bottom: .55rem; }
.event-form__choices label { flex-direction: row; align-items: center; gap: .5rem; color: rgba(232,221,199,.75); font-size: .78rem; }
.event-form__choices input { width: 18px; min-height: 18px; margin: 0; accent-color: var(--timber-light); }
.event-form__booking { margin: 0 0 .35rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; border: 0; }
.event-form__booking legend { grid-column: 1 / -1; margin-bottom: .15rem; }
.event-form__booking label { min-height: 68px; padding: 1rem; flex-direction: row; align-items: center; gap: .8rem; color: rgba(232,221,199,.82); background: rgba(2,14,17,.56); border: 1px solid rgba(232,221,199,.3); cursor: pointer; }
.event-form__booking label:has(input:checked) { color: var(--cream); background: rgba(208,162,113,.14); border-color: var(--timber-light); }
.event-form__booking input { width: 19px; min-height: 19px; margin: 0; flex: 0 0 auto; accent-color: var(--timber-light); }
.event-form__booking label > span { color: inherit; font-size: .82rem; }
.event-form__booking label small { display: block; margin-top: .25rem; color: rgba(232,221,199,.58); font: 500 .68rem/1.35 var(--body); letter-spacing: 0; text-transform: none; }
.event-form__submit { position: relative; margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem; }
.event-form__submit small { max-width: 260px; color: rgba(232,221,199,.45); font-size: .65rem; }
.form-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.event-thanks-page { min-height: 100vh; color: var(--cream); background: #123839; }
.event-thanks { position: relative; min-height: 100vh; padding: 3rem 6vw; display: grid; place-items: center; overflow: hidden; }
.event-thanks > .brand { position: absolute; top: 2rem; left: 5vw; color: var(--cream); }
.event-thanks__card { position: relative; width: min(620px, 100%); padding: clamp(2rem, 5vw, 4.5rem); text-align: center; background: rgba(4,23,28,.88); border: 1px solid rgba(232,221,199,.3); box-shadow: 14px 14px 0 rgba(112,73,40,.55); }
.event-thanks__card h1 { margin: .8rem 0 1.2rem; font-family: var(--sailor); font-size: clamp(4rem, 9vw, 7rem); font-weight: 400; line-height: .9; text-transform: uppercase; }
.event-thanks__card p { margin: 0 auto 2rem; max-width: 420px; color: rgba(232,221,199,.7); }

.faq-page { color: var(--cream); background: #103132; }
.faq-hero { position: relative; overflow: hidden; min-height: 540px; padding: clamp(5rem, 9vw, 8rem) 7vw; display: grid; align-items: center; background: #123839; border-bottom: 1px solid rgba(240,227,204,.18); }
.faq-hero > div { position: relative; z-index: 2; }
.faq-hero h1 { margin: .75rem 0 1.3rem; font-family: var(--sailor); font-size: clamp(5rem, 10vw, 9rem); font-weight: 400; line-height: .84; text-transform: uppercase; }
.faq-hero p { max-width: 580px; color: rgba(232,221,199,.7); font-size: 1rem; }
.faq-hero__anchor { position: absolute; right: 5vw; width: min(440px, 40vw); height: auto; fill: none; stroke: rgba(189,140,92,.11); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; transform: rotate(-9deg); }
.business-facts { padding: 4rem 7vw; display: grid; grid-template-columns: minmax(240px, .38fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 7rem); color: var(--cream); background: #1d514e; border-bottom: 1px solid rgba(240,227,204,.18); }
.business-facts__heading h2 { margin: .7rem 0 0; font-family: var(--display); font-size: clamp(2.6rem, 4.5vw, 4rem); line-height: .92; text-transform: uppercase; }
.business-facts dl { margin: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px dashed rgba(232,221,199,.26); border-left: 1px dashed rgba(232,221,199,.26); }
.business-facts dl > div { min-height: 145px; padding: 1.4rem; border-right: 1px dashed rgba(232,221,199,.26); border-bottom: 1px dashed rgba(232,221,199,.26); }
.business-facts dt { color: var(--timber-light); font-family: var(--display); font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.business-facts dd { margin: .65rem 0 0; color: rgba(232,221,199,.72); font-size: .84rem; line-height: 1.6; }
.faq-content { padding: clamp(4rem, 7vw, 7rem) 7vw; display: grid; grid-template-columns: minmax(240px, .38fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 7rem); align-items: start; background: #123a39; }
.faq-content__intro { position: sticky; top: 120px; }
.faq-content__intro h2 { margin: .7rem 0 1rem; font-family: var(--display); font-size: clamp(2.6rem, 4.5vw, 4rem); line-height: .92; text-transform: uppercase; }
.faq-content__intro p { max-width: 340px; color: rgba(232,221,199,.62); font-size: .85rem; }
.faq-list { border-top: 1px dashed rgba(232,221,199,.28); }
.faq-list details { border-bottom: 1px dashed rgba(232,221,199,.28); }
.faq-list summary { min-height: 76px; padding: 1.1rem 0; display: grid; grid-template-columns: 44px 1fr 34px; align-items: center; gap: 1rem; color: var(--cream); cursor: pointer; list-style: none; font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 800; letter-spacing: .035em; line-height: 1.1; text-transform: uppercase; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list__number { color: var(--red); font-size: .75rem; }
.faq-list__icon { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(232,221,199,.35); font-size: 1.35rem; line-height: 1; transition: transform .2s ease, color .2s ease, border-color .2s ease; }
.faq-list details[open] .faq-list__icon { color: var(--timber-light); border-color: var(--timber-light); transform: rotate(45deg); }
.faq-list details > div { padding: 0 3.5rem 1.6rem 60px; }
.faq-list details p { margin: 0; max-width: 720px; color: rgba(232,221,199,.72); font-size: .87rem; line-height: 1.7; }
.faq-list details a { color: var(--timber-light); text-underline-offset: .25rem; }
.faq-cta { padding: 4.5rem 7vw 5.5rem; display: flex; align-items: center; justify-content: space-between; gap: 3rem; background: #0f2a2b; border-top: 1px solid rgba(232,221,199,.14); }
.faq-cta h2 { margin: .55rem 0 0; font-family: var(--sailor); font-size: clamp(3.2rem, 6vw, 5rem); font-weight: 400; line-height: .9; text-transform: uppercase; }
.faq-cta__actions { display: flex; align-items: center; gap: 2rem; }

.about-page { color: var(--cream); background: #0d2b2b; }
.about-hero { position: relative; min-height: 720px; padding: clamp(4rem, 7vw, 7rem) 7vw; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr); align-items: center; gap: clamp(3rem, 7vw, 8rem); overflow: hidden; background: #102f30; }
.about-hero__copy { position: relative; z-index: 3; }
.about-hero h1 { margin: .8rem 0 1.5rem; font-family: var(--sailor); font-size: clamp(4rem, 5.3vw, 4.8rem); font-weight: 400; line-height: .9; letter-spacing: -.025em; text-transform: uppercase; }
.about-hero__copy > p { max-width: 540px; color: rgba(243,234,216,.72); font-size: 1rem; line-height: 1.75; }
.about-hero__photo { position: relative; z-index: 2; margin: 0; min-height: 480px; background: var(--black); border: 1px solid rgba(240,227,204,.26); box-shadow: 16px 16px 0 var(--timber-dark); transform: rotate(1deg); }
.about-hero__photo img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.05); }
.about-hero__photo figcaption { position: absolute; right: 0; bottom: 0; padding: .8rem 1rem; color: var(--cream); background: rgba(7,9,9,.88); font-family: var(--display); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.about-hero__anchor { position: absolute; left: -7rem; bottom: -9rem; width: 390px; height: 390px; fill: none; stroke: rgba(208,162,113,.07); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transform: rotate(13deg); }
.about-chapter__number { margin-bottom: 1.2rem; color: var(--timber-light); font-family: var(--display); font-size: .75rem; font-weight: 800; letter-spacing: .14em; }
.about-chapter--people { padding: clamp(5rem, 8vw, 8rem) 7vw; display: grid; grid-template-columns: 60px minmax(270px, .7fr) minmax(320px, 1fr); gap: clamp(2rem, 5vw, 6rem); align-items: start; color: var(--ink); background: var(--cream); }
.about-chapter--people .about-chapter__number { color: var(--red); }
.about-chapter__heading h2, .about-truck__copy h2, .about-future h2 { margin: .7rem 0 0; font-family: var(--sailor); font-size: clamp(3.8rem, 7vw, 6.5rem); font-weight: 400; line-height: .88; letter-spacing: -.015em; text-transform: uppercase; }
.about-chapter__copy { padding-top: 2.1rem; border-top: 1px dashed rgba(7,25,25,.3); }
.about-chapter__copy p { margin: 0 0 1.2rem; max-width: 690px; color: rgba(7,25,25,.72); font-size: .95rem; line-height: 1.8; }
.about-truck { padding: clamp(5rem, 8vw, 8rem) 7vw; display: grid; grid-template-columns: minmax(340px, 1.05fr) minmax(320px, .95fr); align-items: center; gap: clamp(3rem, 7vw, 8rem); background: #174744; }
.about-truck__photo { position: relative; margin: 0 0 0 10px; aspect-ratio: 4 / 3; background: var(--black); border: 1px solid rgba(240,227,204,.25); box-shadow: -14px 14px 0 var(--timber-dark); transform: rotate(-1deg); }
.about-truck__photo img { width: 100%; height: 100%; object-fit: cover; image-rendering: auto; filter: saturate(.78) contrast(1.08); }
.about-truck__photo span { position: absolute; left: -1px; bottom: -1px; padding: .8rem 1rem; color: var(--black); background: var(--timber-light); font-family: var(--display); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.about-truck__photo figcaption { position: absolute; right: .75rem; bottom: .65rem; color: rgba(243,234,216,.7); font-size: .58rem; letter-spacing: .07em; text-transform: uppercase; }
.about-truck__photo figcaption a { text-underline-offset: .16rem; }
.about-truck__copy > p { max-width: 600px; color: rgba(243,234,216,.72); font-size: .9rem; line-height: 1.75; }
.about-truck__facts { margin: 1.6rem 0 0; padding: 1.2rem 0; display: grid; grid-template-columns: .75fr 1fr 1.35fr; gap: 1rem; border-top: 1px dashed rgba(243,234,216,.28); border-bottom: 1px dashed rgba(243,234,216,.28); list-style: none; }
.about-truck__facts li { color: rgba(243,234,216,.76); font-size: .7rem; line-height: 1.45; }
.about-truck__facts span { display: block; margin-bottom: .25rem; color: var(--timber-light); font-family: var(--display); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.about-truck__copy .text-link { margin-top: 1rem; display: inline-block; }
.about-future { position: relative; min-height: 690px; padding: clamp(5rem, 9vw, 9rem) 7vw; display: grid; align-items: center; overflow: hidden; background-color: #101717; background-image: url("assets/booking-interior.jpg"); background-size: cover; background-position: center; }
.about-future::before { content: ""; position: absolute; inset: 0; background: rgba(7,9,9,.82); }
.about-future__content { position: relative; z-index: 2; max-width: 710px; }
.about-future__content > p { max-width: 650px; color: rgba(243,234,216,.72); font-size: .9rem; line-height: 1.75; }
.about-future__actions { margin-top: 2.2rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

.contact { position: relative; overflow: hidden; color: var(--cream); background: #102b2b; border-top: 16px solid var(--timber-dark); }
.contact__mast { padding: 7rem 7vw 4rem; display: grid; grid-template-columns: .35fr 1fr; gap: 4vw; align-items: start; }
.contact__mast .kicker { color: var(--timber-light); }
.contact__mast h2 { margin: 0; font-family: var(--sailor); font-size: clamp(4rem, 8vw, 7rem); font-weight: 400; line-height: .95; letter-spacing: -.015em; text-transform: uppercase; }
.contact__grid { padding: 0 7vw 6rem; display: grid; grid-template-columns: repeat(3, 1fr); }
.contact__grid article { min-height: 260px; padding: 2rem; border: 1px dashed rgba(240,227,204,.34); background: rgba(6,28,29,.25); }
.contact__grid article + article { border-left: 0; }
.contact__icon { display: grid; place-items: center; width: 43px; height: 43px; color: var(--navy); background: var(--sky); border-radius: 50%; font-weight: 800; }
.contact__grid h3 { margin: 1.6rem 0 .8rem; font-family: var(--display); font-size: 1.8rem; letter-spacing: .04em; text-transform: uppercase; }
.contact__grid p { color: rgba(243,234,216,.72); font-size: .82rem; }
.contact__grid a { font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-underline-offset: .3rem; text-transform: uppercase; }
.contact__grid p a { color: rgba(243,234,216,.72); font-weight: 500; letter-spacing: 0; text-decoration: none; text-transform: none; }
.contact__ticker { display: flex; width: max-content; padding: .75rem 0; color: #16110c; background-color: var(--timber); background-image: repeating-linear-gradient(2deg, rgba(47,27,12,.14) 0 1px, transparent 1px 8px); font-family: var(--display); font-size: 1.5rem; font-weight: 800; letter-spacing: .08em; white-space: nowrap; }
.contact__ticker div { animation: ticker 24s linear infinite; }
@keyframes ticker { to { transform: translateX(-100%); } }

.site-footer { min-height: 180px; padding: 2.5rem 5vw; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 2rem; color: var(--cream); background: #070d0e; border-top: 1px dashed rgba(240,227,204,.24); }
.brand--footer { color: var(--cream); width: max-content; }
.brand--footer .brand__logo { width: 164px; }
.site-footer__copy { text-align: center; }
.site-footer__copy p { margin: 0; color: rgba(243,234,216,.55); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer__credit { margin-top: .75rem; display: inline-block; color: var(--timber-light); font-family: var(--display); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__links { display: flex; justify-content: flex-end; gap: 1.2rem; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

@media (min-width: 981px) {
  .primary-nav { gap: clamp(1.5rem, 2.6vw, 2.8rem); }
  .primary-nav > a:not(.button) { font-size: 1.05rem; }
  .primary-nav .nav-order { min-height: 48px; padding: .8rem 1.25rem; font-size: 1rem; }
}

@media (max-width: 980px) {
  .site-header { min-height: 74px; backdrop-filter: none; }
  .nav-toggle { position: relative; z-index: 55; padding: .5rem 0 .5rem .5rem; display: flex; align-items: center; gap: .6rem; color: var(--cream); background: none; border: 0; cursor: pointer; }
  .nav-toggle__label { font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .nav-toggle__lines { width: 25px; height: 18px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
  .nav-toggle__lines i { display: block; height: 2px; background: currentColor; transition: transform .2s ease; }
  .nav-open .nav-toggle__lines i:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-open .nav-toggle__lines i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; z-index: 52; inset: 0; padding: 6rem 2rem 2rem; display: none; flex-direction: column; align-items: flex-start; gap: .85rem; overflow-y: auto; color: var(--cream); background: var(--navy-deep); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) { display: block; font-family: var(--display); font-size: 2.2rem; letter-spacing: 0; }
  .primary-nav .button { margin-top: auto; width: 100%; }
  .nav-open .nav-toggle { color: var(--cream); }
  .hero { grid-template-columns: 1fr; padding-bottom: 4.5rem; }
  .hero__visual { width: min(660px, 88vw); justify-self: center; }
  .hero__timber-sign { left: -.5rem; }
  .hero__timber-sign--large { left: auto; }
  .two-ways { grid-template-columns: 1fr; }
  .way-card { min-height: 600px; }
  .way-card--truck { min-height: 880px; }
  .way-card--truck .way-card__body { padding-bottom: min(520px, 58vw); }
  .truck-photo { height: min(520px, 58vw); }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-board { gap: 4vw; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__wide { grid-column: 1 / 3; grid-row: auto; min-height: 440px; }
  .gallery__quote { grid-column: 1 / 3; }
  .functions { grid-template-columns: 1fr; }
  .functions__visual { width: min(680px, 100%); }
  .event-enquiry { grid-template-columns: 1fr; gap: 4rem; }
  .event-enquiry__photo { min-height: 0; aspect-ratio: 16 / 9; }
  .manifesto { grid-template-columns: minmax(0, 1fr) minmax(230px, .4fr); padding-inline: 4vw; }
  .about-hero { min-height: auto; grid-template-columns: 1fr; }
  .about-hero__photo { min-height: 440px; }
  .about-chapter--people { grid-template-columns: 50px 1fr; }
  .about-chapter--people .about-chapter__copy { grid-column: 2; }
  .about-truck { grid-template-columns: 1fr; }
  .contact__mast { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__grid article { min-height: 0; }
  .contact__grid article + article { border-left: 1px solid rgba(243,234,216,.24); border-top: 0; }
}

@media (max-width: 700px) {
  .site-header { min-height: 74px; padding: 0 1rem; backdrop-filter: none; }
  .brand__logo { width: 116px; }
  .brand__mark { width: 35px; height: 49px; }
  .brand__name { font-size: 1.9rem; }
  .nav-toggle { position: relative; z-index: 55; padding: .5rem 0 .5rem .5rem; display: flex; align-items: center; gap: .6rem; color: var(--cream); background: none; border: 0; cursor: pointer; }
  .nav-toggle__label { font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .nav-toggle__lines { width: 25px; height: 18px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
  .nav-toggle__lines i { display: block; height: 2px; background: currentColor; transition: transform .2s ease; }
  .nav-open .nav-toggle__lines i:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-open .nav-toggle__lines i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; z-index: 52; inset: 0; padding: 5.5rem 2rem 2rem; display: none; flex-direction: column; align-items: flex-start; gap: .75rem; overflow-y: auto; color: var(--cream); background: var(--navy-deep); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) { display: block; font-family: var(--display); font-size: 2.2rem; letter-spacing: 0; }
  .primary-nav .button { margin-top: auto; width: 100%; }
  .nav-open .nav-toggle { color: var(--cream); }
  .hero { min-height: auto; padding: 4.5rem 1.2rem 4rem; gap: 3.2rem; }
  .hero h1 { font-size: clamp(3.1rem, 15.5vw, 4.2rem); line-height: .96; }
  .hero::before { width: 270px; height: 350px; top: 8rem; right: -5rem; opacity: .16; transform: rotate(4deg); }
  .hero__lead { font-size: .93rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .hero__proof { grid-template-columns: 1fr; }
  .hero__proof li { display: flex; justify-content: space-between; align-items: baseline; }
  .hero__visual { width: 92%; padding-right: 0; }
  .hero__visual--frontage { min-height: 420px; padding: 2rem 1rem; }
  .hero__timber-sign--large { width: 94%; min-height: 300px; padding: 1.5rem; }
  .hero__timber-sign--large svg { width: 76px; height: 88px; }
  .hero__frontage-meta { right: 1rem; bottom: .8rem; font-size: .55rem; }
  .hero__stamp { right: -1rem; width: 84px; height: 84px; font-size: .92rem; }
  .hero__note { display: none; }
  .two-ways { padding: .75rem 1rem 4.5rem; }
  .way-card { min-height: 620px; padding: 2.1rem 1.4rem; }
  .way-card h2 { max-width: 100%; font-size: clamp(1.95rem, 8.2vw, 2.1rem); letter-spacing: -.025em; }
  .way-card__details { grid-template-columns: 1fr; }
  .way-card__illustration { width: 80%; }
  .truck-route { height: 155px; }
  .way-card--truck { min-height: 760px; }
  .manifesto { min-height: 0; padding: 3.5rem 1.2rem 0; grid-template-columns: 1fr; gap: 0; }
  .manifesto__speech { width: 100%; margin: 0; padding: 1.7rem 1.25rem 1.8rem; border-radius: 24px 30px 27px 34px / 28px 23px 32px 25px; box-shadow: 0 12px 24px rgba(7,9,9,.34); }
  .manifesto__speech::before { right: 23%; top: auto; bottom: -38px; border-top: 37px solid rgba(7,9,9,.76); border-right: 24px solid transparent; border-bottom: 0; border-left: 24px solid transparent; }
  .manifesto__speech::after { right: calc(23% + 4px); top: auto; bottom: -30px; border-top: 30px solid #efe1c8; border-right: 19px solid transparent; border-bottom: 0; border-left: 19px solid transparent; }
  .manifesto__big { font-size: 2.85rem; }
  .manifesto__mermaid { width: 215px; max-height: none; margin: .8rem .3rem 0 0; justify-self: end; }
  .manifesto__logo { left: 1.15rem; right: auto; bottom: .7rem; width: 88px; opacity: .4; }
  .menu-section { padding: 5rem 1.1rem; }
  .section-heading h2 { font-size: 3.75rem; }
  .menu-tabs { margin-top: 2.5rem; }
  .menu-tabs button { padding: 1rem .35rem; font-size: 1.1rem; }
  .menu-board { grid-template-columns: 1fr; gap: 3rem; }
  .menu-board__intro { min-height: 300px; }
  .menu-list h4 { font-size: 1.35rem; }
  .menu-image-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-image-card { box-shadow: 6px 6px 0 rgba(112,73,40,.55); }
  .gallery { padding: 1rem 1rem 2rem; grid-template-columns: 1fr; }
  .gallery__wide { grid-column: auto; min-height: 330px; }
  .gallery > figure:not(.gallery__wide) { min-height: 330px; }
  .gallery__quote { grid-column: auto; min-height: 280px; padding: 1.5rem; grid-template-columns: minmax(0, 1fr) 135px; gap: .35rem; }
  .gallery__quote blockquote { font-size: clamp(1.35rem, 7vw, 1.8rem); }
  .review-mascot { min-height: 185px; }
  .review-mascot img { width: 135px; }
  .review-mascot span { top: .2rem; right: -.2rem; padding: .65rem .85rem; font-size: 1.25rem; }
  .functions { padding: 3rem 1.2rem 5rem; }
  .functions__heading { grid-template-columns: 1fr; gap: 1rem; }
  .functions h2 { font-size: 3.8rem; }
  .functions__image { margin: 0 8px 1.5rem 0; aspect-ratio: 4 / 3; box-shadow: 8px 8px 0 var(--timber-dark); transform: none; }
  .functions__visual { min-height: 470px; }
  .functions__photo--one { width: 75%; height: 60%; }
  .functions__photo--two { width: 68%; height: 48%; }
  .functions__tag { width: 92px; height: 92px; font-size: .6rem; }
  .event-enquiry { padding: 3.5rem 1rem 5rem; grid-template-columns: 1fr; gap: 3rem; }
  .event-enquiry__intro h1 { font-size: 4rem; }
  .event-enquiry__photo { min-height: 0; margin-left: 12px; aspect-ratio: 1 / 1; }
  .event-form { padding: 1.4rem; box-shadow: 8px 8px 0 rgba(112,73,40,.55); }
  .event-form__grid { grid-template-columns: 1fr; }
  .event-form__full { grid-column: auto; }
  .event-form input[type="date"] { width: min(100%, 210px); }
  .event-form__booking { grid-template-columns: 1fr; }
  .event-form__booking legend { grid-column: auto; }
  .event-form__submit { align-items: stretch; flex-direction: column; }
  .event-form__submit .button { width: 100%; }
  .event-thanks { padding: 7rem 1rem 3rem; }
  .event-thanks > .brand { top: 1.5rem; left: 1rem; }
  .event-thanks__card { box-shadow: 8px 8px 0 rgba(112,73,40,.55); }
  .faq-hero { min-height: 450px; padding: 4rem 1.2rem; }
  .faq-hero h1 { font-size: 5rem; }
  .faq-hero__anchor { right: -6rem; width: 300px; opacity: .65; }
  .business-facts { padding: 3.5rem 1.2rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .business-facts dl { grid-template-columns: 1fr; }
  .business-facts dl > div { min-height: 0; }
  .faq-content { padding: 4rem 1.2rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-content__intro { position: static; }
  .faq-list summary { grid-template-columns: 32px 1fr 30px; gap: .7rem; font-size: 1.2rem; }
  .faq-list details > div { padding: 0 0 1.4rem 40px; }
  .faq-cta { padding: 3.5rem 1.2rem 4.5rem; align-items: flex-start; flex-direction: column; }
  .faq-cta__actions { width: 100%; align-items: stretch; flex-direction: column; gap: 1.2rem; }
  .faq-cta__actions .button { width: 100%; }
  .about-page { overflow-x: clip; }
  .about-hero,
  .about-chapter--people,
  .about-truck,
  .about-future,
  .about-hero__copy,
  .about-chapter__heading,
  .about-chapter__copy,
  .about-truck__copy,
  .about-future__content { min-width: 0; max-width: 100%; }
  .about-hero { width: 100%; padding: 4rem 1.2rem 5rem; gap: 3rem; }
  .about-hero h1 { max-width: 100%; font-size: clamp(2.55rem, 12.7vw, 3rem); line-height: .92; letter-spacing: -.035em; }
  .about-hero__anchor { display: none; }
  .about-hero__photo { min-height: 300px; box-shadow: 8px 8px 0 var(--timber-dark); }
  .about-hero__photo figcaption { max-width: 85%; }
  .about-chapter--people { padding: 4.5rem 1.2rem; grid-template-columns: 1fr; gap: 1.2rem; }
  .about-chapter--people .about-chapter__copy { grid-column: auto; }
  .about-chapter__heading h2, .about-truck__copy h2, .about-future h2 { max-width: 100%; font-size: clamp(3rem, 15vw, 3.7rem); }
  .about-chapter__copy { padding-top: 1.5rem; }
  .about-truck { padding: 4.5rem 1.2rem 5rem; grid-template-columns: 1fr; gap: 3.2rem; }
  .about-truck__photo { width: calc(100% - 8px); margin-left: 8px; box-shadow: -8px 8px 0 var(--timber-dark); }
  .about-truck__facts { grid-template-columns: 1fr; }
  .about-future { min-height: 650px; padding: 5rem 1.2rem; background-position: center; }
  .about-future__actions { width: 100%; padding-inline: 8px; align-items: stretch; flex-direction: column; gap: 1.5rem; }
  .about-future__actions .button { width: 100%; max-width: 100%; }
  .contact__mast { padding: 5rem 1.2rem 3rem; }
  .contact__mast h2 { font-size: 3.8rem; }
  .contact__grid { padding: 0 1.2rem 4rem; }
  .site-footer { padding: 3rem 1.2rem; grid-template-columns: 1fr; text-align: left; }
  .site-footer__copy { text-align: left; }
  .site-footer__links { justify-content: flex-start; flex-wrap: wrap; }
}

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