:root {
  --navy: #071a33;
  --navy-soft: #0d294d;
  --navy-light: #163860;
  --gold: #c79a3b;
  --gold-light: #e1bd69;
  --cream: #f8f4eb;
  --sand: #eee7d9;
  --white: #ffffff;
  --ink: #13233a;
  --muted: #667085;
  --line: rgba(7, 26, 51, 0.14);
  --shadow: 0 20px 55px rgba(7, 26, 51, 0.15);
  --radius: 24px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(1140px, calc(100% - 36px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-tint { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--white); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid rgba(7, 26, 51, 0.08);
  backdrop-filter: none;
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; width: 92px; height: 78px; align-items: center; justify-content: center; flex: 0 0 auto; }
.brand img { width: auto; height: 74px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 0.93rem; font-weight: 650; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 11px 19px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy); transition: 0.25s ease; }

.hero {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 18, 36, 0.93) 0%, rgba(4, 18, 36, 0.76) 40%, rgba(4, 18, 36, 0.18) 75%, rgba(4, 18, 36, 0.1) 100%),
              linear-gradient(0deg, rgba(4, 18, 36, 0.45), transparent 40%);
}
.hero-content { position: relative; z-index: 1; padding-top: 110px; }
.eyebrow { margin: 0 0 13px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.76rem; font-weight: 800; }
.eyebrow.dark { color: #9a6e17; }
.hero h1, .section-heading h2, .location-content h2, .contact-panel h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3rem, 7vw, 5.6rem); }
.hero-copy { max-width: 590px; margin: 24px 0 30px; font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,.84); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--navy); box-shadow: 0 12px 30px rgba(199, 154, 59, 0.25); }
.button-primary:hover { background: var(--gold-light); }
.button-secondary { border-color: rgba(255,255,255,.58); color: var(--white); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-secondary:hover { background: rgba(255,255,255,.16); }
.button-dark { background: var(--navy); color: var(--white); }
.button-gold { background: var(--gold); color: var(--navy); }
.hero-points { margin: 52px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 24px 38px; color: rgba(255,255,255,.82); font-size: .92rem; }
.hero-points li { display: inline-flex; align-items: center; gap: 9px; }
.hero-points svg { width: 19px; height: 19px; fill: var(--gold-light); }

.intro-grid, .features-grid, .faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.section-heading h2, .location-content h2 { margin: 0; font-size: clamp(2.3rem, 5vw, 4rem); }
.section-heading > p:not(.eyebrow) { max-width: 650px; margin: 18px auto 0; color: var(--muted); }
.section-heading.centered { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.section-heading.light > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.intro-copy { font-size: 1.08rem; color: #465568; }
.intro-copy p:first-child { margin-top: 4px; }

.room-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.room-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 15px 40px rgba(7,26,51,.07); }
.image-button { position: relative; width: 100%; aspect-ratio: 4/3; border: 0; padding: 0; overflow: hidden; cursor: zoom-in; background: #ddd; }
.image-button::after, .gallery-item::after {
  content: '+';
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: 1.4rem;
  opacity: 0;
  transform: translateY(6px);
  transition: .25s ease;
}
.image-button:hover::after, .gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.image-button img, .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.image-button:hover img, .gallery-item:hover img { transform: scale(1.035); }
.room-body { padding: 25px 24px 27px; }
.room-label { margin: 0 0 5px; color: #9a6e17; font-size: .75rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.room-body h3, .feature-item h3 { margin: 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.room-body > p:not(.room-label) { margin: 10px 0 20px; color: var(--muted); }
.text-link { color: var(--navy); font-weight: 800; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.features-grid { align-items: center; }
.feature-list { border-top: 1px solid var(--line); }
.feature-item { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.feature-number { color: #a57a22; font-family: var(--serif); font-size: 1.15rem; }
.feature-item p { margin: 8px 0 0; color: var(--muted); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-rows: 220px; gap: 14px; }
.gallery-item { position: relative; border: 0; padding: 0; overflow: hidden; border-radius: 16px; cursor: zoom-in; background: #0f2b4d; }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.location-card { position: relative; overflow: hidden; min-height: 420px; display: grid; grid-template-columns: .95fr 1.05fr; background: var(--cream); border: 1px solid var(--line); border-radius: 32px; box-shadow: var(--shadow); }
.location-art { position: relative; min-height: 400px; display: grid; place-items: center; background: linear-gradient(135deg, #0b2342, #163a66); overflow: hidden; }
.location-art svg { position: relative; z-index: 2; width: 82px; fill: var(--gold-light); filter: drop-shadow(0 10px 24px rgba(0,0,0,.2)); }
.map-ring { position: absolute; border: 1px solid rgba(225,189,105,.27); border-radius: 50%; }
.ring-one { width: 280px; height: 280px; }
.ring-two { width: 470px; height: 470px; }
.location-content { padding: 60px; align-self: center; }
.location-content p:not(.eyebrow) { margin: 20px 0 28px; color: var(--muted); max-width: 520px; }
.location-address strong { color: var(--ink); font-size: 1.05rem; }
.location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.location-actions .button { gap: 10px; }
.location-actions .button svg { width: 20px; height: 20px; fill: currentColor; }
.location-whatsapp { color: var(--navy); font-weight: 800; }
.location-whatsapp span { display: inline-block; transition: transform .2s ease; }
.location-whatsapp:hover span { transform: translateX(4px); }

.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; list-style: none; cursor: pointer; padding: 24px 52px 24px 0; font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: 4px; top: 20px; font-family: var(--sans); font-size: 1.5rem; color: #9a6e17; transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: -4px 50px 24px 0; color: var(--muted); }

.contact { background: var(--white); }
.contact-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 54px 58px; border-radius: 28px; background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.contact-panel h2 { margin: 0; max-width: 700px; font-size: clamp(2.25rem, 5vw, 4.2rem); }
.contact-panel p:not(.eyebrow) { max-width: 650px; margin: 17px 0 0; color: rgba(255,255,255,.7); }
.contact-actions { display: flex; flex-direction: column; gap: 15px; align-items: center; min-width: 230px; }
.facebook-link { color: rgba(255,255,255,.8); font-weight: 700; font-size: .92rem; }

.social-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.social-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(225,189,105,.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.06);
  font-size: .9rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.social-link svg { width: 21px; height: 21px; flex: 0 0 auto; fill: currentColor; }
.social-link:not(.social-link-disabled):hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.13);
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.social-link-disabled { opacity: .48; cursor: default; }
.social-link-disabled small { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.7); }
.social-links-contact { justify-content: center; }
.social-links-footer { margin-top: 8px; }
.social-links-footer .social-link { width: 42px; min-height: 42px; padding: 0; border-radius: 50%; }

.site-footer { background: #041326; color: rgba(255,255,255,.68); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 70px; padding-bottom: 42px; }
.footer-brand img { width: 158px; height: auto; background: white; border-radius: 12px; padding: 7px; }
.footer-brand p { max-width: 300px; }
.footer-grid h2 { margin: 0 0 14px; color: var(--white); font-size: .84rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-phone { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.86); font-weight: 750; }
.footer-phone-primary { color: var(--gold-light); }
.contact-icon { width: 28px; height: 28px; display: inline-grid; place-items: center; border: 1px solid rgba(225,189,105,.35); border-radius: 50%; font-size: .66rem; font-weight: 900; }
.footer-location-link { color: var(--white); font-weight: 700; }
.footer-contact-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-contact-strip p { margin: 0; color: var(--gold-light); font-weight: 850; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.footer-contact-strip > div { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.footer-contact-strip a { color: var(--white); font-weight: 750; }
.footer-contact-strip a:hover { color: var(--gold-light); }
.footer-bottom { padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }
.footer-bottom p { margin: 0; }

.floating-contact { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; padding: 13px 17px; border-radius: 999px; background: #25d366; color: #062d18; font-size: .9rem; font-weight: 850; box-shadow: 0 12px 30px rgba(7,26,51,.27); transition: transform .2s ease, box-shadow .2s ease; }
.floating-contact:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(7,26,51,.32); }
.floating-contact svg { width: 19px; height: 19px; fill: currentColor; }

.lightbox { width: min(94vw, 1000px); max-height: 92vh; border: 0; padding: 0; border-radius: 18px; background: #09172a; box-shadow: 0 40px 100px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(0,0,0,.85); backdrop-filter: blur(6px); }
.lightbox img { width: 100%; max-height: 88vh; object-fit: contain; }
.lightbox-close { position: fixed; top: 18px; right: 22px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--white); color: var(--navy); font-size: 1.9rem; line-height: 1; cursor: pointer; box-shadow: 0 8px 22px rgba(0,0,0,.2); }

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

:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    height: calc(100dvh - 88px);
    padding: 34px 24px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    font-size: 1.25rem;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-cta { width: 100%; text-align: center; margin-top: 10px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 720px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,18,36,.94), rgba(4,18,36,.62)), linear-gradient(0deg, rgba(4,18,36,.45), transparent); }
  .room-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .image-button { aspect-ratio: 16/10; }
  .intro-grid, .features-grid, .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 240px; }
  .location-card { grid-template-columns: 1fr; }
  .location-art { min-height: 300px; }
  .contact-panel { align-items: flex-start; flex-direction: column; }
  .contact-actions { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, 1140px); }
  .section { padding: 68px 0; }
  .brand { width: 82px; height: 72px; }
  .brand img { height: 68px; }
  .hero { min-height: 760px; align-items: flex-end; }
  .hero-content { padding: 150px 0 52px; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .hero-media { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(4,18,36,.96) 8%, rgba(4,18,36,.72) 62%, rgba(4,18,36,.3) 100%); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-points { display: grid; gap: 13px; margin-top: 30px; }
  .section-heading h2, .location-content h2 { font-size: 2.45rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-large, .gallery-wide { grid-column: span 2; }
  .location-content { padding: 38px 26px 42px; }
  .contact-panel { padding: 38px 24px; }
  .contact-actions, .contact-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-contact-strip { align-items: flex-start; flex-direction: column; }
  .footer-contact-strip > div { flex-direction: column; gap: 10px; }
  .floating-contact { right: 14px; bottom: 14px; padding: 13px; }
  .floating-contact span { display: none; }
}

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

/* Brand and location refinements */
.brand { width: 128px; }
.brand img { width: 120px; height: auto; }
.footer-brand img { width: min(250px, 100%); }
.location-address {
  display: block;
  margin: 20px 0 28px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}
.location-address strong {
  display: inline-block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 1.08rem;
}

@media (max-width: 960px) {
  .brand { width: 116px; }
  .brand img { width: 108px; }
}
