/* ─── Local fonts ─────────────────────────────── */
@font-face {
  font-family: 'Roxborough CF';
  src: url('../Fonts/roxborough/roxborough-cf-regular.woff2') format('woff2'),
       url('../Fonts/roxborough/roxborough-cf-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../Fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../Fonts/montserrat/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../Fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../Fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Olivera';
  src: url('../Fonts/oliver/Olivera_Demo.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Wasted Vindey';
  src: url('../Fonts/wasted-vindey/Wasted-Vindey.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── Palette — ink on cream, no colour accents ── */
:root {
  --ink:         #141210;
  --ink-soft:    rgba(20, 18, 16, 0.56);
  --ink-dim:     rgba(20, 18, 16, 0.34);
  --ink-ghost:   rgba(20, 18, 16, 0.06);
  --bg:          #f5f3ef;
  --panel-bg:    #fdfbf8;
  --field-bg:    rgba(20, 18, 16, 0.035);
  --line:        rgba(20, 18, 16, 0.09);
  --line-strong: rgba(20, 18, 16, 0.20);
  --focus-ring:  rgba(20, 18, 16, 0.14);
  --shadow:      0 20px 56px rgba(20, 18, 16, 0.10), 0 4px 14px rgba(20, 18, 16, 0.06);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

button, input, select { font: inherit; }

/* ─── Skip link ───────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 200;
  border-radius: 0 0 2px 0;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ─── Required indicator ──────────────────────── */
.req {
  color: var(--ink-soft);
  margin-left: 2px;
  font-size: 0.88em;
}

/* ─── Site Shell ──────────────────────────────── */
.site-shell { min-height: 100vh; }

/* ─── Hero ────────────────────────────────────── */
.booking-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 476px);
  gap: clamp(24px, 4vw, 72px);
  align-items: start;
  padding: clamp(20px, 4vw, 60px);
  padding-top: 88px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to right,
      rgba(245, 243, 239, 1.00) 0%,
      rgba(245, 243, 239, 0.98) 28%,
      rgba(245, 243, 239, 0.82) 52%,
      rgba(245, 243, 239, 0.25) 74%,
      rgba(245, 243, 239, 0.00) 100%),
    url("../Key Visuals/hero-desktop.webp") right center / cover no-repeat;
}

/* ─── Brand Strip ─────────────────────────────── */
.brand-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(20px, 4vw, 60px);
  background: rgba(245, 243, 239, 0.95);
  border-bottom: 1px solid var(--line);
  z-index: 2;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.debeers-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-divider {
  width: 1px;
  height: 26px;
  background: var(--line-strong);
  flex-shrink: 0;
  margin-left: auto;
}

.partner-logo {
  height: 30px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  filter: brightness(0) opacity(0.65);
}

.brand-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ─── Hero Copy ───────────────────────────────── */
.hero-copy {
  max-width: 580px;
  padding-top: 8px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: 'Wasted Vindey', serif;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Ornament — dark/neutral, no colour accent */
.hero-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

.ornament-line {
  height: 1px;
  width: 36px;
  background: linear-gradient(90deg, transparent, rgba(20, 18, 16, 0.24));
}

.ornament-line + .ornament-gem + .ornament-line {
  background: linear-gradient(90deg, rgba(20, 18, 16, 0.24), transparent);
}

.ornament-gem {
  color: rgba(20, 18, 16, 0.38);
  font-size: 0.56rem;
  line-height: 1;
}

h1, h2, p { margin-top: 0; }

h1 {
  margin: 0 0 6px;
  font-family: 'Roxborough CF', Georgia, serif;
  font-size: clamp(3.8rem, 8vw, 8.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.hero-date {
  display: block;
  font-family: 'Roxborough CF', Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin: 16px 0 22px;
}

.teaser {
  font-family: 'Montserrat', sans-serif;
  max-width: 460px;
  color: var(--ink);
  font-size: clamp(0.82rem, 1.0vw, 0.90rem);
  line-height: 1.65;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 16px;
}
.teaser .hl {
  font-weight: 700;
  font-style: normal;
}
.intro .hl {
  font-weight: 700;
  color: var(--ink);
}

.learn-more-btn {
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  padding: 9px 20px;
  margin: 0 0 24px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}

.learn-more-btn:hover {
  background: var(--ink);
  color: #ffffff;
}
.learn-more-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.intro {
  font-family: 'Montserrat', sans-serif;
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  line-height: 1.74;
  font-weight: 400;
  margin: 0;
}

/* ─── Booking Panel ───────────────────────────── */
.booking-panel {
  width: 100%;
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: clamp(20px, 3vw, 30px);
  border: 1.5px solid rgba(20, 18, 16, 0.22);
  border-radius: 3px;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
  z-index: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 18, 16, 0.18) transparent;
}

.booking-panel::-webkit-scrollbar { width: 3px; }
.booking-panel::-webkit-scrollbar-track { background: transparent; }
.booking-panel::-webkit-scrollbar-thumb {
  background: rgba(20, 18, 16, 0.18);
  border-radius: 2px;
}

/* No shimmer line — clean crisp border is enough */
.booking-panel::before { display: none; }

/* ─── Progress Steps ──────────────────────────── */
.progress-row {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.step-pill {
  min-height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--ink-dim);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

/* Active — solid dark fill, white text */
.step-pill[aria-current="step"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

/* ─── Field Grid ──────────────────────────────── */
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field { display: grid; gap: 6px; }
.field--span { grid-column: 1 / -1; }

.field span {
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── Inputs & Selects ────────────────────────── */
select, input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--field-bg);
  color: var(--ink);
  padding: 0 13px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M0.5 0.5l5.5 6 5.5-6' stroke='%23141210' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 11px 7px;
  padding-right: 34px;
  cursor: pointer;
}

select:focus, input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

select:disabled {
  color: var(--ink-dim);
  opacity: 0.48;
  cursor: not-allowed;
  border-style: dashed;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M0.5 0.5l5.5 6 5.5-6' stroke='%23141210' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.20'/%3E%3C/svg%3E");
}

input::placeholder { color: var(--ink-dim); }
select option { background: #fdfbf8; color: var(--ink); }

/* ─── Phone prefix ────────────────────────────── */
.input-prefix-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--field-bg);
}

.input-prefix-wrap:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.input-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 0 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(20, 18, 16, 0.05);
  border-right: 1px solid var(--line-strong);
  flex-shrink: 0;
  user-select: none;
}

.input-prefix-wrap input {
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  flex: 1;
  min-width: 0;
  padding-left: 10px;
}

.input-prefix-wrap input:focus {
  border-color: transparent;
  box-shadow: none;
}

/* ─── Slot Section ────────────────────────────── */
.slot-section {
  margin: 16px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(20, 18, 16, 0.018);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.section-heading h2 {
  margin: 0 0 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.4;
}

/* ─── Date Toggle ─────────────────────────────── */
.date-toggle {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.date-tab {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--ink-dim);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}

/* Active date — solid dark, white text */
.date-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.date-tab:hover:not(.is-active) {
  border-color: var(--ink-soft);
  color: var(--ink);
}

/* ─── Slot Grid ───────────────────────────────── */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

/* Only rendered when all slots are booked */
.empty-slots {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: 2px;
  color: var(--ink-dim);
  font-size: 0.76rem;
  text-align: center;
  line-height: 1.5;
}

.slot-button {
  min-height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--field-bg);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}

.slot-button:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink-ghost);
  color: var(--ink);
}

.slot-button.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-weight: 700;
}

