:root {
  --cream: #faf7f3;
  --cream-rgb: 250, 247, 243;
  --midnight: #0a1a2f;
  --midnight-rgb: 10, 26, 47;
  --gold: #c9a94e;
  --gold-soft: #d4b85e;
  --text-dark: #2f4655;
  --text-soft: #62707b;
  --muted: #ece7e0;
  --border: rgba(201, 169, 78, 0.2);
  --shadow-gold: 0 24px 60px rgba(201, 169, 78, 0.12);
  --shadow-dark: 0 24px 60px rgba(10, 26, 47, 0.2);
  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --radius-full: 999px;
  --container: 80rem;
  --header-offset: 88px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--midnight);
  background: var(--cream);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
  color: inherit;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}

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

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 12px 30px rgba(201, 169, 78, 0.18);
}

.button-primary:hover {
  background: var(--gold-soft);
}

.button-secondary {
  border-color: rgba(201, 169, 78, 0.5);
  color: var(--gold);
  background: rgba(201, 169, 78, 0.05);
}

.button-secondary:hover {
  background: rgba(201, 169, 78, 0.12);
}

.button-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}

.button-whatsapp:hover {
  background: #1da851;
}

.button-block {
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1rem 0;
  transition: padding 320ms ease, background-color 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.site-header.is-scrolled {
  padding: 0.55rem 0;
  background: rgba(var(--midnight-rgb), 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 78, 0.1);
  box-shadow: 0 12px 36px rgba(10, 26, 47, 0.2);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy,
.footer-brand div {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold);
}

.brand-subtitle {
  color: rgba(250, 247, 243, 0.6);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link,
.mobile-nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(250, 247, 243, 0.8);
  transition: color 220ms ease;
}

.nav-link:hover,
.mobile-nav-link:hover,
.nav-link.is-active,
.mobile-nav-link.is-active {
  color: var(--gold);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--gold);
}

.nav-cta {
  margin-left: 0.5rem;
  min-height: 2.75rem;
  padding-inline: 1.35rem;
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: rgba(var(--midnight-rgb), 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 169, 78, 0.1);
  transition: max-height 320ms ease, opacity 320ms ease;
}

.mobile-panel.is-open {
  max-height: 28rem;
  opacity: 1;
}

.mobile-nav {
  width: min(calc(100% - 3rem), var(--container));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
}

.mobile-nav-link {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 169, 78, 0.1);
  font-size: 1rem;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  color: var(--cream);
}

.hero-media,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-primary {
  background: linear-gradient(90deg, rgba(10, 26, 47, 1) 0%, rgba(10, 26, 47, 0.85) 55%, rgba(10, 26, 47, 0.4) 100%);
}

.hero-overlay-secondary {
  background: linear-gradient(180deg, rgba(10, 26, 47, 0.3) 0%, rgba(10, 26, 47, 0) 45%, rgba(10, 26, 47, 1) 100%);
}

.hero-rings {
  position: absolute;
  right: 2.5rem;
  bottom: 5rem;
  width: min(20rem, 30vw);
  opacity: 0.1;
}

.hero-rings circle,
.about-rings circle {
  fill: none;
  stroke: var(--gold);
}

.hero-rings circle:nth-child(4),
.about-rings circle:nth-child(3) {
  stroke-width: 0.3;
}

.hero-rings circle:not(:nth-child(4)),
.about-rings circle:not(:nth-child(3)) {
  stroke-width: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 7rem;
  padding-bottom: 5rem;
  display: flex;
  justify-content: center;
}

