/* ═══════════════════════════════════════════════════════════
   justmusic.asia — Minimalist Design System
   Palette: White · Black · Beige · Gold
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ─── TOKENS ─── */
:root {
  /* Brand */
  --gold:           #C4A265;
  --gold-hover:     #B08D50;
  --gold-light:     #E8D5B5;
  --gold-faint:     rgba(196,162,101,.08);
  --gold-glow:      rgba(196,162,101,.15);

  /* Neutrals */
  --white:          #FFFFFF;
  --beige:          #F5F0EB;
  --beige-warm:     #EDE5DB;
  --sand:           #D9CFC3;
  --stone:          #999182;
  --charcoal:       #333333;
  --black:          #1A1A1A;
  --ink:            #0D0D0D;

  /* Backgrounds */
  --bg-page:        #FFFFFF;
  --bg-section:     #F5F0EB;
  --bg-card:        #FFFFFF;
  --bg-dark:        #1A1A1A;
  --bg-dark-soft:   #222222;

  /* Text */
  --text-primary:   #1A1A1A;
  --text-body:      #4A4A4A;
  --text-muted:     #8A8A8A;
  --text-light:     #B0B0B0;
  --text-on-dark:   #F5F0EB;
  --text-on-dark-s: #999182;

  /* Borders */
  --border:         #E5DFD8;
  --border-light:   #F0EBE4;
  --border-dark:    #333333;

  /* States */
  --success:        #4A9B6E;
  --danger:         #C75050;
  --warning:        #D4A843;

  /* Layout */
  --nav-h:          100px;
  --container-max:  1200px;
  --radius-sm:      6px;
  --radius:         10px;
  --radius-lg:      16px;
  --radius-xl:      24px;

  /* Fonts */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', -apple-system, sans-serif;
}

/* ─── BASE ─── */
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-hover); }
button { font-family: inherit; }
::selection { background: var(--gold-light); color: var(--black); }

/* ─── CONTAINER ─── */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ─── SECTION LABEL ─── */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--text-primary);
  line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-muted); font-size: 1rem;
  max-width: 520px; line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.logo-mark {
  width: 50px; height: 50px; background: var(--gold);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  border-radius: 6px;
}
/* AFTER */
.logo-text {
  display: flex; flex-direction: column; line-height: 1.2;
}
.logo-text strong {
  font-size: 20px; font-weight: 900; color: var(--black); letter-spacing: -0.3px;
}
.logo-text strong span { color: var(--gold); }
.logo-text em {
  font-style: normal; font-size: 11px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase;
}
}
.logo-text span { color: var(--gold); }

.nav-links { display: flex; gap: 25px; }
.nav-links a {
  font-size: 18px; font-weight: 700; color: var(--text-body);
  text-decoration: none; position: relative; padding: 4px 0;
  transition: color .2s; letter-spacing: 0.2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; background: var(--gold); color: var(--white);
  font-size: 15px; font-weight: 600; border-radius: 6px;
  border: none; cursor: pointer; transition: background .2s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--gold-hover); color: var(--white); }

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; padding: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px; background: var(--black);
  position: absolute; left: 0; transition: all .25s;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 9px; }
.nav-hamburger span:nth-child(3) { top: 18px; }
.nav-hamburger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Mobile nav */
.nav-mobile {
  display: none; flex-direction: column; gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 16px 24px; font-size: 15px; font-weight: 500;
  color: var(--text-body); border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}
.nav-mobile a:hover { color: var(--gold); background: var(--gold-faint); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
}


