:root {
  --bg: #070a09;
  --bg-2: #0c1110;
  --panel: #101716;
  --panel-2: #151d1b;
  --green: #075844;
  --green-2: #0a7b5d;
  --gold: #d5ad58;
  --gold-2: #f1d08a;
  --text: #f7f5ef;
  --muted: #b7c0bc;
  --line: rgba(213, 173, 88, .24);
  --danger: #ff8d8d;
  --success: #8ce2bd;
  --shadow: 0 24px 70px rgba(0,0,0,.35);
  --radius: 22px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 12%, rgba(7,88,68,.18), transparent 28rem),
    radial-gradient(circle at 6% 55%, rgba(213,173,88,.08), transparent 32rem);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 9999; background: var(--gold); color: #111; padding: .7rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 1rem; }

.promo-bar { background: linear-gradient(90deg, #b78934, #f0cf82, #b78934); color: #15110a; font-weight: 800; font-size: .88rem; }
.promo-inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 16px; text-align: center; }
.promo-inner a { border-bottom: 1px solid currentColor; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(7,10,9,.76); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.06); transition: .25s ease; }
.site-header.scrolled { background: rgba(7,10,9,.94); box-shadow: 0 14px 45px rgba(0,0,0,.26); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .02em; white-space: nowrap; }
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 14px; }
.brand span { font-family: Georgia, "Times New Roman", serif; color: var(--gold-2); font-size: 1.07rem; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: .93rem; font-weight: 700; }
.main-nav > a:not(.nav-cta) { color: #d9dfdc; }
.main-nav > a:not(.nav-cta):hover { color: var(--gold-2); }
.nav-cta { background: var(--gold); color: #17120a; padding: 10px 17px; border-radius: 999px; box-shadow: 0 8px 24px rgba(213,173,88,.2); }
.lang-toggle { border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff; border-radius: 999px; padding: 7px 10px; font-weight: 800; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; background: var(--gold-2); margin: 5px 0; transition: .2s ease; }

.hero { min-height: 790px; position: relative; overflow: hidden; display: grid; align-items: center; border-bottom: 1px solid rgba(255,255,255,.05); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,7,6,.98) 0%, rgba(4,7,6,.9) 37%, rgba(4,7,6,.22) 75%), url('../img/hero.webp') center/cover no-repeat; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, var(--bg)); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr); gap: 70px; align-items: center; padding-block: 100px 120px; }
.hero-copy { max-width: 780px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-2); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.hero h1, .section-heading h2, .booking-info h2, .legal-card h1, .not-found h1 { font-family: Georgia, "Times New Roman", serif; line-height: 1.06; letter-spacing: -.035em; }
.hero h1 { margin: 20px 0 24px; font-size: clamp(3.3rem, 6.5vw, 6.8rem); max-width: 920px; }
.hero-copy > p { color: #d4d9d6; font-size: clamp(1.05rem, 1.5vw, 1.28rem); max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; border-radius: 999px; padding: 0 24px; border: 1px solid transparent; font-weight: 900; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #18120a; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 14px 34px rgba(213,173,88,.2); }
.btn-secondary { color: #fff; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.18); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 30px; }
.hero-points span { display: inline-flex; gap: 8px; align-items: center; color: #dce3df; font-size: .9rem; }
.hero-points i { display: grid; place-items: center; width: 21px; height: 21px; border: 1px solid var(--gold); color: var(--gold-2); border-radius: 50%; font-style: normal; font-size: .72rem; }
.hero-card { position: relative; max-width: 370px; justify-self: end; padding: 32px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(155deg, rgba(20,31,28,.94), rgba(7,12,11,.94)); box-shadow: var(--shadow); overflow: hidden; }
.hero-card::before { content:""; position:absolute; inset:-40% -30% auto auto; width:250px; height:250px; border-radius:50%; background:rgba(10,123,93,.18); filter:blur(20px); }
.hero-card-badge { position: absolute; right: 20px; top: 20px; padding: 6px 10px; background: var(--gold); color: #161109; border-radius: 999px; font-size: .74rem; font-weight: 900; }
.hero-card img { width: 170px; height: 170px; object-fit: contain; margin-bottom: 14px; }
.hero-card h2 { margin: 0 0 8px; font-family: Georgia,serif; font-size: 2rem; }
.hero-card p { color: var(--muted); }
.hero-card > a { display: inline-flex; margin-top: 8px; color: var(--gold-2); font-weight: 900; border-bottom: 1px solid var(--gold); }

.trust-strip { background: linear-gradient(90deg, #083c30, #0b5c48, #083c30); border-block: 1px solid rgba(213,173,88,.35); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid > div { padding: 24px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span, .trust-grid a { display: block; }
.trust-grid strong { color: var(--gold-2); font-size: .95rem; }
.trust-grid span, .trust-grid a { margin-top: 2px; font-size: .86rem; color: #e7eeea; }

.section { padding: 120px 0; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2, .booking-info h2 { margin: 15px 0 16px; font-size: clamp(2.4rem, 5vw, 4.7rem); }
.section-heading p, .booking-info > p { color: var(--muted); font-size: 1.07rem; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.split-heading p { margin: 0 0 10px; }

.services { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.package-card { position: relative; overflow: hidden; display: flex; flex-direction: column; background: linear-gradient(180deg, #151d1b, #0c1211); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.package-card.featured { border-color: rgba(213,173,88,.55); transform: translateY(-10px); }
.package-card.premium { background: linear-gradient(180deg, #08382e, #0a1714 55%); }
.featured-label { position: absolute; right: 16px; top: 16px; z-index: 2; padding: 5px 9px; border-radius: 999px; background: var(--gold); color: #18120a; font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.package-media { height: 220px; overflow: hidden; background: #090b0a; }
.package-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform .45s ease; }
.package-card:hover .package-media img { transform: scale(1.04); }
.package-content { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.package-number { color: var(--gold); font-size: .74rem; font-weight: 900; letter-spacing: .14em; }
.package-card h3 { font-family: Georgia,serif; font-size: 2rem; margin: 8px 0 12px; }
.package-card p { color: var(--muted); }
.package-card ul { list-style: none; padding: 0; margin: 18px 0 24px; }
.package-card li { position: relative; padding: 9px 0 9px 27px; border-bottom: 1px solid rgba(255,255,255,.07); color: #e6ece9; }
.package-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-2); font-weight: 900; }
.text-link { margin-top: auto; color: var(--gold-2); font-weight: 900; }
.text-link::after { content: " →"; }

.results { background: #080b0a; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 245px; gap: 16px; }
.gallery-grid figure { position: relative; margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.gallery-grid .gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:nth-child(4), .gallery-grid figure:nth-child(5) { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0; padding: 42px 18px 15px; background: linear-gradient(transparent,rgba(0,0,0,.82)); font-weight: 900; color: #fff; }

.process { background: linear-gradient(180deg, #0b1110, #07100d); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-grid article { padding: 28px; min-height: 250px; border-radius: 20px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
.process-grid article > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #151109; background: var(--gold); font-weight: 900; }
.process-grid h3 { font-family: Georgia,serif; font-size: 1.45rem; margin: 24px 0 10px; }
.process-grid p { color: var(--muted); margin: 0; }

.booking { position: relative; overflow: hidden; background: radial-gradient(circle at 10% 0%, rgba(10,123,93,.2), transparent 30rem), var(--bg); }
.booking-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 68px; align-items: start; }
.booking-info { position: sticky; top: 125px; }
.contact-list { margin-top: 34px; display: grid; gap: 12px; }
.contact-list a { display: flex; gap: 14px; align-items: center; padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.025); }
.contact-list a > span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; color: #171109; background: var(--gold); border-radius: 50%; font-size: 1.15rem; }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { color: var(--muted); }
.contact-list strong { color: var(--gold-2); }
.form-card { padding: 34px; background: linear-gradient(155deg, rgba(21,29,27,.98), rgba(10,16,14,.98)); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.form-row.three { grid-template-columns: repeat(3,1fr); }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 7px; color: #e5ebe8; font-size: .86rem; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: #0a100e; color: #fff; outline: none; transition: border-color .18s ease, box-shadow .18s ease; }
input, select { min-height: 50px; padding: 0 14px; }
textarea { resize: vertical; min-height: 112px; padding: 12px 14px; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(213,173,88,.12); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field-error { display: block; color: var(--danger); margin-top: 5px; font-size: .78rem; }
.consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .84rem; }
.consent input { width: 18px; min-height: 18px; margin-top: 3px; accent-color: var(--gold); }
.privacy-link { margin: 6px 0 18px 28px; font-size: .82rem; color: var(--gold-2); }
.submit-btn { width: 100%; border: 0; }
.submit-btn[disabled] { opacity: .65; cursor: not-allowed; transform: none; }
.form-status { min-height: 26px; margin-top: 14px; font-size: .9rem; font-weight: 800; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.honeypot { position: absolute!important; left: -9999px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }

.site-footer { border-top: 1px solid rgba(255,255,255,.08); background: #050706; }
.footer-grid { min-height: 170px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 68px; height: 68px; object-fit: contain; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: var(--gold-2); font-family: Georgia,serif; font-size: 1.2rem; }
.footer-brand span { color: var(--muted); font-size: .88rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: #d9e0dc; font-weight: 700; font-size: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #9fa9a4; font-size: .8rem; }
.afi-credit { color: var(--gold-2); font-weight: 800; text-align: right; }
.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 900; display: grid; gap: 10px; }
.floating-actions a { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; box-shadow: 0 12px 30px rgba(0,0,0,.32); font-size: 1.3rem; font-weight: 900; }
.float-call { background: var(--gold); color: #151109; }
.float-whatsapp { background: #1fbf75; color: #fff; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

.legal-page { background: #080b0a; }
.legal-header { position: relative; }
.legal-main { padding: 70px 0 100px; }
.legal-card { max-width: 900px; padding: 46px; border: 1px solid rgba(255,255,255,.08); border-radius: 24px; background: #101614; }
.legal-card h1 { font-size: 3rem; margin: 10px 0 20px; }
.legal-card h2 { color: var(--gold-2); margin-top: 30px; }
.legal-card p { color: #c9d0cc; }
.legal-card hr { border: 0; border-top: 1px solid var(--line); margin: 50px 0; }
.legal-back { min-height: 44px; }
.not-found { min-height: 100vh; padding: 40px; display: grid; place-content: center; text-align: center; justify-items: center; }
.not-found img { width: 220px; }
.not-found h1 { font-size: 4rem; margin: 12px 0; }
.not-found p { color: var(--muted); }

@media (max-width: 1050px) {
  .main-nav { gap: 16px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { justify-self: start; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .package-grid { grid-template-columns: 1fr 1fr; }
  .package-card.premium { grid-column: 1 / -1; }
  .package-card.featured { transform: none; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-info { position: static; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 116px 14px auto; display: none; padding: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(7,10,9,.98); box-shadow: var(--shadow); }
  .main-nav.open { display: grid; }
  .main-nav a, .main-nav button { width: 100%; text-align: left; }
  .nav-cta { text-align: center!important; }
  .hero { min-height: auto; }
  .hero-grid { padding-block: 80px 100px; gap: 38px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5.3rem); }
  .hero-card { max-width: 100%; }
  .section { padding: 88px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 8px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid .gallery-large { grid-column: span 2; }
  .gallery-grid figure:nth-child(4), .gallery-grid figure:nth-child(5) { grid-column: span 1; }
  .footer-grid { padding-block: 38px; align-items: flex-start; flex-direction: column; }
  .footer-bottom-inner { padding-block: 18px; align-items: flex-start; flex-direction: column; }
  .afi-credit { text-align: left; }
}

@media (max-width: 620px) {
  .promo-inner { min-height: 48px; font-size: .76rem; gap: 9px; }
  .brand span { display: none; }
  .nav-wrap { min-height: 66px; }
  .main-nav { inset-block-start: 116px; }
  .hero-bg { background-position: 64% center; }
  .hero-bg::before { content:""; position:absolute; inset:0; background:rgba(3,6,5,.42); }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .package-grid, .process-grid { grid-template-columns: 1fr; }
  .package-card.premium { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-grid .gallery-large, .gallery-grid figure:nth-child(4), .gallery-grid figure:nth-child(5) { grid-column: auto; grid-row: auto; }
  .form-card { padding: 22px; }
  .form-row, .form-row.three { grid-template-columns: 1fr; gap: 0; }
  .legal-card { padding: 26px; }
  .legal-card h1 { font-size: 2.2rem; }
  .floating-actions { right: 12px; bottom: 12px; }
  .floating-actions a { width: 47px; height: 47px; }
}

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