:root {
  --bg: #ffd803;
  --text: #111111;
  --accent: #0b1b3a;
  --panel: #fffdf2;
  --panel-soft: rgba(255, 253, 242, 0.75);
  --border: rgba(17, 17, 17, 0.18);
  --shadow-soft: 0 10px 28px rgba(11, 27, 58, 0.12);
  --shadow-strong: 0 14px 38px rgba(11, 27, 58, 0.2);
  --radius-xl: 1.25rem;
  --radius-pill: 9999px;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", "Arial", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  background-image: radial-gradient(rgba(17, 17, 17, 0.14) 0.7px, transparent 0.8px);
  background-size: 5px 5px;
}

main,
header,
footer {
  position: relative;
  z-index: 2;
}

a {
  color: var(--accent);
}

a:hover {
  text-decoration-thickness: 2px;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  margin-top: 0;
}

p {
  margin-top: 0;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100%;
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 0.85rem;
  border-radius: 0.6rem;
  font-weight: 600;
  z-index: 30;
}

.skip-link:focus {
  top: 0.75rem;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

section[id] {
  scroll-margin-top: 6.5rem;
}

.lead {
  max-width: 70ch;
  font-size: 1.05rem;
}

.signature-slider {
  margin-top: 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(11, 27, 58, 0.2);
  background: rgba(255, 253, 242, 0.88);
  box-shadow: var(--shadow-soft);
  padding: 0.7rem;
}

.signature-slides {
  position: relative;
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(11, 27, 58, 0.08);
}

.signature-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 340ms ease;
}

.signature-slide.is-active {
  opacity: 1;
}

