:root {
  --espresso: #0b404c;
  --night: #083f4a;
  --aqua: #0098a6;
  --aqua-deep: #006b78;
  --mint: #76dcb8;
  --citrus: #ffe45c;
  --coral: #cf2f7b;
  --plum: #5b5bd6;
  --foam: #ecfbf9;
  --sun: #f8ffd6;
  --paper: #f4fff9;
  --white: #ffffff;
  --muted: rgba(8, 63, 74, .7);
  --line: rgba(8, 63, 74, .13);
  --shadow: 0 24px 80px rgba(0, 111, 123, .17);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--night);
  background: var(--foam);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

i[data-lucide] {
  width: 1.15em;
  height: 1.15em;
  display: inline-grid;
  place-items: center;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .7px;
  line-height: 1;
}

i[data-lucide="instagram"]::before {
  content: "IG";
}

@media (hover: hover) and (pointer: fine) {
  html.cursor-enhanced,
  html.cursor-enhanced * {
    cursor: none !important;
  }

  .cursor-orb {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 20, 24, .92);
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, .9),
      0 0 18px rgba(255, 255, 255, .72),
      0 0 34px rgba(0, 222, 238, .34);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    transition: width .18s ease, height .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease, box-shadow .18s ease;
  }

  body.cursor-ready .cursor-orb {
    opacity: 1;
  }

  body.cursor-hover .cursor-orb {
    width: 42px;
    height: 42px;
    border-color: rgba(0, 20, 24, .9);
    background: rgba(255, 255, 255, .22);
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, .96),
      inset 0 0 0 1px rgba(255, 255, 255, .78),
      0 0 28px rgba(255, 255, 255, .72),
      0 0 62px rgba(0, 222, 238, .38);
  }
}

.ig-mark {
  display: inline-grid;
  place-items: center;
  width: 1.15em;
  height: 1.15em;
  font-size: .72em;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
}

i[data-lucide="phone"]::before {
  content: "TEL";
}

i[data-lucide="mail"]::before {
  content: "@";
}

i[data-lucide="calendar-days"]::before {
  content: "DATA";
  font-size: 6px;
}

i[data-lucide="images"]::before {
  content: "IMG";
}

i[data-lucide="arrow-down"]::before {
  content: "v";
}

i[data-lucide="waves"]::before {
  content: "~";
}

i[data-lucide="sparkles"]::before {
  content: "*";
}

i[data-lucide="utensils"]::before {
  content: "FOOD";
  font-size: 6px;
}

i[data-lucide="menu"]::before {
  content: "MENU";
  font-size: 6px;
}

i[data-lucide="x"]::before {
  content: "X";
}

i[data-lucide="message-circle"]::before {
  content: "WA";
}

i[data-lucide="send"]::before {
  content: "GO";
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--night);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease, color .35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(244, 255, 249, .94);
  color: var(--night);
  box-shadow: 0 12px 50px rgba(0, 111, 123, .13);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  padding-block: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 56px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.brand img {
  width: 88px;
  height: 88px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav-links a,
.mobile-panel a,
.footer-links a,
.footer-links button {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  opacity: .88;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--citrus);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.icon-link,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 6px;
  background: rgba(255, 255, 255, .1);
  color: currentColor;
}

.site-header.is-scrolled .icon-link,
.site-header.is-scrolled .menu-toggle,
.site-header.is-open .icon-link,
.site-header.is-open .menu-toggle {
  border-color: var(--line);
  background: rgba(0, 152, 166, .08);
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--citrus);
  color: var(--espresso);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.mobile-panel {
  position: fixed;
  inset: 76px 12px auto;
  z-index: 99;
  display: none;
  padding: 24px;
  background: rgba(244, 255, 249, .98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-panel.is-open {
  display: grid;
  gap: 20px;
}

.mobile-panel a {
  padding: 8px 0;
  color: var(--night);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(6, 54, 64, .5), rgba(0, 124, 137, .24) 38%, rgba(8, 63, 74, .72)),
    radial-gradient(circle at 20% 18%, rgba(255, 228, 92, .42), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(207, 47, 123, .32), transparent 34%);
}

.hero-content {
  width: min(1040px, calc(100% - 36px));
  margin-inline: auto;
  padding-top: 72px;
  text-align: center;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .32);
}

