:root {
  --bg: #0b0b0b;
  --bg2: #090909;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.56);
  --line: rgba(255, 255, 255, 0.09);
  --gold: #c9a24a;
  --gold2: #e0c47a;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius2: 26px;
  --container: 1140px;
  --serif: "Cormorant Garamond", serif;
  --sans: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: radial-gradient(1200px 700px at 10% -10%, rgba(201, 162, 74, 0.12), transparent 55%),
    radial-gradient(900px 560px at 90% 10%, rgba(201, 162, 74, 0.09), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2 * 22px));
  margin: 0 auto;
}

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

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(11, 11, 11, 0.96);
  border: 1px solid var(--line);
  transform: translateY(-140%);
  transition: transform 260ms var(--ease);
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.64), rgba(11, 11, 11, 0.18));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 240ms var(--ease), border-color 240ms var(--ease), transform 240ms var(--ease);
  will-change: transform;
}
.header.is-hidden {
  transform: translateY(-115%);
}
.header.is-elevated {
  background: rgba(11, 11, 11, 0.86);
  border-color: rgba(255, 255, 255, 0.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand__logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Make logo more readable without growing header height (desktop) */
@media (min-width: 861px) {
  .brand__logo {
    height: 58px;
  }
  .header__inner {
    padding: 8px 0;
  }
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 13px;
  background: radial-gradient(80% 80% at 30% 20%, rgba(201, 162, 74, 0.45), rgba(201, 162, 74, 0.16)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 74, 0.26);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}
.brand__text {
  display: grid;
  line-height: 1.05;
}
.brand__name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.02em;
}
.brand__sub {
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg);
  border-radius: 14px;
  padding: 10px 12px;
}
.nav__toggleBars {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
  display: block;
  position: relative;
}
.nav__toggleBars::before,
.nav__toggleBars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
}
.nav__toggleBars::before {
  top: -6px;
}
.nav__toggleBars::after {
  top: 6px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 8px;
  border-radius: 12px;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.95);
}
.nav__cta {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 162, 74, 0.36);
  background: radial-gradient(80% 120% at 20% 20%, rgba(201, 162, 74, 0.26), rgba(201, 162, 74, 0.08));
  transition: transform 160ms var(--ease), border-color 160ms var(--ease);
}
.nav__cta:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 162, 74, 0.54);
}

/* Hero */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  padding: 110px 0 58px;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* No cuts: show full frame */
  object-position: 60% 50%;
  filter: saturate(1.06) contrast(1.12) brightness(0.75);
}
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keep poster consistent with video */
  object-position: 60% 22%;
  filter: saturate(1.06) contrast(1.12) brightness(0.75);
  transform: scale(1);
}
.hero__video {
  opacity: 0;
  transition: opacity 280ms var(--ease);
}
.hero.has-video .hero__video {
  opacity: 1;
}
.hero.has-video .hero__poster {
  opacity: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 700px at 18% 18%, rgba(201, 162, 74, 0.14), transparent 55%),
    radial-gradient(900px 540px at 86% 10%, rgba(201, 162, 74, 0.09), transparent 55%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.64), rgba(11, 11, 11, 0.92));
}
.hero__glow {
  position: absolute;
  inset: auto -20% -25% -20%;
  height: 55%;
  background: radial-gradient(closest-side, rgba(201, 162, 74, 0.14), transparent 70%);
  filter: blur(8px);
}
.hero__content {
  position: relative;
  z-index: 10;
}
.kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}
.kicker__accent {
  color: var(--gold2);
}
.hero__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0.01em;
}
.hero__lead {
  margin: 0 0 22px;
  max-width: 64ch;
  color: var(--muted);
  font-size: 16px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__trust {
  margin-top: 26px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}
.trust__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(201, 162, 74, 0.7);
}

.hero__scrollHint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  opacity: 0.85;
}
.hero__scrollLine {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.75), transparent);
  display: block;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* Sections */
.section {
  padding: 88px 0;
  position: relative;
}
.section--about {
  padding-top: 92px;
}
.section--video {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}
.sectionHead {
  max-width: 78ch;
  margin-bottom: 26px;
}
.h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  margin: 0 0 10px;
}
.h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 10px;
}
.lead {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 14px;
}
.muted {
  color: var(--muted2);
}
.tiny {
  font-size: 12px;
}

