/* ============================================================
   EVENTORIA CANADA — DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   1. VARIABLES
   ============================================================ */
:root {
  --navy:           #0D1B2A;
  --navy-mid:       #142234;
  --navy-light:     #1C3047;
  --ivory:          #F5F0E8;
  --ivory-mid:      #EDE7DB;
  --ivory-dark:     #DDD5C6;
  --rosewood:       #7D4352;
  --rosewood-light: #9B5565;
  --gold:           #C5973A;
  --gold-light:     #D4AA52;
  --gold-pale:      #ECD99A;
  --smoke:          #6B7280;
  --smoke-light:    #9CA3AF;
  --smoke-dark:     #3F4754;
  --evergreen:      #2D5448;
  --evergreen-light:#3D6B59;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

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

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1280px;
  --section-pad: clamp(64px, 8vw, 112px);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
.section-pad    { padding: var(--section-pad) 0; }
.section-pad-sm { padding: clamp(40px, 5vw, 72px) 0; }
.text-center { text-align: center; }

/* Gold rule */
.gold-rule { display: block; width: 48px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(197,151,58,.3);
}
.btn-outline { border: 1px solid currentColor; color: var(--ivory); }
.btn-outline:hover { background: rgba(255,255,255,.08); transform: translateY(-1px); }
.btn-outline-dark { border: 1px solid var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--ivory); }
.btn-sm { padding: 10px 22px; font-size: 0.72rem; }
.btn-arrow::after { content: '→'; transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   5. HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 2px 32px rgba(0,0,0,.3);
}
.site-header.solid { background: var(--navy); padding: 14px 0; }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo-icon {
  width: 40px; height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.header-logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 500;
  color: var(--ivory); letter-spacing: 0.04em; line-height: 1;
}
.header-logo-sub {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); line-height: 1;
}

.header-nav { display: flex; align-items: center; }
.header-nav a {
  display: block; padding: 6px 14px;
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(245,240,232,.82);
  transition: color var(--transition);
  position: relative;
}
.header-nav a::after {
  content: ''; position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--transition);
}
.header-nav a:hover { color: var(--ivory); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-nav a.active { color: var(--gold); }
.header-cta { margin-left: 16px; }

/* Burger */
.burger-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger-line { display: block; width: 24px; height: 1.5px; background: var(--ivory); transition: var(--transition); }
.burger-btn.open .burger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger-btn.open .burger-line:nth-child(2) { opacity: 0; }
.burger-btn.open .burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--navy); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 300;
  color: var(--ivory); padding: 10px 24px; letter-spacing: 0.04em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-cta { margin-top: 24px; }

/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(197,151,58,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(45,84,72,.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, #0A1520 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(197,151,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,151,58,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.5) 30%, rgba(0,0,0,.5) 70%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 120px 0 80px; }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -0.025em; color: var(--ivory);
  max-width: 900px; margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--gold-pale); }
.hero-sub {
  font-size: clamp(.95rem, 1.4vw, 1.15rem); line-height: 1.7;
  color: rgba(245,240,232,.72); max-width: 560px; margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(197,151,58,.1); border: 1px solid rgba(197,151,58,.25);
  border-radius: 2px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em;
  color: rgba(245,240,232,.75);
}
.hero-tag::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

/* ============================================================
   7. BRAND POSITIONING
   ============================================================ */
.brand-position { background: var(--navy-mid); padding: var(--section-pad) 0; }
.brand-position-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.brand-pos-statement {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300;
  line-height: 1.12; color: var(--ivory);
  margin-bottom: 28px; letter-spacing: -0.015em;
}
.brand-pos-statement em { font-style: italic; color: var(--gold-pale); }
.brand-pos-para { color: rgba(245,240,232,.7); line-height: 1.75; font-size: 1.05rem; margin-bottom: 36px; }
.brand-promise-list { display: flex; flex-direction: column; gap: 14px; }
.brand-promise-item { display: flex; align-items: flex-start; gap: 12px; }
.brand-promise-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
.brand-promise-item span { font-size: 0.88rem; color: rgba(245,240,232,.78); line-height: 1.55; }
.brand-side-note {
  border-left: 2px solid var(--gold); padding: 24px 28px;
  background: rgba(197,151,58,.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 32px;
}
.brand-side-note p { font-family: var(--font-heading); font-size: 1.2rem; font-style: italic; color: var(--ivory); line-height: 1.5; font-weight: 300; }
.brand-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-stat-number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; display: block; margin-bottom: 6px; }
.brand-stat-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,.45); }

/* ============================================================
   8. EXPERIENCES — 4 DIFFERENT MODULES
   ============================================================ */
.exp-section { background: var(--ivory); padding-top: var(--section-pad); }
.exp-intro { text-align: center; max-width: 620px; margin: 0 auto 72px; }
.exp-intro h2 { color: var(--navy); margin-bottom: 16px; font-family: var(--font-heading); font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 400; }
.exp-intro p { color: var(--smoke); }

/* EX1 Split — Poker */
.exp-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; margin-bottom: 2px; }
.exp-split-media { position: relative; overflow: hidden; background: var(--navy); }
.exp-split-media img { width:100%; height:100%; object-fit:cover; opacity:.85; transition:transform .6s ease; display:block; }
.exp-split:hover .exp-split-media img { transform:scale(1.03); }
.exp-split-media-ph {
  width:100%; min-height:520px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  display:flex; align-items:center; justify-content:center;
}
.exp-ph-label { font-size:.7rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:rgba(197,151,58,.4); }
.exp-split-body { background:var(--navy-mid); padding:56px 52px; display:flex; flex-direction:column; justify-content:center; }
.exp-num { font-family:var(--font-heading); font-size:5rem; font-weight:300; color:rgba(197,151,58,.12); line-height:1; margin-bottom:16px; }
.exp-split-body h3 { font-family:var(--font-heading); font-size:clamp(1.8rem,3vw,2.5rem); font-weight:400; color:var(--ivory); margin-bottom:20px; line-height:1.15; }
.exp-desc { color:rgba(245,240,232,.7); font-size:.95rem; line-height:1.75; margin-bottom:28px; }
.exp-rows { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.exp-row { display:flex; gap:12px; }
.exp-row-key { font-size:.65rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); min-width:80px; margin-top:2px; }
.exp-row-val { font-size:.85rem; color:rgba(245,240,232,.65); }

