/* ============================================================
   TRUE NORTH EVENT GROUP — MAIN STYLESHEET
   ============================================================ */

/* Variables */
:root {
  --navy:        #0c1d3c;
  --navy-dark:   #081328;
  --navy-mid:    #152d52;
  --pine:        #0d2a1e;
  --pine-mid:    #1a3d2a;
  --ivory:       #f6f2ea;
  --ivory-light: #faf8f3;
  --ivory-dark:  #ede7d8;
  --gold:        #c4983a;
  --gold-light:  #d4ac55;
  --gold-pale:   #f0e5c0;
  --granite:     #555d6c;
  --granite-light:#8c95a2;
  --granite-pale: #e4e2dc;
  --maple:       #7a3620;
  --maple-mid:   #9e4828;
  --white:       #ffffff;
  --text-dark:   #0f1923;
  --text-mid:    #3a4352;
  --text-light:  #6b7585;

  --ff-serif:    Georgia, 'Times New Roman', serif;
  --ff-sans:     -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;

  --shadow-sm:   0 2px 8px rgba(12,29,60,0.08);
  --shadow:      0 4px 20px rgba(12,29,60,0.12);
  --shadow-lg:   0 12px 48px rgba(12,29,60,0.18);

  --transition:  0.25s ease;
  --header-h:    80px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
button { cursor: pointer; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.t-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-overline--light { color: var(--gold-light); }
.t-overline--grey  { color: var(--granite-light); }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-serif);
  line-height: 1.18;
  font-weight: normal;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-mid);
}
.small-note {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide  { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container--narrow{ max-width: 840px;  margin: 0 auto; padding: 0 24px; }

.section-pad     { padding: 96px 0; }
.section-pad--sm { padding: 64px 0; }
.section-pad--lg { padding: 128px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,152,58,0.35);
}
.btn--outline-light {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--white);
}
.btn--outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--outline-navy {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--text {
  padding: 0;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.btn--text::after {
  content: ' →';
}
.btn--text:hover { color: var(--gold-light); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header--transparent { background: transparent; }
.site-header--solid {
  background: var(--navy-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.header-logo__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.header-logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.header-logo__mark {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.header-logo__sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.header-nav__link {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.header-nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.burger-btn:hover { background: rgba(255,255,255,0.1); }
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open span:nth-child(2) { opacity: 0; }
.burger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy-dark);
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
}
.mobile-nav.is-open { display: block; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.mobile-nav__cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/bg.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(8,19,40,0.95) 0%,
    rgba(13,26,51,0.85) 50%,
    rgba(13,42,30,0.75) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
  margin: 0 auto;
  padding-top: var(--header-h);
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: normal;
  color: var(--gold-light);
}
.hero__desc {
  font-size: 1.15rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.72);
  margin-bottom: 44px;
  max-width: 600px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__markers {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero__marker {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__marker-value {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}
.hero__marker-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   BRAND TRUST BLOCK
   ============================================================ */
.brand-trust {
  background: var(--ivory-light);
  padding: 96px 0;
}
.brand-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.brand-trust__left {}
.brand-trust__statement {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 28px;
}
.brand-trust__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.brand-trust__note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.brand-trust__note-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.brand-trust__right {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.brand-trust__panel-title {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 20px;
}
.brand-trust__panel-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brand-trust__panel-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand-trust__panel-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.brand-trust__item-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.brand-trust__item-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   EXPERIENCES SECTION (HOME)
   ============================================================ */
.experiences-home { background: var(--white); }

/* Split showcase - Poker */
.exp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.exp-split__image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.exp-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exp-split__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,26,51,0.6), transparent);
}
.exp-split__content {
  padding: 64px 56px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exp-split__content--ivory {
  background: var(--ivory);
}
.exp-split__content--ivory .exp-split__title { color: var(--navy); }
.exp-split__content--ivory .exp-split__body  { color: var(--text-mid); }
.exp-split__content--ivory .exp-split__tags span { background: var(--ivory-dark); color: var(--text-mid); }
.exp-split__number {
  font-family: var(--ff-serif);
  font-size: 4rem;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: -20px;
}
.exp-split__content--ivory .exp-split__number { color: rgba(12,29,60,0.06); }
.exp-split__title {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.exp-split__body {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.exp-split__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.exp-split__tags span {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* Editorial block - Blackjack */
.exp-editorial {
  background: var(--ivory-dark);
  padding: 80px 0;
}
.exp-editorial__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 960px;
}
.exp-editorial__side {
  position: sticky;
  top: 120px;
}
.exp-editorial__side-number {
  font-family: var(--ff-serif);
  font-size: 5rem;
  color: var(--gold-pale);
  line-height: 0.9;
  margin-bottom: 12px;
}
.exp-editorial__side-name {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--navy);
}
.exp-editorial__side-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0;
}
.exp-editorial__side-note {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}
.exp-editorial__main {}
.exp-editorial__title {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.exp-editorial__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.exp-editorial__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.exp-editorial__col-head {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.exp-editorial__col-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* Immersive band - Roulette */
.exp-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.exp-band__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/bg.png');
  background-size: cover;
  background-position: center;
}
.exp-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(8,19,40,0.97) 0%,
    rgba(8,19,40,0.88) 45%,
    rgba(8,19,40,0.5) 100%);
}
.exp-band__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 72px 24px;
}
.exp-band__number {
  font-family: var(--ff-serif);
  font-size: 6rem;
  color: rgba(255,255,255,0.05);
  line-height: 0.85;
  margin-bottom: -20px;
}
.exp-band__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}
.exp-band__body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.exp-band__facts {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.exp-band__fact {}
.exp-band__fact-val {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--gold-light);
}
.exp-band__fact-key {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Stacked module - Dice */
.exp-stacked {
  background: var(--white);
  padding: 80px 0;
}
.exp-stacked__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.exp-stacked__details {}
.exp-stacked__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}
.exp-stacked__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--granite-pale);
  align-items: start;
}
.exp-stacked__item:first-child { padding-top: 0; }
.exp-stacked__item-index {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--gold-pale);
  font-weight: normal;
  line-height: 1.2;
}
.exp-stacked__item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.exp-stacked__item-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
}
.exp-stacked__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}
.exp-stacked__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.exp-stacked__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Section separator */
.section-rule {
  width: 100%;
  height: 1px;
  background: var(--granite-pale);
}