.slot-button:disabled {
  cursor: not-allowed;
  opacity: 0.32;
  text-decoration: line-through;
}

/* ─── Consent — custom dark checkbox ──────────── */
.consent-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.55;
  cursor: pointer;
  hyphens: none;
}

.consent-row input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  margin-top: 2px;     /* nudge down to sit on the text cap-height */
  flex-shrink: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}

.consent-row input[type="checkbox"]:checked {
  background: var(--ink);
  border-color: var(--ink);
}

.consent-row input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 8px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.consent-row input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* ─── CTA Button ──────────────────────────────── */
/* Enabled: solid dark, white text — unambiguous */
.submit-button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 2px;
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.submit-button:hover:not(:disabled) {
  background: #2a2620;
}

/* Disabled: visible but clearly muted dark */
.submit-button:disabled {
  cursor: not-allowed;
  background: rgba(20, 18, 16, 0.30);
  color: rgba(255, 255, 255, 0.55);
}

/* ─── Status ──────────────────────────────────── */
.form-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: #b82c2c;
  font-size: 0.72rem;
}

.form-status.is-success { color: #276e38; }

/* ─── Campaign Strip — light, cards ──────────── */
.campaign-strip {
  background: var(--bg);
  padding: clamp(32px, 5vw, 60px) clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--line);
}
.collection-head {
  max-width: 1200px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
}
.collection-logo {
  width: clamp(200px, 34vw, 400px);
  height: auto;
  display: block;
  margin: 0 auto clamp(14px, 1.6vw, 20px);
}
.collection-name {
  margin: 0 0 clamp(12px, 1.4vw, 16px);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.collection-tagline {
  margin: 0 auto;
  max-width: 32ch;
  font-family: 'Roxborough CF', Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  max-width: 1200px;
  margin: 0 auto;
}

.campaign-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(20, 18, 16, 0.10), 0 1px 6px rgba(20, 18, 16, 0.06);
  display: block;
  background: #e8e5e0;
}