/* EX2 Editorial — Blackjack */
.exp-editorial { background:var(--ivory-mid); padding:80px 0; margin-bottom:2px; }
.exp-editorial-inner { display:grid; grid-template-columns:200px 1fr 340px; gap:48px; align-items:start; }
.exp-editorial-left { padding-top:8px; text-align:right; }
.exp-editorial-left .exp-num { color:rgba(13,27,42,.07); font-size:6rem; }
.exp-editorial-body h3 { font-family:var(--font-heading); font-size:clamp(2rem,3.5vw,3rem); font-weight:400; color:var(--navy); line-height:1.12; margin-bottom:24px; }
.exp-editorial-body p { font-size:1rem; color:var(--smoke-dark); line-height:1.8; margin-bottom:24px; }
.exp-chips { display:flex; flex-wrap:wrap; gap:8px; }
.exp-chip { padding:5px 12px; background:var(--navy); color:rgba(245,240,232,.7); font-size:.7rem; font-weight:500; letter-spacing:.06em; border-radius:2px; }
.exp-editorial-aside { padding-top:12px; }
.exp-aside-img { border-radius:var(--radius-md); overflow:hidden; aspect-ratio:3/4; background:var(--navy); margin-bottom:20px; }
.exp-aside-img img { width:100%; height:100%; object-fit:cover; opacity:.88; }
.exp-aside-ph { width:100%; min-height:280px; background:linear-gradient(160deg,var(--navy-light),var(--navy)); display:flex; align-items:center; justify-content:center; }

/* EX3 Wide band — Roulette */
.exp-band { position:relative; background:var(--evergreen); padding:80px 0; margin-bottom:2px; overflow:hidden; }
.exp-band::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(197,151,58,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(13,27,42,.4) 0%, transparent 50%);
}
.exp-band-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr 400px; gap:64px; align-items:center; }
.exp-band-body .exp-num { color:rgba(255,255,255,.07); }
.exp-band-body h3 { font-family:var(--font-heading); font-size:clamp(2.2rem,4vw,3.5rem); font-weight:300; color:var(--ivory); margin-bottom:20px; line-height:1.1; letter-spacing:-.015em; }
.exp-band-body p { font-size:1.02rem; color:rgba(245,240,232,.75); line-height:1.75; max-width:540px; margin-bottom:32px; }
.exp-band-facts { display:flex; gap:32px; margin-bottom:32px; }
.exp-fact-val { font-family:var(--font-heading); font-size:1.5rem; font-weight:300; color:var(--gold-pale); display:block; margin-bottom:4px; }
.exp-fact-key { font-size:.65rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:rgba(245,240,232,.4); }
.exp-band-img { border-radius:var(--radius-md); overflow:hidden; aspect-ratio:4/3; background:rgba(0,0,0,.25); }
.exp-band-img img { width:100%; height:100%; object-fit:cover; opacity:.8; }
.exp-band-img-ph { width:100%; min-height:280px; background:rgba(0,0,0,.2); display:flex; align-items:center; justify-content:center; }

/* EX4 Stacked — Dice */
.exp-stacked { background:var(--ivory); padding:80px 0 var(--section-pad); }
.exp-stacked-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.exp-stacked-left .exp-num { color:rgba(13,27,42,.07); }
.exp-stacked-left h3 { font-family:var(--font-heading); font-size:clamp(1.8rem,3vw,2.8rem); font-weight:400; color:var(--navy); margin-bottom:20px; line-height:1.15; }
.exp-stacked-left p { font-size:1rem; color:var(--smoke-dark); line-height:1.8; margin-bottom:28px; }
.exp-stacked-img { border-radius:var(--radius-md); overflow:hidden; aspect-ratio:16/9; background:var(--navy); margin-bottom:28px; }
.exp-stacked-img img { width:100%; height:100%; object-fit:cover; opacity:.88; }
.exp-stacked-img-ph { width:100%; min-height:220px; background:linear-gradient(135deg,var(--navy-light),var(--navy)); display:flex; align-items:center; justify-content:center; }
.exp-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.exp-detail-card { padding:20px; background:var(--ivory-mid); border-radius:var(--radius-sm); border-left:3px solid var(--gold); }
.exp-detail-card-key { font-size:.63rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.exp-detail-card-val { font-size:.88rem; color:var(--navy); line-height:1.5; }

/* ============================================================
   9. TESTIMONIALS
   ============================================================ */
.testi-block { padding:72px 0; }
.testi-navy    { background:var(--navy); }
.testi-ivory   { background:var(--ivory-mid); }
.testi-green   { background:var(--evergreen); }
.testi-inner   { max-width:780px; margin:0 auto; text-align:center; }
.testi-mark    { font-family:var(--font-heading); font-size:5rem; line-height:.6; color:var(--gold); opacity:.4; margin-bottom:24px; display:block; }
.testi-text    { font-family:var(--font-heading); font-size:clamp(1.3rem,2.2vw,1.9rem); font-weight:300; font-style:italic; line-height:1.5; margin-bottom:28px; }
.testi-navy .testi-text  { color:var(--ivory); }
.testi-ivory .testi-text { color:var(--navy); }
.testi-green .testi-text { color:var(--ivory); }
.testi-author  { font-size:.75rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; }
.testi-navy .testi-author  { color:var(--gold); }
.testi-ivory .testi-author { color:var(--rosewood); }
.testi-green .testi-author { color:var(--gold-pale); }

/* ============================================================
   10. EVENT FORMATS
   ============================================================ */
.formats-section { background:var(--ivory); padding:var(--section-pad) 0; }
.formats-intro { max-width:580px; margin-bottom:64px; }
.formats-intro h2 { font-family:var(--font-heading); font-size:clamp(1.8rem,3.5vw,3rem); font-weight:400; color:var(--navy); margin-bottom:16px; }
.formats-intro p { color:var(--smoke); }

/* Statement block */
.fmt-statement {
  background:var(--navy); padding:64px; border-radius:var(--radius-md); margin-bottom:24px;
  position:relative; overflow:hidden;
}
.fmt-statement::after {
  content:''; position:absolute; top:-40px; right:-40px;
  width:200px; height:200px; border-radius:50%; border:1px solid rgba(197,151,58,.15);
}
.fmt-statement h3 { font-family:var(--font-heading); font-size:clamp(1.8rem,3vw,2.6rem); font-weight:300; color:var(--ivory); margin-bottom:16px; line-height:1.15; }
.fmt-statement p { color:rgba(245,240,232,.68); line-height:1.75; max-width:600px; margin-bottom:24px; }
.fmt-note { font-size:.72rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); opacity:.7; }

