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

:root {
  --bg: #f0eeea;
  --bg-soft: #e7e3dc;
  --dark: #121212;
  --dark-2: #191919;
  --text: #191919;
  --muted: #66615b;
  --gold: #c9a227;
  --gold-deep: #9b7615;
  --gold-light: #ead790;
  --wine: #7e1820;
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.22);
  --line: rgba(20, 20, 20, 0.12);
  --font:
    "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: #111;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 9999;
  background: #fff;
  color: #111;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

.liquid-glass {
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    0 8px 32px rgba(0, 0, 0, 0.14);
}

.topbar {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-align: center;
}
.topbar strong {
  color: var(--gold-light);
  font-weight: 700;
}
.topbar-dot {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(100vh - 40px);
  min-height: calc(100dvh - 40px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
  transform: scale(1.04);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4, 4, 4, 0.64) 0%,
      rgba(4, 4, 4, 0.16) 55%,
      rgba(4, 4, 4, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(3, 3, 3, 0.78) 0%,
      rgba(3, 3, 3, 0.13) 52%,
      rgba(3, 3, 3, 0.18) 100%
    );
}

.hero-frost {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  mask: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.55) 40%, #000 100%);
  -webkit-mask: linear-gradient(
    transparent 0%,
    rgba(0, 0, 0, 0.55) 40%,
    #000 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1480px;
  min-height: inherit;
  margin: 0 auto;
  padding: 1.35rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-pill {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.6rem 0.5rem 0.65rem;
  position: relative;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  filter: url(#liquid-glass-filter);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  color: #fff;
}
.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.nav-brand span {
  font-size: 0.66rem;
  line-height: 1.08;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}
.nav-brand strong {
  font-size: 0.75rem;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.45rem;
  list-style: none;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 500;
}
.nav-links a {
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(127deg, #3d3520, #191407);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 0.55rem 0.5rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow:
    inset 0 -1px rgba(255, 255, 255, 0.15),
    inset 0 1px rgba(201, 162, 39, 0.35),
    0 5px 18px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}
.nav-cta-icon {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 0.75rem;
}

.nav-toggle {
  display: none;
}

.hero-bottom {
  width: min(780px, 100%);
  margin-top: auto;
  padding: 6rem 0 0.7rem;
}

.hero-kicker {
  color: var(--gold-light);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.35);
}
.hero-badge svg {
  width: 0.82rem;
  height: 0.82rem;
  color: var(--gold-light);
}

.hero-title {
  max-width: 800px;
  color: #fff;
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
  margin-bottom: 1rem;
}
.hero-title em {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: -0.03em;
}
.hero-sub {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
  line-height: 1.66;
  letter-spacing: -0.01em;
  margin-bottom: 1.35rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary,
.btn-dark,
.btn-ghost,
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn-primary {
  padding: 0.78rem 1.4rem;
  color: #111;
  background: linear-gradient(127deg, var(--gold-light), var(--gold));
  box-shadow:
    inset 0 -1px rgba(0, 0, 0, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.48),
    0 6px 18px rgba(0, 0, 0, 0.22);
  font-size: 0.92rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}
.btn-ghost {
  padding: 0.78rem 1.35rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.92rem;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.btn-dark {
  padding: 0.8rem 1.35rem;
  color: var(--gold-light);
  background: var(--dark);
  font-size: 0.9rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}
.btn-dark:hover {
  transform: translateY(-2px);
  background: #242424;
}

.hero-coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin-top: 1.55rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero-coverage span::before {
  content: "✦";
  color: var(--gold);
  margin-right: 0.4rem;
}

.section {
  padding: 5.5rem 1.25rem;
}
.section-inner {
  width: min(1220px, 100%);
  margin: 0 auto;
}
.section-header {
  width: min(760px, 100%);
  margin: 0 auto 3.4rem;
  text-align: center;
}
.eyebrow {
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.eyebrow em {
  font-style: normal;
  color: var(--gold-deep);
  font-weight: 800;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0.5rem 0 1rem;
}
.section-desc {
  color: #504b46;
  line-height: 1.7;
  font-size: 1.02rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  min-height: 265px;
  padding: 1.5rem;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.045);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.16),
    transparent 70%
  );
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.68);
}
.service-number {
  color: #a49d93;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.service-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 2.1rem 0 1.15rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: #1b1b1b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 22px rgba(201, 162, 39, 0.2);
}
.service-card h3 {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}
.service-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.story-section {
  padding: 5.7rem 1.25rem;
  background: var(--dark);
  color: #fff;
}
.story-inner {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 5rem;
  align-items: center;
}
.story-image {
  position: relative;
  aspect-ratio: 4/4.4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
}
.story-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 45%);
  pointer-events: none;
}
.story-image-badge {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  min-width: 142px;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(15, 15, 15, 0.42);
}
.story-image-badge strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
}
.story-image-badge span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
}
.tag-pill {
  display: inline-flex;
  padding: 0.36rem 0.86rem;
  border-radius: 999px;
  background: linear-gradient(127deg, var(--gold-light), var(--gold));
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.story-copy h2,
.coverage-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 1.1rem;
}
.story-copy h2 em,
.coverage-copy h2 em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.story-copy > p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin-bottom: 1.6rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}
.check-list span {
  color: var(--gold-light);
}
.story-copy .btn-dark {
  background: var(--gold);
  color: #111;
}
.story-copy .btn-dark:hover {
  background: var(--gold-light);
}

