/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 2rem 52px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.page-hero-bg-word {
  position: absolute;
  top: -10px;
  left: -8px;
  font-size: clamp(80px, 20vw, 180px);
  font-weight: 900;
  color: #111;
  letter-spacing: -4px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.page-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}

/* ── ABOUT SECTIONS ── */
.about-section {
  padding: 52px 2rem;
  border-bottom: 1px solid var(--border);
}
.about-section-dark { background: var(--bg2); }
.page-divider { border: none; border-top: 1px solid var(--border); }

.about-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-text p:last-child { margin-bottom: 0; }

.about-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat-num { font-size: 40px; font-weight: 800; line-height: 1; }
.about-stat-lbl { font-size: 12px; color: var(--muted2); letter-spacing: 0.04em; }

.story-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.story-cols p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.pillar-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.pillar-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── GIFT CARDS ── */
.gift-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.gift-embed-wrap { }

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.25rem 0 2rem;
}
.how-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.how-num {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.how-title { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.how-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.gift-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1.25rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.gift-fact { font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.gift-fact span { font-weight: 700; flex-shrink: 0; }

.gift-buy-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-top: 1.25rem;
}
.gift-buy-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.gift-buy-sub { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 22px; }
.gift-buy-btn { font-size: 15px; }

/* ── MERCH FILTERS ── */
.merch-filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.merch-filter-btn {
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.merch-filter-btn:hover { border-color: var(--muted); color: var(--text); }
.merch-filter-btn.active { border-color: var(--pink); color: var(--pink); }

/* ── GIFT CARD MODAL ── */
.gift-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.gift-modal-overlay.open { display: flex; }
.gift-modal-inner {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: min(700px, 90vh);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
.gift-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.gift-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.gift-modal-close:hover { background: rgba(0,0,0,0.8); }

/* ── LOYALTY ── */
.loyalty-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.loyalty-card {
  background: linear-gradient(135deg, #1a1208 0%, #0f1a14 100%);
  border: 1px solid #2a2a1a;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
}
.loyalty-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.loyalty-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-weight: 700;
}
.loyalty-skeleton-icon { font-size: 24px; }
.loyalty-card-name { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.loyalty-points-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.loyalty-points-num { font-size: 48px; font-weight: 800; color: var(--yellow); line-height: 1; }
.loyalty-points-lbl { font-size: 14px; color: var(--muted); }
.loyalty-card-cta { font-size: 13px; color: var(--teal); margin-bottom: 20px; }
.loyalty-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 0.06em;
  border-top: 1px solid #2a2a1a;
  padding-top: 12px;
}

.loyalty-app-note {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.loyalty-app-note strong { color: var(--text); font-weight: 600; }
.app-badges { display: flex; gap: 8px; margin-top: 12px; }
.app-badge {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 14px;
  color: var(--text);
  text-decoration: none;
}
.app-badge:hover { border-color: var(--muted); }

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
}
.faq-q { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── PRIVATE HIRE ── */
.hire-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 2rem;
}
.hire-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  position: relative;
}
.hire-card-featured {
  border-color: var(--yellow);
}
.hire-card-tag {
  margin-bottom: 14px;
  display: inline-block;
}
.hire-card-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.hire-card-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.hire-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.hire-list li { font-size: 13px; color: var(--muted); display: flex; gap: 8px; }
.hire-list li::before { content: '→'; color: var(--yellow); font-weight: 700; flex-shrink: 0; }

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 2rem;
}
.occasion {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.occasion-icon { font-size: 28px; }

.enquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.enquiry-contact { margin-top: 2rem; }

.enquiry-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted2); }
.form-input {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--yellow); }
.form-input::placeholder { color: var(--muted2); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  font-size: 14px;
  color: var(--teal);
  padding: 12px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  text-align: center;
}

/* ── TIMELINE ── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 0 0 2.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateX(-4px);
}
.timeline-item:nth-child(2)::before { background: var(--pink); }
.timeline-item:nth-child(3)::before { background: var(--teal); }
.timeline-year {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  flex-shrink: 0;
}
.timeline-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .about-grid { grid-template-columns: 1fr; }
  .story-cols { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .gift-layout { grid-template-columns: 1fr; }
  .loyalty-layout { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-section { padding: 36px 1.25rem; }
  .page-hero { padding: 48px 1.25rem 36px; }
}
