/* ==========================================================================
   EVENTUS · ATLAS — Design System CSS
   --------------------------------------------------------------------------
   Para usar em projeto .NET Core + Bootstrap 5 + Tabler UI + jQuery.

   COMO INTEGRAR:
   1. Adicione este arquivo em `wwwroot/css/eventus-atlas.css`
   2. No _Layout.cshtml, depois do Tabler:
      <link rel="stylesheet" href="~/css/eventus-atlas.css" asp-append-version="true"/>
   3. As classes deste arquivo se chamam `e-*` para não colidir com Bootstrap/Tabler.
   4. As utilities do Bootstrap (container, row, col-*, d-flex, gap-*, etc.)
      continuam funcionando — este CSS é uma CAMADA editorial em cima.
   ========================================================================== */


/* ── 1. FONTS ─────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');


/* ── 2. TOKENS (CSS Custom Properties) ────────────────────────────────────── */
:root {
  /* Backgrounds */
  --e-bg:         #F2EDE0;
  --e-bg-deep:    #E8E1D0;
  --e-paper:      #FAF6EC;

  /* Ink */
  --e-ink:        #0E1A14;
  --e-text:       #1A1814;
  --e-text-muted: #5C5448;
  --e-text-soft:  #857E6E;

  /* Moss (verde-musgo — primária) */
  --e-moss:       #1B3A2F;
  --e-moss-deep:  #0F2620;
  --e-moss-soft:  #3F5C4F;

  /* Coral (marca) */
  --e-coral:      #D85D3F;
  --e-coral-deep: #A04025;

  /* Lines */
  --e-line:       rgba(14,26,20,0.10);
  --e-line-soft:  rgba(14,26,20,0.05);
  --e-line-light: rgba(250,246,236,0.12);

  /* Fonts */
  --e-font:       "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --e-mono:       "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Spacing scale (4px base) */
  --e-section-x:  clamp(20px, 5vw, 64px);   /* horizontal section padding */
  --e-section-y:  clamp(64px, 10vw, 140px); /* vertical section padding */
}


/* ── 3. BASE / RESET ──────────────────────────────────────────────────────── */
body.e-atlas,
.e-atlas {
  background: var(--e-bg);
  color: var(--e-text);
  font-family: var(--e-font);
  -webkit-font-smoothing: antialiased;
}
.e-atlas * { box-sizing: border-box; }
.e-atlas h1, .e-atlas h2, .e-atlas h3, .e-atlas h4 { font-family: var(--e-font); margin: 0; margin-bottom: 16px;}
.e-atlas p { margin: 0; }
.e-atlas button { font-family: var(--e-font); }
.e-atlas a { color: inherit; text-decoration: none; }
.e-atlas img { display: block; max-width: 100%; }


/* ── 4. TYPOGRAPHY (fluid scale via clamp) ────────────────────────────────── */
/* All sizes scale down on mobile. Mobile floor → desktop ceiling. */
.e-display-1  { font-size: clamp(46px, 9vw, 116px); font-weight: 600; letter-spacing: -0.04em; line-height: 0.9;  text-wrap: balance; }
.e-display-2  { font-size: clamp(44px, 8.5vw, 110px); font-weight: 600; letter-spacing: -0.035em; line-height: 0.92; text-wrap: balance; }
.e-display-3 {
    font-size: clamp(34px, 6vw, 68px);
    font-weight: 500;
    letter-spacing: -0.034em;
    line-height: 0.96;
    text-wrap: balance;
}
.e-display-4  { font-size: clamp(30px, 4.5vw, 56px);  font-weight: 500; letter-spacing: -0.032em; line-height: 1.02; text-wrap: balance; }
.e-display-5  { font-size: clamp(26px, 3.5vw, 44px);  font-weight: 500; letter-spacing: -0.030em; line-height: 1.05; text-wrap: balance; }
.e-h-1        { font-size: clamp(22px, 2.2vw, 28px);  font-weight: 500; letter-spacing: -0.028em; line-height: 1.15; }
.e-h-2        { font-size: clamp(18px, 1.6vw, 22px);  font-weight: 500; letter-spacing: -0.018em; line-height: 1.25; }
.e-body-lg    { font-size: clamp(17px, 1.4vw, 24px);  line-height: 1.55; text-wrap: pretty; }
.e-body-md    { font-size: clamp(15px, 1.1vw, 18px);  line-height: 1.6;  text-wrap: pretty; }
.e-body       { font-size: 15px; line-height: 1.55; }
.e-body-sm    { font-size: 14px; line-height: 1.55; }
.e-body-xs    { font-size: 13px; line-height: 1.5; }