/* ============================================================
   TESTIMONIAL — INLINE
   ============================================================ */
.testimonial-inline {
  padding: 72px 0;
  background: var(--pine);
}
.testimonial-inline__inner {
  max-width: 720px;
  text-align: center;
}
.testimonial-inline__quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 28px;
}
.testimonial-inline__meta {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.testimonial-inline__meta strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ============================================================
   EVENT FORMATS (HOME OVERVIEW)
   ============================================================ */
.formats-home {
  background: var(--ivory-light);
  padding: 96px 0;
}
.formats-home__header {
  margin-bottom: 64px;
  max-width: 560px;
}
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.format-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--granite-pale);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.format-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.format-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.format-card:hover::before { transform: scaleX(1); }
.format-card__icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.format-card__icon svg { width: 22px; height: 22px; fill: var(--gold); }
.format-card__title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.format-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.formats-home__feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.formats-home__feature-image {
  position: relative;
  min-height: 320px;
}
.formats-home__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.formats-home__feature-content {
  background: var(--navy);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================================
   WHAT DELIVERS THE EXPERIENCE
   ============================================================ */
.delivery-block {
  background: var(--navy-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.delivery-block::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,152,58,0.06) 0%, transparent 70%);
}
.delivery-block__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}
.delivery-block__header h2 { color: var(--white); }
.delivery-block__header p { color: rgba(255,255,255,0.6); margin-top: 16px; }
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.delivery-item {
  background: var(--navy-dark);
  padding: 40px 32px;
  transition: background var(--transition);
}
.delivery-item:hover { background: var(--navy-mid); }
.delivery-item__num {
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.delivery-item__title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.delivery-item__text {
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   PLANNING RAIL
   ============================================================ */
.planning-rail {
  background: var(--ivory);
  padding: 96px 0;
}
.planning-rail__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.planning-rail__intro h2 { color: var(--navy); margin-bottom: 20px; }
.planning-rail__intro p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.planning-steps { position: relative; padding-left: 32px; }
.planning-steps::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--granite-pale));
}
.planning-step {
  position: relative;
  padding-bottom: 48px;
}
.planning-step:last-child { padding-bottom: 0; }
.planning-step::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,152,58,0.2);
}
.planning-step__phase {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.planning-step__title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.planning-step__text {
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--text-mid);
}

/* ============================================================
   PACKAGE FRAMEWORK
   ============================================================ */
