:root {
  --bg: #0b0b0c;
  --bg-elev: #121214;
  --bg-card: #17161a;
  --ink: #f4ead6;
  --muted: #b7aa93;
  --gold: #c9a56a;
  --gold-soft: #e8d7b3;
  --gold-deep: #8c6a3a;
  --line: rgba(201, 165, 106, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --header: 84px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 12px);
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

section[id] {
  scroll-margin-top: calc(var(--header) + 12px);
}

.grain {
  display: none;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--header);
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.92), rgba(11, 11, 12, 0.55));
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(11, 11, 12, 0.92);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo .logo--mark {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a:not(.btn) {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  position: relative;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--gold-soft);
  transition: 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  position: relative;
  z-index: 3;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201, 165, 106, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
}

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

.btn--gold {
  background: linear-gradient(135deg, #f3e6c9, #c9a56a 48%, #8c6a3a);
  color: #1a140c;
  box-shadow: 0 10px 30px rgba(201, 165, 106, 0.22);
}

.btn--gold:hover {
  box-shadow: 0 16px 36px rgba(201, 165, 106, 0.32);
}

.btn--ghost,
.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  background: transparent;
}

.btn--ghost:hover,
.btn--outline:hover {
  background: rgba(201, 165, 106, 0.1);
}

.btn--whatsapp {
  background: #1f3a2b;
  color: #d8f5e3;
  border: 1px solid rgba(201, 165, 106, 0.28);
}

.btn--sm {
  min-height: 40px;
  padding: 0 16px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: calc(var(--header) + 24px) 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(201, 165, 106, 0.14), transparent 48%),
    radial-gradient(ellipse at 80% 80%, rgba(140, 106, 58, 0.12), transparent 40%),
    linear-gradient(180deg, #080808, #111111 60%, #0b0b0c);
}

.hero__bg::before,
.hero__bg::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
  inset: 28px;
}

.hero__bg::after {
  inset: 40px;
  opacity: 0.45;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
}

.hero__logo {
  width: min(560px, 92vw);
  margin: 6px auto 20px;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.45));
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: "Cinzel", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  letter-spacing: 0.08em;
  line-height: 1.05;
  background: linear-gradient(180deg, #f8f0dc, #c9a56a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin-top: 14px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.85rem);
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px 0;
}

.ornament span {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.hero__lead {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 20px;
}

.scroll-hint span {
  display: block;
  width: 3px;
  height: 8px;
  margin: 8px auto 0;
  background: var(--gold);
  border-radius: 4px;
  animation: drip 1.6s infinite;
}

@keyframes drip {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-head h2,
.booking h2,
.location h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.section-head__text,
.booking p {
  color: var(--muted);
}

.plans,
.location {
  padding: 120px 0;
}

.plans {
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 165, 106, 0.07), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(201, 165, 106, 0.06), transparent 36%),
    var(--bg);
}

.plans .section-head h2 {
  background: linear-gradient(180deg, #fbf4e4, #e3bd7f 58%, #b98f4e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plans .section-head {
  margin-bottom: 58px;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(226, 190, 122, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 55%, rgba(201, 165, 106, 0.03));
  border: 1px solid rgba(201, 165, 106, 0.32);
  border-radius: 22px;
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 236, 190, 0.1);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.plan-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 205, 145, 0.9), transparent);
  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 190, 122, 0.9);
  box-shadow: 0 26px 66px rgba(201, 165, 106, 0.2), inset 0 1px 0 rgba(255, 236, 190, 0.16);
}

.plan-card__head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.plan-card__icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(201, 165, 106, 0.06);
}

.plan-card__icon svg {
  width: 25px;
  height: 25px;
}

.plan-card__title h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}

.plan-card__tag {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
  margin-bottom: 3px;
}

.plan-card__desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  min-height: 2.8em;
}

.plan-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 17px 14px 15px;
  margin-top: 4px;
  border: 1px solid rgba(226, 190, 122, 0.34);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 130%, rgba(226, 190, 122, 0.3), transparent 72%),
    linear-gradient(180deg, rgba(201, 165, 106, 0.16), rgba(201, 165, 106, 0.035));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 236, 190, 0.14);
}

.plan-card__price-cur {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--gold-soft);
  padding-bottom: 3px;
}

.plan-card__price-val {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 2.6vw, 3.15rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fdf6e2, #eacd92 55%, #b98d4e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 10px rgba(201, 165, 106, 0.45));
}

.plan-card__price-cents {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-soft);
  padding-bottom: 3px;
}

