/* ==========================================================================
   Krystal Events - public marketing site
   Shared stylesheet for index.html (Espanol) and en/index.html (English).

   Design language: SHARP, not soft. Royal purple and gold, taken from the
   venue itself - the violet uplighting, the gold sequin drape, the white
   columns and the double staircase.

   Rules this sheet holds to, deliberately:
     - border-radius is 0. Everywhere. No pills, no rounded cards.
     - Depth comes from 1px gold hairlines and corner brackets, not from
       blurry drop shadows.
     - Hover states change colour and line weight. Nothing floats or lifts.
     - Headings are Cinzel, uppercase, widely tracked - Roman inscriptional
       capitals, which is the same visual idea as the columns in the hall.

   No pricing and no booking form appear anywhere, by decision.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Royal purple, darkest to lightest */
  --void:      #0B0410;
  --royal-950: #16082A;
  --royal-900: #23103E;
  --royal-800: #341A57;
  --royal-700: #4A2578;
  --violet:    #7B3FB5;  /* uplight */
  --magenta:   #A93FC4;  /* the pink cast in the corner washes */

  /* Gold */
  --gold-700:  #6F5417;
  --gold-600:  #8A6A1F;  /* small text on ivory - AA */
  --gold:      #C9A227;  /* the primary metal */
  --gold-400:  #E3C567;
  --gold-200:  #F2E3B0;  /* champagne highlight */

  /* Light side */
  --ivory:     #F7F3EA;
  --ivory-2:   #EFE8DA;
  --ink:       #1A1020;
  --ink-soft:  #4A3B55;

  /* Hairlines - the main structural device in this design */
  --line-gold:      rgba(201, 162, 39, 0.38);
  --line-gold-soft: rgba(201, 162, 39, 0.18);
  --line-dark:      rgba(26, 16, 32, 0.18);
  --line-dark-soft: rgba(26, 16, 32, 0.09);

  /* Type */
  --font-display: "Cinzel", "Trajan Pro", Optima, Georgia, "Times New Roman", serif;
  --font-serif:   "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --wrap:        1180px;
  --wrap-narrow: 780px;
  --gutter:      clamp(1.25rem, 5vw, 3rem);
  --section-y:   clamp(4rem, 10vw, 8rem);

  color-scheme: dark;
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; border-radius: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

img, svg, iframe { max-width: 100%; display: block; }
iframe { border: 0; }

a { color: var(--gold-400); text-underline-offset: 0.2em; }
a:hover { color: var(--gold-200); }

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--void);
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-decoration: none;
}
.skip-link:focus { left: 0; color: var(--void); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.16;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.3rem, 7.5vw, 4.6rem);
  letter-spacing: 0.1em;
  font-weight: 700;
}
h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  letter-spacing: 0.13em;
}
h3 {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  letter-spacing: 0.11em;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

/* Cormorant italic is the "voice" of the brand - used for taglines and
   pull statements, never for long body copy. */
.serif-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  line-height: 1.4;
  color: var(--gold-200);
  letter-spacing: 0.01em;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.75;
  color: rgba(247, 243, 234, 0.78);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
}

/* --------------------------------------------------------------------------
   4. Ornaments - the sharp vocabulary
   -------------------------------------------------------------------------- */

/* Engraved double rule with a centred lozenge. */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 1.5rem 0;
  color: var(--gold);
}
.rule::before,
.rule::after {
  content: "";
  height: 3px;
  flex: 1;
  max-width: 130px;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.rule i {
  font-style: normal;
  font-size: 0.5rem;
  transform: rotate(45deg);
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  background: var(--gold);
}
.rule.is-left { justify-content: flex-start; }
.rule.is-left::before { display: none; }
.rule.is-left::after { max-width: 90px; }

/* Corner brackets - top-left and bottom-right. The single most useful
   "expensive invitation" device, and it costs two pseudo-elements. */
.bracket { position: relative; }
.bracket::before,
.bracket::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  pointer-events: none;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}
.bracket::before { top: -1px;    left: -1px;  border-right: 0; border-bottom: 0; }
.bracket::after  { bottom: -1px; right: -1px; border-left: 0;  border-top: 0; }
.bracket:hover::before,
.bracket:hover::after { width: 30px; height: 30px; border-color: var(--gold-400); }