.campaign-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.campaign-item:hover img {
  transform: scale(1.025);
}

/* ─── Footer — light theme, dark text ──────────── */
.support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 5vw, 64px);
  padding: clamp(32px, 5vw, 60px) clamp(24px, 6vw, 96px);
  background: var(--panel-bg);
  border-top: 1px solid var(--line);
}

.support-kicker {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.support-band h2 {
  margin: 0;
  max-width: 10ch;
  font-family: 'Roxborough CF', Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
}

.support-band p:last-child {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.72;
  max-width: 500px;
}

/* ─── Experience Items (inside experience modal) ── */
.experience-panel { width: min(100%, 500px); }

.experience-items { display: grid; gap: 0; margin-top: 4px; }

.experience-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.experience-item:first-child { border-top: 1px solid var(--line); }

.experience-item h3 {
  margin: 0 0 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.experience-item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.68;
}

/* ─── Modal ───────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal[hidden] { display: none; }

.modal-panel {
  width: min(100%, 460px);
  position: relative;
  padding: 34px 30px 30px;
  border-radius: 3px;
  border: 1.5px solid rgba(20, 18, 16, 0.22);
  background: var(--panel-bg);
  box-shadow: var(--shadow);
}

/* No shimmer line on modal either */
.modal-panel::before { display: none; }

.modal-panel .eyebrow {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.modal-panel h2 {
  margin: 0 0 22px;
  max-width: 16ch;
  font-family: 'Roxborough CF', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.74rem;
  display: grid;
  place-items: center;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.modal-close:hover, .modal-close:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
  outline: none;
}

.summary-list { display: grid; gap: 0; margin-bottom: 22px; }

.summary-list div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.summary-list dt {
  color: var(--ink-dim);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: center;
}

.summary-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.84rem;
  align-self: center;
}

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 1020px) {
  .booking-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
    background:
      linear-gradient(180deg,
        rgba(245, 243, 239, 1.0) 0%,
        rgba(245, 243, 239, 0.95) 55%,
        rgba(245, 243, 239, 0.80) 100%),
      url("../Key Visuals/hero-mobile.webp") center top / cover no-repeat;
  }

  .booking-panel { position: static; max-height: none; }
  .hero-copy { padding-top: 0; }
}

@media (max-width: 640px) {
  .booking-hero { padding: 76px 16px 24px; }
  .brand-strip { padding: 0 16px; gap: 10px; overflow: hidden; }
  .brand-text { display: none; }
  .debeers-logo-img { height: 22px; }
  .partner-logo { height: 24px; max-width: 72px; }
  .field-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .campaign-grid { grid-template-columns: 1fr; }
  .campaign-item:nth-child(2) { display: none; }
  .support-band { flex-direction: column; align-items: flex-start; }
  .booking-panel { padding: 18px 14px; }
  .slot-section { padding: 12px; }
}

@media (max-width: 400px) {
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  /* keep the three step tabs on one row */
  .progress-row { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .step-pill { font-size: 0.52rem; letter-spacing: 0.08em; white-space: nowrap; }
}
