:root {
  --ink: #171a18;
  --forest: #173b33;
  --forest-deep: #0f2b25;
  --cream: #f1ede4;
  --paper: #f8f5ee;
  --clay: #d66f43;
  --ochre: #d9a728;
  --sage: #aec1a9;
  --line: rgba(23, 26, 24, 0.18);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--clay);
  color: #fff;
}

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

button,
input,
select {
  font: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 0 4vw;
  color: var(--cream);
  background: rgba(15, 43, 37, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: background 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(15, 43, 37, 0.96);
}

.brand {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 31px;
  font-style: italic;
  letter-spacing: -1.5px;
}

.brand-sub {
  margin-top: 3px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right 0.25s ease;
}

.site-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
}

.language-switch button {
  width: 32px;
  height: 26px;
  color: rgba(255, 255, 255, 0.65);
  border: 0;
  border-radius: 99px;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--forest-deep);
  background: var(--cream);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 39px;
  padding: 0 18px;
  font-size: 11px;
}

.button-light {
  color: var(--forest-deep);
  background: var(--cream);
}

.button-dark {
  color: var(--cream);
  background: var(--ink);
}

.button-outline {
  border-color: var(--line);
}

.button-outline:hover {
  color: var(--cream);
  background: var(--forest);
}

.button-clay {
  width: 100%;
  color: #fff;
  background: var(--clay);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 20px;
  color: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 48px;
  padding: calc(var(--header-height) + 42px) 4vw 42px;
  color: var(--cream);
  background:
    radial-gradient(circle at 25% 22%, rgba(214, 111, 67, 0.22), transparent 27%),
    linear-gradient(125deg, var(--forest-deep), var(--forest));
}

.hero-copy {
  align-self: center;
  padding: 40px 0 18px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(72px, 7.2vw, 132px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero-intro {
  max-width: 520px;
  margin: 38px 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 400;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 26px 26px 160px 26px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9, 20, 17, 0.52));
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--header-height) - 84px);
  object-fit: cover;
}

.availability-card,
.price-tag {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
}

.availability-card {
  top: 24px;
  right: 24px;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 99px;
  background: rgba(245, 240, 230, 0.84);
  color: var(--ink);
}

.availability-card > div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.availability-card span,
.availability-card strong {
  font-size: 10px;
}

.availability-card strong {
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35a36e;
  box-shadow: 0 0 0 5px rgba(53, 163, 110, 0.16);
}

.price-tag {
  left: 24px;
  bottom: 24px;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(15, 43, 37, 0.76);
}

.price-tag span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-tag strong {
  margin: 1px 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.ticker {
  overflow: hidden;
  padding: 17px 0;
  color: var(--cream);
  background: var(--clay);
}

.ticker > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.ticker i {
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding: 120px 6vw;
}

.section-index {
  position: absolute;
  top: 36px;
  left: 3vw;
  font-family: var(--serif);
  font-size: 14px;
}

.manifesto {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 8vw;
  background: var(--paper);
}

.manifesto-title {
  font-size: clamp(92px, 13vw, 230px);
  font-weight: 500;
  line-height: 0.71;
  letter-spacing: -0.085em;
}

.manifesto-title span,
.manifesto-title strong {
  display: block;
}

.manifesto-title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.manifesto-title strong {
  color: var(--clay);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.manifesto-copy h2,
.section-heading h2,
.pricing-heading h2,
.location-copy h2,
.visit-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 86px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.manifesto-copy > p:not(.eyebrow),
.section-heading > p,
.pricing-heading > p:not(.eyebrow),
.location-copy > p:not(.eyebrow),
.visit-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: rgba(23, 26, 24, 0.68);
  font-size: 17px;
  line-height: 1.65;
}

.concept-list {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.concept-list span {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.concept-list b {
  color: var(--clay);
  font-family: var(--serif);
  font-weight: 400;
}

.concept-list i {
  font-style: normal;
  font-weight: 500;
}

.rooms {
  color: var(--cream);
  background: var(--forest-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 9vw;
  margin-bottom: 70px;
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading > p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.62);
}

.room-showcase {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: 630px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  overflow: hidden;
}

.room-image-wrap {
  position: relative;
  min-height: 520px;
}

.room-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(15, 43, 37, 0.28));
}

.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-note {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 99px;
  color: var(--ink);
  background: rgba(248, 245, 238, 0.8);
  backdrop-filter: blur(10px);
  font-size: 9px;
  text-transform: uppercase;
}

.room-selector {
  display: flex;
  flex-direction: column;
}

.room-tab {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 8px 18px;
  padding: 26px 30px;
  color: rgba(255, 255, 255, 0.58);
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.room-tab:last-child {
  border-bottom: 0;
}

.room-tab:hover,
.room-tab.is-active {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.room-tab.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--clay);
}

.room-number {
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-size: 18px;
}

.room-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.room-tab strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.room-price {
  align-self: end;
  font-size: 16px;
}

.room-price small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.tab-arrow {
  grid-column: 3;
  grid-row: 1 / 3;
  font-size: 18px;
}

.room-detail {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr auto;
  align-items: center;
  gap: 52px;
  padding: 48px 0 0;
}

.room-detail h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.room-detail > p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.room-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.room-detail li::before {
  content: "—";
  margin-right: 8px;
  color: var(--clay);
}

.room-detail .button-outline {
  border-color: rgba(255, 255, 255, 0.25);
}

.life {
  padding-left: 0;
  padding-right: 0;
  background: var(--cream);
}

.life-image {
  position: relative;
  min-height: 80svh;
  overflow: hidden;
}

.life-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 24, 20, 0.72), rgba(10, 24, 20, 0.08) 68%);
}

