:root {
  --ink: #101823;
  --navy: #07131f;
  --navy-2: #0e2637;
  --red: #a51f2b;
  --red-dark: #76131d;
  --gold: #d7a83f;
  --gold-soft: #f4dc9a;
  --paper: #fffaf0;
  --white: #ffffff;
  --muted: #69737e;
  --line: rgba(16, 24, 35, 0.13);
  --shadow: 0 24px 60px rgba(4, 14, 22, 0.14);
  --radius: 1.25rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  color: var(--white);
  background: var(--red);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(7, 19, 31, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 220, 154, 0.55);
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: Georgia, 'Times New Roman', serif; font-size: 1.05rem; }
.brand-copy small { margin-top: 0.22rem; color: var(--gold-soft); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 0.4rem; }
.main-nav a {
  padding: 0.65rem 0.82rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current='page'] { color: var(--white); background: rgba(255, 255, 255, 0.11); }

.nav-cta { border: 1px solid rgba(215, 168, 63, 0.8); color: var(--gold-soft) !important; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.6rem;
  color: var(--white);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(4, 14, 22, 0.95) 0%, rgba(4, 14, 22, 0.72) 48%, rgba(4, 14, 22, 0.25) 100%), url('/assets/images/mariachi-hero.webp');
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, #16724f 0 33.333%, #fff 33.333% 66.666%, #bd2735 66.666%);
}

.hero-content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 6.6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--gold); }

h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 { max-width: 880px; font-size: clamp(3.1rem, 8vw, 6.8rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }

.hero-lede { max-width: 680px; margin: 1.3rem 0 2rem; color: rgba(255, 255, 255, 0.83); font-size: clamp(1.05rem, 2vw, 1.25rem); }

.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy); background: var(--gold); }
.button-secondary { border-color: rgba(255, 255, 255, 0.45); color: var(--white); background: rgba(255, 255, 255, 0.06); }
.button-dark { color: var(--white); background: var(--navy); }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-white { background: var(--white); }
.section-dark { color: var(--white); background: var(--navy); }
.section-red { color: var(--white); background: var(--red-dark); }

.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 2rem)); margin: 0 auto; }