.eyebrow,
.section-label,
.cta-strip span,
.thanks-wrap span {
  display: inline-block;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--citrus);
}

.hero-title,
.section-title,
.cta-strip h2,
.thanks-wrap h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: .95;
  letter-spacing: 0;
}

.hero-title {
  margin-top: 18px;
  font-size: clamp(66px, 14vw, 176px);
}

.hero-kicker {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(17px, 2.2vw, 23px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease, color .3s ease;
}

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

.btn-primary {
  background: var(--citrus);
  color: var(--espresso);
  box-shadow: 0 18px 46px rgba(255, 228, 92, .28);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .56);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.btn-ghost-social {
  color: var(--white);
  border-color: rgba(255, 228, 92, .72);
  background: rgba(8, 63, 74, .26);
  backdrop-filter: blur(12px);
}

[data-tilt] {
  --mx: 50%;
  --my: 50%;
  --glare: 0;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

[data-tilt]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, .36), transparent 42%);
  opacity: var(--glare);
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity .2s ease;
}

.btn-dark {
  background: var(--night);
  color: var(--white);
}

.btn svg,
.btn .ig-mark,
.icon-link svg,
.icon-link .ig-mark,
.menu-toggle svg,
.service-list svg,
.contact-links svg,
.contact-links .ig-mark,
.whatsapp-float svg,
.scroll-cue svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: 24px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
}

.scroll-cue span {
  width: 2px;
  height: 58px;
  background: linear-gradient(to bottom, transparent, var(--citrus));
}

.marquee {
  overflow: hidden;
  background: var(--aqua);
  color: var(--white);
  border-block: 1px solid rgba(255, 255, 255, .28);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  position: relative;
  padding: 18px 34px;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  white-space: nowrap;
}

.marquee span::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--citrus);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section {
  padding: clamp(82px, 10vw, 138px) 0;
}

.intro {
  background:
    linear-gradient(180deg, var(--foam), var(--paper));
}

.intro-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.section-title {
  margin-top: 16px;
  color: var(--night);
  font-size: clamp(42px, 6.7vw, 86px);
}

.section-body {
  margin: 24px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.stats div {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(0, 152, 166, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .64);
}

.stats strong {
  display: block;
  font-family: var(--display);
  color: var(--aqua);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 14px;
  color: var(--night);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.intro-media {
  position: relative;
  min-height: 680px;
  perspective: 1300px;
  transform-style: preserve-3d;
}

.intro-media img,
.feature-image img,
.event-card img,
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-main {
  position: absolute;
  inset: 0 auto 0 0;
  width: 72%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-floating {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 43%;
  height: 360px;
  border: 10px solid var(--foam);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head.compact {
  grid-template-columns: 1fr;
  margin-bottom: 34px;
}

.events {
  background: var(--sun);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  perspective: 1200px;
}

.event-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 111, 123, .1);
  transition: transform .35s var(--ease), box-shadow .35s ease;
  backface-visibility: hidden;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 82px rgba(0, 111, 123, .17);
}

.event-card img {
  aspect-ratio: 4 / 5;
  transform: translateZ(18px) scale(1.01);
}

.event-card-body {
  padding: 28px 26px 30px;
}

.event-card span {
  color: var(--aqua);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.event-card h3,
.service-list h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  color: var(--espresso);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
}

.event-card p,
.service-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.experience-section {
  background: linear-gradient(180deg, var(--paper), var(--foam));
}

.experience-stack {
  display: grid;
  gap: 22px;
  perspective: 1600px;
}

.experience-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  min-height: 520px;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(0, 152, 166, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(236, 251, 249, .88)),
    var(--white);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.experience-card.is-reversed {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.experience-card.is-reversed .experience-media {
  order: 2;
}

.experience-media {
  min-height: 480px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--night);
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(26px) scale(1.01);
}

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 54px);
}

.experience-copy span {
  color: var(--aqua-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.experience-copy h3 {
  margin: 14px 0 0;
  color: var(--night);
  font-family: var(--display);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 600;
  line-height: .98;
}

.experience-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.social-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 132px) 0;
  background:
    linear-gradient(145deg, rgba(8, 63, 74, .96), rgba(0, 111, 123, .88)),
    var(--night);
  color: var(--white);
}