.life-image img {
  width: 100%;
  height: 80svh;
  object-fit: cover;
}

.life-overlay {
  position: absolute;
  z-index: 2;
  left: 6vw;
  bottom: 11vh;
  max-width: 820px;
  color: var(--cream);
}

.life-overlay h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.life-overlay h2 span,
.life-overlay h2 em {
  display: block;
}

.life-overlay h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.85fr);
  margin: 0 6vw;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.amenity {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.amenity h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 41px;
  font-weight: 400;
}

.amenity p {
  max-width: 320px;
  margin: 0;
  color: rgba(23, 26, 24, 0.62);
  font-size: 13px;
}

.amenity-intro {
  grid-row: span 2;
  min-height: 600px;
  justify-content: center;
  padding-right: 8vw;
}

.amenity-intro h3 {
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.98;
}

.amenity-icon {
  margin-bottom: auto;
  font-size: 25px;
}

.amenity-green {
  color: var(--cream);
  background: var(--forest);
}

.amenity-green p,
.amenity-dark p {
  color: rgba(255, 255, 255, 0.66);
}

.amenity-clay {
  color: #fff;
  background: var(--clay);
}

.amenity-clay p {
  color: rgba(255, 255, 255, 0.72);
}

.amenity-cream {
  background: var(--paper);
}

.amenity-dark {
  color: var(--cream);
  background: var(--ink);
}

.pricing {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 10vw;
  background: var(--sage);
}

.pricing-heading {
  align-self: center;
}

.price-builder {
  padding: 34px 42px;
  color: var(--cream);
  border-radius: 22px;
  background: var(--forest-deep);
  box-shadow: 26px 26px 0 rgba(23, 59, 51, 0.12);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.price-row span {
  color: rgba(255, 255, 255, 0.68);
}

.price-row strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.price-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 18px;
}

