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

:root {
  --blue: #4bb9e6;
  --blue-dark: #1176a8;
  --red: #d32f2f;
  --red-dark: #a82020;
  --white: #ffffff;
  --paper: #f6fbfe;
  --ink: #172033;
  --muted: #5d6677;
  --line: rgba(17, 118, 168, 0.16);
  --shadow: 0 18px 42px rgba(23, 32, 51, 0.12);
  --display: "Flame", Georgia, serif;
  --body: "Montserrat", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-dark);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 92px;
  padding: 14px 5vw;
  background: var(--white);
  border-bottom: 4px solid var(--blue);
  box-shadow: 0 8px 24px rgba(23, 32, 51, 0.08);
}

.brand-mark {
  width: 132px;
  min-width: 108px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--blue-dark);
}

.nav-links a:hover {
  color: var(--red);
}

.nav-action,
.button.primary {
  color: var(--white);
  background: var(--red);
}

.nav-action {
  padding: 12px 18px;
}

.nav-action:hover,
.button.primary:hover {
  background: var(--red-dark);
}

.button {
  padding: 13px 18px;
  border: 2px solid transparent;
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--blue-dark);
}

.button.secondary:hover {
  color: var(--white);
  background: var(--blue-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-offer {
  width: min(1160px, calc(100% - 40px));
  margin: 48px auto 34px;
  display: grid;
  grid-template-columns: minmax(320px, 1.06fr) minmax(320px, 0.94fr);
  gap: 38px;
  align-items: center;
}

.offer-media,
.promo-row,
.menu-card,
.board-grid figure,
.visit-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.offer-media {
  overflow: hidden;
}

.offer-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--white);
  transition: opacity 180ms ease;
}

.offer-copy {
  padding: 12px 0;
}

.eyebrow,
.menu-card span {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: 5.3rem;
}

h2 {
  font-size: 4.15rem;
}

h3 {
  font-size: 3rem;
}

.offer-copy p:not(.eyebrow),
.promo-row p:not(.eyebrow),
.visit-section p:not(.eyebrow),
.franchise-section p,
.menu-card p,
.menu-item p,
.site-footer p {
  color: var(--muted);
  font-weight: 700;
}

.offer-copy p:not(.eyebrow) {
  max-width: 550px;
  margin: 18px 0 0;
  font-size: 1.06rem;
}

.hero-offer.is-changing .offer-media img,
.hero-offer.is-changing .offer-copy {
  opacity: 0.36;
}

.offer-copy {
  transition: opacity 180ms ease;
}

.deal-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
}

.deal-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.deal-dot {
  width: 28px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(75, 185, 230, 0.28);
  cursor: pointer;
}

.deal-dot:hover,
.deal-dot.is-active {
  background: var(--red);
}