/* Split */
.fmt-split { display:grid; grid-template-columns:1fr 1fr; gap:0; border-radius:var(--radius-md); overflow:hidden; margin-bottom:24px; }
.fmt-split-vis { background:var(--rosewood); padding:56px; display:flex; flex-direction:column; justify-content:flex-end; min-height:400px; position:relative; overflow:hidden; }
.fmt-split-vis::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,var(--rosewood) 0%,#5C2D3A 100%); }
.fmt-vis-num { position:absolute; top:32px; right:40px; font-family:var(--font-heading); font-size:8rem; font-weight:300; color:rgba(255,255,255,.05); line-height:1; }
.fmt-vis-title { position:relative; z-index:1; font-family:var(--font-heading); font-size:clamp(1.8rem,3vw,2.5rem); font-weight:300; color:var(--ivory); line-height:1.15; }
.fmt-split-body { background:var(--ivory-mid); padding:56px; display:flex; flex-direction:column; justify-content:center; }
.fmt-split-body p { color:var(--smoke-dark); line-height:1.75; margin-bottom:20px; }
.fmt-meta { display:flex; flex-direction:column; gap:8px; }
.fmt-meta-row { display:flex; gap:12px; font-size:.82rem; }
.fmt-meta-key { font-weight:600; color:var(--navy); min-width:100px; }
.fmt-meta-val { color:var(--smoke); }

/* Band */
.fmt-band { display:grid; grid-template-columns:280px 1fr; background:var(--evergreen); border-radius:var(--radius-md); overflow:hidden; margin-bottom:24px; }
.fmt-band-label { padding:48px 40px; display:flex; flex-direction:column; justify-content:center; background:rgba(0,0,0,.2); }
.fmt-band-label .eyebrow { color:var(--gold-pale); margin-bottom:12px; }
.fmt-band-label h3 { font-family:var(--font-heading); font-size:1.7rem; font-weight:300; color:var(--ivory); line-height:1.2; }
.fmt-band-body { padding:48px; display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:center; }
.fmt-band-body p { color:rgba(245,240,232,.72); line-height:1.72; font-size:.92rem; }
.fmt-band-details { border-left:1px solid rgba(197,151,58,.25); padding-left:32px; }
.fmt-band-detail { margin-bottom:14px; }
.fmt-band-detail-key { font-size:.63rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-pale); opacity:.6; margin-bottom:4px; }
.fmt-band-detail-val { font-size:.85rem; color:rgba(245,240,232,.8); }

