:root {
  --bg: #fbf8f3;
  --bg-alt: #f1ece2;
  --ink: #1b2a33;
  --ink-soft: #4b5a63;
  --muted: #7a8087;
  --line: #e4ddcd;
  --accent: #2a6f7a;
  --accent-dark: #1f5760;
  --sand: #c9a26a;
  --dark: #16242b;
  --white: #ffffff;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 12px rgba(20, 30, 40, .08);
  --shadow: 0 12px 40px rgba(20, 30, 40, .15);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-dark); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

/* Typography */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; color: var(--ink); margin: 0 0 .6em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1.15; }
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 .8em;
}
.eyebrow.light { color: #d6b681; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, .9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 24px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}
.brand-line { font-weight: 500; }
.brand-em { font-style: italic; color: var(--accent); }

.primary-nav { display: flex; gap: 26px; }
.primary-nav a {
  font-size: .92rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.primary-nav a:hover { color: var(--accent); }

.lang-switch { display: flex; gap: 4px; }
.lang-switch button {
  font: inherit;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 6px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
}
.lang-switch button:hover { border-color: var(--accent); color: var(--accent); }
.lang-switch button.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: .3s; }

/* Hero */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.55) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 80px 24px; }
.hero-title { color: #fff; font-style: italic; font-weight: 600; max-width: 11ch; }
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 50ch; color: rgba(255,255,255,.92); margin-bottom: 36px; }
.hero .eyebrow { color: #f3d29e; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font: inherit;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Section base */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #e5dccc; }
.section-dark h2 { color: #fff; }
.section-dark label > span { color: #d3cab9; }
.section-dark .muted { color: #b4a896; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Amenities */
.amenities-grid {
  list-style: none;
  margin: 50px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.amenities-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  transition: transform .2s, box-shadow .2s;
}
.amenities-grid li:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.amenities-grid .icon {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Gallery */
.gallery-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-grid figure:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }

/* Booking form */
.booking-form {
  margin-top: 40px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.booking-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-form label.full { margin-bottom: 18px; }
.booking-form label > span {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #d3cab9;
}
.booking-form input,
.booking-form textarea {
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: #fff;
  transition: border .2s, background .2s;
}
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--sand);
  background: rgba(255,255,255,.1);
}
.booking-form input::placeholder { color: #8a8270; }
.booking-form .consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: #b4a896;
  margin-top: 6px;
}
.booking-form .consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.form-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.form-note { font-size: .82rem; color: #b4a896; margin: 0; text-align: center; }
.form-feedback {
  margin: 16px 0 0;
  text-align: center;
  font-size: .92rem;
  min-height: 1.4em;
}
.form-feedback.success { color: #8acba0; }
.form-feedback.error { color: #e8a4a4; }

/* Contact */
.contact-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.contact-head .eyebrow { display: inline-block; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; }

.contact-list { list-style: none; padding: 0; margin: 0 0 28px; }
.contact-list li { display: flex; flex-direction: column; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list li:first-child { padding-top: 0; }
.contact-list strong {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-list a, .contact-list span { font-size: 1.05rem; font-weight: 500; color: var(--ink); }
.contact-list a:hover { color: var(--accent); }

.socials-label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 6px 0 14px;
}
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--ink);
  transition: all .25s;
}
.social:hover { color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.social-wa:hover      { background: #25d366; }
.social-mail:hover    { background: #d04a3b; }
.social-booking:hover { background: #003580; }
.social-ig:hover      { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-fb:hover      { background: #1877f2; }
.social-tt:hover      { background: #010101; }
.social-note { margin-top: 14px; }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
  background: var(--bg-alt);
}
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 380px; }

/* Amenity highlight (free extras) */
.amenities-grid li.highlight {
  border-color: var(--sand);
  background: linear-gradient(0deg, rgba(201, 162, 106, .08), rgba(201, 162, 106, .08)), #fff;
}
.amenities-grid li.highlight .icon { background: rgba(201, 162, 106, .18); color: var(--sand); }

/* Footer */
.site-footer {
  background: var(--bg-alt);
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer .brand-line { font-family: var(--serif); font-size: 1.3rem; margin: 0 0 4px; }
.site-footer em { color: var(--accent); }

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  background: rgba(10, 18, 22, .95);
  max-width: 100%;
  max-height: 100vh;
  width: 100%;
  height: 100%;
}
.lightbox::backdrop { background: rgba(10, 18, 22, .95); }
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 60px rgba(0,0,0,.6);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 0;
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Responsive */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .about-img img { aspect-ratio: 4/3; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid figure:nth-child(7n+1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
  .booking-form .row { grid-template-columns: 1fr; }
  .booking-form { padding: 24px; }
  .section { padding: 70px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .map-wrap, .map-wrap iframe { min-height: 320px; }
}
@media (max-width: 760px) {
  .primary-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 20px 24px; border-bottom: 1px solid var(--line); }
  .primary-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-wrap { padding: 14px 18px; }
  .lang-switch button { padding: 5px 8px; font-size: .72rem; }
  .hero { min-height: 80vh; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; text-align: center; }
}
