/* =========================================================
   Mariachi Nuevo Capistrano
   Paper + ink editorial design. Dark hero, warm bone body,
   guinda red and antique gold accents, serape stripe motif.
   ========================================================= */

:root {
  /* surfaces */
  --paper: #FBF8F3;
  --paper-2: #F3ECE1;
  --ink: #17130F;
  --ink-2: #221C16;

  /* text */
  --text: #1B1611;
  --text-soft: #5A5047;
  --text-on-ink: #F6EFE4;
  --text-on-ink-soft: #C6B7A3;

  /* accents */
  --wine: #8C1D2C;
  --wine-deep: #6B121F;
  --gold: #A9822C;
  --gold-light: #D9B25C;
  --green: #14513C;

  --line: rgba(27, 22, 17, 0.14);
  --line-ink: rgba(246, 239, 228, 0.16);

  --container: 1180px;
  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(23, 19, 15, 0.06);
  --shadow-md: 0 18px 40px -22px rgba(23, 19, 15, 0.45);

  --font-display: "Bodoni Moda", "Didot", Georgia, "Times New Roman", serif;
  --font-body: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section-pad { padding: clamp(64px, 8vw, 116px) 0; }
.section-pad-sm { padding: clamp(52px, 6vw, 84px) 0; }

.band { background: var(--paper); }
.band-alt { background: var(--paper-2); }
.band-ink { background: var(--ink); color: var(--text-on-ink); }

/* ---------- type ---------- */

h1, h2, h3 { margin: 0; font-weight: 600; }
h1, h2 { font-family: var(--font-display); line-height: 1.04; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.7rem); }
h2 { font-size: clamp(2rem, 3.9vw, 3.2rem); }
h3 { font-family: var(--font-body); font-size: 1.12rem; font-weight: 600; letter-spacing: -0.005em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--wine);
}
.band-ink .eyebrow, .hero .eyebrow { color: var(--gold-light); }

.lede, .section-sub {
  color: var(--text-soft);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
}
.band-ink .section-sub { color: var(--text-on-ink-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 58px); }
.section-head h2 + .section-sub { margin-top: 20px; }

.text-link {
  color: var(--wine);
  font-weight: 600;
  border-bottom: 1px solid rgba(140, 29, 44, 0.35);
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.text-link:hover { border-color: var(--wine); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -80px; left: 16px; z-index: 999;
  background: var(--gold-light); color: var(--ink);
  padding: 10px 16px; border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { top: 14px; }

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

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 14px 26px;
  border: 1px solid transparent; border-radius: 2px;
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn-primary { background: var(--wine); color: #FFF6EC; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--wine-deep); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line-ink); color: var(--text-on-ink); }
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ---------- serape stripe motif ---------- */

.serape {
  height: 7px;
  background: repeating-linear-gradient(
    90deg,
    var(--wine)        0px,  var(--wine)        26px,
    var(--gold-light) 26px,  var(--gold-light)  38px,
    var(--paper)      38px,  var(--paper)       46px,
    var(--green)      46px,  var(--green)       66px,
    var(--gold)       66px,  var(--gold)        74px,
    var(--ink)        74px,  var(--ink)         92px
  );
}

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line-ink); background: rgba(23, 19, 15, 0.97); backdrop-filter: blur(12px); }

.header-inner {
  min-height: 78px;
  display: flex; align-items: center; gap: 28px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 168px; height: auto; }

.site-nav {
  margin-left: auto;
  display: flex; align-items: center; gap: 30px;
  font-size: 0.94rem; font-weight: 500;
  color: var(--text-on-ink-soft);
}
.site-nav a { position: relative; padding: 6px 0; transition: color 0.2s ease; }
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold-light);
  transition: right 0.25s ease;
}
.site-nav a:hover { color: var(--text-on-ink); }
.site-nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  padding: 10px 18px; border: 1px solid var(--gold-light);
  color: var(--gold-light); border-radius: 2px;
}
.nav-cta:hover { background: var(--gold-light); color: var(--ink); }