.hero-copy {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.section-bar {
  width: 5rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-title,
.section-heading h2,
.about-title,
.contact-banner h3,
.footer-grid h4,
.service-card-title,
.modal-card h3 {
  font-family: var(--font-heading);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1.08;
  font-weight: 700;
}

.hero-title span,
.about-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(250, 247, 243, 0.72);
}

.hero-credentials {
  margin: 1.35rem auto 0;
  padding: 0.9rem 1.15rem;
  max-width: 40rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(201, 169, 78, 0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(8, 20, 36, 0.82), rgba(10, 26, 47, 0.58));
  box-shadow: 0 12px 34px rgba(10, 26, 47, 0.32);
}

.hero-credentials strong {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.2;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hero-credentials span {
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  line-height: 1.45;
  color: rgba(250, 247, 243, 0.95);
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: rgba(201, 169, 78, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(250, 247, 243, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}

.bounce {
  animation: scrollBounce 2s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section-light {
  background: var(--cream);
}

.section-dark {
  background: var(--midnight);
  color: var(--cream);
  overflow: hidden;
}

.legal-page {
  background: linear-gradient(180deg, rgba(250, 247, 243, 1) 0%, rgba(245, 238, 230, 1) 100%);
}

.legal-main {
  padding-top: 6.5rem;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, rgba(10, 26, 47, 1) 0%, rgba(10, 26, 47, 0.92) 58%, rgba(35, 52, 77, 0.95) 100%);
  color: var(--cream);
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: auto -6rem -8rem auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 78, 0.18);
  box-shadow: 0 0 0 3rem rgba(201, 169, 78, 0.04), 0 0 0 7rem rgba(201, 169, 78, 0.03);
}

.legal-hero-content {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.legal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 247, 243, 0.7);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.legal-breadcrumb a {
  color: var(--gold);
}

.legal-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
}

.legal-subtitle {
  margin: 1.25rem 0 0;
  max-width: 44rem;
  color: rgba(250, 247, 243, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 169, 78, 0.22);
  background: rgba(201, 169, 78, 0.08);
  color: rgba(250, 247, 243, 0.84);
  font-size: 0.84rem;
}

.legal-content {
  padding: 4rem 0 5rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 17rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.legal-sidebar,
.legal-card {
  border: 1px solid rgba(201, 169, 78, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(10, 26, 47, 0.08);
  backdrop-filter: blur(10px);
}

.legal-sidebar {
  position: sticky;
  top: 6rem;
  padding: 1.5rem;
}

.legal-sidebar h2 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--midnight);
}

.legal-sidebar ul {
  display: grid;
  gap: 0.75rem;
}

.legal-sidebar a {
  color: rgba(47, 70, 85, 0.82);
  font-size: 0.92rem;
}

.legal-sidebar a:hover {
  color: var(--gold);
}

.legal-cards {
  display: grid;
  gap: 1.5rem;
}

.legal-card {
  padding: 2rem;
}

.legal-card h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--midnight);
}

.legal-card p {
  margin: 0;
  color: rgba(47, 70, 85, 0.82);
  font-size: 0.97rem;
  line-height: 1.85;
}

.legal-card p + p,
.legal-card ul + p,
.legal-card p + ul,
.legal-card ul + ul {
  margin-top: 1rem;
}

.legal-card ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.legal-card li {
  color: rgba(47, 70, 85, 0.82);
  font-size: 0.97rem;
  line-height: 1.75;
}

.legal-highlight {
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--gold);
  border-radius: 0.9rem;
  background: rgba(201, 169, 78, 0.08);
}

.legal-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.legal-footer-note {
  margin-top: 2rem;
  text-align: center;
  color: rgba(47, 70, 85, 0.62);
  font-size: 0.88rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

.section-light .section-heading h2 {
  color: var(--midnight);
}

.heading-divider {
  width: 4rem;
  height: 2px;
  margin: 1rem auto 0;
  background: var(--gold);
}

.services-grid,
.gallery-grid,
.contact-grid,
.footer-grid,
.about-grid {
  display: grid;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--cream);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease, background-color 320ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 78, 0.3);
  box-shadow: var(--shadow-gold);
}

.service-icon-wrap,
.contact-icon,
.service-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(10, 26, 47, 0.05);
  color: var(--gold);
  transition: background-color 320ms ease;
}

.service-card:hover .service-icon-wrap {
  background: rgba(201, 169, 78, 0.1);
}

.service-card-title {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  color: var(--midnight);
}