/* Mono / metadata */
.e-mono       { font-family: var(--e-mono); }
.e-kicker     { font-family: var(--e-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.e-meta       { font-family: var(--e-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.e-meta-sm    { font-family: var(--e-mono); font-size: 9px;  letter-spacing: 0.12em; text-transform: uppercase; }

/* Italic accent — the signature coral italic word */
.e-italic-accent {
  font-style: italic;
  font-weight: 300;
  color: var(--e-coral);
}

/* Colors */
.e-c-ink        { color: var(--e-ink); }
.e-c-text       { color: var(--e-text); }
.e-c-muted      { color: var(--e-text-muted); }
.e-c-soft       { color: var(--e-text-soft); }
.e-c-coral      { color: var(--e-coral); }
.e-c-moss       { color: var(--e-moss); }
.e-c-paper      { color: var(--e-paper); }
.e-c-paper-65   { color: rgba(250,246,236,0.65); }
.e-c-paper-75   { color: rgba(250,246,236,0.78); }
.e-c-paper-55   { color: rgba(250,246,236,0.55); }
.e-c-paper-45   { color: rgba(250,246,236,0.45); }

/* Backgrounds */
.e-bg            { background: var(--e-bg); }
.e-bg-deep       { background: var(--e-bg-deep); }
.e-bg-paper      { background: var(--e-paper); }
.e-bg-moss       { background: var(--e-moss);       color: #FAF6EC; }
.e-bg-moss-deep  { background: var(--e-moss-deep);  color: #FAF6EC; }
.e-bg-coral      { background: var(--e-coral);      color: #FFF; }


/* ── 5. LAYOUT — SECTIONS ─────────────────────────────────────────────────── */
.e-section { padding: var(--e-section-y) var(--e-section-x); }
.e-section-tight   { padding: clamp(48px, 7vw, 80px) var(--e-section-x); }
.e-section-flush   { padding: 0 var(--e-section-x); }
.e-section-no-x    { padding-left: 0; padding-right: 0; }


/* ── 6. NAV ───────────────────────────────────────────────────────────────── */
.e-nav {
  position: absolute; inset: 0 0 auto 0; z-index: 10;
  padding: clamp(20px, 3vw, 32px) var(--e-section-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.e-nav__menu {
  display: flex; align-items: center; gap: clamp(20px, 2.4vw, 36px);
}
.e-nav__item {
  position: relative;
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  padding-bottom: 4px;
  color: var(--e-text-muted);
  cursor: pointer;
}
.e-nav--light .e-nav__item { color: rgba(250,246,236,0.65); }
.e-nav--light .e-nav__item.is-active { color: #FAF6EC; }
.e-nav__item.is-active { color: var(--e-ink); }
.e-nav__item.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--e-coral);
}
/* Mobile burger */
.e-nav__burger {
  width: 40px; height: 40px;
  border: 1px solid rgba(250,246,236,0.18);
  background: rgba(250,246,236,0.05);
  color: #FAF6EC;
  display: none;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.e-nav--dark .e-nav__burger { border-color: var(--e-line); background: transparent; color: var(--e-ink); }


/* ── 7. LOGO ──────────────────────────────────────────────────────────────── */
.e-logo { display: inline-flex; align-items: center; gap: 12px; color: var(--e-ink); }
.e-logo svg { flex-shrink: 0; }
.e-logo__mark rect.fill { fill: var(--e-coral); }
.e-logo__mark rect.stroke { stroke: currentColor; }
.e-logo__word {
  font-weight: 700; font-size: 22px; letter-spacing: -0.6px;
}
.e-logo__est {
  font-family: var(--e-mono); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.85;
}
.e-logo--sm .e-logo__word { font-size: 18px; }
.e-logo--sm .e-logo__est  { font-size: 8px; }
/* Logo como imagem real do cliente */
.e-logo__img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}


/* ── 8. BUTTONS ───────────────────────────────────────────────────────────── */
.e-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--e-font); font-size: 14px; font-weight: 600; letter-spacing: 0.2px;
  border: 1px solid transparent; border-radius: 0;
  cursor: pointer; transition: opacity .15s, transform .15s;
}
.e-btn:hover { opacity: 0.88; }
.e-btn--lg { padding: 18px 30px; font-size: 15px; }
.e-btn--sm { padding: 10px 14px; font-size: 12px; gap: 6px; }
.e-btn--primary { background: var(--e-coral);  color: #FFF; }
.e-btn--dark    { background: var(--e-moss);   color: #FFFFFF !important;}
.e-btn--ghost   { background: transparent;     color: var(--e-ink);  border-color: var(--e-line); }
.e-btn--ghost-light { background: transparent; color: #FAF6EC; border-color: rgba(250,246,236,0.3); }
.e-btn--block   { width: 100%; justify-content: center; }
.e-btn--dashed  { background: transparent; color: var(--e-ink); border: 1px dashed var(--e-line); }


/* ── 9. SECTION MARK (number + line + label) ──────────────────────────────── */
.e-mark {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.e-mark__n {
  font-family: var(--e-font);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500; line-height: 1; letter-spacing: -0.04em;
  color: var(--e-moss);
}
.e-mark--dark .e-mark__n { color: var(--e-coral); }
.e-mark__body { display: flex; flex-direction: column; gap: 4px; }
.e-mark__line { width: 32px; height: 1px; background: var(--e-line); }
.e-mark--dark .e-mark__line { background: rgba(250,246,236,0.4); }
.e-mark__label {
  font-family: var(--e-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--e-text-muted);
}
.e-mark--dark .e-mark__label { color: rgba(250,246,236,0.6); }


/* ── 10. HERO ─────────────────────────────────────────────────────────────── */
.e-hero {
  position: relative;
  min-height: clamp(560px, 90vh, 760px);
  background: var(--e-moss-deep);
  color: #FAF6EC;
  overflow: hidden;
}
.e-hero__photo { position: absolute; inset: 0; }
.e-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.e-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* Gradiente vertical: escuro no topo (nav) → levemente claro no meio → muito escuro em baixo */
    background: linear-gradient(180deg, rgba(14, 26, 20, 0.82) 0%, rgba(14, 26, 20, 0.20) 36%, rgba(14, 26, 20, 0.30) 60%, rgba(14, 26, 20, 0.96) 100%);
}
.e-hero__overlay-2 {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* Vinheta radial: cantos escuros → centro mais claro + reforço lateral esquerdo */
    /*background: radial-gradient(ellipse 110% 85% at 50% 50%, transparent 18%, rgba(14,26,20,0.70) 100%), linear-gradient(90deg, rgba(14,26,20,0.42) 0%, transparent 55%);
    background: radial-gradient(ellipse 110% 85% at 50% 50%, transparent 58%, rgba(14,26,20,0.70) 100%), linear-gradient(90deg, rgba(14,26,20,0.42) 20%, transparent 55%);*/
    background: radial-gradient(ellipse 110% 85% at 50% 50%, transparent 58%, rgba(14, 26, 20, 0.70) 100%), linear-gradient(90deg, rgba(14, 26, 20, 0.42) 20%, transparent 35%);
}
.e-hero__content {
  /* Ancorado ao rodapé, logo acima da barra de progresso dos slides */
  position: absolute;
  inset: auto var(--e-section-x) clamp(80px, 12vh, 120px) var(--e-section-x);
  z-index: 3;
}
.e-hero__coords {
  position: absolute; top: clamp(90px, 14vh, 120px); right: var(--e-section-x);
  z-index: 3;
  text-align: right; line-height: 1.8; color: rgba(250,246,236,0.55);
  font-family: var(--e-mono); font-size: 11px; letter-spacing: 0.13em;
}
.e-hero__volume {
  position: absolute; top: clamp(150px, 22vh, 168px); left: var(--e-section-x);
  z-index: 3;
  font-family: var(--e-mono); font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--e-coral);
}
.e-hero__slider-bar {
  position: absolute; left: var(--e-section-x); right: var(--e-section-x); bottom: 40px;
  z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--e-mono); font-size: 11px; letter-spacing: 0.13em;
  color: rgba(250,246,236,0.75);
}
.e-hero__bar-track { display: flex; gap: 4px; }
.e-hero__bar { width: 48px; height: 2px; background: rgba(250,246,236,0.2); }
.e-hero__bar.is-active { background: var(--e-coral); }


/* ── 11. SEARCH STRIP ─────────────────────────────────────────────────────── */
.e-search {
  background: var(--e-moss);
  color: #FAF6EC;
  font-family: var(--e-font);
}
.e-search__row {
  display: flex; align-items: stretch;
  padding: 0 var(--e-section-x);
}
.e-search__field {
  flex: 1; padding: 24px 24px;
  border-right: 1px solid rgba(250,246,236,0.12);
  cursor: pointer;
  min-width: 0;
}
.e-search__field:last-of-type { border-right: none; }
.e-search__label {
  font-family: var(--e-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(250,246,236,0.55);
  margin-bottom: 8px;
}
.e-search__value { font-size: 15px; font-weight: 500; }

/* Select sem aparência nativa — mantém o look limpo do strip */
.e-search__field select.e-search__value {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: var(--e-font);
  color: #FAF6EC;
  cursor: pointer;
}
.e-search__field select.e-search__value option {
  background: var(--e-moss-deep);
  color: #FAF6EC;
}
.e-search__cta {
  background: var(--e-coral); color: #FFF; border: none;
  padding: 0 36px;
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer;
}


/* ── 12. EVENT CARD ───────────────────────────────────────────────────────── */
.e-card {
  background: var(--e-paper);
  border: 1px solid var(--e-line);
  display: flex; flex-direction: column;
  font-family: var(--e-font);
  overflow: hidden;
  height: 100%;
}
.e-card__media {
  position: relative; aspect-ratio: 5 / 4;
  overflow: hidden;
}
.e-card__media img { width: 100%; height: 100%; object-fit: cover; }
.e-card__tags {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 8px;
}
.e-tag-coral {
  background: var(--e-coral); color: #FFF;
  padding: 5px 10px;
  font-family: var(--e-mono); font-size: 10px; letter-spacing: 0.12em;
  font-weight: 500; text-transform: uppercase;
}
.e-tag-glass {
  background: rgba(14,26,20,0.5); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(250,246,236,0.15);
  color: #FAF6EC; padding: 5px 10px;
  font-family: var(--e-mono); font-size: 10px; letter-spacing: 0.12em;
}
.e-card__body {
  padding: 22px;
  display: flex; flex-direction: column; flex: 1;
}
.e-card__org {
  font-family: var(--e-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--e-coral); margin-bottom: 10px;
}
.e-card__title {
  font-size: clamp(15px, 1.3vw, 19px); line-height: 1.25; font-weight: 500;
  letter-spacing: -0.015em; color: var(--e-ink);
}
.e-card__loc {
  margin-top: 12px;
  font-size: 13px; color: var(--e-text-muted);
  display: flex; align-items: center; gap: 6px;
}
.e-card__foot {
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid var(--e-line-soft);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.e-card__price-label {
  font-family: var(--e-mono); font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--e-text-soft);
}
.e-card__price {
  font-size: clamp(18px, 1.6vw, 24px); font-weight: 600;
  color: var(--e-ink); letter-spacing: -0.025em;
  margin-top: 2px;
}


/* ── 13. FEATURED CARD (wide) ─────────────────────────────────────────────── */
.e-featured {
  background: var(--e-moss); color: #FAF6EC;
  display: grid; grid-template-columns: 1fr;
  font-family: var(--e-font);
  min-height: 420px;
}
@media (min-width: 768px) {
  .e-featured { grid-template-columns: 1.1fr 1fr; min-height: 480px; }
}
.e-featured__media { position: relative; min-height: 280px; overflow: hidden; }
.e-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.e-featured__body {
  padding: clamp(32px, 5vw, 52px) clamp(24px, 4vw, 48px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
}
.e-featured__pretitle {
  font-family: var(--e-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--e-coral);
  display: inline-flex; align-items: center; gap: 10px;
}
.e-featured__pretitle::before {
  content: ""; width: 24px; height: 1px; background: var(--e-coral);
}
.e-featured__org {
  font-family: var(--e-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(250,246,236,0.55);
  margin: 14px 0;
}
.e-featured__title {
  font-size: clamp(26px, 3vw, 40px); line-height: 1.05; font-weight: 500;
  letter-spacing: -0.03em;
}
.e-featured__meta {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 24px;
  color: rgba(250,246,236,0.85);
  font-family: var(--e-mono); font-size: 12px; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.e-featured__foot {
  padding-top: 24px;
  border-top: 1px solid rgba(250,246,236,0.12);
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}


/* ── 14. FORM ─────────────────────────────────────────────────────────────── */
.e-form-card {
  background: var(--e-paper);
  padding: clamp(20px, 3vw, 36px);
  border: 1px solid var(--e-line);
}
.e-form-card__head {
  padding-bottom: 20px; margin-bottom: 24px;
  border-bottom: 1px solid var(--e-line-soft);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
}
.e-form-card__title {
  font-size: clamp(16px, 1.4vw, 19px); font-weight: 600;
  color: var(--e-ink); letter-spacing: -0.015em;
}
.e-form-card__sub {
  font-size: 13px; color: var(--e-text-muted); margin-top: 4px;
}
.e-form-card__badge {
  width: 32px; height: 32px;
  border: 1px solid var(--e-line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--e-mono); font-size: 13px;
  color: var(--e-coral); font-weight: 600;
  flex-shrink: 0;
}
.e-form-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .e-form-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .e-form-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.e-field { font-family: var(--e-font); }
.e-field__label {
  font-family: var(--e-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--e-text-muted); margin-bottom: 8px;
}
.e-field__input {
  height: 52px; padding: 0 16px;
  background: var(--e-bg); border: 1px solid var(--e-line); border-radius: 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--e-text); font-weight: 500;
  width: 100%;
  font-family: var(--e-font);
  outline: none;
}
.e-field__input:focus { border-color: var(--e-coral); }
.e-field__input--muted { background: var(--e-bg-deep); }
.e-field__textarea {
  background: var(--e-bg-deep); padding: 18px;
  font-size: 14px; color: var(--e-text-soft);
  min-height: 92px; line-height: 1.6; border: none;
  width: 100%; font-family: var(--e-font);
  resize: vertical;
}
.e-checkbox {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--e-ink); cursor: pointer;
}
.e-checkbox input { display: none; }
.e-checkbox__box {
  width: 20px; height: 20px; background: var(--e-coral);
  display: inline-flex; align-items: center; justify-content: center;
  color: #FFF; flex-shrink: 0;
}


/* ── 15. PROGRESS BAR ─────────────────────────────────────────────────────── */
.e-progress {
  display: grid; gap: 6px;
  grid-template-columns: repeat(4, 1fr);
}
.e-progress__step { min-width: 0; }
.e-progress__bar {
  height: 3px; background: var(--e-bg-deep);
}
.e-progress__step.is-done .e-progress__bar,
.e-progress__step.is-current .e-progress__bar {
  background: var(--e-coral);
}
.e-progress__label {
  font-family: var(--e-mono); font-size: 10px;
  margin-top: 10px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--e-text-soft); font-weight: 400;
  display: flex; gap: 8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.e-progress__step.is-current .e-progress__label { color: var(--e-ink); font-weight: 600; }
.e-progress__num { color: var(--e-text-soft); }


/* ── 16. SIDEBAR SUMMARY ──────────────────────────────────────────────────── */
.e-summary {
  background: var(--e-moss); color: #FAF6EC;
  padding: clamp(24px, 3vw, 32px);
  font-family: var(--e-font);
}
@media (min-width: 992px) {
  .e-summary { position: sticky; top: 32px; }
}
.e-summary__list {
  border-top: 1px solid rgba(250,246,236,0.12);
  margin-top: 22px; padding-top: 20px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 13px; list-style: none; padding-left: 0;
}
.e-summary__row {
  display: flex; justify-content: space-between; gap: 12px;
}
.e-summary__key {
  color: rgba(250,246,236,0.5);
  font-family: var(--e-mono); font-size: 11px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.e-summary__val { color: #FAF6EC; font-weight: 500; text-align: right; }
.e-summary__total-row {
  border-top: 1px solid rgba(250,246,236,0.12);
  margin-top: 22px; padding-top: 22px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 12px;
}
.e-summary__total {
  font-size: clamp(24px, 2.5vw, 32px); font-weight: 600;
  letter-spacing: -0.03em; color: var(--e-coral);
}
.e-summary__note {
  margin-top: 20px; padding: 14px 16px;
  background: rgba(250,246,236,0.06);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(250,246,236,0.75);
}


/* ── 17. BREADCRUMB ───────────────────────────────────────────────────────── */
.e-crumb {
  font-family: var(--e-mono); font-size: 10px;
  color: rgba(250,246,236,0.55);
  letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.e-crumb__current { color: #FAF6EC; }
.e-crumb--dark { color: var(--e-text-muted); }
.e-crumb--dark .e-crumb__current { color: var(--e-ink); }


/* ── 18. NUMBERS BAND ─────────────────────────────────────────────────────── */
.e-stats {
  display: grid; gap: 4px;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) { .e-stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .e-stats { grid-template-columns: repeat(4, 1fr); } }
.e-stat {
  padding: 32px; min-height: 240px;
  background: rgba(250,246,236,0.04);
  border-top: 2px solid rgba(250,246,236,0.2);
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  color: #FAF6EC;
}
.e-stat--highlight {
  background: var(--e-coral); color: #FFF;
  border-top-color: #FFF;
}
.e-stat__n {
  font-size: clamp(56px, 7vw, 88px); font-weight: 600;
  letter-spacing: -0.04em; line-height: 0.9;
}
.e-stat__l { font-size: 17px; font-weight: 600; }
.e-stat__s {
  font-family: var(--e-mono); font-size: 11px; letter-spacing: 0.05em;
  text-transform: uppercase; margin-top: 6px;
  color: rgba(250,246,236,0.55);
}
.e-stat--highlight .e-stat__s { color: rgba(255,255,255,0.85); }


/* ── 19. WHY CARDS (3) ────────────────────────────────────────────────────── */
.e-why {
  display: grid; gap: 4px;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) { .e-why { grid-template-columns: repeat(3, 1fr); } }
.e-why-card {
  background: var(--e-paper); color: var(--e-ink);
  padding: clamp(28px, 4vw, 48px);
  min-height: 420px;
  border: 1px solid var(--e-line);
  display: flex; flex-direction: column;
}
.e-why-card--dark { background: var(--e-moss); color: #FAF6EC; border-color: var(--e-moss); }
.e-why-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 32px; gap: 16px;
}
.e-why-card__icon {
  width: 60px; height: 60px; background: var(--e-coral); color: #FFF;
  display: inline-flex; align-items: center; justify-content: center;
}
.e-why-card__n {
  font-family: var(--e-mono); font-size: 14px;
  color: var(--e-text-soft); letter-spacing: 0.05em;
}
.e-why-card--dark .e-why-card__n { color: rgba(250,246,236,0.5); }
.e-why-card__title {
  font-size: clamp(28px, 2.6vw, 36px); font-weight: 500;
  letter-spacing: -0.028em; margin-bottom: 14px;
}
.e-why-card__desc {
  font-size: 15px; line-height: 1.65; flex: 1;
  color: var(--e-text-muted);
}
.e-why-card--dark .e-why-card__desc { color: rgba(250,246,236,0.75); }
.e-why-card__foot {
  padding-top: 24px; margin-top: 24px;
  border-top: 1px solid var(--e-line);
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.e-why-card--dark .e-why-card__foot { border-top-color: rgba(250,246,236,0.15); }
.e-why-card__stat {
  font-size: clamp(28px, 3vw, 42px); font-weight: 500;
  color: var(--e-coral); letter-spacing: -0.028em;
}


/* ── 20. TIMELINE ─────────────────────────────────────────────────────────── */
.e-timeline {
  display: grid; gap: 4px;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) { .e-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .e-timeline { grid-template-columns: repeat(5, 1fr); } }
.e-tl {
  background: var(--e-paper); color: var(--e-text);
  padding: 28px; min-height: 240px;
  border-top: 2px solid var(--e-coral);
}
.e-tl--highlight { background: var(--e-coral); color: #FFF; border-top-color: #FFF; }
.e-tl__year {
  font-size: clamp(28px, 3vw, 34px); font-weight: 600;
  color: var(--e-moss); letter-spacing: -0.028em;
}
.e-tl--highlight .e-tl__year { color: #FFF; }
.e-tl__sep { width: 28px; height: 2px; background: var(--e-coral); margin: 18px 0; }
.e-tl--highlight .e-tl__sep { background: #FFF; }
.e-tl__title { font-size: 20px; font-weight: 500; letter-spacing: -0.018em; }
.e-tl__desc { font-size: 13px; color: var(--e-text-muted); margin-top: 12px; line-height: 1.6; }
.e-tl--highlight .e-tl__desc { color: rgba(255,255,255,0.85); }


/* ── 21. TOUR BAND ────────────────────────────────────────────────────────── */
.e-tour {
  background: var(--e-bg);
}
.e-tour__grid {
  display: grid; gap: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .e-tour__grid { grid-template-columns: 1fr 1.4fr; min-height: 520px; }
}
.e-tour__text {
  padding: clamp(48px, 7vw, 80px) var(--e-section-x);
  display: flex; flex-direction: column; justify-content: center;
}
.e-tour__photos {
  display: grid; gap: 4px;
  grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr);
  padding: clamp(20px, 3vw, 40px) var(--e-section-x) clamp(20px, 3vw, 40px) 0;
  min-height: 360px;
}
@media (max-width: 991.98px) {
  .e-tour__photos {
    padding: 0 var(--e-section-x) var(--e-section-x) var(--e-section-x);
    grid-template-rows: 200px 200px;
  }
}
.e-tour__photo { position: relative; overflow: hidden; }
.e-tour__photo:first-child { grid-row: span 2; }
@media (max-width: 991.98px) { .e-tour__photo:first-child { grid-row: span 1; grid-column: span 2; } }
.e-tour__photo img { width: 100%; height: 100%; object-fit: cover; }
.e-tour__caption {
  position: absolute; bottom: 14px; left: 14px;
  color: #FAF6EC;
  font-family: var(--e-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
}


/* ── 22. CONTACT CHANNELS ─────────────────────────────────────────────────── */
.e-channels {
  display: grid; gap: 4px;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) { .e-channels { grid-template-columns: repeat(3, 1fr); } }
.e-channel {
  background: var(--e-paper); color: var(--e-ink);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--e-line);
  position: relative; overflow: hidden;
}
.e-channel--dark { background: var(--e-moss); color: #FAF6EC; border-color: var(--e-moss); }
.e-channel__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 32px; gap: 12px;
}
.e-channel__icon {
  width: 60px; height: 60px; background: var(--e-coral); color: #FFF;
  display: inline-flex; align-items: center; justify-content: center;
}
.e-channel__t {
  font-family: var(--e-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--e-coral); margin-bottom: 12px;
}
.e-channel__v {
  font-size: 17px; font-weight: 500; line-height: 1.55;
  white-space: pre-line; margin-bottom: 28px;
}


/* ── 23. FOOTER ───────────────────────────────────────────────────────────── */
.e-footer {
  background: var(--e-moss-deep); color: #FAF6EC;
  position: relative; overflow: hidden;
}
.e-footer__cols {
  padding: clamp(48px, 8vw, 88px) var(--e-section-x) clamp(24px, 4vw, 40px);
  display: grid; gap: clamp(32px, 4vw, 56px);
  grid-template-columns: 1fr;
  position: relative; z-index: 2;
}
@media (min-width: 576px) { .e-footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .e-footer__cols { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.e-footer__col-title {
  font-family: var(--e-mono); font-size: 10px;
  color: rgba(250,246,236,0.45); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 22px;
}
.e-footer__list { list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px; color: rgba(250,246,236,0.85); }
.e-footer__wordmark {
  font-size: clamp(80px, 22vw, 280px); font-weight: 700;
  letter-spacing: -0.04em; line-height: 0.85;
  color: rgba(216,93,63,0.08);
  white-space: nowrap; overflow: hidden;
  padding: 0 var(--e-section-x); position: relative; z-index: 1;
}
.e-footer__legal {
  padding: 24px var(--e-section-x);
  border-top: 1px solid rgba(250,246,236,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 11px; color: rgba(250,246,236,0.5);
  font-family: var(--e-mono); letter-spacing: 0.05em;
  position: relative; z-index: 2;
}
.e-footer__newsletter {
  display: flex; align-items: center; gap: 0; max-width: 380px;
  border-bottom: 1px solid rgba(250,246,236,0.2); padding: 6px 0;
}
.e-footer__newsletter input {
  flex: 1; background: transparent; border: none; outline: none;
  color: #FAF6EC; font-family: var(--e-font); font-size: 14px; padding: 8px 0;
}


/* ── 24. MAP PLACEHOLDER ──────────────────────────────────────────────────── */
.e-map {
  position: relative; flex: 1; min-height: 360px;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(14,26,20,0.06) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(14,26,20,0.06) 39px 40px),
    var(--e-bg-deep);
}
.e-map__pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  width: 18px; height: 18px; background: var(--e-coral); border-radius: 50%;
  border: 4px solid #FFF; box-shadow: 0 6px 16px rgba(216,93,63,0.4);
}


/* ── 25. PHOTO PLACEHOLDER ────────────────────────────────────────────────── */
.e-photo {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--e-moss) 0%, var(--e-moss-deep) 100%);
}
.e-photo img { width: 100%; height: 100%; object-fit: cover; }
.e-photo--port { background: linear-gradient(135deg, #2D4A3E 0%, #1B3A2F 60%, #D85D3F 140%); }
.e-photo--sea  { background: linear-gradient(135deg, #4A6B7A 0%, #1B3A2F 80%); }
.e-photo--beach{ background: linear-gradient(135deg, #E0C09A 0%, #B08960 60%, #7A5A3E 100%); }
.e-photo--conf { background: linear-gradient(135deg, #2A2520 0%, #1B3A2F 80%); }
.e-photo--medical { background: linear-gradient(135deg, #1B3A2F 0%, #0F2620 80%); }
.e-photo--office { background: linear-gradient(135deg, #3F5C4F 0%, #1B3A2F 80%); }
.e-photo--warm { background: linear-gradient(135deg, #A04025 0%, #5C2818 80%); }
.e-photo__label {
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--e-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,246,236,0.6);
}


/* ── 26. GRAIN OVERLAY ────────────────────────────────────────────────────── */
.e-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.16; mix-blend-mode: overlay;
}


/* ── 27. RESPONSIVE HELPERS ───────────────────────────────────────────────── */
/* Show/hide based on breakpoint — mirrors Bootstrap's d-md-*, etc. */
.e-show-desktop { display: none; }
.e-show-mobile  { display: block; }
@media (min-width: 992px) {
  .e-show-desktop { display: block; }
  .e-show-desktop-flex { display: flex; }
  .e-show-mobile  { display: none !important; }
  .e-nav__burger  { display: none !important; }
}
@media (max-width: 991.98px) {
  .e-nav__menu-items { display: none !important; }      /* hide inline menu links (override Bootstrap d-flex) */
  .e-nav__burger     { display: inline-flex; }
  /* search strip → vertical stack */
  .e-search__row { flex-direction: column; padding: 0; }
  .e-search__field { border-right: none; border-bottom: 1px solid rgba(250,246,236,0.12); padding: 16px 20px; }
  .e-search__cta { padding: 18px; width: 100%; justify-content: center; }

  /* Hero coordinates / volume — hide on mobile to keep things clean */
  .e-hero__coords, .e-hero__volume { display: none; }
  .e-hero__slider-bar { bottom: 20px; font-size: 10px; }
  .e-hero__bar { width: 28px; }
}
@media (max-width: 575.98px) {
  .e-footer__legal { font-size: 10px; }
  .e-summary__total-row, .e-featured__foot { align-items: stretch; }
}


/* ── 28. EVENTS GRID ──────────────────────────────────────────────────────── */
.e-events-grid {
  display: grid; gap: 4px;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) { .e-events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .e-events-grid { grid-template-columns: repeat(4, 1fr); } }


/* ── 29. UTILS ────────────────────────────────────────────────────────────── */
.e-flex-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.e-stack { display: flex; flex-direction: column; }
.e-divider { width: 24px; height: 1px; background: var(--e-coral); display: inline-block; }
.e-rule { border: 0; border-top: 1px solid var(--e-line); margin: 24px 0; }
.e-rule-light { border: 0; border-top: 1px solid rgba(250,246,236,0.12); margin: 24px 0; }



.vegas-overlay {
    opacity: 0.5;
    background: url(/images/site/overlays/02.180e2a38.png) center center repeat !important;
    background-size: 2px !important;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.checkbox label::before {
    position: relative;
    top: 3px !important;
    margin-left: 0px;
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
    position: absolute;
    top: 0px !important;
    margin-left: 6px;
}

.e-form-card label {
    display:inline-block !important;
}