/* Cluster */
.fmt-cluster { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.fmt-cluster-card { background:var(--navy-light); border-radius:var(--radius-md); padding:40px 32px; border-top:3px solid transparent; transition:border-color var(--transition),transform var(--transition); }
.fmt-cluster-card:nth-child(1) { border-top-color:var(--gold); }
.fmt-cluster-card:nth-child(2) { border-top-color:var(--rosewood); }
.fmt-cluster-card:nth-child(3) { border-top-color:var(--evergreen-light); }
.fmt-cluster-card:hover { transform:translateY(-4px); }
.fmt-cluster-card .eyebrow { color:var(--smoke-light); }
.fmt-cluster-card h4 { font-family:var(--font-heading); font-size:1.5rem; font-weight:400; color:var(--ivory); margin-bottom:14px; line-height:1.25; }
.fmt-cluster-card p { font-size:.88rem; color:rgba(245,240,232,.6); line-height:1.7; }

/* ============================================================
   11. DEFINES
   ============================================================ */
.defines-section { background:var(--ivory-dark); padding:var(--section-pad) 0; }
.defines-header { text-align:center; max-width:600px; margin:0 auto 64px; }
.defines-header h2 { font-family:var(--font-heading); font-size:clamp(1.8rem,3.5vw,3rem); font-weight:400; color:var(--navy); margin-bottom:16px; }
.defines-header p { color:var(--smoke); }
.defines-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.define-item { background:var(--navy); padding:48px 36px; position:relative; overflow:hidden; transition:background var(--transition); }
.define-item:hover { background:var(--navy-light); }
.define-num { font-family:var(--font-heading); font-size:4rem; font-weight:300; color:rgba(197,151,58,.1); line-height:1; position:absolute; top:20px; right:24px; }
.define-rule { width:32px; height:1px; background:var(--gold); margin-bottom:20px; }
.define-item h4 { font-family:var(--font-heading); font-size:1.35rem; font-weight:400; color:var(--ivory); margin-bottom:12px; line-height:1.25; }
.define-item p { font-size:.875rem; color:rgba(245,240,232,.6); line-height:1.7; }

/* ============================================================
   12. PLANNING RAIL
   ============================================================ */
.planning-section { background:var(--ivory); padding:var(--section-pad) 0; }
.planning-header { max-width:520px; margin-bottom:64px; }
.planning-header h2 { font-family:var(--font-heading); font-size:clamp(1.8rem,3.5vw,3rem); font-weight:400; color:var(--navy); margin-bottom:16px; }
.planning-header p { color:var(--smoke); }
.planning-rail { display:grid; grid-template-columns:repeat(4,1fr); position:relative; }
.planning-rail::before { content:''; position:absolute; top:40px; left:48px; right:48px; height:1px; background:var(--ivory-dark); z-index:0; }
.planning-step { position:relative; z-index:1; padding:0 24px; }
.planning-dot { width:16px; height:16px; border-radius:50%; background:var(--ivory-dark); border:2px solid var(--gold); margin:32px auto 28px; transition:background var(--transition); }
.planning-step:hover .planning-dot { background:var(--gold); }
.planning-num { font-size:.75rem; color:var(--gold); letter-spacing:.1em; margin-bottom:10px; text-align:center; font-family:var(--font-heading); }
.planning-step h4 { font-family:var(--font-heading); font-size:1.3rem; font-weight:500; color:var(--navy); margin-bottom:12px; text-align:center; line-height:1.25; }
.planning-step p { font-size:.85rem; color:var(--smoke); line-height:1.7; text-align:center; }

/* ============================================================
   13. PACKAGES
   ============================================================ */
.packages-section { background:var(--navy); padding:var(--section-pad) 0; }
.packages-header { text-align:center; max-width:580px; margin:0 auto 56px; }
.packages-header h2 { font-family:var(--font-heading); font-size:clamp(1.8rem,3.5vw,3rem); font-weight:400; color:var(--ivory); margin-bottom:16px; }
.packages-header p { color:rgba(245,240,232,.6); }
.compare-strip { display:grid; grid-template-columns:200px repeat(3,1fr); border:1px solid rgba(197,151,58,.2); border-radius:var(--radius-sm); overflow:hidden; margin-bottom:32px; }
.compare-head { padding:14px 20px; font-size:.7rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; }
.compare-head--lbl  { color:var(--smoke); }
.compare-head--pkg  { text-align:center; color:rgba(245,240,232,.7); }
.compare-head--feat { text-align:center; color:var(--gold); background:rgba(197,151,58,.08); }
.compare-cell { padding:10px 20px; border-top:1px solid rgba(197,151,58,.1); font-size:.82rem; }
.compare-cell--lbl  { color:rgba(245,240,232,.5); }
.compare-cell--pkg  { text-align:center; color:rgba(245,240,232,.75); }
.compare-cell--feat { text-align:center; color:var(--ivory); background:rgba(197,151,58,.06); }
.compare-yes  { color:var(--gold); font-weight:600; }
.compare-dash { color:rgba(245,240,232,.2); }
.pkg-grid { display:grid; grid-template-columns:1fr 1.1fr 1fr; gap:24px; align-items:start; }
.pkg-card { border-radius:var(--radius-md); overflow:hidden; transition:transform var(--transition); }
.pkg-card:hover { transform:translateY(-4px); }
.pkg-start, .pkg-full { background:var(--navy-light); border:1px solid rgba(197,151,58,.15); }
.pkg-featured { background:var(--ivory); box-shadow:0 24px 64px rgba(0,0,0,.4); }
.pkg-header { padding:36px 32px 28px; border-bottom:1px solid rgba(197,151,58,.12); }
.pkg-featured .pkg-header { background:var(--navy); border-bottom-color:rgba(197,151,58,.2); }
.pkg-badge { display:inline-block; padding:4px 10px; background:var(--gold); color:var(--navy); font-size:.62rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; border-radius:2px; margin-bottom:16px; }
.pkg-name { font-family:var(--font-heading); font-size:1.7rem; font-weight:400; line-height:1.2; margin-bottom:8px; }
.pkg-start .pkg-name, .pkg-full .pkg-name { color:var(--ivory); }
.pkg-featured .pkg-name { color:var(--navy); }
.pkg-tagline { font-size:.82rem; }
.pkg-start .pkg-tagline, .pkg-full .pkg-tagline { color:rgba(245,240,232,.5); }
.pkg-featured .pkg-tagline { color:var(--smoke); }
.pkg-body { padding:28px 32px 32px; }
.pkg-features { display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.pkg-feature { display:flex; gap:10px; font-size:.85rem; line-height:1.45; }
.pkg-feature-dash { color:var(--gold); font-weight:600; flex-shrink:0; }
.pkg-start .pkg-feature-text, .pkg-full .pkg-feature-text { color:rgba(245,240,232,.7); }
.pkg-featured .pkg-feature-text { color:var(--smoke-dark); }

/* ============================================================
   14. FINAL ENQUIRY
   ============================================================ */
.enquiry-section { background:var(--ivory); padding:var(--section-pad) 0; }
.enquiry-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.enquiry-content h2 { font-family:var(--font-heading); font-size:clamp(1.8rem,3.5vw,3rem); font-weight:400; color:var(--navy); margin-bottom:20px; }
.enquiry-content p { color:var(--smoke-dark); line-height:1.75; margin-bottom:32px; font-size:1.05rem; }
.enquiry-note { padding:20px 24px; background:var(--ivory-mid); border-left:3px solid var(--gold); font-size:.85rem; color:var(--smoke-dark); line-height:1.6; border-radius:0 var(--radius-sm) var(--radius-sm) 0; }
.enquiry-form-wrap { background:var(--navy); border-radius:var(--radius-lg); padding:44px; }
.enquiry-form-title { font-family:var(--font-heading); font-size:1.5rem; font-weight:400; color:var(--ivory); margin-bottom:28px; }

/* ============================================================
   15. FORMS
   ============================================================ */
.form-group { margin-bottom:20px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-label { display:block; font-size:.7rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; margin-bottom:8px; color:rgba(245,240,232,.6); }
.form-label-dark { color:var(--smoke-dark); }
.form-input, .form-textarea, .form-select {
  width:100%; padding:12px 16px;
  background:rgba(255,255,255,.06); border:1px solid rgba(197,151,58,.2);
  border-radius:var(--radius-sm); color:var(--ivory);
  font-size:.9rem; transition:border-color var(--transition); outline:none; appearance:none;
}
.form-input-light, .form-textarea-light, .form-select-light {
  background:var(--ivory-mid); border-color:var(--ivory-dark); color:var(--navy);
}
.form-input:focus, .form-textarea:focus, .form-select:focus,
.form-input-light:focus, .form-select-light:focus { border-color:var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color:rgba(245,240,232,.3); }
.form-input-light::placeholder, .form-textarea-light::placeholder { color:var(--smoke-light); }
.form-textarea { resize:vertical; min-height:100px; }
.form-select option { background:var(--navy); color:var(--ivory); }
.form-select-light option { background:var(--ivory); color:var(--navy); }
.form-error { font-size:.72rem; color:#E07070; margin-top:6px; display:none; }
.form-error.visible { display:block; }
.form-success { text-align:center; padding:24px; display:none; }
.form-success.visible { display:block; }
.form-success p { color:black; font-size:.95rem; }
.form-success-light p { color:var(--navy); }
.form-success-icon { font-size:2rem; color:var(--gold); margin-bottom:12px; }
.form-submit-row { margin-top:24px; }

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer { background:#080F16; padding:72px 0 0; }
.footer-top { display:grid; grid-template-columns:280px 1fr; gap:64px; padding-bottom:56px; border-bottom:1px solid rgba(197,151,58,.12); }
.footer-brand-name { font-family:var(--font-heading); font-size:1.6rem; font-weight:500; color:var(--ivory); letter-spacing:.04em; display:block; margin-bottom:4px; }
.footer-brand-sub  { font-size:.6rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:20px; }
.footer-brand p    { font-size:.85rem; color:rgba(245,240,232,.45); line-height:1.7; margin-bottom:24px; }
.footer-contact { display:flex; flex-direction:column; gap:8px; }
.footer-contact a  { font-size:.82rem; color:rgba(245,240,232,.55); transition:color var(--transition); }
.footer-contact a:hover { color:var(--gold); }
.footer-contact span { font-size:.82rem; color:rgba(245,240,232,.55); }
.footer-nav-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:40px; }
.footer-nav-head  { font-size:.65rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; opacity:.8; }
.footer-nav-links { display:flex; flex-direction:column; gap:8px; }
.footer-nav-links a { font-size:.83rem; color:rgba(245,240,232,.5); transition:color var(--transition); }
.footer-nav-links a:hover { color:var(--ivory); }
.footer-regions-label { font-size:.65rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:rgba(245,240,232,.3); margin-bottom:8px; margin-top:20px; }
.footer-regions-list  { font-size:.78rem; color:rgba(245,240,232,.35); line-height:1.7; }
.footer-bottom { padding:20px 0; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.footer-copy   { font-size:.75rem; color:rgba(245,240,232,.25); }
.footer-legal  { display:flex; gap:20px; }
.footer-legal a { font-size:.75rem; color:rgba(245,240,232,.25); transition:color var(--transition); }
.footer-legal a:hover { color:rgba(245,240,232,.5); }

/* ============================================================
   17. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position:fixed; bottom:24px; left:24px; right:24px; max-width:680px;
  background:var(--navy); border:1px solid rgba(197,151,58,.25);
  border-radius:var(--radius-md); padding:24px 28px;
  z-index:9999; box-shadow:0 16px 48px rgba(0,0,0,.5);
  transform:translateY(0); opacity:1;
  transition:transform .4s ease, opacity .4s ease;
}
.cookie-banner.hidden { transform:translateY(120%); opacity:0; pointer-events:none; }
.cookie-banner-inner { display:flex; gap:24px; align-items:flex-start; }
.cookie-banner-text { flex:1; }
.cookie-banner-text p { font-size:.85rem; color:rgba(245,240,232,.75); line-height:1.6; margin-bottom:6px; }
.cookie-banner-text a { color:var(--gold); text-decoration:underline; }
.cookie-banner-actions { display:flex; gap:10px; flex-shrink:0; align-items:center; }

/* ============================================================
   18. PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background:var(--navy); padding:140px 0 80px; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 80% 50%, rgba(197,151,58,.07) 0%, transparent 55%); }
.page-hero-inner { position:relative; z-index:1; }
.page-hero h1 { font-family:var(--font-heading); font-size:clamp(2.5rem,5vw,4.5rem); font-weight:300; color:var(--ivory); line-height:1.1; margin-bottom:16px; letter-spacing:-.02em; }
.page-hero p  { font-size:1.05rem; color:rgba(245,240,232,.65); max-width:560px; line-height:1.7; }
.breadcrumb   { display:flex; align-items:center; gap:8px; margin-bottom:24px; }
.breadcrumb a { font-size:.72rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; color:rgba(245,240,232,.4); transition:color var(--transition); }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb-sep { font-size:.72rem; color:rgba(245,240,232,.2); }
.breadcrumb-cur { font-size:.72rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); }

/* ============================================================
   19. EXPERIENCES PAGE
   ============================================================ */
.exp-page-sec { padding:var(--section-pad) 0; }
.exp-page-sec--light  { background:var(--ivory); }
.exp-page-sec--mid    { background:var(--ivory-mid); }
.exp-page-sec--navy   { background:var(--navy); }
.exp-page-sec--green  { background:var(--evergreen); }
.exp-page-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.exp-page-grid--rev .exp-page-img  { order:2; }
.exp-page-grid--rev .exp-page-body { order:1; }
.exp-page-img { border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; background:var(--navy); }
.exp-page-img img { width:100%; height:100%; object-fit:cover; }
.exp-page-img-ph { width:100%; min-height:300px; background:linear-gradient(135deg,var(--navy-light),var(--navy)); display:flex; align-items:center; justify-content:center; }
.exp-page-body h2 { font-family:var(--font-heading); font-size:clamp(1.8rem,3.5vw,3rem); font-weight:400; margin-bottom:20px; line-height:1.15; }
.exp-page-sec--light .exp-page-body h2  { color:var(--navy); }
.exp-page-sec--mid  .exp-page-body h2  { color:var(--navy); }
.exp-page-sec--navy .exp-page-body h2  { color:var(--ivory); }
.exp-page-sec--green .exp-page-body h2 { color:var(--ivory); }
.exp-page-body > p { line-height:1.8; margin-bottom:18px; font-size:1rem; }
.exp-page-sec--light  .exp-page-body > p { color:var(--smoke-dark); }
.exp-page-sec--mid    .exp-page-body > p { color:var(--smoke-dark); }
.exp-page-sec--navy   .exp-page-body > p { color:rgba(245,240,232,.7); }
.exp-page-sec--green  .exp-page-body > p { color:rgba(245,240,232,.75); }
.exp-page-body > p:last-of-type { margin-bottom:28px; }
.exp-spec-list { display:flex; flex-direction:column; gap:14px; margin-bottom:32px; }
.exp-spec { display:flex; gap:14px; font-size:.88rem; padding-bottom:14px; border-bottom:1px solid rgba(197,151,58,.1); }
.exp-spec:last-child { border-bottom:none; padding-bottom:0; }
.exp-spec-key { font-size:.7rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); min-width:130px; margin-top:2px; }
.exp-spec-val { line-height:1.55; }
.exp-page-sec--light  .exp-spec-val { color:var(--smoke-dark); }
.exp-page-sec--mid    .exp-spec-val { color:var(--smoke-dark); }
.exp-page-sec--navy   .exp-spec-val { color:rgba(245,240,232,.65); }
.exp-page-sec--green  .exp-spec-val { color:rgba(245,240,232,.7); }

/* ============================================================
   20. FORMAT PAGE
   ============================================================ */
.fmt-page-sec { padding:var(--section-pad) 0; }
.fmt-page-sec:nth-child(odd)  { background:var(--ivory); }
.fmt-page-sec:nth-child(even) { background:var(--ivory-mid); }
.fmt-page-sec--navy  { background:var(--navy) !important; }
.fmt-page-sec--rose  { background:var(--rosewood) !important; }
.fmt-page-sec--green { background:var(--evergreen) !important; }
.fmt-page-grid { display:grid; grid-template-columns:1fr 480px; gap:80px; align-items:start; }
.fmt-page-grid--rev .fmt-page-main  { order:2; }
.fmt-page-grid--rev .fmt-page-panel { order:1; }
.fmt-page-main h2 { font-family:var(--font-heading); font-size:clamp(1.8rem,3.5vw,3rem); font-weight:400; margin-bottom:20px; line-height:1.15; }
.fmt-page-sec--navy  .fmt-page-main h2 { color:var(--ivory); }
.fmt-page-sec--rose  .fmt-page-main h2 { color:var(--ivory); }
.fmt-page-sec--green .fmt-page-main h2 { color:var(--ivory); }
.fmt-page-sec:not(.fmt-page-sec--navy):not(.fmt-page-sec--rose):not(.fmt-page-sec--green) .fmt-page-main h2 { color:var(--navy); }
.fmt-page-main p { line-height:1.8; margin-bottom:18px; font-size:1rem; }
.fmt-page-sec--navy  .fmt-page-main p { color:rgba(245,240,232,.7); }
.fmt-page-sec--rose  .fmt-page-main p { color:rgba(245,240,232,.75); }
.fmt-page-sec--green .fmt-page-main p { color:rgba(245,240,232,.75); }
.fmt-page-sec:not(.fmt-page-sec--navy):not(.fmt-page-sec--rose):not(.fmt-page-sec--green) .fmt-page-main p { color:var(--smoke-dark); }
.fmt-page-main p:last-of-type { margin-bottom:28px; }
.fmt-detail-panel { background:var(--navy); border-radius:var(--radius-lg); padding:40px; }
.fmt-detail-panel h4 { font-family:var(--font-heading); font-size:1.2rem; font-weight:500; color:var(--ivory); margin-bottom:20px; }
.fmt-spec-list { display:flex; flex-direction:column; gap:14px; }
.fmt-spec-row { display:flex; gap:12px; font-size:.85rem; padding-bottom:14px; border-bottom:1px solid rgba(197,151,58,.1); }
.fmt-spec-row:last-child { border-bottom:none; padding-bottom:0; }
.fmt-spec-key { font-size:.65rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); min-width:110px; margin-top:2px; }
.fmt-spec-val { color:rgba(245,240,232,.72); line-height:1.55; }
.fmt-detail-panel--light { background:var(--ivory-mid); border:1px solid var(--ivory-dark); }
.fmt-detail-panel--light h4 { color:var(--navy); }
.fmt-detail-panel--light .fmt-spec-val { color:var(--smoke-dark); }
.fmt-detail-panel--light .fmt-spec-row { border-bottom-color:var(--ivory-dark); }

/* ============================================================
   21. PACKAGES PAGE
   ============================================================ */
.pkg-page { background:var(--ivory); }
.pkg-page-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; padding:var(--section-pad) 0; }
.pkg-page-card { border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--ivory-dark); }
.pkg-page-card--feat { border-color:var(--gold); box-shadow:0 12px 48px rgba(197,151,58,.15); }
.pkg-page-hdr { padding:40px 36px; background:var(--navy); }
.pkg-page-hdr--feat { background:var(--navy-light); }
.pkg-page-name { font-family:var(--font-heading); font-size:2rem; font-weight:400; color:var(--ivory); margin-bottom:8px; }
.pkg-page-sub  { font-size:.8rem; color:rgba(245,240,232,.5); }
.pkg-page-body { padding:36px; background:var(--ivory); }
.pkg-page-body--feat { background:var(--ivory-mid); }
.pkg-page-specs { display:grid; grid-template-columns:1fr 1fr; gap:16px; padding:20px 0; border-top:1px solid var(--ivory-dark); border-bottom:1px solid var(--ivory-dark); margin-bottom:24px; }
.pkg-spec-key { font-size:.62rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--smoke-light); margin-bottom:4px; }
.pkg-spec-val { font-size:.9rem; font-weight:500; color:var(--navy); }
.pkg-feat-list { list-style:none; display:flex; flex-direction:column; gap:14px; margin-bottom:28px; }
.pkg-feat-list li { display:flex; gap:10px; font-size:.9rem; color:var(--smoke-dark); }
.pkg-feat-list li::before { content:'—'; color:var(--gold); flex-shrink:0; font-weight:600; }