.plan-card__price-per {
  width: 100%;
  text-align: center;
  padding-top: 5px;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

.plan-card__list {
  list-style: none;
  display: grid;
  gap: 9px;
  color: var(--gold-soft);
  flex: 1;
  font-size: 0.92rem;
}

.plan-card__list li {
  padding-left: 17px;
  position: relative;
}

.plan-card__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  position: absolute;
  left: 0;
  top: 0.5em;
  transform: rotate(45deg);
}

.plan-card .btn {
  width: 100%;
  margin-top: 4px;
  justify-content: center;
}

.plan-card--vip {
  background:
    radial-gradient(circle at 50% 0%, rgba(238, 205, 145, 0.32), transparent 58%),
    linear-gradient(180deg, rgba(201, 165, 106, 0.2), rgba(17, 16, 18, 0.96) 45%, rgba(11, 11, 12, 0.98));
  border-color: rgba(233, 198, 132, 0.72);
  box-shadow: 0 24px 70px rgba(201, 165, 106, 0.22), inset 0 1px 0 rgba(255, 236, 190, 0.2);
  animation: vipFloat 4.4s ease-in-out infinite;
}

.plan-card--vip::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255, 232, 173, 0.85), transparent 42%, transparent 60%, rgba(201, 165, 106, 0.7));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.plan-card--vip:hover {
  border-color: rgba(238, 203, 138, 0.95);
  box-shadow: 0 26px 70px rgba(201, 165, 106, 0.26);
}

@keyframes vipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.plan-card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 11px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(201, 165, 106, 0.08);
  border-radius: 999px;
}

.plan-card--vip .plan-card__badge {
  color: #1b1308;
  border-color: transparent;
  background: linear-gradient(135deg, #f4dfae, #c9a069);
}

.plan-card__badge--new {
  color: var(--gold-soft);
  border-color: rgba(232, 215, 179, 0.6);
  background: rgba(11, 11, 12, 0.65);
}

.booking {
  padding: 20px 0 110px;
}

.booking__panel {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 48px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 165, 106, 0.16), transparent 34%),
    linear-gradient(160deg, #16151a, #0e0e10);
}

.booking h2 {
  margin-bottom: 12px;
}

.booking .btn {
  margin-top: 24px;
}

.booking__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.booking__ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.booking__ring::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(201, 165, 106, 0.45);
  border-radius: 50%;
}

.booking__visual img {
  width: 170px;
  height: 170px;
  position: relative;
  z-index: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.location__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.location__info {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.location h3 {
  margin-bottom: 14px;
}

address {
  font-style: normal;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
}

.socials svg,
.footer__socials svg {
  width: 20px;
  height: 20px;
}

.map-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 360px;
  display: block;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.55) contrast(1.05) brightness(0.82);
  pointer-events: none;
}

.map-card__hit {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
}

.map-card__overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(11, 11, 12, 0.82);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 110px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo img {
  width: 92px;
  height: 92px;
}

.footer__copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__socials a {
  color: var(--gold-soft);
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2bb673, #128c4b);
  color: #fff;
  box-shadow: 0 12px 30px rgba(18, 140, 75, 0.4);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  transform: scale(1.06);
}

@media (max-width: 960px) {
  .plans__grid,
  .booking__panel,
  .location__grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    display: grid;
    text-align: center;
    justify-items: center;
  }

  .booking__panel {
    padding: 32px 24px;
  }

  .booking__visual {
    order: -1;
  }
}

@media (max-width: 760px) {
  :root { --header: 72px; }

  .nav-toggle { display: block; }

  .nav {
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px 28px;
    background: rgba(11, 11, 12, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open { display: flex; }

  .logo img { height: 48px; }

  .hero__logo { width: min(560px, 92vw); }

  .hero__bg::before,
  .hero__bg::after { display: none; }

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

  .btn {
    width: 100%;
    max-width: 360px;
    min-height: 52px;
  }

  .nav .btn {
    width: auto;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .location__actions {
    flex-direction: column;
  }

  .location__actions .btn {
    max-width: none;
  }
}

@media (max-width: 1000px) {
  .logo .logo--full {
    display: none;
  }

  .logo .logo--mark {
    display: block;
    height: 56px;
  }
}

@media (min-width: 641px) and (max-width: 1099px) {
  .plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .plans__grid {
    grid-template-columns: 1fr;
  }

  .plan-card--vip {
    animation: none;
  }
}

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

  .plan-card--vip,
  .booking__ring,
  .scroll-hint span {
    animation: none !important;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
