:root {
  --white: #fffdf8;
  --paper: #f8f5ed;
  --ink: #17140f;
  --muted: #6c655b;
  --line: #e7dfd0;
  --pearl: #eef2f5;
  --pearl-low: #aeb7c1;
  --pearl-high: #ffffff;
  --pearl-blue: #527591;
  --pearl-ink: #111417;
  --gold: #b89952;
  --whatsapp-soft: #dff3e6;
  --whatsapp-ink: #1f6b42;
  --call-soft: #e2edf7;
  --call-ink: #2f668f;
  --charcoal: #211d18;
  --radius: 8px;
  --shadow: 0 28px 70px rgba(70, 49, 21, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
}

body.is-video-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

.site-footer a {
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--gold);
}

/* ─── BUTTONS ─── */

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0;
  min-height: 48px;
  padding: 0 26px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  white-space: nowrap;
}

.btn-icon {
  display: block;
  fill: currentColor;
  height: 22px;
  width: 22px;
  flex-shrink: 0;
}

.btn-icon--whatsapp {
  height: 20px;
  width: 20px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-pearl {
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,0.98) 0 12%, transparent 13%),
    radial-gradient(circle at 76% 78%, rgba(39,68,92,0.28), transparent 34%),
    linear-gradient(135deg, var(--pearl-high) 0%, var(--pearl) 42%, var(--pearl-low) 72%, var(--pearl-blue) 100%);
  border: 1px solid rgba(17, 20, 23, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -10px 22px rgba(39,68,92,0.2),
    0 16px 35px rgba(17,20,23,0.2);
  color: var(--pearl-ink);
  overflow: hidden;
}

.btn-pearl::before {
  background: linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,0.88) 44%, transparent 55%);
  content: "";
  inset: -35% -80%;
  position: absolute;
  transform: translateX(-45%) rotate(4deg);
  transition: transform 620ms ease;
}

.btn-pearl:hover::before,
.btn-pearl.is-scroll-shining::before {
  transform: translateX(45%) rotate(4deg);
}

.btn-secondary {
  -webkit-backdrop-filter: blur(10px) saturate(125%);
  backdrop-filter: blur(10px) saturate(125%);
  background: rgba(255,255,255,0.025);
  border: 2px solid var(--pearl-blue);
  box-shadow: 0 10px 22px rgba(33,29,24,0.025);
  color: var(--pearl-blue);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.045);
  border-color: rgba(184,153,82,0.72);
  box-shadow: 0 12px 26px rgba(70,49,21,0.055);
  color: var(--gold);
}

.btn-cta-secondary {
  background: rgba(255,253,248,0.1);
  border: 2px solid rgba(255,253,248,0.4);
  color: rgba(255,253,248,0.9);
}

.btn-cta-secondary:hover {
  background: rgba(255,253,248,0.16);
  border-color: rgba(255,253,248,0.7);
  color: #fff;
}

/* ─── HERO ─── */

.hero {
  align-items: end;
  background:
    radial-gradient(ellipse at 18% 54%, rgba(255,253,248,0.32) 0%, rgba(255,253,248,0.18) 30%, rgba(255,253,248,0) 52%),
    linear-gradient(90deg, rgba(255,253,248,0.98) 0%, rgba(255,253,248,0.86) 34%, rgba(255,253,248,0.38) 50%, rgba(255,253,248,0.08) 66%, rgba(255,253,248,0) 82%),
    linear-gradient(90deg, rgba(23,20,15,0) 0%, rgba(23,20,15,0) 56%, rgba(23,20,15,0.26) 100%),
    linear-gradient(0deg, rgba(23,20,15,0.36), rgba(23,20,15,0.08)),
    url("../assets/mariachi.webp") center / cover no-repeat;
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: minmax(0, 1fr);
  min-height: 100vh;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 4vw, 52px) clamp(22px, 4vw, 52px);
  position: relative;
  z-index: 0;
}

.hero-media,
.hero > img,
.hero picture {
  display: none !important;
}

