/*
 * 7hundred brand-aligned layout for the delivery page.
 * Scoped under #landing-page.delivery-ls to coexist with citr-misc.css.
 * Fonts (citrfontbold / citrfontreg) and the .background9 gradient pattern
 * mirror the live workshop page styling.
 */

/* —— Brand fonts —— */
/*
 * Site-specific @font-face overrides used by 7hundred.co.uk.
 *
 * The live files are served without CORS headers, so loading them
 * cross-origin from a Vite preview / different host fails silently. We
 * ship our own copies from /fonts/ (mirrored in public/fonts/) so the
 * faces resolve everywhere. When this page is uploaded back to
 * 7hundred.co.uk the same paths still work because the project's public/
 * lives at the site root.
 */
@font-face {
  font-family: 'citrfontreg';
  src: url('/fonts/robotoregular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'citrfontbold';
  src: url('/fonts/sevenhunredheavyfont.otf') format('opentype'),
    url('/fonts/montserratblackwebfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /*
   * Brand alignment: --mf4 (#2d3338) is the live site's "Newsletter Btn /
   * Main background" charcoal used across the modular footer. We mirror it
   * here so the page surface and the dark gradient bands share one tone.
   */
  --del-bg: #2d3338;
  --del-surface: #ffffff;
  --del-soft: #ececee;
  --del-border: rgba(47, 53, 62, 0.12);
  --del-border-strong: rgba(47, 53, 62, 0.2);
  --del-text: #2f353e;
  --del-text-strong: #181c1e;
  --del-muted: #5b6573;
  --del-accent: #2378a0;
  --del-accent-dim: rgba(35, 120, 160, 0.1);
  --del-dark: #2d3338;
  --del-dark-grad: linear-gradient(135deg, #2d3338 0%, #2378a0 100%);
  --del-radius: 0;
  --del-radius-lg: 0;
  --del-max: none;
  --del-pad: clamp(1rem, 3vw, 2rem);
  --del-font: 'citrfontreg', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --del-font-display: 'citrfontbold', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}



#landing-page.delivery-ls {
  --mast: 0;
}

#landing-page.delivery-ls.wrapper {
  float: none;
  width: 100%;
}

/*
 * Sectioning was switched to <div>. citr-misc (and some resets) treat section/article/main
 * differently from bare divs — re-assert block flow and kill stray floats on our layout shell.
 */
#landing-page.delivery-ls > header.del-hero,
#landing-page.delivery-ls > main.del-main,
#landing-page.delivery-ls > footer.del-foot {
  display: block;
  float: none;
  clear: both;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

#landing-page.delivery-ls > main.del-main {
  max-width: none;
}

#landing-page.delivery-ls div.del-section,
#landing-page.delivery-ls div.del-cta {
  display: block;
  float: none;
  clear: both;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

#landing-page.delivery-ls article.del-mini,
#landing-page.delivery-ls article.del-price {
  display: block;
  float: none;
  min-width: 0;
  box-sizing: border-box;
}

/* —— Hero —— */
/*
 * Full-bleed banner styled like a 700 collection page: photographic
 * background with the brand dark gradient overlay (same .background9
 * #181c1e → #2378a0 treatment), plus a stronger bottom fade so the
 * description below stays anchored.
 */
#landing-page.delivery-ls .del-hero {
  display: block;
  float: none;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  background-color: var(--del-dark);
  /*
   * Vertical gradient: brand teal at the top fades through to solid page
   * charcoal at the bottom so the hero merges seamlessly into the next
   * section (which sits on var(--del-bg) === #2d3338).
   */
  background-image:
    linear-gradient(
      180deg,
      rgba(35, 120, 160, 0.55) 0%,
      rgba(45, 51, 56, 0.72) 45%,
      rgba(45, 51, 56, 0.92) 80%,
      rgba(45, 51, 56, 1) 100%
    ),
    url('delivery-hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  border-bottom: 0;
}

#landing-page.delivery-ls .del-hero__inner {
  max-width: none;
  margin: 0;
  padding: clamp(3rem, 9vw, 6rem) var(--del-pad) clamp(2.5rem, 6vw, 4rem);
  box-sizing: border-box;
  text-align: center;
}

/* —— 7hundred brand wordmark above the hero H1 —— */
#landing-page.delivery-ls .del-hero__title::before {
  content: "";
  display: block;
  flex: 0 0 100%;
  width: 170px;
  height: 45px;
  margin: 0 auto 1.25rem;
  background: url('https://www.7hundred.co.uk/layout/generallyout/7hu--logo-wordmark--grey.svg')
    center center no-repeat;
  background-size: contain;
}