.header-phone {
  display: none;
  color: var(--gold-light); font-weight: 600; white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px; height: 46px; margin-left: auto;
  border: 1px solid var(--line-ink); border-radius: 2px;
  background: transparent; cursor: pointer;
}
.nav-toggle span[aria-hidden] {
  display: block; width: 19px; height: 1.5px; margin: 4px auto;
  background: var(--text-on-ink); transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span[aria-hidden]:nth-child(2) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span[aria-hidden]:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span[aria-hidden]:nth-child(4) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 104px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -40% 40% 30% -30%;
  background: radial-gradient(circle at 30% 40%, rgba(140, 29, 44, 0.42), transparent 62%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.85fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.hero h1 { max-width: 15ch; }
.hero .lede { color: var(--text-on-ink-soft); max-width: 52ch; margin: 24px 0 34px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.trust-row {
  list-style: none; margin: 38px 0 0; padding: 26px 0 0;
  border-top: 1px solid var(--line-ink);
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  font-size: 0.86rem; letter-spacing: 0.02em;
  color: var(--text-on-ink-soft);
}
.trust-row li { position: relative; padding-left: 16px; }
.trust-row li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px; background: var(--gold-light);
  transform: rotate(45deg);
}

.hero-media { position: relative; }
.hero-figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(217, 178, 92, 0.34);
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
}
.hero-figure img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
}
.hero-tag {
  position: absolute; left: -18px; bottom: -26px;
  width: min(300px, 88%);
  padding: 20px 22px;
  background: var(--paper); color: var(--text);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--wine);
}
.hero-tag .tag-label {
  display: block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--wine);
}
.hero-tag strong { display: block; font-family: var(--font-display); font-size: 1.7rem; line-height: 1.1; margin: 4px 0 8px; }
.hero-tag p { font-size: 0.82rem; color: var(--text-soft); line-height: 1.5; }

/* ---------- events list ---------- */

.event-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(28px, 4vw, 64px);
  border-top: 1px solid var(--line);
}
.event {
  display: flex; gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.event .num {
  font-family: var(--font-display);
  font-size: 0.95rem; color: var(--gold);
  padding-top: 2px; min-width: 26px;
}
.event h3 { margin-bottom: 8px; font-size: 1.22rem; }
.event p { color: var(--text-soft); font-size: 0.98rem; }

/* ---------- media / watch ---------- */

.media-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.media-card { margin: 0; }
.media-frame {
  position: relative; display: block; width: 100%; padding: 0;
  aspect-ratio: 9 / 16; overflow: hidden;
  border: 1px solid var(--line); background: var(--ink);
  cursor: pointer;
}
.media-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.media-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,15,0) 45%, rgba(23,19,15,0.72) 100%);
}
.media-frame:hover img { transform: scale(1.045); }
.media-badge {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px;
  background: var(--paper); color: var(--ink);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.media-badge::before {
  content: ""; width: 0; height: 0;
  border-left: 7px solid var(--wine);
  border-top: 4.5px solid transparent; border-bottom: 4.5px solid transparent;
}
.media-card figcaption { padding: 16px 2px 0; }
.media-card h3 { font-size: 1rem; margin-bottom: 5px; }
.media-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.5; }
.media-note {
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--text-soft); font-size: 0.92rem;
}

/* ---------- steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.step { padding-top: 24px; border-top: 2px solid var(--ink); }
.step-num {
  display: block; font-family: var(--font-display);
  font-size: 2.4rem; line-height: 1; color: var(--wine); margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; font-size: 1.14rem; }
.step p { color: var(--text-soft); font-size: 0.98rem; }

/* ---------- about ---------- */

.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.about-copy h2 { margin-bottom: 22px; }
.about-copy p { color: var(--text-soft); font-size: 1.05rem; }
.about-copy .text-link { display: inline-block; margin-top: 10px; }