.service-card-copy {
  margin: 0 0 1rem;
  color: rgba(47, 70, 85, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 500;
}

.service-card-link .icon {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 220ms ease;
}

.service-card:hover .service-card-link .icon {
  transform: translateX(0.3rem);
}

.service-card-outline {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 320ms ease;
}

.service-card:hover .service-card-outline {
  border-color: rgba(201, 169, 78, 0.3);
}

.section-note {
  margin: 2.5rem 0 0;
  text-align: center;
  color: rgba(47, 70, 85, 0.55);
  font-size: 0.92rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.section-cta-left {
  justify-content: flex-start;
}

.section-dark .section-cta-left,
.section-dark .section-cta {
  margin-top: 2.25rem;
}

.about-section {
  isolation: isolate;
}

.about-rings {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: min(24rem, 42vw);
  opacity: 0.05;
}

.mobile-only {
  display: none;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.about-title {
  margin: 1rem 0 2rem;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
}

.about-blocks {
  display: grid;
  gap: 1.75rem;
}

.about-blocks h3,
.contact-info h3 {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.18rem;
}

.about-blocks p {
  margin: 0;
  color: rgba(250, 247, 243, 0.72);
  font-size: 0.95rem;
  line-height: 1.75;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(201, 169, 78, 0.05);
  border: 1px solid rgba(201, 169, 78, 0.2);
  color: rgba(250, 247, 243, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
}

.value-chip .icon {
  color: var(--gold);
  width: 0.9rem;
  height: 0.9rem;
}

.about-media {
  position: relative;
}

.about-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: inherit;
}

.about-image-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(10, 26, 47, 0) 0%, rgba(10, 26, 47, 0.62) 100%);
}

.floating-badge {
  position: absolute;
  left: 1.75rem;
  bottom: 1.75rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1.2rem;
  background: rgba(201, 169, 78, 0.9);
  border-radius: 0.9rem;
  color: var(--midnight);
  box-shadow: var(--shadow-dark);
}

.floating-badge strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.floating-badge span {
  font-size: 0.75rem;
  color: rgba(10, 26, 47, 0.72);
}

.gallery-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.gallery-toggle[role="tablist"] {
  gap: 0;
}

.gallery-toggle {
  display: inline-flex;
  gap: 0;
  margin-inline: auto;
  padding: 0.3rem;
  border: 1px solid rgba(201, 169, 78, 0.3);
  border-radius: var(--radius-full);
}

.gallery-tab {
  border: 0;
  background: transparent;
  color: rgba(47, 70, 85, 0.6);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.gallery-tab.is-active {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 10px 24px rgba(201, 169, 78, 0.16);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: pointer;
  background: #d9d1c8;
}

.gallery-item.photos,
.gallery-item.videos {
  height: 22rem;
}

.gallery-item.instagram-embed-card {
  aspect-ratio: 9 / 16;
  height: auto;
  min-height: 0;
  max-width: 100%;
  width: 100%;
  justify-self: stretch;
  padding: 0;
  background: #000000;
  cursor: default;
}

.instagram-embed-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.instagram-embed-shell .instagram-media {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
}

.instagram-embed-shell iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: calc(100% + 4.6rem) !important;
  min-height: 0 !important;
  max-height: none !important;
}

@media (max-width: 90rem) {
  .gallery-grid,
  .gallery-grid.is-videos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .instagram-embed-shell iframe {
    top: 0;
    height: calc(100% + 4.2rem) !important;
  }
}

.gallery-item.instagram-embed-card:hover img {
  transform: none;
}

.gallery-item.instagram-embed-card .gallery-outline {
  border-color: rgba(201, 169, 78, 0.24);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay,
.gallery-outline,
.gallery-play-center {
  position: absolute;
  inset: 0;
}

.gallery-overlay {
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(10, 26, 47, 0) 0%, rgba(10, 26, 47, 0.1) 35%, rgba(10, 26, 47, 0.8) 100%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  margin: 0;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-play-center {
  display: grid;
  place-items: center;
}

.gallery-play-button,
.lightbox-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 78, 0.9);
  color: var(--midnight);
  box-shadow: var(--shadow-dark);
}

.gallery-play-button {
  width: 4rem;
  height: 4rem;
  transition: transform 220ms ease;
}

.gallery-item:hover .gallery-play-button {
  transform: scale(1.08);
}

.gallery-play-button .icon,
.lightbox-play-button .icon {
  width: 1.45rem;
  height: 1.45rem;
  margin-left: 0.15rem;
}

.gallery-outline {
  border: 2px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 320ms ease;
}

.gallery-item:hover .gallery-outline {
  border-color: rgba(201, 169, 78, 0.3);
}

.testimonials-section {
  isolation: isolate;
}

.testimonials-quotes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
}

.quote {
  position: absolute;
  color: var(--gold);
}

.quote-large {
  top: 5rem;
  left: 5rem;
  width: 7.5rem;
  height: 7.5rem;
}

.quote-small {
  right: 5rem;
  bottom: 5rem;
  width: 5rem;
  height: 5rem;
  transform: rotate(180deg);
}

.testimonials-container {
  position: relative;
  z-index: 1;
}

.testimonials-carousel {
  position: relative;
}

.testimonials-track-wrapper {
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  transition: opacity 320ms ease, transform 320ms ease, filter 320ms ease;
}