.social-proof::before {
  content: "@villa_petruse";
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(255, 255, 255, .05);
  font-family: var(--display);
  font-size: clamp(80px, 17vw, 220px);
  font-weight: 600;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.social-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.social-proof .section-label,
.social-proof .section-title,
.social-proof .section-body {
  color: var(--white);
}

.social-proof .section-label {
  color: var(--citrus);
}

.social-proof .section-body {
  color: rgba(255, 255, 255, .74);
  margin-bottom: 32px;
}

.vibe-deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  perspective: 1300px;
}

.vibe-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .06)),
    rgba(255, 255, 255, .08);
  box-shadow: 0 22px 64px rgba(0, 0, 0, .2);
  backdrop-filter: blur(14px);
}

.vibe-card:nth-child(1) {
  transform: rotateY(-8deg) translateY(18px);
}

.vibe-card:nth-child(2) {
  transform: translateZ(34px);
}

.vibe-card:nth-child(3) {
  transform: rotateY(8deg) translateY(-18px);
}

.vibe-card span {
  color: var(--citrus);
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
}

.vibe-card h3 {
  margin: 18px 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1;
}

.vibe-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.65;
}

.feature-band {
  padding: clamp(82px, 10vw, 130px) 0;
  background:
    linear-gradient(90deg, rgba(0, 152, 166, .94), rgba(102, 198, 166, .9)),
    var(--aqua);
  color: var(--white);
}

.feature-band .section-title,
.feature-band .section-body,
.feature-band .service-list p {
  color: var(--white);
}

.feature-band .section-label {
  color: var(--citrus);
}

.feature-image {
  min-height: 650px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.service-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
}

.service-list svg {
  width: 34px;
  height: 34px;
  color: var(--citrus);
}

.service-list h3 {
  color: var(--white);
  font-size: 30px;
}

.gallery-section {
  background: var(--foam);
  padding-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 8px;
  padding: 0 8px 8px;
  perspective: 1400px;
}

.gallery-item {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--night);
  color: var(--white);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.cinematic-gallery {
  background: var(--night);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.video-gallery-item {
  grid-column: span 1;
}

.video-gallery-item::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 228, 92, .9));
  box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
  transform: translate(-50%, -50%);
}

.gallery-item::after {
  content: "Apri";
  position: absolute;
  inset: auto 14px 14px auto;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .9);
  color: var(--night);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s var(--ease);
}

.video-gallery-item::after {
  content: "Video";
  opacity: 1;
  transform: translateY(0);
}

.gallery-item > span {
  position: absolute;
  left: 14px;
  right: 72px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}

.gallery-item video {
  display: block;
  transition: transform 1s var(--ease), filter .35s ease;
  transform: translateZ(16px) scale(1.01);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  transition: transform 1s var(--ease), filter .35s ease;
  transform: translateZ(16px) scale(1.01);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: translateZ(24px) scale(1.055);
  filter: saturate(1.08);
}

