:root {
  --beige: #F3EDE4;
  --beige-deep: #E8DFD2;
  --brown: #9A7B5F;
  --brown-soft: #B89A7E;
  --black: #3A3936;
  --black-muted: #5C5A56;
  --sage: #8A9A82;
  --sage-light: #A8B5A0;
  --white: #FDFBF7;
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --wide: min(94vw, 1280px);
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--black);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.wide { width: var(--wide); margin-inline: auto; }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s;
}
.header.scrolled {
  background: rgba(243, 237, 228, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(58, 57, 54, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 1400px;
  margin-inline: auto;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.02em;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.menu-btn span {
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu {
  display: none;
  position: fixed;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--beige);
}
.menu.open { display: flex; }
.menu a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black-muted);
}
.menu a:hover { color: var(--brown); }

.lang-btn {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.45rem 1rem;
  border: 1px solid var(--sage);
  color: var(--sage);
  border-radius: 999px;
}
.lang-btn:hover { background: var(--sage); color: var(--white); }

/* Intro */
.intro {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  padding-top: var(--nav-h);
}

.intro-media img {
  width: 100%;
  height: clamp(340px, 50vh, 520px);
  object-fit: cover;
}

.intro-body {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 10vh, 6rem);
  max-width: 720px;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.intro h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.intro-lead {
  font-size: 1.125rem;
  color: var(--black-muted);
  margin-bottom: 2rem;
  max-width: 38ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}
.btn-wa:hover { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* Sections */
.section { padding-block: clamp(4rem, 12vh, 8rem); }

.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
  max-width: 18ch;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--black-muted);
  max-width: 52ch;
}

.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
}
.label.light { color: var(--beige); }

/* Rooms */
.rooms { background: var(--beige-deep); overflow: hidden; }
.rooms-scroll {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-inline: clamp(1rem, 3vw, 3rem);
  padding-bottom: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.rooms-scroll::-webkit-scrollbar { height: 6px; }
.rooms-scroll::-webkit-scrollbar-thumb { background: var(--sage-light); border-radius: 3px; }

.room-card {
  flex: 0 0 min(88vw, 420px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
}
.room-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.room-cap { padding: 1.5rem 1.75rem 2rem; }
.room-cap h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.room-cap p { font-size: 0.95rem; color: var(--black-muted); }

/* Before / After */
.concept { background: var(--beige); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.ba-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.ba-card img {
  width: 100%;
  height: clamp(260px, 40vh, 400px);
  object-fit: cover;
}
.ba-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  background: rgba(58, 57, 54, 0.75);
  color: var(--beige);
}
.ba-after .ba-tag { background: var(--sage); }

.concept-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.concept-points li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black-muted);
}
.concept-points li::before {
  content: "✓ ";
  color: var(--sage);
}

/* Furniture */
.furniture { background: var(--white); }
.furniture-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.furniture-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0.5rem 0 1.25rem;
}
.furniture-text p {
  margin-bottom: 1rem;
  color: var(--black-muted);
  max-width: 48ch;
}
.furniture-img img {
  width: 100%;
  height: clamp(360px, 50vh, 520px);
  object-fit: cover;
  border-radius: 4px;
}

/* Lighting */
.lighting { padding: 0; }
.lighting-banner {
  position: relative;
  min-height: clamp(380px, 55vh, 520px);
}
.lighting-banner > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.lighting-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(58, 57, 54, 0.7) 0%, rgba(58, 57, 54, 0.25) 60%, transparent 100%);
}
.lighting-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 560px;
}
.lighting-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  margin: 0.5rem 0 1rem;
}
.lighting-copy p {
  color: var(--beige);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Packages */
.packages { background: var(--beige-deep); }
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.pkg-card {
  padding: 2rem 2rem 2.25rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pkg-card:hover { border-color: var(--sage-light); }
.pkg-card.featured {
  border-color: var(--sage);
  box-shadow: 0 8px 32px rgba(138, 154, 130, 0.15);
}
.pkg-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage);
  padding: 0.3rem 0.65rem;
  margin-bottom: 1rem;
}
.pkg-card h3 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.pkg-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1.25rem;
}
.pkg-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pkg-card li {
  font-size: 0.95rem;
  color: var(--black-muted);
  padding-left: 1.25rem;
  position: relative;
}
.pkg-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--sage-light);
  border-radius: 50%;
}

/* FAQ */
.faq { background: var(--beige); }
.faq-layout {
  display: grid;
  gap: 2.5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-list details {
  background: var(--white);
  border-radius: 4px;
  padding: 0.25rem 1.5rem;
  border: 1px solid rgba(154, 123, 95, 0.12);
}
.faq-list summary {
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--sage);
  flex-shrink: 0;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  padding-bottom: 1.25rem;
  color: var(--black-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* CTA */
.cta-wa {
  background: var(--black);
  color: var(--beige);
  text-align: center;
  padding-block: clamp(4rem, 12vh, 7rem);
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 20ch;
  margin-inline: auto;
}
.cta-inner p {
  color: var(--brown-soft);
  margin-bottom: 2rem;
  max-width: 40ch;
  margin-inline: auto;
}

/* Footer */
.footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--black-muted);
  background: var(--beige-deep);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* Desktop */
@media (min-width: 768px) {
  .menu-btn { display: none; }
  .menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    background: none;
    inset: auto;
  }
  .lang-btn { margin-top: 0; }

  .intro {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }
  .intro-media img { height: 100%; min-height: calc(100svh - var(--nav-h)); }
  .intro-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(2rem, 4vw, 3rem);
  }

  .room-card { flex: 0 0 380px; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .furniture-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

@media (min-width: 1100px) {
  .room-card { flex: 0 0 400px; }
  .room-card img { height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