.packages-section {
  background: var(--white);
  padding: 96px 0;
}
.packages-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.packages-section__header h2 { color: var(--navy); margin-bottom: 16px; }
.pkg-compare-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  margin-bottom: 0;
}
.pkg-strip-item {
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pkg-strip-item:last-child { border-right: none; }
.pkg-strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pkg-strip-dot--basic     { background: var(--granite-light); }
.pkg-strip-dot--signature { background: var(--gold); }
.pkg-strip-dot--full      { background: var(--maple-mid); }
.pkg-strip-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.pkg-cards {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 0;
  border: 1px solid var(--granite-pale);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.pkg-card {
  padding: 40px 32px;
  border-right: 1px solid var(--granite-pale);
  background: var(--white);
  transition: background var(--transition);
}
.pkg-card:last-child { border-right: none; }
.pkg-card--featured {
  background: var(--ivory-light);
  position: relative;
}
.pkg-card__badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pkg-card__name {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pkg-card__sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pkg-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pkg-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.pkg-card__feature-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  fill: var(--gold);
}

/* ============================================================
   FINAL ENQUIRY
   ============================================================ */
.final-enquiry {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--pine) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-enquiry::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,152,58,0.08) 0%, transparent 70%);
}
.final-enquiry__inner { position: relative; z-index: 2; max-width: 640px; }
.final-enquiry__title { color: var(--white); margin-bottom: 20px; }
.final-enquiry__body {
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}
.final-enquiry__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  padding: 72px 0 40px;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand__logo {
  margin-bottom: 16px;
}
.footer-brand__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-brand__regions {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}
.footer-col__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col__link:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.footer-contact-item__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-contact-item__value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom__legal {
  display: flex;
  gap: 24px;
}
.footer-bottom__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom__legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.45);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transform: translateY(140%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner.is-hidden  { display: none; }
.cookie-banner__text { flex: 1; }
.cookie-banner__title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.cookie-banner__body {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.cookie-banner__body a {
  color: var(--gold-light);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  min-width: 140px;
}
.cookie-btn-accept {
  padding: 10px 20px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-decline {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-decline:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.inner-hero {
  background: var(--navy-dark);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.inner-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
}
.inner-hero__eyebrow { margin-bottom: 20px; }
.inner-hero__title { color: var(--white); margin-bottom: 20px; }
.inner-hero__desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
}

/* ============================================================
   EXPERIENCES PAGE
   ============================================================ */
.exp-page-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--granite-pale);
}
.exp-page-section:last-of-type { border-bottom: none; }
.exp-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.exp-page-grid--reverse { direction: rtl; }
.exp-page-grid--reverse > * { direction: ltr; }
.exp-page-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}
.exp-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exp-page-content {}
.exp-page-content h2 { color: var(--navy); margin-bottom: 16px; }
.exp-page-content p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.exp-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.exp-spec {
  padding: 16px;
  background: var(--ivory-light);
  border-radius: var(--radius);
}
.exp-spec__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.exp-spec__value {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ============================================================
   EVENT FORMATS PAGE
   ============================================================ */
.format-feature {
  padding: 80px 0;
  border-bottom: 1px solid var(--granite-pale);
}
.format-feature--alt { background: var(--ivory-light); }
.format-text-lead {
  max-width: 800px;
}
.format-text-lead h2 { color: var(--navy); margin-bottom: 20px; }
.format-text-lead p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.format-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.format-detail {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--granite-pale);
}
.format-detail__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.format-detail__value {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.format-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.format-split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--navy-mid);
}
.format-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   PACKAGES PAGE
   ============================================================ */
.pkg-page-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.pkg-page-header h2 { color: var(--navy); margin-bottom: 16px; }
.pkg-full-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.pkg-full-card {
  border: 1px solid var(--granite-pale);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.pkg-full-card:hover { box-shadow: var(--shadow-lg); }
.pkg-full-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.pkg-full-card__header {
  padding: 32px;
  background: var(--navy);
  position: relative;
}
.pkg-full-card--featured .pkg-full-card__header { background: var(--pine); }
.pkg-full-card__tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pkg-full-card__name {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}
.pkg-full-card__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.pkg-full-card__body {
  padding: 32px;
  background: var(--white);
}
.pkg-full-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.pkg-spec {
  padding: 14px;
  background: var(--ivory-light);
  border-radius: var(--radius-sm);
}
.pkg-spec__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.pkg-spec__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.pkg-full-card__includes {
  margin-bottom: 28px;
}
.pkg-includes-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--granite);
  margin-bottom: 12px;
}
.pkg-include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--granite-pale);
  line-height: 1.5;
}
.pkg-include-item:last-child { border-bottom: none; }
.pkg-check {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.about-intro__content h2 { color: var(--navy); margin-bottom: 24px; }
.about-intro__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.about-intro__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--navy-mid);
}
.about-intro__image img { width: 100%; height: 100%; object-fit: cover; }
.about-values {
  background: var(--ivory-light);
  padding: 80px 0;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.about-value-item {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--granite-pale);
}
.about-value-item__number {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  color: var(--gold-pale);
  margin-bottom: 8px;
  line-height: 1;
}
.about-value-item__title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.about-value-item__text {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--text-mid);
}
.standards-band {
  background: var(--navy);
  padding: 80px 0;
}
.standards-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  margin-top: 56px;
}
.standard-item {
  padding: 40px 28px;
  background: var(--navy);
}
.standard-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.standard-item__title {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.standard-item__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   PLANNING INSIGHTS PAGE
   ============================================================ */
.insights-intro {
  max-width: 700px;
  padding: 72px 0 48px;
}
.insights-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-top: 20px;
}
.insights-group { margin-bottom: 64px; }
.insights-group__title {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold-pale);
}
.accordion { display: flex; flex-direction: column; gap: 0; }
.accordion-item {
  border-bottom: 1px solid var(--granite-pale);
}
.accordion-item:first-child { border-top: 1px solid var(--granite-pale); }
.accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  background: none;
  cursor: pointer;
  gap: 16px;
}
.accordion-btn__text {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.3;
}
.accordion-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--gold);
  transition: transform var(--transition);
}
.accordion-item.is-open .accordion-btn__icon { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-item.is-open .accordion-body { max-height: 600px; }
.accordion-body__inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--text-mid);
}
.accordion-body__inner p { margin-bottom: 12px; }
.accordion-body__inner p:last-child { margin-bottom: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 72px 0;
  align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 20px; }