#landing-page.delivery-ls .del-hero__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.25rem;
  font-family: 'citrfontbold';
  font-size: clamp(2.75rem, 11vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
}

#landing-page.delivery-ls .del-hero__icon {
  color: #fff;
  opacity: 0.85;
}

#landing-page.delivery-ls .del-svg {
  display: block;
  flex-shrink: 0;
}

#landing-page.delivery-ls .del-svg--hero {
  width: clamp(40px, 7vw, 64px);
  height: clamp(40px, 7vw, 64px);
}

#landing-page.delivery-ls .del-svg--mini {
  width: 22px;
  height: 22px;
}

#landing-page.delivery-ls .del-svg--xs {
  width: 14px;
  height: 14px;
}

#landing-page.delivery-ls .del-hero__lead {
  margin: 0 auto 2rem;
  max-width: 44rem;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

#landing-page.delivery-ls .del-hero__lead strong {
  color: #fff;
  font-family: 'citrfontbold';
  font-weight: 700;
}

#landing-page.delivery-ls .del-hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 auto 1.5rem;
  max-width: 44rem;
  text-align: left;
}

@media (min-width: 40rem) {
  #landing-page.delivery-ls .del-hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

#landing-page.delivery-ls .del-stat {
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

#landing-page.delivery-ls .del-stat--accent {
  background: #fff;
  color: var(--del-text-strong);
  border-color: #fff;
}

#landing-page.delivery-ls .del-stat__label {
  display: block;
  font-family: 'citrfontbold';
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}

#landing-page.delivery-ls .del-stat--accent .del-stat__label {
  color: var(--del-accent);
}

#landing-page.delivery-ls .del-stat__value {
  display: block;
  font-family: 'citrfontbold';
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  color: inherit;
}

#landing-page.delivery-ls .del-stat__hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

#landing-page.delivery-ls .del-stat--accent .del-stat__hint {
  color: var(--del-muted);
}

#landing-page.delivery-ls .del-hero__footnote {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

#landing-page.delivery-ls .del-hero__footnote a {
  color: #fff;
  font-family: 'citrfontbold';
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
}

#landing-page.delivery-ls .del-hero__footnote a:hover {
  text-decoration-color: #fff;
}

/* —— Main stack —— */
/*
 * Full-bleed: main spans the viewport. Section heads and content blocks
 * each handle their own horizontal padding so the dark gradient bands
 * extend edge-to-edge.
 */
#landing-page.delivery-ls .del-main {
  display: block;
  float: none;
  clear: both;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 0 3rem;
  min-width: 0;
  box-sizing: border-box;
  background: transparent;
}

#landing-page.delivery-ls .del-section {
  display: block;
  position: relative;
  float: none;
  clear: both;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}

/*
 * Brand section heads: a full-bleed dark gradient band carrying the section
 * title and lead in uppercase white, then a white content block underneath.
 */
#landing-page.delivery-ls .del-section__head {
  display: block;
  float: none;
  width: 100%;
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--del-pad);
  background: var(--del-dark);
  background: var(--del-dark-grad);
  color: #fff;
  text-align: left;
}

#landing-page.delivery-ls .del-kicker {
  margin: 0 0 0.4rem;
  font-family: 'citrfontbold';
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

#landing-page.delivery-ls .del-kicker--on-dark {
  color: rgba(255, 255, 255, 0.7);
}

#landing-page.delivery-ls .del-h2 {
  margin: 0 0 0.5rem;
  font-family: 'citrfontbold';
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
}

#landing-page.delivery-ls .del-section__lead {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 44rem;
}

#landing-page.delivery-ls .del-section__lead strong {
  color: #fff;
  font-family: 'citrfontbold';
  font-weight: 700;
}

/* Soft sections — light grey panel (used for exceptions). Head sits on the
   gradient band as everywhere else; content uses a soft surface beneath. */
#landing-page.delivery-ls .del-section--soft {
  background: transparent;
}

#landing-page.delivery-ls .del-section--soft > :not(.del-section__head) {
  background: var(--del-soft);
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--del-pad);
  border-top: 1px solid var(--del-border);
  border-bottom: 1px solid var(--del-border);
}

/* Section content block under the dark head: full-width, padded on the
   sides only — background blends with the page so individual cards
   (which carry their own surface) read as the content layer. */
#landing-page.delivery-ls .del-section > .del-grid,
#landing-page.delivery-ls .del-section > .del-compare,
#landing-page.delivery-ls .del-section > .del-prose,
#landing-page.delivery-ls .del-section > .del-list-num {
  background: transparent;
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--del-pad);
  border-bottom: none;
}