/* Fluted column texture - vertical hairlines, like the columns in the hall. */
.flutes {
  background-image: repeating-linear-gradient(
    90deg,
    var(--line-gold-soft) 0 1px,
    transparent 1px 15px
  );
}

/* --------------------------------------------------------------------------
   5. Layout
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); position: relative; }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head.is-centered { text-align: center; max-width: 66ch; margin-inline: auto; }
.section-head .lede { margin-top: 1.25rem; }

/* --- Dark band (default) --- */
.band-dark {
  background: var(--royal-950);
  border-top: 1px solid var(--line-gold-soft);
  border-bottom: 1px solid var(--line-gold-soft);
}

/* --- Light band --- */
.band-light {
  background: var(--ivory);
  color: var(--ink);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.band-light h2, .band-light h3 { color: var(--royal-900); }
.band-light .eyebrow    { color: var(--gold-600); }
.band-light .lede       { color: var(--ink-soft); }
.band-light .serif-lead { color: var(--royal-800); }
.band-light a           { color: var(--royal-800); }
.band-light a:hover     { color: var(--gold-600); }
.band-light .rule::before,
.band-light .rule::after { border-color: rgba(201, 162, 39, 0.55); }

/* --------------------------------------------------------------------------
   6. Buttons - rectangular, tracked, metal
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 54px;
  padding: 0.9rem 2rem;
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease,
              border-color 0.22s ease, box-shadow 0.22s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-400), var(--gold));
  border-color: var(--gold-400);
  color: var(--void);
}
.btn-primary:hover {
  background: var(--gold-200);
  border-color: var(--gold-200);
  color: var(--void);
  box-shadow: 0 0 0 1px var(--gold-200);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-400);
}
.btn-ghost:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-200);
  border-color: var(--gold-200);
}
.band-light .btn-ghost { color: var(--royal-800); border-color: var(--royal-800); }
.band-light .btn-ghost:hover {
  background: var(--royal-800);
  color: var(--ivory);
  border-color: var(--royal-800);
}

.btn-lg { min-height: 60px; font-size: 0.85rem; padding-inline: 2.4rem; }
.btn-sm { min-height: 42px; font-size: 0.7rem; padding: 0.5rem 1.1rem; letter-spacing: 0.16em; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.25rem; }
.is-centered .btn-row, .cta-band .btn-row { justify-content: center; }

.btn .ico { width: 1.1em; height: 1.1em; flex: none; }

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 4, 16, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-gold);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 70px;
  padding-block: 0.65rem;
}

.brand { text-decoration: none; margin-right: auto; display: block; }
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-200);
  line-height: 1.1;
}
.brand-sub {
  display: none;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.45);
  margin-top: 0.3rem;
}

.site-nav { display: none; gap: 1.9rem; }
.site-nav a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.72);
  text-decoration: none;
  padding-block: 0.5rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-nav a:hover { color: var(--gold-200); border-bottom-color: var(--gold); }

.lang-switch {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  flex: none;
}
.lang-switch a,
.lang-switch span {
  padding: 0 0.7rem;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(247, 243, 234, 0.6);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lang-switch a:hover { background: rgba(201, 162, 39, 0.14); color: var(--gold-200); }
.lang-switch [aria-current="true"] { background: var(--gold); color: var(--void); }

.header-call { display: none; }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background-color: var(--void);
  background-image:
    radial-gradient(70% 55% at 50% 0%,   rgba(169, 63, 196, 0.30), transparent 70%),
    radial-gradient(60% 50% at 8% 100%,  rgba(123, 63, 181, 0.30), transparent 72%),
    radial-gradient(55% 50% at 95% 85%,  rgba(169, 63, 196, 0.20), transparent 70%),
    linear-gradient(180deg, var(--royal-950), var(--void));
  overflow: hidden;
  border-bottom: 1px solid var(--line-gold);
}

/* Column flutes running the full height, behind everything. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(201, 162, 39, 0.10) 0 1px,
    transparent 1px 34px
  );
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 25%, #000 70%, transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 13vw, 7.5rem);
}

/* With no photograph to balance it, the hero reads best as a single
   symmetrical engraved plate - which is the more formal composition anyway. */
.hero-copy {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(2.25rem, 6vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line-gold);
  background: rgba(11, 4, 16, 0.32);
}

.hero-eyebrow {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}

.hero h1 {
  color: var(--gold-200);
  margin: 0;
  text-shadow: 0 0 40px rgba(201, 162, 39, 0.2);
}

.hero-tagline { margin: 0 0 0.4rem; }

.hero-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.55);
  margin: 0;
}