.price-total span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-total strong {
  color: var(--ochre);
  font-family: var(--serif);
  font-size: clamp(70px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.72;
}

.price-note {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.location {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 8vw;
  background: var(--paper);
}

.travel-times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 42px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.travel-times div {
  display: flex;
  flex-direction: column;
}

.travel-times strong {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}

.travel-times span {
  color: rgba(23, 26, 24, 0.55);
  font-size: 9px;
  text-transform: uppercase;
}

.map-art {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 160px 20px 20px 20px;
  background: #dcd8cd;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 34px double rgba(23, 59, 51, 0.2);
}

.ring-one {
  width: 650px;
  height: 650px;
  right: -130px;
  top: -40px;
}

.ring-two {
  width: 350px;
  height: 350px;
  left: -130px;
  bottom: -170px;
}

.route {
  position: absolute;
  height: 8px;
  border: 2px solid var(--paper);
  border-radius: 99px;
  background: var(--clay);
  transform-origin: left center;
}

.route-one {
  width: 92%;
  left: 5%;
  top: 58%;
  transform: rotate(-15deg);
}

.route-two {
  width: 72%;
  left: 23%;
  top: 18%;
  transform: rotate(58deg);
  background: var(--forest);
}

.place {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.place span {
  width: 13px;
  height: 13px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 1px var(--forest);
}

.place-home {
  left: 42%;
  top: 47%;
  padding: 12px 15px;
  color: var(--cream);
  border-radius: 99px;
  background: var(--forest-deep);
}

.place-home span {
  background: var(--clay);
}

.place-ceria {
  right: 12%;
  top: 24%;
}

.place-ulb {
  right: 8%;
  bottom: 21%;
}

.map-label {
  position: absolute;
  color: rgba(23, 26, 24, 0.25);
  font-family: var(--serif);
  font-size: 52px;
  font-style: italic;
}

.label-brussels {
  top: 9%;
  left: 5%;
}

.label-ring {
  right: 2%;
  bottom: 5%;
  font-size: 30px;
}

.visit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 10vw;
  color: var(--cream);
  background: var(--forest);
}

.visit-copy h2 {
  max-width: 690px;
}

.visit-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.contact-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.contact-lines a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 13px;
}

.visit-form {
  padding: 44px;
  color: var(--ink);
  border-radius: 22px;
  background: var(--paper);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.visit-form label {
  display: block;
  margin-bottom: 20px;
}

.visit-form label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-form input,
.visit-form select {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: transparent;
}

.visit-form input:focus,
.visit-form select:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(214, 111, 67, 0.12);
}

.form-note {
  margin: 13px 0 0;
  color: rgba(23, 26, 24, 0.48);
  font-size: 9px;
  text-align: center;
}

.footer {
  padding: 80px 4vw 28px;
  color: var(--cream);
  background: var(--ink);
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-footer .brand-mark {
  font-size: clamp(70px, 10vw, 150px);
  letter-spacing: -0.065em;
}

.brand-footer .brand-sub {
  font-size: 10px;
}

.footer-top p {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
  line-height: 1;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding: 54px 0;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer-label {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-delay {
  transition-delay: 0.12s;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1180px) {
  .site-header {
    gap: 22px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .button-light {
    display: none;
  }

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero h1 {
    font-size: clamp(66px, 7vw, 100px);
  }

  .room-detail {
    grid-template-columns: 1fr 1.2fr;
  }

  .room-detail .button-outline {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 0 22px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 8vw;
    overflow-y: auto;
    color: var(--cream);
    background: var(--forest-deep);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: visibility 0s linear 0.25s, opacity 0.25s ease, transform 0.25s ease;
  }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 44px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: calc(var(--header-height) + 58px) 22px 26px;
  }

  .hero-copy {
    padding: 20px 0 0;
  }

  .hero h1 {
    font-size: clamp(67px, 17vw, 112px);
  }

  .hero-intro {
    max-width: 600px;
  }

  .hero-visual {
    height: 72svh;
    border-radius: 18px 18px 96px 18px;
  }

  .hero-visual > img {
    min-height: 0;
  }

  .section {
    padding: 90px 28px;
  }

  .manifesto,
  .pricing,
  .location,
  .visit {
    grid-template-columns: 1fr;
  }

  .manifesto {
    gap: 80px;
  }

  .manifesto-title {
    font-size: clamp(88px, 23vw, 160px);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .room-showcase {
    grid-template-columns: 1fr;
  }

  .room-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .room-tab {
    min-height: 180px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-content: start;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 0;
  }

  .room-tab:last-child {
    border-right: 0;
  }

  .room-number,
  .tab-arrow {
    grid-row: auto;
  }

  .tab-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
  }

  .room-price {
    margin-top: auto;
  }

  .room-detail {
    gap: 26px;
  }

  .amenity-grid {
    grid-template-columns: 1fr 1fr;
    margin: 0 28px;
  }

  .amenity-intro {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 380px;
  }

  .pricing,
  .location,
  .visit {
    gap: 70px;
  }

  .map-art {
    min-height: 500px;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    font-size: 26px;
  }

  .language-switch button {
    width: 29px;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 84px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    margin-top: 42px;
  }

  .hero-proof strong {
    font-size: 27px;
  }

  .hero-visual {
    height: 61svh;
  }

  .availability-card {
    top: 14px;
    right: 14px;
    max-width: calc(100% - 28px);
  }

  .price-tag {
    left: 14px;
    bottom: 14px;
  }

  .section {
    padding: 80px 20px;
  }

  .section-index {
    top: 22px;
    left: 20px;
  }

  .manifesto-title {
    font-size: 24vw;
  }

  .manifesto-copy h2,
  .section-heading h2,
  .pricing-heading h2,
  .location-copy h2,
  .visit-copy h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .room-showcase {
    min-height: 0;
  }

  .room-image-wrap {
    min-height: 390px;
  }

  .room-selector {
    grid-template-columns: 1fr;
  }

  .room-tab {
    min-height: 140px;
    grid-template-columns: 36px 1fr auto;
    grid-template-rows: auto auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .room-number {
    grid-row: 1 / 3;
  }

  .tab-arrow {
    position: static;
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .room-price {
    margin-top: 0;
  }

  .room-detail {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .life-image,
  .life-image img {
    height: 72svh;
    min-height: 600px;
  }

  .life-overlay {
    left: 20px;
    right: 20px;
    bottom: 60px;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }

  .amenity-intro {
    grid-column: auto;
    min-height: 360px;
  }

  .amenity {
    min-height: 250px;
  }

  .price-builder {
    padding: 24px;
  }

  .price-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .travel-times {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .map-art {
    min-height: 420px;
    border-radius: 92px 16px 16px 16px;
  }

  .place-home {
    left: 27%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .visit-form {
    padding: 28px 20px;
  }

  .footer {
    padding: 62px 20px 24px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 38px;
  }

  .footer-top p {
    text-align: left;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