.hero::before {
  background: repeating-linear-gradient(
    90deg,
    transparent 0 56px,
    rgba(184, 153, 82, 0.08) 56px 57px
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero-copy {
  align-self: center;
  grid-column: 1;
  max-width: 700px;
}

/* Hero entrance animation */
.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.6s ease forwards;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.18s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.30s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.42s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.52s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero badge */
.hero-badge {
  align-items: center;
  background: rgba(255,253,248,0.9);
  border: 1px solid rgba(184,153,82,0.38);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px 6px 10px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-badge-stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Urgency nudge */
.hero-urgency {
  align-items: center;
  color: #5a5248;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  margin: 18px 0 0;
  text-shadow: 0 1px 8px rgba(255,253,248,0.44);
}

.urgency-dot {
  background: #e5534b;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  height: 8px;
  width: 8px;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,83,75,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(229,83,75,0); }
}

/* ─── TYPOGRAPHY ─── */

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

h1 {
  font-size: clamp(46px, 6.3vw, 72px);
  max-width: 720px;
  text-shadow: 0 1px 14px rgba(255,253,248,0.34);
}

.hero-title-accent {
  color: var(--pearl-blue);
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255,253,248,0.78), 0 10px 28px rgba(39,68,92,0.28);
}

.text-gold {
  color: var(--gold);
}

h2 {
  font-size: clamp(38px, 5.3vw, 78px);
  max-width: 980px;
}

h3 {
  font-size: clamp(28px, 3vw, 38px);
}

.lead {
  color: #4f493f;
  font-size: clamp(18px, 2vw, 23px);
  margin: 28px 0 34px;
  max-width: 600px;
  text-shadow: 0 1px 10px rgba(255,253,248,0.46);
}

@media (min-width: 921px) {
  #hero-title { max-width: 500px; }
  .hero .lead { max-width: 500px; }
}

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

.hero-actions .btn-pearl {
  font-size: 14px;
  min-height: 58px;
  padding-inline: 34px;
}

.microcopy,
.caption {
  color: var(--muted);
  font-size: 14px;
}

.microcopy {
  color: #5a5248;
  margin: 18px 0 0;
  text-shadow: 0 1px 8px rgba(255,253,248,0.44);
}

/* ─── TRUST BAND ─── */

.trust-band {
  background: var(--charcoal);
  color: #f2eadc;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-band div {
  background: rgba(255,255,255,0.035);
  display: grid;
  gap: 2px;
  min-height: 132px;
  place-content: center;
  text-align: center;
}

.trust-band strong {
  color: var(--pearl);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.trust-band span {
  color: rgba(242,234,220,0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* ─── SECTIONS ─── */

.section {
  padding: clamp(40px, 5vw, 72px) clamp(18px, 4vw, 52px);
}

.services {
  padding-bottom: 0;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin: 0 auto 46px;
  max-width: 1040px;
  text-align: center;
}

.section-description {
  color: var(--muted);
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.45;
  margin: 20px auto 0;
  max-width: 760px;
}

/* ─── SCROLL REVEAL ─── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SERVICE CARDS ─── */

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 1240px;
  padding-top: 64px;
}

.service-card {
  background:
    repeating-linear-gradient(135deg, rgba(184,153,82,0.06) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, rgba(255,253,248,0.98), rgba(255,255,255,1));
  border: 1px solid rgba(184, 153, 82, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(70, 49, 21, 0.07);
  display: grid;
  grid-template-rows: auto 1fr;
  isolation: isolate;
  min-height: 300px;
  overflow: visible;
  padding: clamp(128px, 12.5vw, 150px) clamp(24px, 3.4vw, 38px) clamp(24px, 3.4vw, 38px);
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  background:
    linear-gradient(90deg, var(--gold), transparent),
    linear-gradient(90deg, var(--pearl-blue), transparent);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.service-card::after {
  background: radial-gradient(circle, rgba(184,153,82,0.22), transparent 68%);
  content: "";
  height: 150px;
  left: 50%;
  opacity: 0.7;
  position: absolute;
  top: -50px;
  transform: translateX(-50%);
  width: 210px;
  z-index: 0;
}

.service-visual {
  align-items: center;
  display: flex;
  height: clamp(150px, 16vw, 190px);
  justify-content: center;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: clamp(-76px, -5vw, -56px);
  transform: translateX(-50%);
  transition: filter 180ms ease, transform 180ms ease;
  width: clamp(150px, 16vw, 190px);
  z-index: 1;
}

.service-visual picture {
  display: block;
  height: 100%;
  width: 100%;
}

.service-visual img {
  display: block;
  filter: drop-shadow(0 22px 24px rgba(33,29,24,0.22));
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.service-card h3 {
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.service-card p {
  position: relative;
  z-index: 2;
}

.service-card p,
.feature-list p,
.faq p,
.final-cta p {
  color: var(--muted);
}

/* ─── FILIGREE DIVIDER ─── */

.filigree-divider {
  background: linear-gradient(180deg, var(--white) 0%, #fbfaf4 54%, var(--paper) 100%);
  display: grid;
  min-height: clamp(86px, 9vw, 112px);
  padding: 18px clamp(18px, 4vw, 52px) 14px;
  place-items: center;
}

.filigree-divider img {
  filter: drop-shadow(0 10px 18px rgba(70,49,21,0.08));
  height: auto;
  max-width: 520px;
  object-fit: contain;
  opacity: 0.9;
  width: min(58vw, 320px);
}

/* ─── WHY SECTION ─── */

.split {
  background: var(--paper);
  display: grid;
  gap: clamp(30px, 8vw, 100px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.why-section {
  column-gap: clamp(34px, 4vw, 64px);
  grid-template-columns: minmax(320px, 560px) minmax(420px, 650px);
  justify-content: center;
  padding-top: clamp(10px, 1.4vw, 18px);
}

.why-section h2 {
  max-width: 640px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  max-width: 650px;
  padding: 0;
}

.feature-list li {
  --feature-icon-size: clamp(128px, 15vw, 148px);
  border-bottom: 1px solid var(--line);
  align-items: center;
  display: flex;
  gap: 20px;
  padding: 4px 0;
}

.feature-list li:first-child {
  border-top: 1px solid var(--line);
}

.feature-list li::before {
  align-self: center;
  background-color: var(--pearl-blue);
  content: "";
  display: block;
  flex: 0 0 var(--feature-icon-size);
  height: var(--feature-icon-size);
  margin-top: 0;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
  width: var(--feature-icon-size);
}

.feature-list li:nth-child(1)::before {
  mask-image: url("../assets/bullet1.svg");
  -webkit-mask-image: url("../assets/bullet1.svg");
}

.feature-list li:nth-child(2)::before {
  mask-image: url("../assets/bullet2.svg");
  -webkit-mask-image: url("../assets/bullet2.svg");
}

.feature-list li:nth-child(3)::before {
  mask-image: url("../assets/bullet3.svg");
  -webkit-mask-image: url("../assets/bullet3.svg");
}

.feature-list h3 {
  font-size: 30px;
}

.feature-list p {
  margin: 0;
}

.feature-copy {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

/* ─── TESTIMONIALS ─── */

.testimonials {
  background: var(--paper);
}

.testimonials-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto 48px;
  max-width: 1100px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(70,49,21,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(184,153,82,0.4);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0;
  padding: 0;
}

.testimonial-card blockquote p {
  color: var(--ink);
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.testimonial-card footer {
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
}

.testimonial-card footer strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 13px;
}

/* Google badge */
.google-badge {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(70,49,21,0.06);
  display: flex;
  gap: 14px;
  margin: 0 auto;
  max-width: 420px;
  padding: 18px 24px;
}

.google-badge-icon {
  flex-shrink: 0;
  height: 28px;
  width: 28px;
}

.google-badge-score {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-right: 4px;
}

.google-badge-stars {
  color: #f5a623;
  font-size: 14px;
}

.google-badge > div {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
}

.google-badge-label {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* ─── VIDEO ─── */

.video-section {
  background:
    linear-gradient(180deg, rgba(255,253,248,0.92), rgba(255,253,248,1)),
    radial-gradient(circle at 24% 20%, rgba(184,153,82,0.16), transparent 32%);
}

.video-shell {
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1000px;
  overflow: hidden;
}

.video-shell iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.caption {
  margin: 22px auto 0;
  text-align: center;
}

/* ─── FAQ ─── */

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 880px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color 180ms ease;
}

details[open] {
  border-color: rgba(184,153,82,0.42);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

/* ─── FINAL CTA ─── */

.final-cta {
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: 30px;
  justify-items: center;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 4vw, 52px);
  text-align: center;
}

.final-cta h2 {
  margin-inline: auto;
  max-width: 760px;
}

.final-cta p {
  color: rgba(255,253,248,0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  margin-inline: auto;
  max-width: 620px;
}

.final-cta .eyebrow {
  color: var(--pearl-blue);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.final-cta-actions .btn-pearl {
  font-size: 14px;
  min-height: 58px;
  padding-inline: 34px;
}

.final-cta-micro {
  color: rgba(255,253,248,0.5) !important;
  font-size: 13px !important;
  margin-top: 0 !important;
}

/* ─── FOOTER ─── */

.site-footer {
  align-items: center;
  background: #17140f;
  color: rgba(255,253,248,0.7);
  display: flex;
  font-size: 13px;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 52px);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

/* ─── VIDEO OVERLAY ─── */

.video-overlay {
  align-items: center;
  background: rgba(5,4,3,0.76);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 34px 24px 96px;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease, visibility 180ms ease;
  visibility: hidden;
  z-index: 100;
}

.video-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.video-overlay video {
  background: #000;
  border: 1px solid rgba(255,253,248,0.18);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0,0,0,0.46);
  height: min(760px, calc(100vh - 150px));
  max-width: min(440px, calc(100vw - 48px));
  object-fit: contain;
  width: auto;
}

.video-back-button {
  background: rgba(255,253,248,0.92);
  border: 1px solid rgba(255,253,248,0.72);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.32);
  color: var(--charcoal);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  min-height: 46px;
  padding: 0 22px;
  position: fixed;
  bottom: clamp(16px, 3vw, 30px);
  right: clamp(16px, 3vw, 30px);
  text-transform: uppercase;
  transition: background-color 160ms ease, transform 160ms ease;
  z-index: 101;
}

.video-back-button:hover,
.video-back-button:focus-visible {
  background: var(--pearl-high);
  transform: translateY(-1px);
}

/* ─── FLOATING ACTIONS ─── */

.floating-actions {
  bottom: 22px;
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 22px;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  visibility: hidden;
  z-index: 11;
}

body.has-passed-hero .floating-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.floating-actions a {
  align-items: center;
  background: var(--pearl);
  border: 1px solid rgba(184,153,82,0.42);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(33,29,24,0.16);
  display: flex;
  height: 52px;
  justify-content: center;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 52px;
}

.floating-actions a[href^="tel:"] {
  background: var(--call-soft);
  border-color: rgba(47,102,143,0.26);
  box-shadow: 0 12px 30px rgba(47,102,143,0.14);
  color: var(--call-ink);
}

.floating-actions a[href*="wa.me"] {
  background: var(--whatsapp-soft);
  border-color: rgba(31,107,66,0.24);
  box-shadow: 0 12px 30px rgba(31,107,66,0.14);
  color: var(--whatsapp-ink);
}

/* WhatsApp pulse ring */
.floating-wa {
  position: relative;
}

.floating-wa::after {
  border: 2px solid rgba(31,107,66,0.4);
  border-radius: 50%;
  content: "";
  inset: -4px;
  position: absolute;
  animation: wa-pulse 2.4s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.22); }
}

.floating-actions a:hover {
  transform: translateY(-2px);
}

.floating-actions a[href^="tel:"]:hover {
  background: #d4e6f4;
  border-color: rgba(47,102,143,0.34);
}

.floating-actions a[href*="wa.me"]:hover {
  background: #d2ecdc;
  border-color: rgba(31,107,66,0.32);
}

.floating-actions svg {
  fill: currentColor;
  height: 24px;
  width: 24px;
}

/* ─── HOVER (desktop) ─── */

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: rgba(184,153,82,0.58);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
  }

  .service-card:hover .service-visual {
    filter: saturate(1.04);
    transform: translateX(-50%) translateY(-6px) rotate(-2deg) scale(1.03);
  }
}

@media (hover: none), (pointer: coarse) {
  .service-card,
  .service-visual {
    transition: none;
  }
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 72px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
  }
}

@media (max-width: 920px) {
  .hero {
    --mobile-hero-image: clamp(270px, 43vw, 360px);
    --mobile-hero-blend: clamp(120px, 18vw, 154px);
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    overflow: hidden;
    padding: 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(23,20,15,0.02) 0%, rgba(23,20,15,0.08) 48%, rgba(255,253,248,0.12) 66%, rgba(255,253,248,0.72) 88%, rgba(255,253,248,1) 100%),
      url("../assets/mariachi.webp") 55% center / cover no-repeat;
    display: block;
    flex: 0 0 calc(var(--mobile-hero-image) + var(--mobile-hero-blend));
    inset: auto;
    margin-bottom: calc(var(--mobile-hero-blend) * -1);
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .hero-copy {
    background:
      repeating-linear-gradient(90deg, transparent 0 56px, rgba(184,153,82,0.08) 56px 57px),
      linear-gradient(180deg, rgba(255,253,248,0) 0%, rgba(255,253,248,0.5) 42px, rgba(255,253,248,0.96) 112px, rgba(255,253,248,0.94) 100%);
    grid-column: 1;
    max-width: none;
    padding: 94px clamp(18px, 5vw, 46px) 36px;
    position: relative;
    width: 100%;
    z-index: 1;
  }

  #hero-title {
    font-size: clamp(48px, 6.5vw, 60px);
    line-height: 0.96;
    margin-inline: auto;
    max-width: 720px;
    text-align: center;
  }

  .hero .lead {
    margin-inline: auto;
    max-width: 650px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badge {
    margin-inline: auto;
  }

  .hero-urgency {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .trust-band,
  .service-grid,
  .split,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: center;
  }

  .trust-band {
    grid-template-columns: 1fr 1fr;
  }

  .trust-band div {
    min-height: 118px;
  }
}

@media (max-width: 760px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero {
    --mobile-hero-image: clamp(190px, 47vw, 252px);
    --mobile-hero-blend: clamp(170px, 28vw, 146px);
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    padding: 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(23,20,15,0.02) 0%, rgba(23,20,15,0.08) 48%, rgba(255,253,248,0.12) 66%, rgba(255,253,248,0.72) 88%, rgba(255,253,248,1) 100%),
      url("../assets/mariachi.webp") 55% center / cover no-repeat;
    display: block;
    flex: 0 0 calc(var(--mobile-hero-image) + var(--mobile-hero-blend));
    inset: auto;
    margin-bottom: calc(var(--mobile-hero-blend) * -1);
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .hero-copy {
    background:
      repeating-linear-gradient(90deg, transparent 0 56px, rgba(184,153,82,0.08) 56px 57px),
      linear-gradient(180deg, rgba(255,253,248,0) 0%, rgba(255,253,248,0.5) 42px, rgba(255,253,248,0.96) 112px, rgba(255,253,248,0.94) 100%);
    border-radius: 0;
    margin-top: 0;
    max-width: none;
    padding: 92px 18px 28px;
    position: relative;
    width: 100%;
    z-index: 1;
  }

  h1 {
    font-size: clamp(39px, 11.4vw, 50px);
    line-height: 0.94;
    max-width: 100%;
  }

  #hero-title {
    text-align: center;
  }

  .lead {
    font-size: 18px;
    line-height: 1.42;
    margin: 18px 0 22px;
    max-width: 100%;
    text-align: center;
  }

  .btn {
    min-height: 46px;
    padding-inline: 18px;
    white-space: normal;
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-actions .btn {
    width: 100%;
  }

  .microcopy {
    display: none;
  }

  .section {
    padding-block: 36px;
  }

  .services {
    padding-bottom: 0;
  }

  .trust-band {
    grid-template-columns: 1fr 1fr;
  }

  .trust-band div {
    min-height: 112px;
  }

  .service-grid {
    gap: 72px;
    padding-top: 54px;
  }

  .service-card {
    min-height: 0;
    padding-top: 104px;
  }

  .service-visual {
    height: 144px;
    top: -58px;
    width: 144px;
  }

  .filigree-divider {
    background: linear-gradient(180deg, var(--white) 0%, var(--white) 18%, #fbfaf4 58%, var(--paper) 100%);
    min-height: 108px;
    padding-block: 24px 18px;
  }

  .filigree-divider img {
    width: min(55vw, 360px);
  }

  .why-section h2 {
    margin-inline: auto;
    text-align: center;
  }

  .why-section {
    padding-top: 6px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
  }

  .google-badge {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .video-overlay {
    background: #050403;
    padding: 0;
  }

  .video-overlay video {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    max-width: 100%;
    width: 100%;
  }
}

/* ─── REDUCED MOTION ─── */

@media (prefers-reduced-motion: reduce) {
  .floating-actions,
  .video-overlay,
  .video-back-button,
  .reveal,
  .urgency-dot,
  .floating-wa::after,
  .hero-copy > * {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-copy > * {
    opacity: 1;
    transform: none;
  }
}