.signature-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.signature-controls {
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.signature-nav {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  border: 1px solid rgba(11, 27, 58, 0.26);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.signature-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.signature-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(11, 27, 58, 0.25);
  cursor: pointer;
}

.signature-dot.is-active {
  width: 22px;
  background: var(--accent);
}

.site-header {
  position: fixed;
  left: 50%;
  top: 0.8rem;
  transform: translateX(-50%);
  width: min(var(--max-width), calc(100% - 1rem));
  z-index: 25;
}

.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  padding: 0.45rem 0.55rem;
  background: var(--panel-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled .nav-pill {
  transform: scale(0.985);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(11, 27, 58, 0.09);
  border: 1px solid rgba(11, 27, 58, 0.18);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav {
  display: none;
}

.desktop-nav a,
.mobile-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.desktop-nav a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: background-color 180ms ease, color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: var(--accent);
  color: #fff;
}

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 253, 242, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  background: var(--text);
  border-radius: 5px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  right: 0;
  border-radius: 1.35rem;
  border: 1px solid var(--border);
  background: var(--panel-soft);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
  padding: 0.5rem;
  display: grid;
  gap: 0.35rem;
  animation: slideDown 220ms ease both;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 0.75rem 0.85rem;
  border-radius: 0.9rem;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: var(--accent);
  color: #fff;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  overflow: clip;
  min-height: min(88vh, 840px);
  padding-top: clamp(7rem, 12vw, 9rem);
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 216, 3, 0.36) 0%, rgba(255, 216, 3, 0.62) 65%, rgba(11, 27, 58, 0.26) 100%),
    linear-gradient(120deg, rgba(11, 27, 58, 0.1) 0%, rgba(11, 27, 58, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: clamp(1rem, 3vw, 2.25rem);
  background: rgba(255, 253, 242, 0.62);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 1.8rem;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
}

.hero-kicker {
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.hero-subheadline {
  font-size: clamp(1.02rem, 2.1vw, 1.35rem);
  max-width: 44ch;
  margin: 0.85rem 0 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-location {
  margin: 1rem 0 0;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(11, 27, 58, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 12px 24px rgba(11, 27, 58, 0.3);
}

.btn-secondary {
  background: rgba(255, 253, 242, 0.9);
  color: var(--text);
  border-color: rgba(11, 27, 58, 0.32);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--accent);
  color: #fff;
}

.chip-grid,
.card-grid {
  display: grid;
  gap: 1rem;
}

.chip-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.chip-card,
.card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.chip-card {
  padding: 0.9rem 1rem;
  font-weight: 700;
  text-align: center;
}

.card {
  padding: 1.25rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.package-grid ul {
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}

.package-single-wrap {
  display: grid;
  justify-content: center;
  margin-top: 0.4rem;
}

.package-layout {
  margin-top: 0.75rem;
  display: grid;
  gap: 1rem;
}

.package-intro {
  max-width: 72ch;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.package-single {
  width: 100%;
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.package-single p {
  margin-bottom: 1rem;
}

.package-single .btn {
  justify-self: start;
}

.package-label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
}

.package-points {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.package-points li {
  font-weight: 600;
}

.package-visual {
  position: relative;
  overflow: hidden;
  padding: 0.75rem;
  min-height: 280px;
  background:
    radial-gradient(circle at 12% 18%, rgba(11, 27, 58, 0.16), transparent 45%),
    rgba(255, 253, 242, 0.92);
}

.package-visual-main {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 0.95rem;
  object-fit: cover;
  object-position: center;
}

.package-visual-thumb {
  position: absolute;
  right: 1rem;
  bottom: 2.5rem;
  width: min(40%, 170px);
  aspect-ratio: 1 / 1;
  border-radius: 0.85rem;
  border: 2px solid rgba(255, 253, 242, 0.9);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.package-visual figcaption {
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

.package-highlight {
  border-color: rgba(11, 27, 58, 0.4);
  outline: 2px solid rgba(11, 27, 58, 0.1);
}

.price-note {
  font-weight: 700;
  margin: 0.4rem 0 0.6rem;
}

.tablist {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tablist [role="tab"] {
  border: 1px solid rgba(11, 27, 58, 0.24);
  background: rgba(255, 253, 242, 0.9);
  color: var(--text);
  border-radius: var(--radius-pill);
  padding: 0.62rem 0.95rem;
  cursor: pointer;
  font-weight: 700;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.tablist [role="tab"][aria-selected="true"] {
  background: var(--accent);
  color: #fff;
}

.tab-panel {
  margin-top: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.showcase-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.embed-block {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(11, 27, 58, 0.14);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.8rem;
}

.instagram-embed {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: start;
}

.instagram-media {
  margin: 0 !important;
  max-width: none !important;
  min-width: 0 !important;
  width: 100% !important;
  border-radius: 0.95rem !important;
  overflow: hidden !important;
}

.instagram-media iframe {
  width: 100% !important;
  min-width: 0 !important;
}

.fallback-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.fallback-grid[hidden] {
  display: none;
}

.fallback-grid a {
  min-height: 90px;
  border-radius: 0.9rem;
  border: 1px solid rgba(11, 27, 58, 0.2);
  background:
    linear-gradient(140deg, rgba(11, 27, 58, 0.1), rgba(255, 216, 3, 0.45)),
    var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fallback-grid a:hover,
.fallback-grid a:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.booking-note {
  margin-top: 0.95rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.55rem;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.testimonial-card span {
  display: inline-block;
  margin-top: 0.55rem;
  font-weight: 700;
}

.contact-box {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255, 253, 242, 0.8);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-grid {
  margin-top: 0.85rem;
  display: grid;
  gap: 1rem;
}

.contact-details {
  display: grid;
  gap: 0.85rem;
}

.contact-item {
  border-radius: 1rem;
  border: 1px solid rgba(11, 27, 58, 0.15);
  background: rgba(255, 253, 242, 0.9);
  padding: 0.9rem 1rem;
}

.contact-item h3 {
  margin: 0 0 0.35rem;
  color: #a35a38;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 700;
}

.contact-item p {
  margin: 0.35rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.contact-item a {
  color: #a35a38;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-map {
  border-radius: 1rem;
  border: 1px solid rgba(11, 27, 58, 0.2);
  background: rgba(255, 253, 242, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 0.8rem;
  display: grid;
  gap: 0.75rem;
}

.contact-map iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 0.9rem;
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.map-link {
  width: fit-content;
  min-height: 42px;
}

.map-link-waze {
  border-color: rgba(11, 27, 58, 0.2);
  background: rgba(255, 255, 255, 0.92);
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-action-btn {
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(11, 27, 58, 0.22);
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
  border-radius: 9999px;
}

.contact-action-btn:hover,
.contact-action-btn:focus-visible {
  background: #fff;
  color: #111111;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.icon-whatsapp {
  color: #25d366;
}

.icon-instagram {
  color: #e4405f;
}

.faq-section h2 {
  letter-spacing: 0.03em;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  margin: 0;
  padding: 0 1.05rem 1rem;
}

.faq-answer a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: #111111;
  color: #fffdf2;
  padding: 2.4rem 0;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 0.6rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: #fffdf2;
}

.footer-credit {
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 253, 242, 0.22);
  font-size: 0.95rem;
}

.footer-attribution {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  opacity: 0.9;
}

.whatsapp-fab,
.back-to-top {
  position: fixed;
  z-index: 20;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(11, 27, 58, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  text-decoration: none;
}

.whatsapp-fab {
  right: 0.95rem;
  bottom: 0.95rem;
  background: var(--accent);
  color: #fff;
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.back-to-top {
  left: 0.95rem;
  bottom: 0.95rem;
  background: rgba(255, 253, 242, 0.96);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (min-width: 640px) {
  .chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .instagram-embed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fallback-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid,
  .booking-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .site-header {
    width: auto;
    max-width: calc(100% - 3rem);
  }

  .nav-pill {
    width: fit-content;
    margin-inline: auto;
    padding: 0.5rem 0.75rem;
  }

  .brand {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    width: auto;
    justify-content: center;
  }

  .hero-content.container {
    width: min(760px, 76%);
    margin-inline: clamp(1rem, 2.2vw, 2rem) auto;
    margin-bottom: clamp(1rem, 2.2vw, 1.8rem);
    border-radius: 1.45rem;
    background: rgba(255, 253, 242, 0.78);
  }

  .mobile-menu {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .package-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: stretch;
  }

  .hero-content.container {
    width: min(780px, 68%);
    margin-inline: clamp(1.5rem, 2.6vw, 2.4rem) auto;
    padding: clamp(1.5rem, 2.2vw, 2rem);
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .booking-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .instagram-embed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .back-to-top {
    display: none;
  }
}

@media (max-width: 767px) {
  section[id] {
    scroll-margin-top: 5.5rem;
  }

  .section {
    padding: 3.1rem 0;
    content-visibility: visible;
  }

  .container {
    width: calc(100% - 1.25rem);
  }

  .site-header {
    top: 0.55rem;
    width: calc(100% - 0.7rem);
  }

  .nav-pill {
    padding: 0.38rem 0.45rem;
  }

  .hero {
    min-height: 78svh;
    padding-top: calc(5rem + env(safe-area-inset-top));
    padding-bottom: clamp(2.6rem, 6vw, 3.2rem);
  }

  .hero-content {
    margin-top: 0;
    margin-bottom: 1.3rem;
    border-radius: 1.2rem;
    padding: 1rem 0.95rem 1.05rem;
    background: rgba(255, 253, 242, 0.84);
    border-color: rgba(17, 17, 17, 0.2);
  }

  h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.45rem);
    line-height: 1.04;
  }

  .hero-kicker {
    font-size: 0.67rem;
    letter-spacing: 0.045em;
    margin-bottom: 0.3rem;
  }

  .hero-subheadline {
    margin: 0.5rem 0 0.85rem;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .hero-cta {
    width: 100%;
    gap: 0.5rem;
  }

  .hero-cta .btn {
    width: 100%;
    min-height: 46px;
    font-size: 0.95rem;
  }

  .signature-slider {
    padding: 0.55rem;
  }

  .signature-slides {
    aspect-ratio: 4 / 3;
  }

  .signature-nav {
    width: 36px;
    height: 36px;
  }

  .hero-location {
    margin-top: 0.75rem;
    font-size: 0.9rem;
  }

  .hero-video {
    object-position: center 38%;
    transform: scale(1.04);
  }

  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(255, 216, 3, 0.26) 0%, rgba(255, 216, 3, 0.54) 50%, rgba(11, 27, 58, 0.36) 100%),
      linear-gradient(180deg, rgba(17, 17, 17, 0.04) 45%, rgba(17, 17, 17, 0.34) 100%);
  }

  .package-intro {
    font-size: 0.95rem;
  }

  .package-single {
    width: 100%;
    padding: 1.05rem;
  }

  .package-single .btn {
    width: 100%;
  }

  .package-visual {
    min-height: 250px;
    padding: 0.6rem;
  }

  .package-visual-main {
    min-height: 210px;
  }

  .package-visual-thumb {
    width: min(44%, 145px);
    right: 0.75rem;
    bottom: 2.25rem;
  }

  .tablist {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tablist [role="tab"] {
    width: 100%;
    justify-content: center;
  }

  .showcase-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-head .btn {
    width: 100%;
  }

  .contact-item {
    padding: 0.85rem 0.85rem;
  }

  .contact-item h3 {
    font-size: 1.1rem;
  }

  .contact-item p {
    font-size: 1rem;
  }

  .contact-map {
    padding: 0.65rem;
  }

  .contact-map iframe {
    min-height: 280px;
  }

  .map-link,
  .map-links .btn {
    width: 100%;
  }

  .contact-actions {
    justify-content: center;
    width: 100%;
  }

  .faq-item summary {
    padding: 0.85rem 0.9rem;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 0.9rem 0.9rem;
    font-size: 0.95rem;
  }

  .embed-block {
    padding: 0.65rem;
  }

  .instagram-media iframe {
    min-height: 360px !important;
  }

  .fallback-grid a {
    min-height: 78px;
    font-size: 0.85rem;
  }

  .booking-grid .btn {
    width: 100%;
  }

  .whatsapp-fab,
  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
  }

  .whatsapp-fab {
    right: 0.75rem;
  }

  .back-to-top {
    left: 0.75rem;
  }

  .nav-pill,
  .mobile-menu {
    backdrop-filter: none;
  }

  body::before {
    opacity: 0.045;
    background-size: 6px 6px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 76svh;
    padding-top: calc(4.8rem + env(safe-area-inset-top));
  }

  .hero-content {
    padding: 0.95rem 0.85rem 1rem;
  }

  .hero-subheadline {
    font-size: 0.88rem;
  }

  .hero-cta .btn {
    min-height: 44px;
    font-size: 0.9rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }

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

body.lite-mode::before {
  display: none;
}

body.lite-mode .nav-pill,
body.lite-mode .mobile-menu {
  backdrop-filter: none;
}

body.lite-mode .hero-video {
  opacity: 0.38;
}

body.lite-mode .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

body.lite-mode .btn,
body.lite-mode .card,
body.lite-mode .nav-pill {
  transition: none;
}