.pricing-section {
  background: #f7f5f1;
}
.pricing-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
.carousel-dot-label {
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 700;
}
.pricing-title,
.carousel-title {
  font-size: clamp(1.85rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 500;
  max-width: 740px;
  margin-top: 0.35rem;
}
.price-from {
  text-align: right;
}
.price-from span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.price-from strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 1.4rem;
  align-items: start;
}
.price-table-wrap {
  border: 1px solid rgba(20, 20, 20, 0.09);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.055);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid rgba(20, 20, 20, 0.075);
}
.price-table th {
  background: #f3f0ea;
  color: #77716b;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.price-table td {
  font-size: 0.86rem;
  color: #504b46;
}
.price-table td strong {
  color: #181818;
}
.price-table td:nth-child(3) {
  color: #111;
  font-weight: 800;
}
.price-table tr:last-child td {
  border-bottom: 0;
}
.price-table tbody tr {
  transition: background 0.2s;
}
.price-table tbody tr:hover {
  background: #faf8f4;
}
.price-table a {
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.78rem;
  white-space: nowrap;
}
.featured-row {
  background: rgba(201, 162, 39, 0.09);
}
.popular-pill {
  display: inline-block;
  margin-left: 0.55rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: var(--dark);
  color: var(--gold-light);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  vertical-align: middle;
}

.pricing-note {
  padding: 1.55rem;
  border-radius: 22px;
  background: var(--dark);
  color: #fff;
  position: sticky;
  top: 1rem;
  overflow: hidden;
}
.pricing-note::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -130px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.18),
    transparent 65%
  );
}
.pricing-note img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 1.3rem;
  position: relative;
}
.pricing-note-kicker {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-note h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  margin: 0.25rem 0 0.65rem;
}
.pricing-note > p:not(.pricing-note-kicker) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.pricing-note .btn-primary {
  width: 100%;
}
.pricing-note small {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
  line-height: 1.5;
  margin-top: 0.9rem;
}

.gallery-section {
  background: var(--bg);
}
.carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.carousel-controls {
  display: flex;
  gap: 0.5rem;
}
.carousel-btn {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid #c5c0b8;
  transition: all 0.2s;
}
.carousel-btn:hover {
  background: var(--dark);
  color: var(--gold-light);
  border-color: var(--dark);
  transform: scale(1.05);
}
.gallery-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar {
  display: none;
}
.gallery-item {
  flex: 0 0 min(440px, 84vw);
  scroll-snap-align: center;
}
.gallery-card {
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  background: #ddd8d0;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.035);
}
.gallery-item figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.25rem 0;
}
.gallery-item figcaption strong {
  font-size: 0.88rem;
}
.gallery-item figcaption span {
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
}
.carousel-dot-btn {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4beb6;
  transition:
    transform 0.2s,
    background 0.2s;
}
.carousel-dot-btn.active {
  background: var(--gold-deep);
  transform: scale(1.5);
}

