:root {
  --paper: #faf7f0;
  --ink: #1c1b18;
  --muted: #716a5f;
  --line: rgba(28, 27, 24, 0.14);
  --wood: #a68966;
  --moss: #5b634f;
  --gold: #c5a059;
  --cream: #ede5da;
  --shadow: 0 28px 80px rgba(38, 29, 17, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-size: 16px;
}

body.theme-immersive {
  --paper: #0b0a08;
  --ink: #faf7f0;
  --muted: #c9bca9;
  --line: rgba(250, 247, 240, 0.16);
  --cream: #171410;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 5vw;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(22px);
}

.brand,
.section-heading h2,
.hero-copy h1,
.booking-panel h2,
.concept-card h3 {
  font-family: "Playfair Display", serif;
}

.brand {
  font-size: 25px;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.nav-links a,
.eyebrow,
.nav-cta,
.lang-toggle,
.variant-switcher a,
.booking-grid span,
label span,
figcaption,
.fact-row span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--wood);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta,
.lang-toggle,
.variant-switcher a,
.hero-actions a,
.booking-grid a,
.contact-link {
  border: 1px solid var(--line);
  padding: 12px 16px;
  background: color-mix(in srgb, var(--paper) 70%, transparent);
}

.nav-cta,
.hero-actions a:first-child,
.booking-grid a,
.contact-link {
  background: var(--ink);
  color: var(--paper);
}

.variant-switcher {
  display: flex;
  border: 1px solid var(--line);
}

.variant-switcher a {
  border: 0;
  border-right: 1px solid var(--line);
}

.variant-switcher a:last-child {
  border-right: 0;
}

.variant-switcher a.active {
  background: var(--wood);
  color: #fff;
}

.lang-toggle {
  color: var(--ink);
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 160px 5vw 90px;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.5));
}

.theme-editorial .hero {
  align-items: end;
  justify-items: start;
}

.theme-editorial .hero-shade {
  background: linear-gradient(180deg, rgba(250, 247, 240, 0.18), rgba(0, 0, 0, 0.72));
}

.theme-immersive .hero-shade {
  background: radial-gradient(circle at 50% 42%, rgba(91, 99, 79, 0.22), rgba(0, 0, 0, 0.72));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  text-align: center;
  color: #fff;
}

.theme-editorial .hero-copy {
  text-align: left;
  margin-right: auto;
}

.hero-copy h1 {
  margin: 18px 0 22px;
  font-size: clamp(58px, 11vw, 132px);
  line-height: 0.94;
  letter-spacing: 0;
}

.theme-warm .hero-copy h1 {
  font-size: clamp(56px, 8vw, 104px);
}

.hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

.theme-editorial .hero-copy p:not(.eyebrow) {
  margin-left: 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.theme-editorial .hero-actions {
  justify-content: flex-start;
}

.hero-actions a {
  min-width: 190px;
  text-align: center;
}

.hero-actions a:last-child {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.concept-card {
  position: absolute;
  right: 5vw;
  bottom: 46px;
  z-index: 3;
  width: min(330px, 90vw);
  padding: 28px;
  background: rgba(250, 247, 240, 0.84);
  color: #1c1b18;
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.concept-card h3 {
  margin: 10px 0;
  font-size: 28px;
}

.concept-card span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--wood);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.eyebrow {
  color: var(--wood);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.booking-panel,
.split-section,
.card-section,
.experience-panel,
.gallery-section,
.journal-section,
.contact-section,
footer {
  width: min(1480px, calc(100% - 10vw));
  margin: 0 auto;
}

.booking-panel {
  margin-top: -58px;
  position: relative;
  z-index: 5;
  padding: 32px;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.booking-panel h2 {
  margin: 0 0 24px;
  font-size: 30px;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: end;
}

label {
  display: grid;
  gap: 10px;
}

input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 12px 0;
  font: inherit;
}

.booking-grid a {
  text-align: center;
  padding: 17px 20px;
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(8vw, 110px);
  align-items: center;
  padding: 130px 0;
}

.section-heading h2 {
  margin: 14px 0 24px;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

blockquote {
  margin: 38px 0;
  padding-left: 24px;
  border-left: 2px solid var(--wood);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 25px;
  color: color-mix(in srgb, var(--ink) 80%, var(--wood));
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fact-row span {
  border: 1px solid var(--line);
  padding: 10px 14px;
  color: var(--muted);
}

.image-stack {
  margin: 0;
  position: relative;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-stack figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 13px 16px;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.immersive-band {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.immersive-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.immersive-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.immersive-band div {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(920px, calc(100% - 10vw));
}

.immersive-band h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1;
  margin: 14px 0 0;
}

.card-section,
.experience-panel,
.gallery-section,
.journal-section {
  padding: 125px 0;
}

.feature-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 58px;
}

.feature-grid article,
.journal-grid article,
.experience-list article {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--cream) 46%, transparent);
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.feature-grid h3,
.journal-grid h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 24px 24px 10px;
}

.feature-grid p,
.journal-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 24px 28px;
}

.soft-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  gap: 14px;
}

.soft-list li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 14px;
  color: var(--muted);
}

.experience-panel {
  background: color-mix(in srgb, var(--moss) 10%, transparent);
  width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.experience-list article {
  padding: 28px;
  min-height: 180px;
}

.experience-list span,
.journal-grid span {
  color: var(--wood);
  font-family: "Playfair Display", serif;
  font-size: 38px;
}

.experience-list p {
  color: var(--ink);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 50px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(8) {
  grid-column: span 2;
  height: 532px;
}

.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(10) {
  grid-column: span 2;
}

.journal-grid article {
  padding: 32px;
}

.contact-section {
  padding-bottom: 150px;
}

.contact-link {
  display: inline-flex;
  margin-top: 24px;
}

.contact-section form {
  border: 1px solid var(--line);
  padding: 34px;
  display: grid;
  gap: 24px;
  background: color-mix(in srgb, var(--cream) 42%, transparent);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 30px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.theme-editorial .site-nav,
.theme-editorial .booking-panel,
.theme-editorial .feature-grid article,
.theme-editorial .journal-grid article,
.theme-editorial .experience-list article {
  border-radius: 0;
}

.theme-editorial .section-heading h2,
.theme-editorial .hero-copy h1 {
  font-weight: 400;
}

.theme-immersive .site-nav {
  background: rgba(11, 10, 8, 0.76);
}

.theme-immersive .booking-panel,
.theme-immersive .feature-grid article,
.theme-immersive .journal-grid article,
.theme-immersive .experience-list article,
.theme-immersive .contact-section form {
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 70%, transparent);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 20px;
  right: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
}

.mobile-menu nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.mobile-menu-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
}

.mobile-variants {
  display: flex;
}

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.1);
  }
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .booking-grid,
  .split-section,
  .contact-section,
  .feature-grid,
  .journal-grid,
  .experience-list {
    grid-template-columns: 1fr;
  }

  .concept-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .hero {
    place-items: end center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(8),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(10) {
    grid-column: span 1;
    height: 260px;
  }
}

@media (max-width: 720px) {
  .site-nav {
    padding: 16px 20px;
  }

  .brand {
    font-size: 20px;
  }

  .nav-cta,
  .nav-actions > .variant-switcher {
    display: none;
  }

  .hero {
    padding: 120px 24px 48px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .booking-panel,
  .split-section,
  .card-section,
  .gallery-section,
  .journal-section,
  .contact-section,
  footer {
    width: calc(100% - 40px);
  }

  .section-heading h2 {
    font-size: 38px;
  }

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

  footer {
    flex-direction: column;
  }
}