/* ══════════════════════════════════════════════════════════
   HERO CAROUSEL
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative; width: 100%; height: 80vh; min-height: 500px; max-height: 800px;
  margin-top: var(--nav-h); overflow: hidden; background: var(--ink);
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .8s ease; display: flex;
  align-items: flex-end;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55);
}
.hero-slide-content {
  position: relative; z-index: 3;
  padding: 0 0 64px;
  width: 100%; max-width: var(--container-max);
  margin: 0 auto; padding-left: 40px; padding-right: 40px;
}
.hero-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  color: #fff; font-weight: 700;
  line-height: 1.05; margin-bottom: 14px;
  max-width: 700px;
}
.hero-sub {
  color: rgba(255,255,255,.7); font-size: 1rem;
  max-width: 480px; line-height: 1.6; margin-bottom: 28px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--gold); color: var(--white);
  font-size: 14px; font-weight: 700; border-radius: 6px;
  border: none; cursor: pointer; text-decoration: none;
  transition: background .2s;
}
.hero-cta:hover { background: var(--gold-hover); color: var(--white); }

/* Dots */
.hero-dots {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none;
  cursor: pointer; transition: all .3s; padding: 0;
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* Arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 44px; height: 44px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 18px;
  border-radius: 50%; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: rgba(255,255,255,.2); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

@media (max-width: 768px) {
  .hero { height: 65vh; min-height: 420px; }
  .hero-slide-content { padding: 0 20px 48px; }
  .hero-arrow { display: none; }
}


/* ══════════════════════════════════════════════════════════
   PAGE HERO (for inner pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  margin-top: var(--nav-h);
  padding:80 0 48px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}
.page-hero-text { max-width: 640px; }
.page-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--text-primary); font-weight: 700;
  line-height: 1.1; margin: 8px 0 12px;
}


/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 24px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 14px; border: none; cursor: pointer; transition: all .2s;
  text-decoration: none; line-height: 1.3;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-hover); color: var(--white); }
.btn-outline { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #333; color: var(--white); }
.btn-ghost { background: transparent; color: var(--text-body); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--beige); color: var(--black); }


/* ══════════════════════════════════════════════════════════
   FEATURED EVENTS (list view)
   ══════════════════════════════════════════════════════════ */
.events-section { padding: 80px 0; }
.events-section.bg-beige { background: var(--bg-section); }

.events-filter-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px; border-radius: 99px; font-size: 13px;
  font-weight: 600; border: 1.5px solid var(--border);
  background: transparent; color: var(--text-body);
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); background: var(--gold); color: var(--white);
}

/* Event list row */
.event-list { display: flex; flex-direction: column; gap: 0; }
.event-row {
  display: grid;
  grid-template-columns: 100px 80px 1fr auto;
  gap: 20px; align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background .15s;
}
.event-row:first-child { border-top: 1px solid var(--border-light); }
.event-row:hover { background: var(--gold-faint); }

.event-row-date {
  text-align: center;
}
.event-row-date .date-month {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); display: block;
}
.event-row-date .date-day {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700; color: var(--text-primary);
  line-height: 1;
}
.event-row-date .date-year {
  font-size: 11px; color: var(--text-muted);
}

.event-row-img {
  width: 80px; height: 80px; border-radius: var(--radius);
  object-fit: cover; background: var(--beige);
}

.event-row-info h3 {
  font-size: 16px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 4px; line-height: 1.3;
}
.event-row-info .event-row-artist {
  font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 4px;
}
.event-row-info .event-row-meta {
  font-size: 12px; color: var(--text-muted);
  display: flex; gap: 12px; flex-wrap: wrap;
}

.event-row-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; background: var(--gold); color: var(--white);
  border: none; border-radius: var(--radius-sm); font-weight: 700;
  font-size: 13px; cursor: pointer; white-space: nowrap;
  transition: background .2s; text-decoration: none;
}
.event-row-cta:hover { background: var(--gold-hover); color: var(--white); }
.event-row-cta.soldout {
  background: var(--beige); color: var(--text-muted);
  cursor: not-allowed; pointer-events: none;
}

@media (max-width: 768px) {
  .event-row { grid-template-columns: 70px 1fr; gap: 14px; padding: 18px 0; }
  .event-row-img { display: none; }
  .event-row-cta { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 480px) {
  .event-row-date .date-day { font-size: 26px; }
}


/* ══════════════════════════════════════════════════════════
   EVENT CARD (grid — for events page)
   ══════════════════════════════════════════════════════════ */
.events-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.event-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.card-img-wrap {
  position: relative; height: 200px; overflow: hidden;
  background: var(--beige);
}
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 99px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-music { background: var(--gold); color: var(--white); }
.badge-sports { background: var(--black); color: var(--white); }
.badge-soldout { background: var(--danger); color: var(--white); }
.card-body { padding: 20px; }
.card-date { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.card-title { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; line-height: 1.3; }
.card-venue { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border-light);
}
.card-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-primary); }
.card-price span { font-size: 12px; font-weight: 400; color: var(--text-muted); }


/* ══════════════════════════════════════════════════════════
   PAST EVENT GALLERY
   ══════════════════════════════════════════════════════════ */
.gallery-section { padding: 80px 0; background: var(--bg-dark); }
.gallery-section .section-label { color: var(--gold); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: var(--text-on-dark-s); }

.gallery-slider-wrap {
  position: relative; overflow: hidden;
}
.gallery-slider {
  display: flex; gap: 20px;
  transition: transform .5s ease;
  will-change: transform;
}
.gallery-item {
  flex: 0 0 300px; border-radius: var(--radius-lg);
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff; font-size: 15px; font-weight: 700;
}