.video-section {
  padding: 6rem 1.25rem;
  background: #0f0f0f;
  color: #fff;
}
.video-heading {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 4rem;
  align-items: end;
  margin-bottom: 2.6rem;
}
.video-kicker {
  color: var(--gold-light);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.video-heading h2 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin-top: 0.45rem;
}
.video-heading h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.video-heading > p {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  font-size: 0.9rem;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.video-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: #181818;
}
.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}
.video-card > div {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.video-card span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.video-card strong {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.84);
}
.video-extra {
  display: none;
}
.video-extra.is-visible {
  display: block;
}
.video-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.btn-outline-light {
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.coverage-section {
  padding: 5.8rem 1.25rem;
  background: #e8e3db;
}
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.coverage-copy h2 em {
  color: var(--gold-deep);
}
.coverage-copy p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.coverage-list {
  border-top: 1px solid rgba(20, 20, 20, 0.16);
}
.coverage-list div {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.2rem 0.2rem;
  border-bottom: 1px solid rgba(20, 20, 20, 0.16);
}
.coverage-list span {
  color: var(--gold-deep);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}
.coverage-list strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-style: italic;
}

.contact-cta {
  min-height: 580px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
  color: #fff;
  padding: 5rem 1.25rem;
}
.contact-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.82)),
    url("public/img/mariachi-2.jpg") center 42% / cover no-repeat;
  transform: scale(1.03);
}
.contact-cta-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  text-align: center;
}
.contact-cta-inner > img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 1rem;
  opacity: 0.95;
}
.contact-cta-inner > span {
  display: block;
  color: var(--gold-light);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.contact-cta h2 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 0.6rem 0 0.85rem;
}
.contact-cta h2 em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.contact-cta p {
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 1.4rem;
}
.contact-buttons {
  justify-content: center;
}

.footer {
  background: var(--dark);
  color: #fff;
  padding: 4.5rem 1.25rem 2rem;
}
.footer-brand {
  width: min(1220px, 100%);
  margin: 0 auto 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand-lockup img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.footer-brand h3 {
  font-size: 0.94rem;
  letter-spacing: 0.07em;
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 0.2rem;
}
.footer-social a {
  display: inline-flex;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.68);
}
.footer-social a:hover {
  color: var(--gold-light);
  border-color: rgba(201, 162, 39, 0.38);
}
.footer-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.footer h4 {
  color: var(--gold-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 1rem;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer a,
.footer li span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.84rem;
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  width: min(1220px, 100%);
  margin: 3rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
}

.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 998;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: currentColor;
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 0.7rem);
  white-space: nowrap;
  background: #111;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.45rem;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    gap: 0.9rem;
  }
  .nav-links li:nth-child(4) {
    display: none;
  }
  .story-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .pricing-layout {
    grid-template-columns: 1fr;
  }
  .pricing-note {
    position: relative;
    top: auto;
  }
  .video-heading {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
  .coverage-inner {
    gap: 2.5rem;
  }
}