.grid {
  display: grid;
  gap: 28px;
}
.grid--2 {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.about__media {
  margin: 0;
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.04);
}
.about__caption {
  position: absolute;
  inset: auto 14px 14px 14px;
  background: rgba(11, 11, 11, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.about__stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat {
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.stat__num {
  font-family: var(--serif);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
}
.stat__label {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.textLink {
  display: inline-flex;
  margin-top: 14px;
  color: rgba(201, 162, 74, 0.95);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.textLink:hover {
  color: rgba(224, 196, 122, 1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease);
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
}
.btn--gold {
  border-color: rgba(201, 162, 74, 0.46);
  background: radial-gradient(120% 140% at 10% 0%, rgba(224, 196, 122, 0.25), rgba(201, 162, 74, 0.1));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
.btn--gold:hover {
  border-color: rgba(201, 162, 74, 0.7);
}
.btn--ghost {
  background: rgba(0, 0, 0, 0.18);
}
.btn--mini {
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}
.btn--social:hover {
  border-color: rgba(201, 162, 74, 0.55);
  background: rgba(201, 162, 74, 0.10);
}
.btn--full {
  width: 100%;
}

/* Video grid */
.videoGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.videoCard {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
}
.videoCard__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.35);
}
.videoCard__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.videoCard__meta {
  margin: 0;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(120% 160% at 20% 10%, rgba(201, 162, 74, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.02);
  padding: 18px 16px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 74, 0.24);
}
.card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.74);
}
.card__hint {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(224, 196, 122, 0.92);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Repertoire */
.bullets {
  margin: 14px 0 14px 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.bullets li {
  color: rgba(255, 255, 255, 0.78);
}

.iconList {
  list-style: none;
  padding: 0;
  margin: 14px 0 14px;
  display: grid;
  gap: 10px;
}
.iconList li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
}
.repertoire__panel {
  align-self: stretch;
}
.panel {
  border-radius: var(--radius2);
  border: 1px solid rgba(201, 162, 74, 0.18);
  background: radial-gradient(120% 120% at 20% 0%, rgba(201, 162, 74, 0.14), rgba(255, 255, 255, 0.02));
  padding: 20px 18px;
  box-shadow: var(--shadow);
}
.checklist {
  list-style: none;
  margin: 14px 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.78);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(224, 196, 122, 0.95);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.tcard {
  margin: 0;
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
}
.tcard blockquote {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}
.tcard figcaption {
  color: rgba(224, 196, 122, 0.9);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}
.g {
  grid-column: span 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease);
}
.g:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 74, 0.22);
}
.g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: contrast(1.06) saturate(1.04);
}
.g--tall {
  grid-column: span 5;
  grid-row: span 2;
}
.g--tall img {
  aspect-ratio: 3 / 4;
}
.g--wide {
  grid-column: span 7;
}

/* Contact */
.contactCards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.contactCard {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 16px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}
.contactCard:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 74, 0.22);
}
.contactCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge--gold {
  border-color: rgba(201, 162, 74, 0.38);
  color: rgba(224, 196, 122, 0.95);
}
.contactCard__icon {
  color: rgba(224, 196, 122, 0.9);
  font-size: 14px;
}
.contactCard__big {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 6px;
}
.contactCard__small {
  font-size: 12px;
}

.note {
  margin-top: 18px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 74, 0.18);
  background: rgba(201, 162, 74, 0.06);
  color: rgba(255, 255, 255, 0.8);
}

.form {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}
.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.field span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
  font: inherit;
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(201, 162, 74, 0.42);
  background: rgba(0, 0, 0, 0.28);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
.form__actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.form__status {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  min-height: 20px;
}

/* Final CTA */
.section--finalCta {
  padding: 74px 0 86px;
}
.finalCta {
  border-radius: 28px;
  border: 1px solid rgba(201, 162, 74, 0.22);
  background: radial-gradient(900px 520px at 20% 0%, rgba(201, 162, 74, 0.18), transparent 58%),
    rgba(255, 255, 255, 0.02);
  padding: 26px 18px;
  box-shadow: var(--shadow);
}
.finalCta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.finalCta__social {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}
.finalCta__social a {
  word-break: break-word;
}