.about-panel {
  padding: 34px;
  background: var(--ink); color: var(--text-on-ink);
  border-top: 4px solid var(--gold);
}
.about-panel h3 { color: var(--gold-light); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.check-list { list-style: none; margin: 22px 0 24px; padding: 0; }
.check-list li {
  position: relative; padding-left: 26px; margin-bottom: 13px;
  color: var(--text-on-ink); font-size: 1rem;
}
.check-list li::before {
  content: "✦"; position: absolute; left: 0; top: -1px;
  color: var(--gold-light); font-size: 0.85rem;
}
.panel-note {
  padding-top: 20px; border-top: 1px solid var(--line-ink);
  color: var(--text-on-ink-soft); font-size: 0.9rem;
}

/* ---------- reviews ---------- */

.reviews-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 28px;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.reviews-head h2 { color: var(--text-on-ink); max-width: 16ch; }

.rating-badge {
  display: grid; grid-template-columns: auto auto; align-items: center;
  gap: 2px 14px;
  padding: 16px 22px;
  border: 1px solid var(--line-ink);
  transition: border-color 0.2s ease;
}
.rating-badge:hover { border-color: var(--gold-light); }
.rating-score {
  grid-row: span 2;
  font-family: var(--font-display); font-size: 3rem; line-height: 1;
  color: var(--text-on-ink);
}
.rating-stars { color: var(--gold-light); letter-spacing: 0.14em; font-size: 0.95rem; }
.rating-count {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-on-ink-soft);
}

.review-grid { columns: 3; column-gap: clamp(20px, 2.6vw, 34px); }
.review {
  break-inside: avoid;
  margin: 0 0 clamp(20px, 2.6vw, 34px);
  padding-top: 22px;
  border-top: 1px solid var(--line-ink);
}
.stars { display: block; color: var(--gold-light); letter-spacing: 0.16em; font-size: 0.86rem; margin-bottom: 14px; }
.review blockquote {
  margin: 0 0 16px;
  color: var(--text-on-ink);
  font-size: 0.99rem; line-height: 1.62;
}
.review blockquote::before { content: "“"; }
.review blockquote::after { content: "”"; }
.review figcaption { display: grid; gap: 2px; }
.review figcaption strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.06rem; color: var(--text-on-ink);
}
.review figcaption span {
  font-size: 0.76rem; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--text-on-ink-soft);
}

.reviews-note {
  margin-top: 8px; padding-top: 24px;
  border-top: 1px solid var(--line-ink);
  font-size: 0.92rem; color: var(--text-on-ink-soft);
}
.reviews-note a { color: var(--gold-light); font-weight: 600; }
.reviews-note a:hover { text-decoration: underline; }
.reviews-note span { margin: 0 10px; }

.trust-row a { border-bottom: 1px solid rgba(217, 178, 92, 0.4); }
.trust-row a:hover { color: var(--gold-light); }

/* ---------- faq ---------- */

.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq-head { position: sticky; top: 110px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none; cursor: pointer;
  padding: 22px 44px 22px 0; position: relative;
  font-weight: 600; font-size: 1.06rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--wine); line-height: 1;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list summary:hover { color: var(--wine); }
.faq-list details p {
  padding: 0 40px 24px 0; margin: 0;
  color: var(--text-soft); font-size: 1rem;
}

/* ---------- booking ---------- */

.booking-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 68px); align-items: start; }
.booking-aside h2 { margin-bottom: 20px; }

.contact-lines { margin: 30px 0; display: grid; gap: 2px; }
.contact-line {
  display: block; padding: 16px 18px;
  background: var(--paper); border-left: 3px solid var(--wine);
  transition: transform 0.18s ease;
}
.contact-line:hover { transform: translateX(3px); }
.contact-label {
  display: block; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 3px;
}
.contact-line strong { font-size: 1.06rem; font-weight: 600; overflow-wrap: anywhere; }

.areas { padding-top: 26px; border-top: 1px solid var(--line); }
.areas h3 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 12px; }
.areas p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.85; }