@media (max-width: 760px) {
  .topbar {
    gap: 0.35rem 0.5rem;
  }
  .topbar span:nth-child(4),
  .topbar span:nth-child(5) {
    display: none;
  }
  .hero {
    min-height: calc(100svh - 40px);
  }
  .hero-bg {
    object-position: 47% center;
  }
  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(4, 4, 4, 0.84) 0%,
      rgba(4, 4, 4, 0.25) 62%,
      rgba(4, 4, 4, 0.2) 100%
    );
  }
  .hero-inner {
    padding: 1rem 0.8rem 1.3rem;
  }
  .nav-pill {
    padding: 0.45rem 0.5rem;
    gap: 0.55rem;
  }
  .nav-brand img {
    width: 38px;
    height: 38px;
  }
  .nav-brand span {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    width: 2.25rem;
    height: 2.25rem;
    margin-left: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
  }
  .nav-toggle span {
    width: 13px;
    height: 1px;
    background: #fff;
    transition:
      transform 0.2s,
      opacity 0.2s;
  }
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0.4rem;
    right: 0.4rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(14, 14, 14, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links li,
  .nav-links li:nth-child(4) {
    display: block;
  }
  .nav-links a {
    display: block;
    padding: 0.7rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links li:last-child a {
    border-bottom: 0;
  }
  .nav-cta {
    padding-left: 0.8rem;
  }
  .hero-bottom {
    padding-top: 7rem;
  }
  .hero-kicker {
    font-size: 0.68rem;
  }
  .hero-badges {
    gap: 0.35rem;
  }
  .hero-badge {
    font-size: 0.66rem;
    padding: 0.33rem 0.6rem;
  }
  .hero-title {
    font-size: clamp(2.55rem, 14vw, 4.6rem);
  }
  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.58;
  }
  .hero-coverage {
    display: none;
  }
  .hero-ctas {
    gap: 0.55rem;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    flex: 1 1 auto;
  }

  .section {
    padding: 4rem 1rem;
  }
  .section-header {
    margin-bottom: 2.4rem;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card {
    min-height: 240px;
    padding: 1.2rem;
  }

  .story-section {
    padding: 4rem 1rem;
  }
  .story-inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .story-image {
    aspect-ratio: 4/3;
  }
  .check-list {
    grid-template-columns: 1fr;
  }

  .pricing-header {
    align-items: flex-start;
  }
  .price-from {
    display: none;
  }
  .price-table-wrap {
    overflow-x: auto;
  }
  .price-table {
    min-width: 620px;
  }

  .carousel-header {
    align-items: flex-end;
  }
  .gallery-item {
    flex-basis: 86vw;
  }
  .gallery-item figcaption {
    flex-direction: column;
    gap: 0.15rem;
  }
  .gallery-item figcaption span {
    text-align: left;
  }

  .video-section {
    padding: 4.5rem 1rem;
  }
  .video-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }

  .coverage-section {
    padding: 4rem 1rem;
  }
  .coverage-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-cta {
    min-height: 530px;
  }

  .footer {
    padding: 3.8rem 1rem 1.8rem;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 470px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 210px;
  }
  .service-icon {
    margin-top: 1.4rem;
  }
  .nav-cta {
    font-size: 0.72rem;
  }
  .nav-cta-icon {
    width: 1.45rem;
    height: 1.45rem;
  }
  .hero-title {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas a {
    width: 100%;
  }
  .pricing-note {
    padding: 1.3rem;
  }
  .carousel-controls {
    display: none;
  }
  .footer-brand {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .wa-float {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 3.25rem;
    height: 3.25rem;
  }
  .wa-tooltip {
    display: none;
  }
}

@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;
  }
  .hero-bg {
    transform: none !important;
  }
}

.price-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.price-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
}

.price-table th:nth-child(1),
.price-table td:nth-child(1) {
  width: 45%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2) {
  width: 25%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3) {
  width: 30%;
}

.price-table th,
.price-table td {
  box-sizing: border-box;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3) {
  text-align: right;
}

@media (max-width: 600px) {
  .price-table th {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 1.1rem 0.75rem;
  }

  .price-table td {
    font-size: 0.95rem;
    padding: 1.2rem 0.75rem;
  }

  .price-table th:nth-child(1),
  .price-table td:nth-child(1) {
    width: 45%;
  }

  .price-table th:nth-child(2),
  .price-table td:nth-child(2) {
    width: 23%;
  }

  .price-table th:nth-child(3),
  .price-table td:nth-child(3) {
    width: 32%;
  }

  .popular-pill {
    display: inline-block;
    margin-left: 0;
    margin-top: 0.4rem;
    font-size: 0.62rem;
  }
}