.testimonials-track.is-transitioning {
  opacity: 0.4;
  transform: translateX(1.2rem);
  filter: blur(4px);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(10, 26, 47, 0.6);
  border: 1px solid rgba(201, 169, 78, 0.15);
  backdrop-filter: blur(20px);
}

.stars-row {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.stars-row .icon {
  width: 1rem;
  height: 1rem;
}

.testimonial-text {
  margin: 0;
  flex: 1;
  color: rgba(250, 247, 243, 0.8);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 78, 0.1);
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(201, 169, 78, 0.2);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
}

.testimonial-name {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 78, 0.2);
  background: rgba(10, 26, 47, 0.6);
  color: var(--gold);
  backdrop-filter: blur(20px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease;
}

.carousel-arrow:hover {
  background: rgba(201, 169, 78, 0.1);
}

.carousel-arrow-prev {
  left: -1.5rem;
}

.carousel-arrow-next {
  right: -1.5rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border: 0;
  border-radius: var(--radius-full);
  background: rgba(201, 169, 78, 0.3);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease;
}

.carousel-dot.is-active {
  width: 2rem;
  background: var(--gold);
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-xl);
  background: var(--midnight);
  border: 1px solid rgba(201, 169, 78, 0.2);
}

.contact-banner h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: var(--cream);
}

.contact-banner p {
  margin: 0;
  color: rgba(250, 247, 243, 0.6);
  font-size: 0.92rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
}

.contact-info {
  display: grid;
  gap: 1.25rem;
}

.contact-info h3 {
  color: var(--midnight);
  font-size: 1.8rem;
}

.contact-item,
.contact-item-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-link {
  transition: transform 220ms ease;
}

.contact-item-link:hover {
  transform: translateX(0.25rem);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: rgba(10, 26, 47, 0.05);
  color: var(--gold);
  flex-shrink: 0;
}

.contact-text {
  padding-top: 0.7rem;
  color: rgba(47, 70, 85, 0.8);
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-map {
  overflow: hidden;
  min-height: 25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 169, 78, 0.2);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: var(--midnight);
  color: var(--cream);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 169, 78, 0.1);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.8fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201, 169, 78, 0.1);
}

.footer-grid h4 {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-copy,
.footer-schedule,
.footer-email,
.footer-bottom p,
.footer-legal a,
.footer-links a {
  color: rgba(250, 247, 243, 0.55);
}

.footer-copy,
.footer-schedule p,
.footer-email {
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 0.85rem;
}

.footer-links a,
.footer-legal a {
  transition: color 220ms ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--gold);
}

.footer-schedule .highlight {
  color: rgba(250, 247, 243, 0.8);
  font-weight: 500;
}

.schedule-gap {
  margin-top: 1rem;
}

.footer-contact-mini {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 169, 78, 0.1);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(201, 169, 78, 0.2);
  color: var(--gold);
  transition: background-color 220ms ease;
}

.social-links a:hover {
  background: rgba(201, 169, 78, 0.1);
}

.social-links svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.social-links a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.social-fill {
  fill: currentColor;
  stroke: none;
}

.footer-email {
  margin-top: 1.5rem;
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-bottom p {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.8rem;
}

.heart-inline {
  width: 0.8rem;
  height: 0.8rem;
  color: #c8745f;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
}

.whatsapp-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  padding: 0.8rem 1rem;
  border-radius: 0.85rem;
  background: var(--midnight);
  color: var(--cream);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  box-shadow: var(--shadow-dark);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: calc(100% - 0.35rem);
  right: 1.4rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--midnight);
  transform: rotate(45deg);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.2);
  transition: transform 220ms ease;
  animation: pulseGlow 2s ease-in-out infinite;
}

.whatsapp-button:hover {
  transform: scale(1.08);
}

.whatsapp-button svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

.overlay-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 47, 0.85);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.service-modal-card {
  width: min(100%, 32rem);
  max-height: min(90vh, 44rem);
  overflow-y: auto;
  background: var(--cream);
  border: 1px solid rgba(201, 169, 78, 0.2);
}

.modal-close-button,
.lightbox-close-button {
  position: absolute;
  z-index: 2;
  border: 0;
  cursor: pointer;
}

.modal-close-button {
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 26, 47, 0.3);
  color: rgba(250, 247, 243, 0.85);
}

.service-modal-media {
  position: relative;
  height: 12rem;
}