.hero-phone {
  display: inline-block;
  margin-top: 2.25rem;
  padding: 1.1rem 2rem;
  border: 1px solid var(--line-gold);
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease;
}
.hero-phone:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.07); }
.hero-phone small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.55);
  margin-bottom: 0.55rem;
}
.hero-phone b {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--gold-200);
  display: block;
}

/* --------------------------------------------------------------------------
   9. Stats strip
   -------------------------------------------------------------------------- */
.stats {
  background: var(--void);
  border-bottom: 1px solid var(--line-gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stat {
  padding: 1.75rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line-gold-soft);
  border-bottom: 1px solid var(--line-gold-soft);
}
.stat:nth-child(2n) { border-right: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-200);
  line-height: 1.1;
}
.stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.5);
}

/* --------------------------------------------------------------------------
   10. About
   -------------------------------------------------------------------------- */
.about-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }

.about-aside {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid rgba(201, 162, 39, 0.5);
  background: var(--ivory-2);
}
.about-aside h3 { margin-bottom: 0.7em; }
.about-aside p  { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   11. Included - gold lozenge list
   -------------------------------------------------------------------------- */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark-soft);
}
.check-list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.15rem 0.25rem;
  border-bottom: 1px solid var(--line-dark-soft);
}
.check-list .mark {
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  transform: rotate(45deg);
  background: var(--gold);
  border: 1px solid var(--gold-600);
}
.check-list b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal-900);
  display: block;
  margin-bottom: 0.2rem;
}
.check-list .note { display: block; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.6; }

/* --------------------------------------------------------------------------
   12. Venue cards
   -------------------------------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

.card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--line-gold-soft);
  background: rgba(35, 16, 62, 0.4);
  transition: border-color 0.22s ease, background-color 0.22s ease;
}
.card:hover { border-color: var(--line-gold); background: rgba(52, 26, 87, 0.45); }
.card h3 { color: var(--gold-200); }
.card p  { color: rgba(247, 243, 234, 0.72); font-size: 0.98rem; margin-bottom: 0; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line-gold);
  color: var(--gold);
}
.card-icon svg { width: 22px; height: 22px; }

/* The second-floor changing room - the differentiator, so it gets the
   full row, the brackets, and the only gold-washed background. */
