:root {
  --black: #15110f;
  --cream: #f3eee7;
  --sand: #d8c3a5;
  --gold: #b69664;
  --wine: #4d1f2a;
  --white: #ffffff;
  --muted: #71675e;
  --line: rgba(21, 17, 15, 0.14);
  --shadow: 0 25px 80px rgba(22, 16, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: "Montserrat", sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 22px 6vw;
  color: var(--white);

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.58),
    transparent
  );

  transition:
    padding 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.topbar.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;

  background: rgba(21, 17, 15, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;

  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
}

.brand-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;

  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;

  height: 1px;

  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 10px;

  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;

  background: var(--white);
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;

  display: grid;
  place-items: center;

  padding: 130px 24px 90px;

  color: var(--white);
  text-align: center;

  background:
    linear-gradient(
      rgba(12, 8, 7, 0.35),
      rgba(12, 8, 7, 0.72)
    ),
    radial-gradient(
      circle at center,
      #6a4b3a 0%,
      #2a1d18 45%,
      #120d0b 100%
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 0 35%,
      rgba(255, 255, 255, 0.04) 35% 36%,
      transparent 36% 100%
    ),
    linear-gradient(
      25deg,
      transparent 0 62%,
      rgba(255, 255, 255, 0.03) 62% 63%,
      transparent 63% 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.eyebrow {
  margin-bottom: 24px;

  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
}

h1,
h2,
h3 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1;
}

h1 {
  font-size: clamp(5.2rem, 12vw, 10rem);
  letter-spacing: -0.04em;
}

.hero-sub {
  max-width: 760px;
  margin: 24px auto 36px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-style: italic;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  padding: 0 27px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.72);

  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.btn.primary {
  background: var(--white);
  color: var(--black);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;

  width: 28px;
  height: 46px;

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;

  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  top: 9px;
  left: 50%;

  width: 4px;
  height: 4px;

  background: var(--white);
  border-radius: 50%;

  transform: translateX(-50%);
  animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

.intro {
  padding: 120px 8vw;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}

.section-kicker {
  margin-bottom: 18px;

  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
}

.section-kicker.light {
  color: var(--sand);
}

.intro h2,
.spaces h2,
.experience h2,
.contact h2 {
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.intro p,
.experience p,
.contact p {
  margin: 0 0 16px;
  color: var(--muted);
}

.visual-placeholder,
.experience-visual {
  min-height: 560px;
  position: relative;
  overflow: hidden;

  display: grid;
  place-items: center;

  padding: 35px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.01)
    ),
    #2a211c;

  color: #e9ded2;
  text-align: center;

  box-shadow: var(--shadow);
}

.visual-placeholder::before,
.visual-placeholder::after,
.experience-visual::before,
.experience-visual::after {
  content: "";
  position: absolute;
  inset: 28px;

  border: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-placeholder::after,
.experience-visual::after {
  inset: 55px;
}

.placeholder-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.placeholder-title {
  display: block;
  margin-bottom: 10px;

  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
}

.placeholder-note {
  color: #bfb2a7;

  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature {
  padding: 42px 22px;

  text-align: center;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature strong {
  display: block;
  margin-bottom: 6px;

  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}

.feature span {
  color: var(--muted);

  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.spaces {
  padding: 120px 6vw;

  background: #1d1815;
  color: var(--white);
}

.spaces-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;

  margin-bottom: 50px;
}

.spaces-head p {
  max-width: 480px;
  margin: 0 0 12px;

  color: #c8bdb3;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.space-card {
  min-height: 560px;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: flex-end;

  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #2b211d;
}

.space-card.large {
  grid-column: 1 / -1;
  min-height: 520px;
}

.image-placeholder {
  position: absolute;
  inset: 0;

  display: grid;
  place-items: center;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.015)
    ),
    #2b211d;
}

.image-placeholder::before,
.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 30px;

  border: 1px solid rgba(255, 255, 255, 0.09);
}

.image-placeholder::after {
  inset: 58px;
}

.image-placeholder span {
  color: rgba(255, 255, 255, 0.24);

  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.space-info {
  position: relative;
  z-index: 2;
  width: 100%;

  padding: 34px;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.86),
    transparent
  );
}

.space-info h3 {
  margin-bottom: 10px;
  font-size: 3.3rem;
}

.space-info p {
  max-width: 650px;
  margin: 0;

  color: #ddd3ca;
}

.experience {
  min-height: 760px;

  display: grid;
  grid-template-columns: 1fr 1fr;
}

.experience-copy {
  padding: 100px 8vw;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-list {
  margin-top: 28px;

  display: grid;
  gap: 18px;
}

.experience-item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.experience-item strong {
  display: block;
  margin-bottom: 3px;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.experience-item span {
  color: var(--muted);
}

.contact {
  padding: 120px 7vw;

  background: var(--wine);
  color: var(--white);
  text-align: center;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 30px;

  color: #eadfe1;
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 30px;

  border-radius: 999px;

  background: #1f9d55;
  color: var(--white);

  font-weight: 600;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.legal-note {
  margin-top: 28px;

  color: #cdbfc2;
  font-size: 0.72rem;
}

footer {
  padding: 30px 6vw;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid var(--line);

  color: var(--muted);
  font-size: 0.74rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(35px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 35;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 34;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;

    background: rgba(21, 17, 15, 0.98);

    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    text-transform: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .intro,
  .experience {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .space-grid {
    grid-template-columns: 1fr;
  }

  .space-card.large {
    grid-column: auto;
  }

  .spaces-head {
    display: block;
  }

  .experience-visual {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 18px 20px;
  }

  .topbar.scrolled {
    padding: 12px 20px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    padding-inline: 18px;
  }

  .intro,
  .spaces,
  .contact {
    padding-left: 22px;
    padding-right: 22px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visual-placeholder,
  .space-card,
  .experience-visual {
    min-height: 460px;
  }

  .space-info h3 {
    font-size: 2.65rem;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}

.space-image,
.visual-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.visual-image{
    height:560px;
    overflow:hidden;
    border-radius:16px;
}

.space-card{
    position:relative;
    overflow:hidden;
}

.space-image{
    position:absolute;
    inset:0;
}

.space-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:5;

    padding:35px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15),
        transparent
    );
}
.space-image,
.visual-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.visual-image{
    height:560px;
    overflow:hidden;
    border-radius:16px;
}

.space-card{
    position:relative;
    overflow:hidden;
}

.space-image{
    position:absolute;
    inset:0;
}

.space-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:5;

    padding:35px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15),
        transparent
    );
}