.service-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal-gradient,
.lightbox-caption-wrap {
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(10, 26, 47, 0) 0%, rgba(10, 26, 47, 0.9) 100%);
}

.service-modal-gradient {
  height: 100%;
}

.service-modal-title-wrap {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-icon-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  background: rgba(201, 169, 78, 0.9);
  color: var(--midnight);
}

.service-modal-title-wrap h3 {
  margin: 0;
  color: var(--cream);
  font-size: 1.8rem;
}

.service-modal-content {
  padding: 1.5rem;
}

.service-modal-list {
  display: grid;
  gap: 0.9rem;
}

.service-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(47, 70, 85, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-modal-list li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.service-modal-content .button {
  margin-top: 1.5rem;
}

.lightbox-card {
  width: min(100%, 60rem);
}

.lightbox-close-button {
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 26, 47, 0.35);
  color: rgba(250, 247, 243, 0.8);
}

.lightbox-media-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.lightbox-media-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lightbox-play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.lightbox-play-button {
  width: 5rem;
  height: 5rem;
}

.lightbox-caption-wrap {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
}

.lightbox-caption-wrap p {
  margin: 0;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(5px);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
}

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

.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 250ms; }
.reveal-delay-3 { transition-delay: 400ms; }
.reveal-delay-4 { transition-delay: 550ms; }
.reveal-delay-5 { transition-delay: 700ms; }
.reveal-delay-6 { transition-delay: 900ms; }

body.modal-open {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--midnight);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-soft);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.2);
  }

  50% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8), 0 0 40px rgba(37, 211, 102, 0.4);
  }
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 75rem) {
  .carousel-arrow-prev {
    left: -0.5rem;
  }

  .carousel-arrow-next {
    right: -0.5rem;
  }
}

@media (max-width: 64rem) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle,
  .mobile-panel {
    display: block;
  }

  .brand-copy {
    display: none;
  }

  .hero-rings {
    display: none;
  }

  .services-grid,
  .gallery-grid,
  .footer-grid,
  .about-grid,
  .contact-grid,
  .testimonials-track {
    grid-template-columns: 1fr;
  }

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

  .instagram-embed-shell iframe {
    top: 0;
    height: calc(100% + 3.8rem) !important;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .contact-banner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-arrow {
    position: static;
    transform: none;
  }

  .testimonials-carousel {
    display: grid;
    gap: 1rem;
  }

  .testimonials-track-wrapper {
    order: 1;
  }

  .carousel-arrow-prev,
  .carousel-arrow-next {
    display: none;
  }

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

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 48rem) {
  :root {
    --header-offset: 76px;
  }

  .section {
    padding: 5rem 0;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .hero-actions,
  .contact-banner,
  .footer-legal {
    align-items: stretch;
  }

  .hero-credentials {
    width: 100%;
    padding: 0.85rem 0.95rem;
  }

  .hero-credentials span {
    font-size: 0.9rem;
  }

  .hero-actions .button,
  .contact-banner .button {
    width: 100%;
  }

  .contact-banner {
    padding: 1.5rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .service-card,
  .testimonial-card,
  .service-modal-content {
    padding: 1.5rem;
  }

  .gallery-grid,
  .gallery-grid.is-videos {
    grid-template-columns: 1fr;
  }

  .gallery-item.videos {
    height: auto;
    aspect-ratio: 9 / 16;
    max-width: min(100%, 22rem);
    margin-inline: auto;
  }

  .gallery-item.instagram-embed-card {
    aspect-ratio: 9 / 16;
    min-height: 0;
    max-width: min(100%, 22rem);
    width: 100%;
    margin-inline: auto;
  }

  .instagram-embed-shell .instagram-media {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .instagram-embed-shell iframe {
    top: 0;
    height: calc(100% + 3.2rem) !important;
    max-height: none !important;
  }

  .gallery-item.photos,
  .gallery-item.videos {
    height: 20rem;
  }

  .service-modal-title-wrap h3 {
    font-size: 1.5rem;
  }

  .floating-badge {
    left: 1rem;
    bottom: 1rem;
  }

  .footer-bottom p {
    flex-wrap: wrap;
  }

  .legal-main {
    padding-top: 5.5rem;
  }

  .legal-hero {
    padding: 3rem 0 2.5rem;
  }

  .legal-card,
  .legal-sidebar {
    padding: 1.4rem;
  }

  .legal-cta-row .button {
    width: 100%;
  }
}