:root {
  --forest: #2D4A3E;
  --forest-deep: #1E3329;
  --stone: #5C534A;
  --stone-light: #8A8076;
  --sunset: #D4784A;
  --sunset-soft: rgba(212, 120, 74, 0.35);
  --linen: #F4EFE6;
  --linen-deep: #E8DFD2;
  --white: #FDFBF7;
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --wrap: min(92%, 1100px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--stone);
  background: var(--linen);
}

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(--sunset); outline-offset: 3px; }

.wrap { width: var(--wrap); margin-inline: auto; }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
.header.scrolled {
  background: rgba(244, 239, 230, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(45, 74, 62, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  max-width: 1400px;
  margin-inline: auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  z-index: 2;
}
.header:not(.scrolled) .logo { color: var(--linen); text-shadow: 0 1px 8px rgba(0,0,0,0.3); }

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 2;
}
.menu-btn span {
  width: 24px;
  height: 1.5px;
  background: var(--forest);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.header:not(.scrolled) .menu-btn span { background: var(--linen); }
.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); }

.nav-panel {
  display: none;
  position: fixed;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--linen);
}
.nav-panel.open { display: flex; }
.nav-panel a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}
.nav-panel a:hover { color: var(--sunset); }

.lang-btn {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border: 1px solid var(--forest);
  color: var(--forest);
}
.lang-btn:hover { background: var(--forest); color: var(--linen); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-parallax,
.cta-parallax {
  position: absolute;
  inset: -15% 0 0 0;
  will-change: transform;
}
.hero-parallax img,
.cta-parallax img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 51, 41, 0.25) 0%,
    rgba(30, 51, 41, 0.45) 50%,
    rgba(30, 51, 41, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 6vw, 4rem) clamp(3rem, 8vh, 5rem);
  max-width: 680px;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--linen);
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--linen-deep);
  margin-bottom: 2rem;
  max-width: 42ch;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--sunset);
  color: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--sunset-soft);
}
.btn-line {
  background: transparent;
  border: 1px solid var(--linen);
  color: var(--linen);
  margin-left: 0.75rem;
}
.btn-line:hover { background: rgba(255,255,255,0.12); }

/* Parallax wrap */
.parallax-wrap {
  overflow: hidden;
  will-change: transform;
}
.parallax-wrap img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  will-change: transform;
}

/* Sections */
.section { padding-block: clamp(4rem, 11vh, 7rem); }
.section-linen { background: var(--linen); }

.label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 0.75rem;
}
.label.light { color: var(--linen-deep); }
.label.center, .center { text-align: center; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--forest-deep);
  margin-bottom: 1.25rem;
}

/* Story */
.story {
  background: var(--forest-deep);
  color: var(--linen);
}
.story .label { color: var(--sunset); }
.story h2 { color: var(--linen); }
.story-inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 6vw, 4rem);
  text-align: center;
}
.story p { margin-bottom: 1.25rem; opacity: 0.92; }

/* Landscape */
.landscape { padding: 0; }
.landscape-visual {
  width: 100%;
  height: clamp(320px, 50vh, 520px);
  overflow: hidden;
}
.landscape-visual img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}
.landscape-text {
  padding-block: clamp(3rem, 8vh, 5rem);
  text-align: center;
}
.landscape-text p { max-width: 52ch; margin-inline: auto; }

/* Journey */
.journey-path {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--linen-deep);
}
.journey-path li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.5rem 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--linen-deep);
}
.journey-path span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sunset);
}
.journey-path h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.35rem;
}
.journey-path p { grid-column: 2; font-size: 0.95rem; }

/* Rooms */
.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.room-grid article {
  text-align: center;
}
.room-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.room-grid h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 0.35rem;
}
.room-grid p { font-size: 0.9rem; }

/* Pool */
.pool { padding: 0; background: var(--forest-deep); color: var(--linen); }
.pool-split {
  display: grid;
  grid-template-columns: 1fr;
}
.pool-img {
  min-height: clamp(280px, 45vh, 480px);
}
.pool-img img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}
.pool-text {
  padding: clamp(2.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pool-text h2 { color: var(--linen); }
.pool-text p { opacity: 0.9; max-width: 42ch; }

/* Sustain */
.sustain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.sustain-grid figure img {
  width: 100%;
  height: clamp(260px, 38vh, 360px);
  object-fit: cover;
  border-radius: 2px;
}
.sus-list {
  list-style: none;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.sus-list li {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-left: 3px solid var(--sunset);
}

/* Portfolio full width */
.portfolio { padding-bottom: 0; }
.port-full { width: 100%; }
.port-item {
  position: relative;
  overflow: hidden;
}
.port-item img {
  width: 100%;
  height: clamp(280px, 40vh, 420px);
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.port-item:hover img { transform: scale(1.04); }
.port-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(transparent, rgba(30, 51, 41, 0.88));
  color: var(--linen);
}
.port-cap h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 0.25rem;
}
.port-cap p { font-size: 0.9rem; opacity: 0.9; }

/* CTA */
.cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 51, 41, 0.65);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--linen);
  padding-block: 4rem;
}
.cta-content h2 {
  color: var(--linen);
  max-width: 22ch;
  margin-inline: auto;
}
.cta-content p {
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 48ch;
  margin-inline: auto;
}
.cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  background: var(--forest-deep);
  color: var(--linen-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; }

@media (min-width: 768px) {
  .menu-btn { display: none; }
  .nav-panel {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    background: none;
    inset: auto;
  }
  .header:not(.scrolled) .nav-panel a { color: var(--linen); }
  .lang-btn { margin-top: 0; }

  .room-grid { grid-template-columns: repeat(3, 1fr); }
  .pool-split { grid-template-columns: 1.2fr 1fr; }
  .sustain-grid { grid-template-columns: 1fr 1fr; }
  .sustain-grid figure { grid-row: span 2; }
  .journey-path { grid-template-columns: repeat(2, 1fr); gap: 2rem; border: none; }
  .journey-path li { border: none; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-parallax, .cta-parallax, .parallax-wrap { transform: none !important; }
  .port-item:hover img { transform: none; }
}