/* ============================================================
   22. ABOUT PAGE
   ============================================================ */
.about-story { padding:var(--section-pad) 0; background:var(--ivory); }
.about-story-inner { display:grid; grid-template-columns:1fr 500px; gap:80px; align-items:start; }
.about-story-body h2 { font-family:var(--font-heading); font-size:clamp(1.8rem,3.5vw,3rem); font-weight:400; color:var(--navy); margin-bottom:24px; }
.about-story-body p  { color:var(--smoke-dark); line-height:1.8; margin-bottom:18px; }
.about-philosophy { background:var(--navy); border-radius:var(--radius-lg); padding:44px; margin-bottom:24px; }
.about-philosophy h3 { font-family:var(--font-heading); font-size:1.5rem; font-weight:400; color:var(--ivory); margin-bottom:16px; }
.about-philosophy p  { font-size:.88rem; color:rgba(245,240,232,.65); line-height:1.75; margin-bottom:14px; }
.about-philosophy p:last-child { margin-bottom:0; }
.about-values { padding:var(--section-pad) 0; background:var(--navy-mid); }
.about-values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.about-value-card { padding:36px 28px; border:1px solid rgba(197,151,58,.15); border-radius:var(--radius-md); }
.about-value-rule { width:32px; height:1px; background:var(--gold); margin-bottom:20px; }
.about-value-card h4 { font-family:var(--font-heading); font-size:1.3rem; font-weight:400; color:var(--ivory); margin-bottom:12px; }
.about-value-card p  { font-size:.85rem; color:rgba(245,240,232,.55); line-height:1.7; }