/* Footer */
.footer {
  padding: 30px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__name {
  font-family: var(--serif);
  font-size: 18px;
}
.footer__logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer__tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__meta {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mutedLink {
  color: rgba(255, 255, 255, 0.72);
}
.mutedLink:hover {
  color: rgba(224, 196, 122, 0.95);
}
.footer__sep {
  opacity: 0.5;
}

/* Sticky WhatsApp */
.waSticky {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1300;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #25d366; /* WhatsApp classic green */
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(37, 211, 102, 0.08);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}
.waSticky:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
}
.waSticky:focus-visible {
  outline: none;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(37, 211, 102, 0.18);
}
.waSticky__ring {
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.06);
  opacity: 0.9;
  pointer-events: none;
}
.waSticky__icon {
  width: 26px;
  height: 26px;
  color: #ffffff; /* white WhatsApp mark */
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55));
}

@media (max-width: 560px) {
  .waSticky {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .videoGrid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .g {
    grid-column: span 6;
  }
  .g--tall,
  .g--wide {
    grid-column: span 6;
    grid-row: auto;
  }
  .g img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 860px) {
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav__menu {
    position: absolute;
    right: 22px;
    top: 64px;
    width: min(420px, calc(100vw - 44px));
    display: grid;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(11, 11, 11, 0.92);
    box-shadow: var(--shadow);
    transform-origin: top right;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms var(--ease), transform 160ms var(--ease);
  }
  .nav__menu.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  .nav__link,
  .nav__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .header.is-hidden {
    /* keep for specificity on mobile */
    transform: translateY(-115%);
  }
  /* Make header smaller so it doesn't intrude into the hero image */
  .header__inner {
    padding: 10px 0;
  }
  .brand__logo {
    height: 34px;
  }
  .hero {
    padding: 92px 0 28px;
    min-height: auto;
    align-items: start;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 380px;
    padding: 0 10px;
    gap: 4px;
  }
  .kicker {
    display: none;
  }
  .hero__title {
    font-size: clamp(26px, 8.5vw, 36px);
    order: 1;
    margin: 0 0 10px;
    line-height: 1.02;
    letter-spacing: -0.01em;
    text-shadow: 0 10px 44px rgba(0, 0, 0, 0.72);
  }
  .section {
    padding: 72px 0;
  }
  .section--about {
    padding-top: 78px;
  }
  .hero__lead {
    display: none;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    order: 2;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__actions .btn--mini {
    width: auto;
    align-self: center;
  }
  .hero__actions .btn--gold {
    padding: 13px 16px;
    font-size: 13px;
  }
  .hero__actions .btn--mini {
    padding: 9px 12px;
    font-size: 10.5px;
    letter-spacing: 0.05em;
  }
  /* Reduce noise on mobile */
  .hero__actions .btn--ghost {
    display: none;
  }
  .hero__trust {
    display: none;
  }
  .hero__scrollHint {
    display: none;
  }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(11, 11, 11, 0.22) 0%,
      rgba(11, 11, 11, 0.70) 50%,
      rgba(11, 11, 11, 0.90) 100%
    );
  }

  /* Mobile: keep poster as the hero visual (faster + more consistent) */
  .hero__video {
    display: block;
    /* Shift the video down so it doesn't hide faces under the fixed nav */
    inset: 14px 0 -14px 0;
    object-position: center 18%;
  }
  .hero__poster {
    transform: scale(1);
    /* Shift the poster down so faces remain visible under the fixed nav */
    inset: 14px 0 -14px 0;
    object-position: center 18%;
  }
  .hero.has-video .hero__poster {
    opacity: 0;
  }
  .contactCards {
    grid-template-columns: 1fr;
  }
  /* On mobile, show the WhatsApp booking form first */
  #contact .container.grid--2 {
    display: flex;
    flex-direction: column;
  }
  #contact .contact__form {
    order: 1;
  }
  #contact .contact__info {
    order: 2;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .brand {
    min-width: auto;
  }
}