.booking-form {
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 18px; }
.form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block; margin-bottom: 7px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--text-soft);
}
input, select, textarea {
  width: 100%; padding: 13px 14px;
  background: #fff;
  border: 1px solid var(--line); border-radius: 2px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
input:hover, select:hover, textarea:hover { border-color: rgba(27, 22, 17, 0.28); }
input:focus, select:focus, textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(140, 29, 44, 0.12);
}
textarea { resize: vertical; min-height: 128px; }
input[aria-invalid="true"], select[aria-invalid="true"] {
  border-color: var(--wine);
  background: rgba(140, 29, 44, 0.04);
}

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-submit { width: 100%; margin-top: 6px; }
.form-submit[disabled] { opacity: 0.62; cursor: progress; }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--text-soft); }
.form-note.is-success { color: var(--green); font-weight: 600; }
.form-note.is-error { color: var(--wine); font-weight: 600; }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: var(--text-on-ink-soft); padding: clamp(48px, 6vw, 74px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr; gap: 34px; }
.footer-logo { width: 190px; height: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.94rem; max-width: 34ch; }
.site-footer h3 {
  margin-bottom: 16px; color: var(--gold-light);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.site-footer a { display: block; margin-bottom: 10px; font-size: 0.95rem; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--gold-light); }
.copyright {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid var(--line-ink);
  display: flex; flex-wrap: wrap; gap: 10px 30px; justify-content: space-between;
  font-size: 0.8rem; color: rgba(198, 183, 163, 0.75);
}

/* ---------- mobile call bar ---------- */

.callbar { display: none; }

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 28px;
  background: rgba(12, 10, 8, 0.92);
  backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }
.lightbox img,
.lightbox video {
  max-width: min(460px, 100%); max-height: 100%;
  object-fit: contain;
  background: #000;
  border: 1px solid rgba(217, 178, 92, 0.3);
}
.lightbox video { width: min(460px, 100%); }
.lightbox [hidden] { display: none; }
.lightbox-close {
  position: absolute; top: 18px; right: 20px;
  width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--line-ink);
  color: var(--text-on-ink); font-size: 1.1rem; cursor: pointer;
}
.lightbox-close:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ---------- reveal ---------- */

.reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
  .media-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-social { grid-column: span 3; }
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .faq-grid, .booking-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; }
  .hero-tag { left: auto; right: -10px; bottom: -22px; }
  .event-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .review-grid { columns: 2; }
  .faq-head { position: static; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 72px; }
  .header-inner { min-height: 66px; gap: 14px; }
  .brand img { width: 132px; }
  .header-phone { display: inline-block; margin-left: auto; font-size: 0.92rem; }
  .nav-toggle { display: block; margin-left: 0; }

  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    margin: 0; display: grid; gap: 0;
    background: var(--ink-2);
    border-top: 1px solid var(--line-ink);
    border-bottom: 1px solid var(--line-ink);
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-nav.is-open { max-height: 420px; }
  .site-nav a { padding: 16px 20px; border-bottom: 1px solid var(--line-ink); }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { border: 0; color: var(--gold-light); }
  .nav-cta:hover { background: transparent; color: var(--gold-light); }

  .rating-badge { padding: 14px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(100% - 32px, var(--container)); }
  .hero { padding-bottom: 74px; }
  .hero-media { max-width: none; }
  .hero-tag { position: static; width: 100%; margin-top: 18px; }
  .hero-actions .btn { width: 100%; }
  .trust-row { gap: 10px 20px; font-size: 0.82rem; }
  .media-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .review-grid { columns: 1; }
  .reviews-head { align-items: flex-start; }
  .form-row.split { grid-template-columns: 1fr; gap: 0; }
  .form-row.split > div { margin-bottom: 18px; }
  .form-row.split > div:last-child { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .copyright { flex-direction: column; }

  /* sticky call bar on phones */
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: grid; grid-template-columns: 1fr 1fr 1.25fr;
    background: var(--ink);
    border-top: 1px solid var(--line-ink);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .callbar-btn {
    padding: 15px 8px; text-align: center;
    font-size: 0.92rem; font-weight: 600; letter-spacing: 0.03em;
    color: var(--text-on-ink);
    border-right: 1px solid var(--line-ink);
  }
  .callbar-book { background: var(--wine); color: #FFF6EC; border-right: 0; }
  body { padding-bottom: 56px; }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .callbar, .lightbox, .media-frame { display: none !important; }
  body { background: #fff; color: #000; }
}