/* ============================================================
   23. PLANNING JOURNAL / ACCORDION
   ============================================================ */
.journal-section { padding:var(--section-pad) 0; background:var(--ivory); }
.journal-lead { max-width:580px; margin-bottom:64px; }
.journal-lead h2 { font-family:var(--font-heading); font-size:clamp(1.8rem,3.5vw,3rem); font-weight:400; color:var(--navy); margin-bottom:16px; }
.journal-lead p { color:var(--smoke); line-height:1.75; }
.journal-category { margin-bottom:48px; }
.journal-cat-title {
  font-family:var(--font-heading); font-size:1.4rem; font-weight:500; color:var(--navy);
  padding-bottom:14px; border-bottom:2px solid var(--gold); margin-bottom:4px;
}
.accordion-item { border-bottom:1px solid var(--ivory-dark); }
.accordion-trigger { width:100%; padding:18px 0; display:flex; align-items:center; justify-content:space-between; background:none; border:none; cursor:pointer; text-align:left; gap:16px; }
.accordion-trigger-text { font-size:.95rem; font-weight:500; color:var(--navy); line-height:1.4; }
.accordion-icon { width:20px; height:20px; flex-shrink:0; position:relative; color:var(--gold); }
.accordion-icon::before, .accordion-icon::after { content:''; position:absolute; background:currentColor; transition:transform var(--transition), opacity var(--transition); }
.accordion-icon::before { top:50%; left:0; right:0; height:1.5px; transform:translateY(-50%); }
.accordion-icon::after  { top:0; bottom:0; left:50%; width:1.5px; transform:translateX(-50%); }
.accordion-item.open .accordion-icon::after { opacity:0; transform:translateX(-50%) rotate(90deg); }
.accordion-body { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.accordion-body-inner { padding:4px 0 20px; }
.accordion-body-inner p { font-size:.9rem; color:var(--smoke-dark); line-height:1.75; margin-bottom:12px; }
.accordion-body-inner p:last-child { margin-bottom:0; }
.accordion-body-inner ul { padding-left:16px; margin-bottom:12px; }
.accordion-body-inner ul li { font-size:.9rem; color:var(--smoke-dark); line-height:1.7; margin-bottom:6px; list-style:disc; }

/* ============================================================
   24. CONTACT PAGE
   ============================================================ */
.contact-page { padding:var(--section-pad) 0; background:var(--ivory); }
.contact-section { padding:var(--section-pad) 0; background:var(--ivory); }
.contact-grid { display:grid; grid-template-columns:400px 1fr; gap:72px; align-items:start; }
.contact-sidebar-inner { position:sticky; top:100px; }
.contact-sidebar-heading { font-family:var(--font-heading); font-size:clamp(1.6rem,2.8vw,2.4rem); font-weight:400; color:var(--navy); line-height:1.2; margin:10px 0 16px; }
.contact-sidebar-body { color:var(--smoke-dark); line-height:1.8; font-size:.88rem; margin-bottom:32px; }
.contact-info-list { display:flex; flex-direction:column; gap:20px; margin-bottom:28px; }
.contact-info-item { display:flex; flex-direction:column; gap:4px; }
.contact-info-label { font-size:.65rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); }
.contact-info-val   { font-size:.88rem; color:var(--smoke-dark); line-height:1.6; }
.contact-info-val a { color:var(--navy); transition:color var(--transition); }
.contact-info-val a:hover { color:var(--rosewood); }
.contact-note { background:var(--ivory-mid); border-left:3px solid var(--gold); border-radius:0 var(--radius-sm) var(--radius-sm) 0; padding:16px 20px; margin-bottom:28px; }
.contact-note p { font-size:.82rem; color:var(--smoke); line-height:1.7; margin:0; }
.contact-format-links { display:flex; flex-direction:column; gap:6px; }
.contact-format-label { font-size:.65rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--smoke); margin-bottom:8px; }
.contact-format-links a { font-size:.82rem; color:var(--navy); text-decoration:none; border-bottom:1px solid var(--ivory-dark); padding:6px 0; transition:color var(--transition); }
.contact-format-links a:hover { color:var(--rosewood); }
.contact-form-wrap { background:var(--ivory-mid); border-radius:var(--radius-lg); padding:48px; }
.contact-form { display:flex; flex-direction:column; gap:20px; }
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-label { font-size:.72rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--navy-light); }
.form-req { color:var(--rosewood); }
.form-privacy-note { background:var(--ivory-dark); border-radius:var(--radius-sm); padding:14px 18px; }
.form-privacy-note p { font-size:.78rem; color:var(--smoke); line-height:1.65; margin:0; }
.form-privacy-note a { color:var(--navy); text-decoration:underline; }
.contact-submit { align-self:flex-start; padding:14px 36px; }