.gallery-arrows {
  display: flex; gap: 10px; margin-top: 24px;
  justify-content: flex-end;
}
.gallery-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  background: transparent; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; transition: all .2s;
}
.gallery-arrow:hover { border-color: var(--gold); color: var(--gold); }


/* ══════════════════════════════════════════════════════════
   EVENT DETAIL
   ══════════════════════════════════════════════════════════ */
.detail-hero {
  margin-top: var(--nav-h); position: relative;
  height: 50vh; min-height: 360px; max-height: 500px;
  overflow: hidden; background: var(--ink);
}
.detail-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.5);
}
.detail-hero-content {
  position: relative; z-index: 3;
  height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 40px 48px;
  max-width: var(--container-max); margin: 0 auto;
}
.detail-hero-content .breadcrumb {
  font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 12px;
}
.detail-hero-content .breadcrumb a { color: rgba(255,255,255,.5); }
.detail-hero-content .breadcrumb a:hover { color: var(--gold); }
.detail-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: #fff; font-weight: 700; line-height: 1.1;
  margin-bottom: 10px;
}
.detail-meta-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  color: rgba(255,255,255,.65); font-size: 14px;
}

.detail-body {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 48px; padding: 48px 0 80px;
  max-width: var(--container-max); margin: 0 auto;
  padding-left: 40px; padding-right: 40px;
}
.detail-main h2 {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--text-primary); margin-bottom: 16px;
  font-weight: 700;
}
.detail-main p { margin-bottom: 14px; }

.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0; }
.detail-tag {
  padding: 5px 14px; background: var(--beige); border-radius: 99px;
  font-size: 12px; font-weight: 600; color: var(--text-body);
}

/* Info Section (replaces schedule) */
.info-section {
  background: var(--bg-section); border-radius: var(--radius);
  padding: 28px; margin: 28px 0;
}
.info-section h3 {
  font-size: 14px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 14px; letter-spacing: 0.5px;
}
.info-item { margin-bottom: 12px; font-size: 14px; color: var(--text-body); line-height: 1.7; }
.info-item strong { color: var(--text-primary); }

/* Lineup */
.lineup-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px; margin: 20px 0;
}
.lineup-card { text-align: center; }
.lineup-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 50%; background: var(--beige);
  filter: grayscale(.5); transition: filter .3s;
}
.lineup-card:hover .lineup-img { filter: grayscale(0); }
.lineup-name { font-size: 13px; font-weight: 700; margin-top: 8px; color: var(--text-primary); }
.lineup-role { font-size: 11px; color: var(--text-muted); }

/* Venue */
.venue-box {
  background: var(--bg-section); border-radius: var(--radius);
  overflow: hidden; margin: 28px 0;
}
.venue-map { height: 200px; background: var(--beige); }
.venue-map iframe { width: 100%; height: 100%; border: none; }
.venue-info { padding: 20px; }
.venue-info h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.venue-info p { font-size: 13px; color: var(--text-muted); }
.venue-info a { font-size: 13px; color: var(--gold); font-weight: 600; }

/* Share buttons */
.share-row { display: flex; gap: 8px; margin: 24px 0; }
.share-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; transition: all .2s;
}
.share-btn:hover { border-color: var(--gold); background: var(--gold-faint); }