.faq-section {
  background:
    linear-gradient(180deg, var(--foam), var(--paper));
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 104px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(0, 152, 166, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 54px rgba(0, 111, 123, .08);
  overflow: hidden;
}

.faq-item summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  color: var(--night);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  margin-left: auto;
  color: var(--aqua-deep);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.faq-item a {
  color: var(--aqua-deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.directions-section {
  background:
    linear-gradient(180deg, var(--paper), var(--foam));
}

.directions-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
}

.directions-copy {
  align-self: center;
}

.direction-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0;
}

.direction-cards div {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(0, 152, 166, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.direction-cards svg {
  width: 28px;
  height: 28px;
  color: var(--coral);
}

.direction-cards span {
  display: block;
  margin: 18px 0 8px;
  color: var(--aqua-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.direction-cards strong {
  color: var(--night);
  font-size: 17px;
  line-height: 1.45;
}

.directions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(0, 152, 166, .22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 152, 166, .22), rgba(255, 228, 92, .22)),
    url("assets/gallery-pergolato-serale.webp") center / cover;
  box-shadow: var(--shadow);
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 63, 74, .44);
}

.map-panel.is-loaded::before {
  display: none;
}

.map-consent {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 52px);
  color: var(--white);
  text-align: center;
}

.map-consent span {
  color: var(--sun);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.map-consent p {
  max-width: 430px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.map-panel.is-loaded .map-consent {
  display: none;
}

.map-panel iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.map-panel iframe[hidden] {
  display: none;
}

.cta-strip {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 126px) 0;
  background: var(--coral);
  color: var(--white);
  text-align: center;
}

.cta-strip::before {
  content: "VILLA PETRUSE";
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(255, 255, 255, .14);
  font-family: var(--display);
  font-size: clamp(92px, 19vw, 260px);
  font-weight: 600;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.cta-strip .container {
  position: relative;
}

.cta-strip span {
  color: var(--sun);
}

.cta-strip h2 {
  max-width: 880px;
  margin: 14px auto 34px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 86px);
}

.contact {
  background:
    linear-gradient(180deg, var(--paper), var(--foam));
}

.contact-grid {
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(0, 152, 166, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .66);
  color: var(--night);
  font-weight: 700;
}

.contact-links svg {
  color: var(--aqua);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hidden {
  display: none;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.split {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-row label {
  color: var(--espresso);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(8, 63, 74, .14);
  border-radius: 6px;
  background: var(--foam);
  color: var(--night);
  padding: 15px 14px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(0, 152, 166, .12);
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--aqua);
}

.check-row a {
  color: var(--aqua-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  width: 100%;
  border: 0;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 26px;
  padding: 58px 20px 76px;
  background: var(--night);
  color: rgba(255, 255, 255, .72);
  text-align: center;
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 82px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand p {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
}

.footer-links button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.footer-links button:hover,
.footer-links a:hover {
  color: var(--citrus);
}

.footer-institutional-logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 30px);
  width: min(560px, calc(100% - 28px));
  padding: 14px 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.footer-institutional-logos img {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(44px, 5.2vw, 68px);
  object-fit: contain;
}

.footer-institutional-logos img:first-child {
  flex: 0 1 220px;
  max-width: 44%;
}

.footer-institutional-logos img:last-child {
  flex: 0 1 290px;
  max-width: 52%;
}

.footer-admin {
  display: grid;
  gap: 7px;
  max-width: 760px;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.6;
}

.footer-admin strong {
  color: var(--citrus);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-admin a,
.footer-copy a {
  color: rgba(255, 255, 255, .86);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-admin a:hover,
.footer-copy a:hover {
  color: var(--citrus);
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, .44);
  font-size: 13px;
}

.footer-copy span {
  display: inline-block;
  margin-left: 8px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 6px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 42px rgba(37, 211, 102, .36);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(5, 37, 45, .92);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1180px);
  max-height: 86svh;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.lightbox-video {
  width: min(100%, 760px);
  max-height: 86svh;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.lightbox-video[hidden] {
  display: none;
}

.lightbox-close {
  position: fixed;
  right: 24px;
  top: 22px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
}

.legal-page {
  background: var(--foam);
}

.legal-main {
  min-height: 70svh;
  padding: 128px 0 72px;
}

.legal-doc {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(0, 152, 166, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
}

.legal-updated {
  margin: 0 0 22px;
  color: var(--aqua-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.legal-doc h1,
.legal-doc h2 {
  font-family: var(--display);
  color: var(--night);
  font-weight: 600;
  line-height: 1;
}

.legal-doc h1 {
  margin: 0 0 24px;
  font-size: clamp(48px, 8vw, 86px);
}

.legal-doc h2 {
  margin: 38px 0 12px;
  font-size: clamp(30px, 4vw, 42px);
}

.legal-doc p,
.legal-doc li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-doc ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-table {
  width: 100%;
  margin: 24px 0 30px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(0, 152, 166, .18);
  border-radius: 8px;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(0, 152, 166, .13);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: rgba(0, 152, 166, .08);
  color: var(--espresso);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .92em;
}

.legal-note-box {
  margin: 18px 0 28px;
  padding: 16px 18px;
  border: 1px solid rgba(207, 47, 123, .22);
  border-radius: 8px;
  background: rgba(207, 47, 123, .07);
  color: var(--espresso);
}

.legal-doc a {
  color: var(--aqua-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 250;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(0, 152, 166, .2);
  border-radius: 8px;
  background: rgba(244, 255, 249, .97);
  box-shadow: 0 20px 70px rgba(8, 63, 74, .18);
  transform: translateY(calc(100% + 28px));
  opacity: 0;
  pointer-events: none;
  transition: transform .45s var(--ease), opacity .35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__text strong {
  display: block;
  color: var(--espresso);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.cookie-banner__text p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-link,
.cookie-accept {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.cookie-link {
  border: 1px solid rgba(8, 63, 74, .16);
  color: var(--night);
}

.cookie-accept {
  border: 0;
  background: var(--citrus);
  color: var(--espresso);
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0, 152, 166, .76), rgba(8, 63, 74, .72)),
    url("assets/villapetruseesterni3.webp") center / cover;
}

.thanks-wrap {
  width: min(760px, calc(100% - 32px));
  display: grid;
  justify-items: center;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 8px;
  background: rgba(244, 255, 249, .94);
  text-align: center;
  box-shadow: var(--shadow);
}

.thanks-wrap img {
  width: 100px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 26px;
}

.thanks-wrap h1 {
  margin-top: 12px;
  color: var(--night);
  font-size: clamp(46px, 8vw, 82px);
}

.thanks-wrap p {
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.thanks-wrap .btn-light {
  border-color: rgba(8, 63, 74, .18);
  color: var(--night);
  background: rgba(255, 255, 255, .7);
}

.thanks-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.thanks-links a:hover {
  color: var(--aqua-deep);
}

.error-code {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border-radius: 6px;
  background: rgba(0, 152, 166, .1);
  color: var(--aqua-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s var(--ease);
}

.has-gsap .reveal {
  transition: none;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1060px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .intro-grid,
  .feature-grid,
  .contact-grid,
  .faq-grid,
  .directions-grid,
  .section-head,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .intro-media {
    min-height: 560px;
  }

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

  .experience-card,
  .experience-card.is-reversed {
    grid-template-columns: 1fr;
  }

  .experience-card.is-reversed .experience-media {
    order: 0;
  }

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

  .vibe-deck {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    width: 66px;
    height: 50px;
  }

  .icon-link,
  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 92svh;
    place-items: end center;
    padding-bottom: 72px;
  }

  .hero-content {
    padding-top: 110px;
  }

  .hero-title {
    font-size: clamp(58px, 17vw, 94px);
  }

  .hero-kicker {
    font-size: 16px;
  }

  .hero-actions,
  .thanks-wrap .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .section-body {
    font-size: 15px;
  }

  .stats,
  .event-grid,
  .direction-cards,
  .form-row.split {
    grid-template-columns: 1fr;
  }

  .stats div {
    min-height: auto;
  }

  .intro-media {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .media-main,
  .media-floating {
    position: static;
    width: 100%;
    height: auto;
    border: 0;
  }

  .media-main {
    aspect-ratio: 4 / 5;
  }

  .media-floating {
    aspect-ratio: 4 / 3;
  }

  .feature-image {
    min-height: 420px;
  }

  .experience-card {
    min-height: auto;
  }

  .experience-media {
    min-height: 360px;
  }

  .experience-copy {
    padding: 24px 8px 8px;
  }

  .vibe-deck {
    grid-template-columns: 1fr;
  }

  .vibe-card,
  .vibe-card:nth-child(1),
  .vibe-card:nth-child(2),
  .vibe-card:nth-child(3) {
    min-height: 230px;
    transform: none;
  }

  .service-list li {
    grid-template-columns: 38px 1fr;
    padding: 18px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 0 6px 6px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
    aspect-ratio: 1;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 18px 18px;
    font-size: 14px;
  }

  .faq-item p {
    padding: 0 18px 20px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 430px;
  }

  .legal-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .legal-table th,
  .legal-table td {
    min-width: 210px;
    padding: 13px 14px;
  }

  .cta-strip h2 {
    font-size: clamp(36px, 11vw, 58px);
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding-inline: 14px;
  }

  .whatsapp-float span {
    display: none;
  }

  .footer-institutional-logos {
    gap: 12px;
    width: min(520px, calc(100% - 24px));
    padding: 10px 14px;
  }

  .footer-institutional-logos img {
    width: auto;
    height: auto;
    max-height: 50px;
  }

  .footer-institutional-logos img:first-child {
    max-width: 43%;
  }

  .footer-institutional-logos img:last-child {
    max-width: 53%;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 16px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-link,
  .cookie-accept {
    flex: 1 1 150px;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: 56px;
  }

  .eyebrow,
  .section-label,
  .cta-strip span {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    min-height: 178px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 360px;
  }

  .footer-brand p {
    font-size: 24px;
  }
}