.contact-info p {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-detail-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--granite-pale);
}
.contact-detail-row:first-child { padding-top: 0; }
.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-form { background: var(--ivory-light); border-radius: var(--radius-lg); padding: 40px; }
.form-row { margin-bottom: 20px; }
.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--granite);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--granite-pale);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,152,58,0.12);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #c0392b;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-error-msg {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 5px;
  display: none;
}
.form-error-msg.visible { display: block; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.visible { display: block; }
.form-success h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--text-mid);
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 800px;
  padding: 72px 0;
}
.legal-content h2 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 40px 0 16px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.legal-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--granite-pale);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center   { text-align: center; }
.text-gold     { color: var(--gold); }
.text-navy     { color: var(--navy); }
.text-white    { color: var(--white); }
.text-mid      { color: var(--text-mid); }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.bg-ivory { background: var(--ivory-light); }
.bg-navy  { background: var(--navy); }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in--visible {
  opacity: 1;
  transform: none;
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* Divider line with label */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.section-divider__line {
  flex: 1;
  height: 1px;
  background: var(--granite-pale);
}
.section-divider__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--granite-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .standards-band__grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-full-cards { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .pkg-cards { grid-template-columns: 1fr; }
  .pkg-compare-strip { grid-template-columns: 1fr; }
  .pkg-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pkg-strip-item:last-child { border-bottom: none; }
  .formats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .header-nav, .header-cta .btn--gold { display: none; }
  .burger-btn { display: flex; }
  .brand-trust__grid  { grid-template-columns: 1fr; gap: 40px; }
  .exp-split          { grid-template-columns: 1fr; }
  .exp-editorial__inner { grid-template-columns: 1fr; gap: 32px; }
  .exp-editorial__side { position: static; }
  .exp-stacked__grid  { grid-template-columns: 1fr; gap: 40px; }
  .planning-rail__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro        { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout     { grid-template-columns: 1fr; gap: 48px; }
  .exp-page-grid      { grid-template-columns: 1fr; gap: 40px; }
  .exp-page-grid--reverse { direction: ltr; }
  .format-split       { grid-template-columns: 1fr; gap: 40px; }
  .header-logo__icon { width: 40px; height: 40px; }
  .format-detail-grid { grid-template-columns: 1fr 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }
  .formats-home__feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section-pad    { padding: 64px 0; }
  .section-pad--lg{ padding: 80px 0; }
  .formats-grid   { grid-template-columns: 1fr; }
  .form-row--2col { grid-template-columns: 1fr; }
  .hero__markers  { gap: 20px; }
  .exp-split__content { padding: 40px 24px; }
  .exp-band__facts { gap: 24px; }
  .delivery-grid  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .exp-spec-list  { grid-template-columns: 1fr; }
  .pkg-full-cards { grid-template-columns: 1fr; max-width: 100%; }
  .cookie-banner  { flex-direction: column; left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner__actions { flex-direction: row; min-width: auto; }
  .standards-band__grid { grid-template-columns: 1fr; }
  .format-detail-grid { grid-template-columns: 1fr; }
  .hero__actions  { flex-direction: column; align-items: flex-start; }
  .final-enquiry__actions { flex-direction: column; align-items: center; }
  .header-logo__icon { width: 36px; height: 36px; }
  .header-logo { gap: 8px; }
  .header-logo__mark { font-size: 1.15rem; }
  .header-logo__sub { font-size: 0.55rem; }
}