.section-head { max-width: 760px; margin-bottom: 2.5rem; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.section-dark .section-head p,
.section-red .section-head p { color: rgba(255, 255, 255, 0.75); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}

.media-frame {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.media-frame::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: calc(var(--radius) - 0.45rem);
  pointer-events: none;
}
.media-frame img { width: 100%; min-height: 520px; object-fit: cover; }

.feature-list { display: grid; gap: 1rem; margin-top: 2rem; }
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.feature-number { color: var(--red); font-family: Georgia, 'Times New Roman', serif; font-size: 1.5rem; font-weight: 800; }
.feature p { margin: 0.25rem 0 0; color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card {
  position: relative;
  min-height: 310px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(4, 14, 22, 0.06);
}
.card-kicker { margin: 0 0 1.5rem; color: var(--red); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.card p { color: var(--muted); }
.card-link { position: absolute; left: 2rem; bottom: 2rem; font-weight: 800; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 5px; }

.quote {
  margin: 0;
  padding: clamp(2rem, 6vw, 4.5rem);
  border-left: 5px solid var(--gold);
  background: rgba(255, 255, 255, 0.07);
}
.quote p { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.25; }

.page-hero {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: linear-gradient(135deg, rgba(7, 19, 31, 0.97), rgba(118, 19, 29, 0.86)), url('/assets/images/mariachi-performance.webp') center/cover;
}
.page-hero .container { padding: 7rem 0 4.5rem; }
.page-hero h1 { max-width: 980px; font-size: clamp(2.7rem, 6vw, 5.4rem); }
.page-hero p { max-width: 720px; color: rgba(255, 255, 255, 0.8); font-size: 1.15rem; }

.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 260px; justify-content: space-between; gap: 3rem; align-items: start; }
.article-body { font-size: 1.08rem; }
.article-body > p:first-of-type { font-size: 1.25rem; color: #36424d; }
.article-body h2 { margin-top: 2.7rem; font-size: clamp(2rem, 4vw, 3.15rem); }
.article-body h3 { margin-top: 2rem; }
.article-body a { color: var(--red); font-weight: 700; }

.article-aside { position: sticky; top: 105px; padding: 1.4rem; border-top: 4px solid var(--gold); background: var(--white); box-shadow: 0 12px 35px rgba(4, 14, 22, 0.08); }
.article-aside p { margin-bottom: 0; color: var(--muted); font-size: 0.94rem; }
.article-aside .card-link { position: static; display: inline-block; margin-top: 1rem; }

.service-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-band img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.service-copy { padding: clamp(2rem, 6vw, 4.5rem); color: var(--white); background: var(--red-dark); }
.service-copy ul { padding-left: 1.2rem; }

.post-list { display: grid; gap: 1rem; }
.post-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: inherit;
  background: var(--white);
  text-decoration: none;
}
.post-row:hover { border-color: rgba(165, 31, 43, 0.5); box-shadow: 0 12px 28px rgba(4, 14, 22, 0.06); }
.post-row > span:first-child { color: var(--red); font-weight: 800; }
.post-row h2 { margin: 0; font-size: clamp(1.45rem, 3vw, 2rem); }
.post-arrow { font-size: 1.7rem; color: var(--gold); }

.contact-panel {
  position: relative;
  padding: clamp(2.2rem, 7vw, 5.5rem);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(125deg, var(--red-dark), var(--red) 58%, #c44b42);
  overflow: hidden;
}
.contact-panel::after { content: 'M'; position: absolute; right: -1rem; bottom: -5rem; color: rgba(255,255,255,.07); font-family: Georgia, serif; font-size: 19rem; font-weight: 800; line-height: 1; }
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel p { max-width: 700px; color: rgba(255,255,255,.82); font-size: 1.1rem; }

.site-footer { padding: 4rem 0 2rem; color: rgba(255, 255, 255, 0.75); background: #040c13; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 2.5rem; }
.footer-title { color: var(--white); font-family: Georgia, 'Times New Roman', serif; font-size: 1.55rem; }
.footer-label { margin: 0 0 0.8rem; color: var(--gold-soft); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-nav { display: grid; gap: 0.55rem; }
.footer-nav a { text-decoration: none; }
.footer-nav a:hover { color: var(--white); }
.copyright { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.88rem; }
.copyright a { color: var(--gold-soft); }

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 2rem; color: var(--white); background: radial-gradient(circle at 70% 20%, #293e4c, var(--navy) 55%); text-align: center; }
.error-code { margin: 0; color: var(--gold); font-family: Georgia, serif; font-size: clamp(6rem, 22vw, 14rem); font-weight: 800; line-height: 0.8; }
.error-page h1 { margin: 1.5rem auto 1rem; font-size: clamp(2.2rem, 7vw, 4.5rem); }
.error-page p { max-width: 600px; margin: 0 auto 2rem; color: rgba(255,255,255,.75); }

@media (max-width: 900px) {
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    max-height: 0;
    display: grid;
    padding: 0 1rem;
    background: var(--navy);
    overflow: hidden;
    transition: max-height 220ms ease, padding 220ms ease;
  }
  .main-nav.is-open { max-height: calc(100vh - 76px); padding: 1rem; overflow-y: auto; }
  .main-nav a { padding: 0.9rem 1rem; }
  .split,
  .service-band,
  .article-layout { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .brand-copy small { display: none; }
  .hero { min-height: 650px; }
  .hero::before { background-image: linear-gradient(180deg, rgba(4, 14, 22, 0.32), rgba(4, 14, 22, 0.96) 76%), url('/assets/images/mariachi-hero.webp'); }
  .hero-content { padding: 5rem 0 4.2rem; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.5rem); }
  .post-row { grid-template-columns: 1fr auto; }
  .post-row > span:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .media-frame img { min-height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