/* Ticket sidebar */
.ticket-card {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.ticket-price {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 4px;
}
.ticket-price-note { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.ticket-buy {
  display: block; width: 100%; padding: 15px;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: 15px; text-align: center;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: background .2s; text-decoration: none;
}
.ticket-buy:hover { background: var(--gold-hover); color: var(--white); }
.ticket-buy.soldout {
  background: var(--beige); color: var(--text-muted);
  cursor: not-allowed; pointer-events: none;
}
.ticket-info-list { margin-top: 20px; font-size: 13px; }
.ticket-info-item {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-top: 1px solid var(--border-light);
  color: var(--text-body);
}
.ticket-info-item span:first-child { color: var(--text-muted); }

.capacity-bar {
  height: 4px; background: var(--beige); border-radius: 2px;
  margin: 12px 0 4px; overflow: hidden;
}
.capacity-bar-fill { height: 100%; background: var(--gold); border-radius: 2px; }
.capacity-text { font-size: 11px; color: var(--text-muted); }

@media (max-width: 900px) {
  .detail-body { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .ticket-card { position: static; }
}
@media (max-width: 768px) {
  .detail-hero-content { padding: 0 20px 36px; }
}


/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 56px; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-sidebar {
  background: var(--bg-section); border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-sidebar h3 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 20px; font-size: 14px; color: var(--text-body);
}
.contact-item-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-faint); display: flex;
  align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-item a { color: var(--gold); font-weight: 600; }
.contact-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all .2s; text-decoration: none;
  color: var(--text-body);
}
.social-link:hover { border-color: var(--gold); background: var(--gold-faint); color: var(--gold); }

/* ─── FORM ─── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--text-muted);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px;
  color: var(--text-primary); background: var(--white);
  font-family: inherit; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: 11px; color: var(--text-light); }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-muted); margin: 12px 0; }
.form-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--gold); }

/* Lead type cards */
.lead-type-group { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.lead-type-card {
  flex: 1; min-width: 120px; padding: 14px 16px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); cursor: pointer;
  text-align: center; transition: all .2s;
  font-size: 13px; font-weight: 600; color: var(--text-body);
}
.lead-type-card:hover { border-color: var(--gold); }
.lead-type-card.active { border-color: var(--gold); background: var(--gold-faint); color: var(--gold); }
.lead-type-icon { font-size: 22px; display: block; margin-bottom: 6px; }


/* ══════════════════════════════════════════════════════════
   FOOTER — 3-Column Layout
   ══════════════════════════════════════════════════════════ */
.site-footer {
  position: relative; overflow: hidden;
  background: var(--bg-dark); color: var(--text-on-dark);
  padding: 0;
}
.footer-backdrop {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.12; pointer-events: none;
}
.footer-inner { position: relative; z-index: 2; }

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 48px;
  padding: 56px 0 48px;
}

/* Column shared */
.footer-col-title {
  font-size: 14px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 20px;
}
.footer-col-desc {
  font-size: 13px; color: var(--text-on-dark-s);
  line-height: 1.6; margin-bottom: 16px;
}

/* Column 1: Follow Us */
.footer-social-list {
  list-style: none; display: flex; gap: 14px;
  margin-bottom: 24px; padding: 0;
}
.footer-social-list li a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s; text-decoration: none;
}
.footer-social-list li a:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(196,162,101,.1);
}
.footer-social-list li a svg { display: block; }
.footer-copyright {
  display: block;
  font-size: 12px; color: var(--text-on-dark-s);
  line-height: 1.5;
}

/* Column 2: Navigation */
.footer-col-center { text-align: center; }
.footer-nav-list {
  list-style: none; padding: 0; margin: 0;
  columns: 2; column-gap: 24px;
}
.footer-nav-list li { break-inside: avoid; margin-bottom: 10px; }
.footer-nav-list a {
  font-size: 13px; color: var(--text-on-dark-s);
  text-decoration: none; transition: color .2s;
  font-weight: 500;
}
.footer-nav-list a:hover { color: var(--gold); }

/* Column 3: Newsletter */
.newsletter-form { display: flex; flex-direction: column; gap: 0; }
.newsletter-form input {
  padding: 13px 18px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px 6px 0 0; color: #fff; font-size: 14px;
  width: 100%; font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  padding: 13px 24px; background: var(--gold); color: var(--white);
  border: none; border-radius: 0 0 6px 6px; font-weight: 700;
  font-size: 14px; cursor: pointer; transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-hover); }

@media (max-width: 768px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 36px; padding: 40px 0 36px;
  }
  .footer-col-center { text-align: left; }
  .footer-nav-list { columns: 2; }
}
@media (max-width: 480px) {
  .footer-nav-list { columns: 1; }
}


/* ══════════════════════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999; background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.06);
  font-size: 13px; color: var(--text-body);
}
.cookie-banner.hidden { display: none; }
.cookie-banner a { color: var(--gold); font-weight: 600; }
.cookie-actions { display: flex; gap: 8px; }

/* ══════════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  padding: 14px 24px; background: var(--black); color: var(--white);
  border-radius: var(--radius); font-size: 13px; font-weight: 600;
  transform: translateY(80px); opacity: 0;
  transition: all .3s; box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ══════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none !important; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ─── LEGAL PAGES ─── */
.legal-body { max-width: 820px; margin: 0 auto; padding: 48px 24px 80px; }
.legal-body h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.legal-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin: 28px 0 10px; }
.legal-body p { font-size: 0.92rem; line-height: 1.85; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { font-size: 0.92rem; line-height: 1.85; margin: 0 0 14px 20px; }
.legal-body li { margin-bottom: 6px; }
.legal-callout { background: var(--bg-section); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 20px 24px; margin: 20px 0; font-size: 0.92rem; line-height: 1.75; }
.legal-callout strong { color: var(--text-primary); }

/* ─── ADMIN LINK ─── */
.admin-link { font-size: 11px; color: var(--text-light); padding: 4px 8px; }