/* ============================================================
   25. LEGAL
   ============================================================ */
.legal-page { padding:var(--section-pad) 0; background:var(--ivory); }
.legal-content { max-width:760px; }
.legal-date { font-size:.78rem; color:var(--smoke-light); margin-bottom:40px; }
.legal-content h2 { font-family:var(--font-heading); font-size:1.7rem; color:var(--navy); margin:36px 0 14px; padding-top:36px; border-top:1px solid var(--ivory-dark); }
.legal-content h2:first-of-type { border-top:none; padding-top:0; margin-top:0; }
.legal-content h3 { font-family:var(--font-heading); font-size:1.2rem; color:var(--navy); margin:24px 0 10px; }
.legal-content p   { font-size:.9rem; color:var(--smoke-dark); line-height:1.8; margin-bottom:16px; }
.legal-content ul  { padding-left:20px; margin-bottom:16px; }
.legal-content ul li { font-size:.9rem; color:var(--smoke-dark); line-height:1.75; margin-bottom:8px; list-style:disc; }

/* ============================================================
   26. SCROLL REVEAL
   ============================================================ */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .6s ease,transform .6s ease; }
.reveal.in-view { opacity:1; transform:none; }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.page-hero--compact { min-height:280px; }
.page-hero--compact h1 { font-size:clamp(2rem,4vw,3.2rem); }
.page-hero--compact p { font-size:.85rem; color:rgba(245,240,232,.55); margin-top:8px; }
.legal-body { padding:var(--section-pad) 0; background:var(--ivory); }
.legal-inner { max-width:760px; margin:0 auto; }
.legal-intro { margin-bottom:48px; border-left:3px solid var(--gold); padding-left:24px; }
.legal-intro p { color:var(--smoke-dark); line-height:1.8; margin-bottom:12px; font-size:.92rem; }
.legal-intro p:last-child { margin-bottom:0; }
.legal-section { margin-bottom:48px; }
.legal-section h2 { font-family:var(--font-heading); font-size:1.55rem; font-weight:500; color:var(--navy); border-bottom:1px solid var(--ivory-dark); padding-bottom:10px; margin-bottom:18px; }
.legal-section h3 { font-family:var(--font-heading); font-size:1.15rem; font-weight:500; color:var(--navy); margin:24px 0 10px; }
.legal-section p { color:var(--smoke-dark); line-height:1.8; font-size:.88rem; margin-bottom:14px; }
.legal-section p:last-child { margin-bottom:0; }
.legal-section ul { list-style:none; padding:0; margin:0 0 14px; display:flex; flex-direction:column; gap:10px; }
.legal-section ul li { font-size:.88rem; color:var(--smoke-dark); line-height:1.75; padding-left:20px; position:relative; }
.legal-section ul li::before { content:'—'; position:absolute; left:0; color:var(--gold); font-weight:600; }
.legal-section a { color:var(--navy); text-decoration:underline; }
.legal-section a:hover { color:var(--rosewood); }
.legal-section code { font-family:monospace; font-size:.82rem; background:var(--ivory-mid); padding:2px 6px; border-radius:3px; color:var(--navy-light); }
.legal-table { border:1px solid var(--ivory-dark); border-radius:var(--radius-sm); overflow:hidden; margin:24px 0; font-size:.82rem; }
.legal-table-head { display:grid; grid-template-columns:1fr 2fr 1fr 1fr; gap:0; background:var(--navy); padding:12px 16px; color:var(--ivory); font-weight:600; font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; }
.legal-table-row { display:grid; grid-template-columns:1fr 2fr 1fr 1fr; gap:0; padding:14px 16px; color:var(--smoke-dark); line-height:1.6; border-top:1px solid var(--ivory-dark); }

