:root {
  --red: #c8102e;
  --red-deep: #8b0c20;
  --ink: #0c0b0a;
  --ink-soft: #1a1614;
  --paper: #f4efe6;
  --cream: #faf6ef;
  --sand: #e8dcc8;
  --teal: #1c6b6b;
  --teal-bright: #2a9d8f;
  --gold: #c9a227;
  --muted: #8a7f72;
  --line: rgba(244, 239, 230, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --max: 1180px;
  --nav-h: 78px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, .btn { font-family: inherit; cursor: pointer; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(12, 11, 10, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600; letter-spacing: 0.04em;
  font-size: 0.92rem;
}
.brand-name span { display: block; font-family: "Outfit"; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--muted); font-weight: 500; }
.nav-links { display: flex; gap: 22px; align-items: center; font-size: 0.86rem; letter-spacing: 0.04em; }
.nav-links a { color: var(--sand); opacity: 0.85; }
.nav-links a:hover, .nav-links a.active { color: #fff; opacity: 1; }
.nav-cta { display: flex; gap: 10px; }
.menu-btn {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--paper); padding: 8px 12px; border-radius: 999px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; border: 1px solid transparent;
  font-size: 0.86rem; font-weight: 560; letter-spacing: 0.04em;
  transition: 0.2s ease;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); }
.btn-ghost { background: transparent; border-color: rgba(244,239,230,.28); color: var(--paper); }
.btn-ghost:hover { border-color: #fff; }
.btn-green { background: #25d366; color: #06210e; font-weight: 700; }
.btn-green:hover { filter: brightness(1.05); }
.btn-cream { background: var(--paper); color: var(--ink); }
.btn-lg { padding: 15px 24px; font-size: 0.95rem; }

/* NOW SHOWING TICKER */
.ticker {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.ticker-track {
  display: inline-block;
  padding: 9px 0;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - 34px);
  display: grid; align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,11,10,.18) 0%, rgba(12,11,10,.28) 40%, rgba(12,11,10,.88) 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  padding: 0 0 72px;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(200,16,46,.22); animation: pulse 1.6s ease infinite; }
@keyframes pulse {
  50% { box-shadow: 0 0 0 10px rgba(200,16,46,0); }
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 560; line-height: 1.08; }
h1 { font-size: clamp(3rem, 8vw, 6.4rem); letter-spacing: -0.03em; max-width: 14ch; }
.hero p.lede { max-width: 38ch; margin: 18px 0 28px; font-size: 1.12rem; color: var(--sand); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 28px;
  font-size: 0.82rem; color: var(--sand); letter-spacing: 0.04em;
}
.hero-meta b { display: block; color: #fff; font-size: 1rem; font-weight: 600; }

/* SECTIONS */
section { padding: 92px 0; }
.sec-head { max-width: 640px; margin-bottom: 42px; }
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.sec-head p { margin-top: 14px; color: var(--sand); }

.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.card img { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 22px; }
.card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.card p { color: var(--sand); font-size: 0.95rem; }
.tag {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}

.featured {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 0;
  border-radius: 28px; overflow: hidden; border: 1px solid var(--line);
  background: #140f0e;
}
.featured img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.featured-copy { padding: 48px 42px; display: flex; flex-direction: column; justify-content: center; }
.featured-copy h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.featured-copy p { margin: 16px 0 26px; color: var(--sand); }

.split-photo {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 420px;
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  padding: 22px 18px;
  border-top: 1px solid var(--line);
}
.stat b { display: block; font-family: "Fraunces", serif; font-size: 1.7rem; }
.stat span { color: var(--muted); font-size: 0.82rem; }

.panel {
  background: linear-gradient(180deg, #171210, #100d0c);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
}

/* VISIT */
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price {
  background: var(--ink-soft); border: 1px solid var(--line); border-radius: 20px; padding: 24px;
}
.price .amt { font-family: "Fraunces", serif; font-size: 2.2rem; }
.price .amt small { font-size: 0.9rem; color: var(--muted); }
.list { list-style: none; margin-top: 16px; }
.list li { padding: 8px 0 8px 18px; position: relative; color: var(--sand); }
.list li::before { content: ""; position: absolute; left: 0; top: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* PAGE HERO */
.page-hero {
  padding: 72px 0 40px;
  background:
    linear-gradient(180deg, rgba(12,11,10,.35), rgba(12,11,10,.92)),
    var(--hero, #1a1614) center/cover no-repeat;
}
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); }

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  color: var(--sand);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 36px; }
footer h4 { color: #fff; font-family: "Outfit"; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.72rem; margin-bottom: 12px; }
footer a { display: block; padding: 4px 0; color: var(--sand); }
footer a:hover { color: #fff; }
.legal { font-size: 0.75rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; }

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  background: #25d366; color: #06210e; font-weight: 700;
  padding: 12px 16px; border-radius: 999px; box-shadow: var(--shadow);
}

.doors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.door {
  display: block;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #14110f;
  min-height: 150px;
}
.door:hover { border-color: rgba(200,16,46,.55); }
.door small {
  display: block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.door strong { display: block; font-size: 1.15rem; margin-bottom: 6px; }
.door p { color: var(--sand); font-size: 0.88rem; }

.map-art {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #1a1614;
  box-shadow: var(--shadow);
}
.map-art img { width: 100%; height: auto; }

.map-frame {
  border: 0;
  width: 100%;
  min-height: 420px;
  border-radius: 22px;
  filter: grayscale(0.15) contrast(1.05);
}
#live-map {
  height: min(72vh, 640px);
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #1a1614;
  box-shadow: var(--shadow);
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: #1a1614;
  color: #f4efe6;
  border: 1px solid rgba(244,239,230,.16);
}
.leaflet-popup-content { margin: 12px 14px; font-family: Outfit, sans-serif; }
.leaflet-popup-content a { color: #c8102e; font-weight: 600; }
.pin-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: #c8102e; border: 2px solid #f4efe6;
  box-shadow: 0 0 0 6px rgba(200,16,46,.28);
}
.imap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #1a1614;
}
.imap img { width: 100%; height: auto; display: block; }
.hotspot {
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #f4efe6;
  background: #c8102e;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(200,16,46,.45);
  animation: ping 2.2s ease-out infinite;
}
.hotspot:focus { outline: 2px solid #c9a227; outline-offset: 3px; }
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(200,16,46,.5); }
  70% { box-shadow: 0 0 0 14px rgba(200,16,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,16,46,0); }
}
.map-panel {
  background: #1a1614;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  min-height: 220px;
}
.map-panel h3 { font-family: Fraunces, Georgia, serif; font-size: 1.6rem; margin: 6px 0 10px; }
.map-panel p { color: var(--sand); }
.map-keys { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.map-keys button {
  background: transparent; color: var(--sand);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 12px; font-size: 0.78rem; letter-spacing: .04em;
}
.map-keys button.on, .map-keys button:hover { border-color: var(--red); color: #fff; }

.route {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.route b { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.08em; }

.ext-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.form { display: grid; gap: 14px; }
.form label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.form input, .form select, .form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px;
  border-radius: 12px; border: 1px solid var(--line);
  background: #0e0c0b; color: var(--paper); font: inherit;
}
.form textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 920px) { .form-row { grid-template-columns: 1fr; } }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #140f0e; padding: 20px; border-bottom: 1px solid var(--line);
  }
  .menu-btn { display: inline-flex; }
  .grid-2, .featured, .grid-3, .grid-4, .stats, .price-row, .foot-grid, .doors {
    grid-template-columns: 1fr;
  }
  .featured img { min-height: 280px; }
  h1 { font-size: clamp(2.4rem, 12vw, 4rem); }
  section { padding: 64px 0; }
}


/* === 10/10 layer === */
:root {
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
body { -webkit-font-smoothing: antialiased; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.skip {
  position: absolute; left: 12px; top: -48px; z-index: 80;
  background: var(--paper); color: var(--ink);
  padding: 10px 14px; border-radius: 999px; font-weight: 600;
}
.skip:focus { top: 12px; }
.nav {
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
}
.nav-links { gap: 4px; }
.nav-links > a, .drop > summary {
  padding: 8px 10px; border-radius: 999px; list-style: none; cursor: pointer;
}
.nav-links > a:hover, .drop > summary:hover { background: rgba(255,255,255,0.05); }
.drop { position: relative; }
.drop summary::-webkit-details-marker { display: none; }
.drop-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 220px; background: #161311;
  border: 1px solid rgba(246,241,232,0.2);
  border-radius: 16px; padding: 8px; box-shadow: var(--shadow);
  display: grid; z-index: 20;
}
.drop-menu a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--sand); font-size: 0.84rem; }
.drop-menu a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.btn { transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, filter 0.2s ease; }
.btn:hover { transform: translateY(-1px); }
.ticker { background: linear-gradient(90deg, var(--red-deep), var(--red) 40%, #e11d3a); }
.hero-media { transform: scale(1.04); animation: ken 22s ease-in-out infinite alternate; }
@keyframes ken {
  from { transform: scale(1.04); }
  to { transform: scale(1.1) translate3d(-1.2%, -1%, 0); }
}
.card { transition: transform 0.35s var(--ease), border-color 0.25s ease, box-shadow 0.35s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.door { transition: border-color 0.2s ease, transform 0.25s var(--ease); }
.door:hover { transform: translateY(-3px); }
.faq { display: grid; gap: 10px; }
.faq details { background: var(--ink-soft); border: 1px solid var(--line); border-radius: 16px; padding: 4px 18px; }
.faq summary { cursor: pointer; padding: 16px 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-weight: 500; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--sand); padding: 0 0 16px; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.step .n { font-family: Fraunces, serif; color: var(--gold); font-size: 1.4rem; }
.gallery { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 10px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.gallery img:first-child { grid-row: 1 / span 2; }
.crumbs { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; letter-spacing: 0.04em; }
.crumbs a { color: var(--sand); }
.hero-meta { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); max-width: 760px; }
@media (max-width: 920px) {
  .drop-menu { position: static; box-shadow: none; border: 0; background: transparent; padding: 0 0 0 10px; }
  .hero-meta, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-template-rows: none; }
  .gallery img:first-child { grid-row: auto; min-height: 240px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track, .hero-media, .hotspot, .kicker .dot { animation: none !important; }
  .hero-media { transform: none; }
}
