:root {
  --bg: #07111e;
  --bg-deep: #0a1628;
  --surface: rgba(12, 25, 43, 0.72);
  --surface-strong: rgba(16, 29, 48, 0.92);
  --card: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6efe7;
  --muted: #c5cedd;
  --gold: #f4c06b;
  --coral: #ff7a59;
  --teal: #4fd2c7;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 89, 0.17), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(79, 210, 199, 0.14), transparent 22%),
    radial-gradient(circle at 50% 30%, rgba(244, 192, 107, 0.08), transparent 30%),
    linear-gradient(180deg, #07111e 0%, #091628 42%, #060d18 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -8rem;
  left: -10rem;
  background: var(--coral);
}

body::after {
  right: -12rem;
  bottom: -10rem;
  background: var(--teal);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(79, 210, 199, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  z-index: 100;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.eyebrow,
.feature-kicker,
.contact-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.story-copy h2,
.booking-copy h2 {
  margin: 0.35rem 0 0.9rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.section-heading p:last-child,
.story-copy p,
.booking-copy p,
.feature-copy p,
.service-card p,
.poster-copy p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 30, 0.52);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 30, 0.84);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(244, 192, 107, 0.26), rgba(255, 122, 89, 0.3));
  border: 1px solid rgba(244, 192, 107, 0.3);
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta {
  background: linear-gradient(135deg, var(--gold), #ffb870);
  color: #09101a;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #ffc874 48%, var(--coral));
  color: #08101a;
  box-shadow: 0 18px 35px rgba(244, 192, 107, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-wide {
  width: 100%;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 2.4rem;
}

.hero-copy h1 {
  margin: 0.4rem 0 1rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #fff2d8 0%, var(--gold) 42%, var(--coral) 100%);
  background-clip: text;
}

.hero-lead {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 2.1rem 0 1.7rem;
  padding: 0;
}

.hero-stats li {
  padding: 1.1rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.coverage-chips,
.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.coverage-chips span,
.story-tags span,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 39rem;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.5;
}

.hero-glow-one {
  top: 15%;
  right: 12%;
  width: 10rem;
  height: 10rem;
  background: rgba(255, 122, 89, 0.45);
}

.hero-glow-two {
  left: 4%;
  bottom: 18%;
  width: 9rem;
  height: 9rem;
  background: rgba(79, 210, 199, 0.35);
}

.hero-card,
.feature-card,
.service-card,
.portrait-panel,
.poster-panel,
.contact-card,
.booking-card,
.gallery-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 4px);
  animation: drift 9s ease-in-out infinite;
}

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

.hero-card-tall {
  top: 1rem;
  left: 0;
  width: 34%;
  aspect-ratio: 4 / 5.9;
  animation-delay: 0.4s;
}

.hero-card-main {
  top: 4rem;
  right: 0;
  width: 58%;
  aspect-ratio: 1 / 1.02;
}

.hero-card-wide {
  left: 16%;
  bottom: 0.8rem;
  width: 58%;
  aspect-ratio: 1.4 / 1;
  animation-delay: 1.2s;
}

.hero-card-small {
  top: 0;
  right: 12%;
  width: 30%;
  aspect-ratio: 1 / 0.72;
  animation-delay: 2s;
}

.hero-note {
  position: absolute;
  right: 5%;
  bottom: 7%;
  max-width: 14rem;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  background: rgba(8, 16, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.hero-note-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-grid,
.service-grid {
  display: grid;
  gap: 1.2rem;
}

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

.feature-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.feature-card img {
  aspect-ratio: 1.06 / 1;
  object-fit: cover;
}

.feature-copy {
  padding: 1.35rem;
}

.feature-copy h3,
.service-card h3,
.poster-copy h3,
.booking-card h3 {
  margin: 0.3rem 0 0.6rem;
  font-family: "Syne", sans-serif;
  font-size: 1.28rem;
  line-height: 1.12;
}

.services-section {
  padding-top: 2rem;
}

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

.service-card {
  position: relative;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 50%);
  opacity: 0.65;
  pointer-events: none;
}

.service-index {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.story-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem 2rem;
  align-items: center;
}

.story-copy {
  max-width: 36rem;
}

.story-quote {
  margin: 1.8rem 0;
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 1rem 1rem 0;
  background: rgba(255, 255, 255, 0.04);
  color: #fff4db;
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
}

.story-visuals {
  display: grid;
  gap: 1rem;
}

.portrait-panel,
.poster-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.portrait-panel img {
  aspect-ratio: 1.06 / 1;
  object-fit: cover;
}

.poster-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.poster-panel img {
  height: 100%;
  object-fit: cover;
}

.poster-copy {
  padding: 1.3rem;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.filter-chip {
  color: var(--muted);
}

.filter-chip.active {
  border-color: rgba(244, 192, 107, 0.46);
  background: linear-gradient(135deg, rgba(244, 192, 107, 0.18), rgba(255, 122, 89, 0.12));
  color: var(--text);
}

.gallery-note {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  column-count: 3;
  column-gap: 1.1rem;
  margin-top: 2rem;
}

.gallery-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 1.1rem;
  overflow: hidden;
  border-radius: 1.5rem;
}

.gallery-launch {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.gallery-card img {
  width: 100%;
  height: auto;
  transition: transform 260ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.03);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.4rem 1rem 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(5, 11, 20, 0.9));
}

.gallery-caption h3 {
  margin: 0.2rem 0 0.2rem;
  font-size: 1rem;
}

.gallery-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.booking-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.booking-card-head p {
  margin-top: 0;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  color: var(--muted);
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(197, 206, 221, 0.75);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.8rem 0 1.6rem;
}

.contact-card {
  display: grid;
  gap: 0.22rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
}

.contact-card strong {
  font-size: 1rem;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
}

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

.footer-brand {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
}

.footer-copy,
.footer-meta {
  color: var(--muted);
}

.footer-copy {
  margin: 0.35rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-meta {
  width: var(--container);
  margin: 1.2rem auto 0;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #30d870, #25b85d);
  color: #05140b;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(48, 216, 112, 0.22);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(2, 6, 12, 0.92);
}

.lightbox-panel {
  display: grid;
  gap: 1rem;
  width: min(72rem, 100%);
  max-height: calc(100vh - 4rem);
  margin: 0;
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 12rem);
  object-fit: contain;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.lightbox-caption {
  max-width: 48rem;
}

.lightbox-caption h3 {
  margin: 0.3rem 0 0.4rem;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
}

.lightbox-caption p:last-child {
  margin: 0;
  color: var(--muted);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.7rem;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

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

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

body.lightbox-open {
  overflow: hidden;
}

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

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

@media (max-width: 1024px) {
  .feature-grid,
  .service-grid,
  .story-grid,
  .booking-grid,
  .field-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .story-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 34rem;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .poster-panel {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .header-cta {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }

  .hero-visual {
    min-height: 26rem;
  }

  .hero-card-tall {
    width: 38%;
  }

  .hero-card-main {
    width: 60%;
  }

  .hero-card-wide {
    width: 63%;
    left: 12%;
  }

  .hero-card-small {
    width: 34%;
  }

  .hero-note {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .gallery-grid {
    column-count: 1;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-prev,
  .lightbox-next {
    bottom: 1rem;
    top: auto;
  }
}

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

  .reveal,
  .hero-card,
  .button,
  .header-cta,
  .gallery-card img {
    animation: none !important;
    transition: none !important;
  }
}