/* ============================================================
   27. UTILITIES
   ============================================================ */
.mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; }
.mt-32 { margin-top:32px; }
.mt-48 { margin-top:48px; }
.mb-16 { margin-bottom:16px; }
.mb-24 { margin-bottom:24px; }
.mb-32 { margin-bottom:32px; }
.mb-48 { margin-bottom:48px; }

/* ============================================================
   28. RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
  .brand-position-inner { grid-template-columns:1fr; gap:48px; }
  .brand-stats { grid-template-columns:repeat(4,1fr); }
  .exp-editorial-inner { grid-template-columns:1fr 2fr 1fr; }
  .footer-nav-grid { grid-template-columns:repeat(2,1fr); }
  .about-story-inner { grid-template-columns:1fr; }
  .fmt-page-grid { grid-template-columns:1fr; }
  .fmt-page-grid--rev .fmt-page-main  { order:0; }
  .fmt-page-grid--rev .fmt-page-panel { order:0; }
}
@media (max-width:900px) {
  .header-nav, .header-cta { display:none; }
  .burger-btn { display:flex; }
  .exp-split { grid-template-columns:1fr; }
  .exp-split-media-ph { min-height:280px; }
  .exp-editorial-inner { grid-template-columns:1fr; }
  .exp-editorial-left { text-align:left; }
  .exp-editorial-aside { display:none; }
  .exp-band-inner { grid-template-columns:1fr; }
  .exp-band-img { display:none; }
  .exp-stacked-inner { grid-template-columns:1fr; gap:48px; }
  .fmt-split { grid-template-columns:1fr; }
  .fmt-band  { grid-template-columns:1fr; }
  .fmt-cluster { grid-template-columns:1fr 1fr; }
  .defines-grid { grid-template-columns:1fr 1fr; }
  .planning-rail { grid-template-columns:1fr 1fr; gap:40px; }
  .planning-rail::before { display:none; }
  .planning-step { padding:0; }
  .compare-strip { display:none; }
  .pkg-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  .enquiry-inner { grid-template-columns:1fr; }
  .exp-page-grid { grid-template-columns:1fr; gap:40px; }
  .exp-page-grid--rev .exp-page-img  { order:0; }
  .exp-page-grid--rev .exp-page-body { order:0; }
  .pkg-page-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  .about-values-grid { grid-template-columns:1fr 1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:40px; }
}
@media (max-width:620px) {
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .fmt-statement { padding:36px 28px; }
  .fmt-cluster  { grid-template-columns:1fr; }
  .fmt-band-body { grid-template-columns:1fr; padding:32px 28px; }
  .defines-grid { grid-template-columns:1fr; }
  .planning-rail { grid-template-columns:1fr; }
  .exp-detail-grid { grid-template-columns:1fr; }
  .brand-stats { grid-template-columns:1fr 1fr; }
  .footer-nav-grid { grid-template-columns:1fr 1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .about-values-grid { grid-template-columns:1fr; }
  .enquiry-form-wrap { padding:28px 24px; }
  .contact-form-wrap { padding:28px 24px; }
  .form-row-2 { grid-template-columns:1fr; }
  .contact-submit { align-self:stretch; }
}