#landing-page.delivery-ls .del-section--soft > .del-compare,
#landing-page.delivery-ls .del-section--soft > .del-grid,
#landing-page.delivery-ls .del-section--soft > .del-prose,
#landing-page.delivery-ls .del-section--soft > .del-list-num {
  background: var(--del-soft);
}

/* —— Grids —— */
#landing-page.delivery-ls .del-grid {
  display: grid;
  float: none;
  clear: both;
  width: 100%;
  min-width: 0;
  gap: 1rem;
  box-sizing: border-box;
}

#landing-page.delivery-ls .del-grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 36rem) {
  #landing-page.delivery-ls .del-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 56rem) {
  #landing-page.delivery-ls .del-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* —— Bento feature row (Good to know) ——
 *
 * .del-grid--bento  Single dark charcoal panel — 1 col mobile, 2 cols
 *                   tablet, 4 cols desktop, separated by hairline white
 *                   dividers.
 *
 * .del-mini         Each cell is a small 2-row CSS grid:
 *                       [icon] [title]
 *                       [        description        ]
 *
 *                   .del-mini__body uses `display: contents` so its h3 + p
 *                   children participate directly in the parent grid (no
 *                   HTML restructure required).
 */

/* —— Bento panel —— */
#landing-page.delivery-ls .del-grid--bento {
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--del-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--del-radius);
  overflow: hidden;
}

@media (min-width: 40rem) {
  #landing-page.delivery-ls .del-grid--bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  #landing-page.delivery-ls .del-grid--bento {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* —— Bento card —— */
#landing-page.delivery-ls .del-mini {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  row-gap: 0.5rem;
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 1.5rem 1.75rem;
  color: rgba(255, 255, 255, 0.78);
  transition: background 0.2s ease;
}

#landing-page.delivery-ls .del-mini:last-child {
  border-bottom: 0;
}

@media (min-width: 40rem) {
  #landing-page.delivery-ls .del-mini {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  #landing-page.delivery-ls .del-grid--bento > .del-mini:nth-child(2n) {
    border-right: 0;
  }

  #landing-page.delivery-ls .del-grid--bento > .del-mini:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (min-width: 64rem) {
  #landing-page.delivery-ls .del-mini {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  #landing-page.delivery-ls .del-grid--bento > .del-mini:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  #landing-page.delivery-ls .del-grid--bento > .del-mini:last-child {
    border-right: 0;
  }
}

#landing-page.delivery-ls .del-mini:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* —— Bento media (icon) —— */
#landing-page.delivery-ls .del-mini__media {
  display: flex;
  align-items: center;
  justify-content: left;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--del-accent);
  gap: 12px;
}

#landing-page.delivery-ls .del-svg--bento {
  width: 32px;
  height: 32px;
}

/* —— Bento body —— */
/* Body wrapper is invisible to the grid so its children (title + p) sit
   as direct items of .del-mini. */
#landing-page.delivery-ls .del-mini__body {
  display: contents;
}

#landing-page.delivery-ls .del-mini__title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
  font-family: 'citrfontbold';
  font-size: clamp(1.0625rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

#landing-page.delivery-ls .del-mini__body p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

#landing-page.delivery-ls .del-mini strong {
  color: #fff;
}

#landing-page.delivery-ls .del-mini a {
  color: #fff;
  font-family: 'citrfontbold';
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

#landing-page.delivery-ls .del-mini a:hover {
  color: var(--del-accent);
  text-decoration-color: var(--del-accent);
}

#landing-page.delivery-ls .del-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
  #landing-page.delivery-ls .del-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  #landing-page.delivery-ls .del-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* —— Price cards —— */
#landing-page.delivery-ls .del-price {
  position: relative;
  background: var(--del-surface);
  border: 1px solid var(--del-border);
  border-radius: var(--del-radius);
  padding: 1.5rem 1.5rem 1.35rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

#landing-page.delivery-ls .del-price:hover {
  transform: translateY(-2px);
  border-color: var(--del-accent);
}

#landing-page.delivery-ls .del-price--featured {
  border: 2px solid var(--del-text-strong);
  box-shadow: 8px 8px 0 0 var(--del-accent);
}

#landing-page.delivery-ls .del-price__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 0;
  font-family: 'citrfontbold';
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--del-text-strong);
  color: #fff;
}

#landing-page.delivery-ls .del-price__name {
  margin: 0 0 0.5rem;
  font-family: 'citrfontbold';
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--del-text-strong);
}

#landing-page.delivery-ls .del-price__amount {
  margin: 0 0 0.5rem;
  font-family: 'citrfontbold';
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--del-accent);
}