.deal-arrow {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.deal-arrow:hover {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.deal-count {
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.quick-actions {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 74px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.quick-actions a {
  padding: 20px;
  background: var(--paper);
  border-right: 1px solid var(--line);
}

.quick-actions a:last-child {
  border-right: 0;
}

.quick-actions span,
.quick-actions strong {
  display: block;
}

.quick-actions span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-actions strong {
  margin-top: 4px;
  color: var(--blue-dark);
  font-size: 0.98rem;
  font-weight: 900;
}

.section {
  padding: 74px 5vw;
}

.section-heading {
  width: min(1160px, 100%);
  margin: 0 auto 34px;
}

.promo-stack {
  background: var(--paper);
}

.promo-row {
  width: min(1160px, 100%);
  margin: 0 auto 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: 0;
  align-items: stretch;
}

.promo-row:last-child {
  margin-bottom: 0;
}

.promo-row.reverse {
  grid-template-columns: minmax(320px, 1.08fr) minmax(320px, 0.92fr);
}

.promo-row.reverse img {
  grid-column: 2;
}

.promo-row.reverse div {
  grid-column: 1;
  grid-row: 1;
}

.promo-row img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: contain;
  background: var(--white);
}

.promo-row div {
  display: grid;
  align-content: center;
  padding: 42px;
}

.promo-row p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
}

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

.menu-grid {
  width: min(1160px, 100%);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-card {
  overflow: hidden;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: contain;
  background: var(--white);
}

.menu-card div {
  padding: 18px;
}

.menu-card h3 {
  font-family: var(--body);
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.menu-card p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.menu-tabs {
  width: min(1160px, 100%);
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-button {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--blue-dark);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.tab-button:hover {
  border-color: var(--red);
}

.tab-button.is-active {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.menu-panels {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.menu-panel {
  display: grid;
  gap: 12px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 290px);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-item h3 {
  font-size: 2.02rem;
}

.menu-item p {
  margin: 8px 0 0;
}

.prices {
  margin: 0;
  display: grid;
  gap: 8px;
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.prices div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.prices dt {
  color: var(--blue-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.prices dd {
  margin: 0;
  color: var(--red);
  font-weight: 900;
}

.board-section {
  background: var(--paper);
}

.board-section .section-heading {
  width: min(1540px, 100%);
}

.board-grid {
  width: min(1540px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.board-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.board-grid img {
  width: 100%;
  aspect-ratio: 3 / 4.15;
  object-fit: contain;
  background: var(--white);
}

.menu-summary {
  width: min(1540px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.menu-summary article {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-summary h3 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.menu-summary p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.visit-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}

.visit-section img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: contain;
  background: var(--white);
}

.visit-section > div {
  display: grid;
  align-content: center;
  padding: 42px;
}

.visit-section p:not(.eyebrow) {
  margin: 18px 0 0;
}

.social-panel {
  margin-top: 26px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.social-panel > span {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links a:hover {
  color: var(--white);
  background: var(--blue-dark);
}

.franchise-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
}

.franchise-section h2,
.franchise-section .eyebrow,
.franchise-section p {
  color: var(--white);
}

.franchise-section .eyebrow {
  margin: 0 0 10px;
  font-size: 0.98rem;
  line-height: 1.1;
}

.franchise-section p {
  max-width: 650px;
  margin: 14px 0 0;
}

.franchise-hero {
  width: min(1160px, calc(100% - 40px));
  margin: 48px auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: stretch;
  padding: 42px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.franchise-hero .eyebrow,
.franchise-hero h1,
.franchise-hero p {
  color: var(--white);
}

.franchise-hero h1 {
  max-width: 760px;
  font-size: 5rem;
}

.franchise-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  font-weight: 800;
}

.franchise-hero-card {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.franchise-hero-card span,
.franchise-stat-card span,
.cost-grid span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.franchise-hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 1.55rem;
  font-weight: 900;
}

.franchise-detail-section,
.cost-section {
  background: var(--white);
}

.franchise-stat-grid,
.support-grid,
.cost-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.franchise-stat-card,
.support-grid article,
.cost-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.franchise-stat-card {
  padding: 24px;
}

.franchise-stat-card strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 1.3rem;
  font-weight: 900;
}

.franchise-stat-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.support-section {
  background: var(--paper);
}

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

.support-grid article {
  min-height: 160px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border-top: 6px solid var(--blue);
}

.support-grid strong {
  color: var(--blue-dark);
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-grid span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.cost-grid {
  grid-template-columns: repeat(3, 1fr);
}

.cost-grid article {
  padding: 22px;
}

.cost-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 1.12rem;
  font-weight: 900;
}

.franchise-request {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 34px;
  align-items: start;
  padding: 42px;
  background: var(--red);
  border-radius: 8px;
}

.franchise-request .eyebrow,
.franchise-request h2,
.franchise-request p {
  color: var(--white);
}

.franchise-request p:not(.eyebrow) {
  margin: 16px 0 0;
  font-weight: 800;
}

.franchise-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
}

.franchise-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.franchise-form input,
.franchise-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 700;
}

.franchise-form input:focus,
.franchise-form textarea:focus {
  outline: 3px solid rgba(75, 185, 230, 0.32);
  border-color: var(--blue);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.food-truck-hero {
  width: min(1420px, calc(100% - 40px));
  margin: 48px auto 34px;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
  gap: 44px;
  align-items: stretch;
  padding: 52px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.food-truck-copy {
  align-self: center;
}

.food-truck-hero .eyebrow,
.food-truck-hero h1,
.food-truck-hero p {
  color: var(--white);
}

.food-truck-hero h1 {
  max-width: 680px;
  font-size: 5rem;
}

.food-truck-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  font-weight: 800;
}

.food-truck-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 72vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--ink);
  border-radius: 8px;
}

.food-truck-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 32, 51, 0.82), rgba(23, 32, 51, 0.14), rgba(23, 32, 51, 0.82)),
    url("food-truck-poster.jpg") center / cover;
  filter: blur(18px) saturate(1.12);
  opacity: 0.72;
  transform: scale(1.08);
}

.food-truck-media video {
  position: relative;
  z-index: 1;
  width: auto;
  height: clamp(580px, 68vh, 790px);
  max-width: 100%;
  max-height: none;
  border-radius: 6px;
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.32);
}

.truck-info-section {
  background: var(--paper);
}

.truck-event-grid,
.truck-steps {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.truck-event-grid article,
.truck-steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.truck-event-grid article {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  padding: 24px;
}

.truck-event-grid span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.truck-event-grid h3 {
  margin-top: 22px;
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.truck-event-grid p,
.truck-steps p,
.truck-enquiry p {
  color: var(--muted);
  font-weight: 700;
}

.truck-event-grid p {
  margin: 16px 0 0;
}

.truck-steps-section {
  background: var(--white);
}

.truck-steps {
  grid-template-columns: repeat(3, 1fr);
}

.truck-steps article {
  padding: 24px;
  border-top: 6px solid var(--blue);
}

.truck-steps strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.truck-steps p {
  margin: 12px 0 0;
}

.truck-enquiry {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
}

.truck-enquiry .eyebrow,
.truck-enquiry h2,
.truck-enquiry p {
  color: var(--white);
}

.truck-enquiry p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
}

.truck-enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 5vw;
  background: var(--white);
  border-top: 4px solid var(--blue);
}

.site-footer img {
  width: 132px;
}

.site-footer p {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer nav:not(.footer-social) a {
  color: var(--blue-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-social {
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.footer-social a:hover {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social rect,
.footer-social circle {
  fill: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-action {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero-offer,
  .franchise-hero,
  .food-truck-hero,
  .promo-row,
  .promo-row.reverse,
  .visit-section,
  .franchise-request,
  .truck-enquiry,
  .franchise-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .promo-row.reverse img,
  .promo-row.reverse div {
    grid-column: auto;
    grid-row: auto;
  }

  .quick-actions,
  .menu-grid,
  .board-grid,
  .menu-summary,
  .franchise-stat-grid,
  .support-grid,
  .cost-grid,
  .truck-event-grid,
  .truck-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3.45rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    min-height: 74px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 94px;
    min-width: 86px;
  }

  .nav-links a,
  .nav-action,
  .button,
  .tab-button {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .hero-offer,
  .franchise-hero,
  .food-truck-hero,
  .quick-actions,
  .visit-section,
  .franchise-request,
  .truck-enquiry,
  .franchise-section {
    width: calc(100% - 28px);
  }

  .hero-offer {
    margin-top: 28px;
    gap: 24px;
  }

  h1 {
    font-size: 3.45rem;
  }

  .franchise-hero h1 {
    font-size: 3.2rem;
  }

  .food-truck-hero h1 {
    font-size: 3.2rem;
  }

  .food-truck-media {
    min-height: clamp(460px, 72vh, 640px);
    padding: 10px;
  }

  .food-truck-media video {
    height: clamp(430px, 68vh, 610px);
  }

  h2 {
    font-size: 2.8rem;
  }

  h3 {
    font-size: 2.35rem;
  }

  .quick-actions,
  .menu-grid,
  .board-grid,
  .menu-summary,
  .franchise-stat-grid,
  .support-grid,
  .cost-grid,
  .truck-event-grid,
  .truck-steps,
  .franchise-form {
    grid-template-columns: 1fr;
  }

  .quick-actions a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-actions a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 54px 14px;
  }

  .promo-row div,
  .franchise-hero,
  .food-truck-hero,
  .franchise-request,
  .truck-enquiry,
  .visit-section > div,
  .franchise-section {
    padding: 22px;
  }

  .truck-enquiry-actions {
    justify-content: flex-start;
  }

  .promo-row img,
  .visit-section img {
    min-height: 320px;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .tab-button {
    flex: 1 1 calc(50% - 8px);
  }

  .site-footer {
    padding: 28px 14px;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .offer-media img,
  .offer-copy {
    transition: none;
  }
}