.card-feature {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(74, 37, 120, 0.55), rgba(22, 8, 42, 0.8)),
    var(--royal-900);
  border-color: var(--line-gold);
  padding: clamp(2rem, 5vw, 3rem);
}
.card-feature:hover { border-color: var(--gold); }
.card-feature .tag {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.card-feature h3 { font-size: clamp(1.15rem, 2.6vw, 1.5rem); }
.card-feature p  { max-width: 62ch; }

/* --------------------------------------------------------------------------
   13. Events
   -------------------------------------------------------------------------- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark-soft);
  border-left: 1px solid var(--line-dark-soft);
}
.event {
  padding: 1.9rem 0.85rem;
  text-align: center;
  border-right: 1px solid var(--line-dark-soft);
  border-bottom: 1px solid var(--line-dark-soft);
  transition: background-color 0.22s ease;
}
.event:hover { background: var(--ivory-2); }
.event .glyph {
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto 1rem;
  transform: rotate(45deg);
  background: var(--gold);
  border: 1px solid var(--gold-600);
}
.event .name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--royal-900);
}

/* --------------------------------------------------------------------------
   14. Gallery
   -------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

.shot {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  background: var(--royal-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 1.25rem;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot.has-photo { padding: 0; border-color: var(--line-gold); }
.shot .ph-icon { width: 26px; height: 26px; color: var(--gold); opacity: 0.55; }
.shot .ph-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.5);
  max-width: 22ch;
  line-height: 1.6;
}

.gallery-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(247, 243, 234, 0.6);
}

/* --------------------------------------------------------------------------
   15. Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: start; }

.contact-list {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  border-top: 1px solid var(--line-dark-soft);
}
.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem 0.25rem;
  border-bottom: 1px solid var(--line-dark-soft);
}
.contact-item .card-icon {
  margin-bottom: 0;
  width: 40px;
  height: 40px;
  border-color: rgba(201, 162, 39, 0.55);
  color: var(--gold-600);
}
.contact-item .card-icon svg { width: 18px; height: 18px; }
.contact-item .label {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.4rem;
}
.contact-item .value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.5;
  display: inline-block;
}
.band-light a.value { color: var(--ink); }
.band-light a.value:hover { color: var(--gold-600); }
.contact-item .value.is-phone {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--royal-900);
}

.map-frame {
  padding: 10px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: var(--ivory-2);
}
.map-frame iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 1px solid var(--line-dark-soft);
}

/* --------------------------------------------------------------------------
   16. Closing CTA
   -------------------------------------------------------------------------- */
.cta-band {
  text-align: center;
  background-color: var(--royal-900);
  background-image:
    radial-gradient(70% 90% at 50% 0%, rgba(169, 63, 196, 0.28), transparent 70%),
    linear-gradient(180deg, var(--royal-900), var(--void));
  border-top: 1px solid var(--line-gold);
}
.cta-band .wrap { max-width: var(--wrap-narrow); }
.cta-phone {
  display: inline-block;
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-200);
  text-decoration: none;
}
.cta-phone:hover { color: var(--ivory); }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--void);
  color: rgba(247, 243, 234, 0.6);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.92rem;
  border-top: 1px solid var(--line-gold-soft);
}
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line-gold-soft);
}
.site-footer a { color: rgba(247, 243, 234, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--gold-200); }
.footer-brand .brand-name { font-size: 1.3rem; margin-bottom: 1rem; }
.footer-brand p { max-width: 36ch; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer-bottom {
  border-top: 1px solid var(--line-gold-soft);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.42);
}

/* --------------------------------------------------------------------------
   18. Sticky mobile call bar
   -------------------------------------------------------------------------- */
.call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  padding: 0.65rem var(--gutter);
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(11, 4, 16, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--gold);
}
.call-bar .btn { width: 100%; }
body { padding-bottom: 5.9rem; }

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 560px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat:nth-child(2n) { border-right: 1px solid var(--line-gold-soft); }
  .stat:last-child    { border-right: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .event-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .brand-sub    { display: block; }
  .site-nav     { display: flex; }
  .header-call  { display: inline-flex; }
  .card-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-grid   { grid-template-columns: 1.3fr 0.7fr; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
  .footer-grid  { grid-template-columns: 1.5fr 1fr 1fr; }
  .gallery      { grid-template-columns: repeat(3, 1fr); }
  .event-grid   { grid-template-columns: repeat(6, 1fr); }
  .call-bar     { display: none; }
  body          { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   20. Motion and print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bracket:hover::before,
  .bracket:hover::after { width: 20px; height: 20px; }
}

@media print {
  .site-header, .call-bar, .map-frame, .btn-row, .skip-link { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .hero, .stats, .band-dark, .band-light, .cta-band, .card,
  .card-feature, .site-footer, .shot {
    background: #fff !important;
    color: #000 !important;
    border-color: #999 !important;
  }
  .hero::before, .hero-frame { background: none !important; }
  h1, h2, h3, .stat-num, .stat-label, .brand-name, .serif-lead,
  .cta-phone, .hero-phone b, .site-footer a, .card p, .lede { color: #000 !important; }
  .section { padding-block: 1.2rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