#landing-page.delivery-ls .del-price__note {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  color: var(--del-text);
  line-height: 1.5;
}

#landing-page.delivery-ls .del-price__bullets {
  margin: 0;
  padding: 0.85rem 0 0;
  list-style: none;
  border-top: 1px solid var(--del-border);
  font-size: 0.875rem;
  color: var(--del-text);
}

#landing-page.delivery-ls .del-price__bullets li {
  position: relative;
  padding-left: 1.1rem;
  margin-top: 0.45rem;
}

#landing-page.delivery-ls .del-price__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--del-accent);
}

/* —— Compare rows (exceptions) —— */
#landing-page.delivery-ls .del-compare {
  display: block;
  float: none;
  clear: both;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: var(--del-surface);
}

#landing-page.delivery-ls .del-compare__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--del-border);
}

@media (min-width: 48rem) {
  #landing-page.delivery-ls .del-compare__row {
    grid-template-columns: minmax(11rem, 16rem) 1fr;
    gap: 2rem;
    align-items: start;
  }
}

#landing-page.delivery-ls .del-compare__row:first-child {
  padding-top: 0;
}

#landing-page.delivery-ls .del-compare__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

#landing-page.delivery-ls .del-compare__key {
  font-family: 'citrfontbold';
  font-size: clamp(1.125rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--del-text-strong);
}

#landing-page.delivery-ls .del-compare__val {
  font-size: 0.9375rem;
  color: var(--del-text);
  line-height: 1.55;
}

#landing-page.delivery-ls .del-compare__val a {
  color: var(--del-accent);
  font-family: 'citrfontbold';
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#landing-page.delivery-ls .del-compare__val a:hover {
  color: var(--del-text-strong);
}

/* —— Prose —— */
#landing-page.delivery-ls .del-prose p {
  margin: 0;
  max-width: 48rem;
  font-size: 1rem;
  color: var(--del-text);
}

#landing-page.delivery-ls .del-prose strong {
  font-family: 'citrfontbold';
  color: var(--del-text-strong);
  font-weight: 700;
}

/* —— Numbered list —— */
#landing-page.delivery-ls .del-list-num {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 56rem) {
  #landing-page.delivery-ls .del-list-num {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.5rem;
  }
}

#landing-page.delivery-ls .del-list-num > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1.1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--del-border);
  border-radius: var(--del-radius);
}

#landing-page.delivery-ls .del-list-num__n {
  font-family: 'citrfontbold';
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--del-accent);
  line-height: 1;
  padding-top: 0.1rem;
}

#landing-page.delivery-ls .del-list-num__h {
  margin: 0 0 0.35rem;
  font-family: 'citrfontbold';
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--del-text-strong);
}

#landing-page.delivery-ls .del-list-num p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--del-text);
  line-height: 1.55;
}

#landing-page.delivery-ls .del-list-num strong {
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
}

/* —— CTA band —— */
#landing-page.delivery-ls .del-cta {
  display: block;
  position: relative;
  float: none;
  clear: both;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0;
  background: var(--del-dark);
  background: var(--del-dark-grad);
  color: #fff;
  overflow: hidden;
}

#landing-page.delivery-ls .del-cta__inner {
  padding: clamp(2rem, 5vw, 3rem) var(--del-pad);
  max-width: none;
}

#landing-page.delivery-ls .del-cta__title {
  margin: 0 0 0.75rem;
  font-family: 'citrfontbold';
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #fff;
}

#landing-page.delivery-ls .del-cta__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

#landing-page.delivery-ls .del-cta__lead a {
  color: #fff;
  font-family: 'citrfontbold';
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#landing-page.delivery-ls .del-cta__lead a:hover {
  text-decoration-color: var(--del-accent);
}

#landing-page.delivery-ls .del-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

#landing-page.delivery-ls .del-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 0;
  font-family: 'citrfontbold';
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

#landing-page.delivery-ls .del-btn--primary {
  background: #fff;
  color: var(--del-text-strong);
}

#landing-page.delivery-ls .del-btn--primary:hover {
  background: var(--del-accent);
  color: #fff;
  transform: translateY(-1px);
}

#landing-page.delivery-ls .del-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

#landing-page.delivery-ls .del-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* —— Footer —— */
/* Footer now sits on the dark charcoal page surface, so links/text invert. */
#landing-page.delivery-ls .del-foot {
  display: block;
  float: none;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  padding: 1.5rem var(--del-pad);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

#landing-page.delivery-ls .del-foot p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

#landing-page.delivery-ls .del-foot a {
  color: #fff;
  font-family: 'citrfontbold';
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

#landing-page.delivery-ls .del-foot a:hover {
  text-decoration-color: #fff;
}
