:root {
  --bg: oklch(0.15 0.015 220);
  --ink: oklch(0.94 0.018 75);
  --muted: oklch(0.82 0.012 75);
  --focus: oklch(0.72 0.1 200);
  --line: oklch(0.94 0.018 75 / 0.68);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  -webkit-text-size-adjust: 100%;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--bg);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.scroll-story {
  min-height: calc(var(--desktop-scroll-screens, 4.5) * 100svh);
  background: var(--bg);
}

.hero {
  position: sticky;
  top: 0;
  display: grid;
  height: 100svh;
  min-height: 42rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

.hero>.video-frame,
.hero-interface {
  grid-area: 1 / 1;
}

.hero>.video-frame {
  z-index: 0;
}

.hero-interface {
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
}

.site-header {
  z-index: 10;
  display: flex;
  min-height: clamp(5.5rem, 10vh, 8rem);
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 3.3vw, 4rem);
  text-transform: uppercase;
}

.nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 3.2vw, 4.5rem);
}

.nav__link {
  position: relative;
  display: inline-grid;
  min-height: 2.75rem;
  place-items: center;
  font-size: 1rem;
  letter-spacing: 0.015em;
}

.nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.15rem 1.15rem 0.15rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 520;
  letter-spacing: 0.025em;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.button:hover {
  color: var(--bg);
  background: var(--ink);
  transform: translateY(-2px);
}

.button span {
  display: inline-grid;
  width: 1.3rem;
  height: 1.3rem;
  place-items: center;
  font-size: 1.45em;
  line-height: 1;
}

.menu-button,
.mobile-menu {
  display: none;
}

.project-stage {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: 0 clamp(1.25rem, 2.6vw, 3.25rem) clamp(1.25rem, 2.8vh, 2.5rem);
}

.visual-stage {
  display: grid;
  min-width: 0;
  min-height: 0;
  flex: 1;
}

.video-frame,
.hero-heading {
  grid-area: 1 / 1;
}

.video-frame {
  display: grid;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: oklch(0.12 0.012 220);
}

.hotel-video,
.video-shade {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
}

.hotel-video {
  display: block;
  object-fit: cover;
}

.video-shade {
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 14, 18, 0.7) 0%, rgba(7, 14, 18, 0.2) 46%, transparent 76%),
    linear-gradient(180deg, rgba(5, 11, 14, 0.42), transparent 22%, transparent 64%, rgba(5, 11, 14, 0.72));
  background:
    linear-gradient(90deg, oklch(0.08 0.012 220 / 0.7) 0%, oklch(0.08 0.012 220 / 0.2) 46%, transparent 76%),
    linear-gradient(180deg, oklch(0.07 0.012 220 / 0.42), transparent 22%, transparent 64%, oklch(0.07 0.012 220 / 0.72));
}

.hero-heading {
  z-index: 2;
  align-self: center;
  justify-self: stretch;
  margin-right: clamp(1.25rem, 6vw, 7rem);
  padding: 0rem 0rem 8rem;
  pointer-events: none;
}

.title-mask {
  overflow: visible;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(6.2rem, 13.7vw, 16.5rem);
  font-stretch: 100%;
  font-weight: 760;
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: title-in 950ms 80ms var(--ease) both;
}

.project-kicker {
  display: flex;
  align-items: center;
  gap: clamp(4rem, 4.7vw, 5.75rem);
  margin-top: -2.5rem;
}

.project-kicker>p:first-child {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.94rem, 1.15vw, 1.22rem);
  line-height: 1.35;
  transform: translateY(-0.9rem);
}

.script-title {
  display: block;
  margin: 3.2rem -0.12em -0.18em -0.08em;
  padding: 0.1em 0.12em 0.18em 0.08em;
  overflow: visible;
  font-family: "Allura", cursive;
  font-size: clamp(6.5rem, 10vw, 11rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  -webkit-font-smoothing: antialiased;
  -webkit-transform: translate3d(0, 0, 0) rotate(-4deg) scaleX(1.18);
  transform: translate3d(0, 0, 0) rotate(-4deg) scaleX(1.18);
  transform-origin: left center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  white-space: nowrap;
}

.project-footer {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 8rem);
  padding-top: clamp(1.25rem, 2.5vh, 2.25rem);
}

.socials {
  display: flex;
  flex: 0 0 auto;
  gap: 1rem;
}

.socials a {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  transition: color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}

.socials a:hover {
  color: var(--bg);
  background: var(--ink);
  transform: translateY(-3px);
}

.socials svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.socials svg rect,
.socials svg circle:not(.fill) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.socials svg .fill {
  fill: currentColor;
}

.hero-booking {
  display: flex;
  width: min(55rem, 69vw);
  min-height: 4.75rem;
  align-items: stretch;
  border: 1px solid oklch(0.94 0.018 75 / 0.38);
  border-radius: 0.75rem;
  background: oklch(0.11 0.015 220 / 0.84);
  box-shadow: 0 1.25rem 3rem oklch(0.04 0.01 220 / 0.24);
}

.hero-booking__intro {
  display: flex;
  min-width: 9.5rem;
  flex-direction: column;
  justify-content: center;
  padding: 0.7rem 1.15rem;
}

.hero-booking__intro span,
.booking-field>span {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-booking__intro h2 {
  margin: 0.32rem 0 0;
  font-size: 0.82rem;
  font-weight: 540;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.booking-form {
  position: relative;
  display: grid;
  min-width: 0;
  flex: 1;
  grid-template-columns: minmax(8.8rem, 1fr) minmax(8.8rem, 1fr) minmax(6rem, 0.68fr) auto;
  align-items: stretch;
}

.booking-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.55rem 0.9rem;
  border-left: 1px solid oklch(0.94 0.018 75 / 0.2);
  transition: background 180ms var(--ease);
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-width: 0;
  min-height: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  color-scheme: dark;
  cursor: pointer;
}

.booking-field:focus-within {
  background: oklch(0.94 0.018 75 / 0.07);
}

.booking-submit {
  display: inline-flex;
  min-width: 6.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0.55rem;
  padding: 0.2rem 0.9rem;
  border: 1px solid oklch(0.94 0.018 75 / 0.7);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.booking-submit span {
  font-size: 1.1rem;
}

.booking-submit:hover,
.booking-submit:focus-visible {
  color: var(--bg);
  background: var(--ink);
  transform: translateY(-1px);
}

.booking-status {
  position: absolute;
  right: 0.75rem;
  bottom: -1.2rem;
  margin: 0;
  font-size: 0.62rem;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

@keyframes title-in {
  from {
    clip-path: inset(0 0 100% 0);
    transform: translateY(12%);
  }

  to {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@media (max-width: 950px) {
  .hero {
    min-height: 38rem;
  }

  .hero-interface::after {
    content: "";
    position: fixed;
    z-index: 8;
    inset: 0;
    background: rgba(2, 7, 10, 0.68);
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms var(--ease);
  }

  body.menu-open .hero-interface::after {
    opacity: 1;
  }

  .site-header {
    min-height: 5.5rem;
    padding-right: max(1.25rem, env(safe-area-inset-right));
    padding-left: max(1.25rem, env(safe-area-inset-left));
  }

  .nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 11;
    display: flex;
    min-width: 5.5rem;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    border: 0;
    color: inherit;
    background: none;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-button i,
  .menu-button i::before,
  .menu-button i::after {
    display: block;
    width: 1.5rem;
    height: 1px;
    background: currentColor;
    transition: transform 220ms var(--ease), opacity 160ms var(--ease);
  }

  .menu-button i {
    position: relative;
  }

  .menu-button i::before,
  .menu-button i::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-button i::before {
    top: -0.4rem;
  }

  .menu-button i::after {
    top: 0.4rem;
  }

  .menu-button[aria-expanded="true"] i {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] i::before {
    content: "×";
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    background: transparent;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    transform: translate(-50%, -50%);
  }

  .menu-button[aria-expanded="true"] i::after {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    z-index: 9;
    inset: 0 0 0 auto;
    display: flex;
    width: min(32rem, 100vw);
    height: 100svh;
    max-height: 100svh;
    flex-direction: column;
    padding: max(1.25rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(1.25rem, env(safe-area-inset-bottom)) 1.5rem;
    overflow-y: auto;
    border-left: 1px solid oklch(0.94 0.018 75 / 0.22);
    background: oklch(0.115 0.016 220);
    box-shadow: -2rem 0 5rem oklch(0.04 0.01 220 / 0.48);
    animation: mobile-menu-in 380ms var(--ease) both;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu__brand {
    display: flex;
    min-height: 5rem;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-right: 6rem;
  }

  .mobile-menu__brand img {
    width: 5.5rem;
    height: auto;
    mix-blend-mode: screen;
  }

  .mobile-menu__brand p {
    margin: 0;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.06em;
    text-align: right;
    text-transform: uppercase;
  }

  .mobile-menu__links {
    margin-top: clamp(2.5rem, 8vh, 5rem);
    border-top: 1px solid oklch(0.94 0.018 75 / 0.22);
  }

  .mobile-menu__links a {
    display: flex;
    width: 100%;
    min-height: clamp(4.5rem, 11vh, 6.25rem);
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid oklch(0.94 0.018 75 / 0.22);
    font-size: clamp(2.25rem, 7.5vw, 4.15rem);
    font-weight: 590;
    line-height: 0.9;
    letter-spacing: -0.035em;
    text-transform: uppercase;
  }

  .mobile-menu__links a span:last-child {
    align-self: flex-start;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  .mobile-menu__footer {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 2rem;
  }

  .mobile-menu__footer>div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .mobile-menu__footer a {
    max-width: 100%;
    color: var(--muted);
    font-size: clamp(0.72rem, 1.8vw, 0.84rem);
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .hero-heading {
    margin-right: 1.25rem;
    margin-left: 1.25rem;
    padding-bottom: clamp(2.5rem, 7vh, 5rem);
  }

  h1 {
    font-size: clamp(5rem, 14.2vw, 8.5rem);
  }

  .project-kicker {
    gap: clamp(3rem, 8vw, 7rem);
  }

  .script-title {
    font-size: clamp(4.5rem, 12vw, 7rem);
  }

  .project-footer {
    gap: 2rem;
  }

  .hero-booking {
    width: min(48rem, 74vw);
  }

  .hero-booking__intro {
    min-width: 8.25rem;
    padding-inline: 0.9rem;
  }

  .booking-form {
    grid-template-columns: minmax(7.5rem, 1fr) minmax(7.5rem, 1fr) minmax(5.5rem, 0.65fr) auto;
  }
}

@keyframes mobile-menu-in {
  from {
    opacity: 0;
    transform: translateX(3rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 641px) and (max-width: 950px) {
  .project-stage {
    padding-right: max(clamp(1.5rem, 3vw, 2.5rem), env(safe-area-inset-right));
    padding-bottom: max(clamp(1.25rem, 2.5vh, 2rem), env(safe-area-inset-bottom));
    padding-left: max(clamp(1.5rem, 3vw, 2.5rem), env(safe-area-inset-left));
  }

  .hotel-video {
    object-position: 54% center;
  }

  .hero-heading {
    margin-inline: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 6vh, 4rem);
  }

  h1 {
    font-size: clamp(5.25rem, 13.2vw, 7.75rem);
  }

  .project-kicker {
    gap: clamp(2.5rem, 7vw, 5rem);
    margin-top: -1.75rem;
  }

  .project-kicker>p:first-child {
    font-size: clamp(0.82rem, 1.6vw, 1rem);
  }

  .script-title {
    margin-top: 2.75rem;
    font-size: clamp(5.5rem, 13vw, 7rem);
  }

  .project-footer {
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  .hero-booking {
    width: min(43rem, 76vw);
  }
}

@media (max-width: 640px) {
  .scroll-story {
    min-height: calc(var(--mobile-scroll-screens, 4) * 100svh);
  }

  .hero {
    min-height: 100svh;
  }

  .site-header {
    min-height: 4.5rem;
    padding-top: max(0.75rem, env(safe-area-inset-top));
    padding-bottom: 0.75rem;
  }

  .project-stage {
    padding-inline: 0;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .visual-stage {
    min-height: 16rem;
  }

  .hotel-video {
    object-position: 56% center;
  }

  .video-shade {
    background:
      linear-gradient(90deg, oklch(0.06 0.012 220 / 0.62), transparent 88%),
      linear-gradient(180deg, oklch(0.06 0.012 220 / 0.34), transparent 25%, transparent 55%, oklch(0.06 0.012 220 / 0.82));
  }

  .hero-heading {
    min-width: 0;
    justify-self: stretch;
    margin-right: clamp(1rem, 5vw, 1.25rem);
    margin-left: clamp(1rem, 5vw, 1.25rem);
    padding-block: 1rem;
  }

  .title-mask {
    overflow: visible;
  }

  h1 {
    font-size: clamp(2.75rem, 15.8vw, 4rem);
    line-height: 0.86;
    white-space: nowrap;
  }

  .project-kicker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .project-kicker>p:first-child {
    transform: none;
  }

  .script-title {
    justify-self: end;
    margin-top: -2rem;
    margin-right: 0.75rem;
    font-size: clamp(4.25rem, 20vw, 6.5rem);
    -webkit-transform: translate3d(0, 0, 0) rotate(-5deg) scaleX(1.05);
    transform: translate3d(0, 0, 0) rotate(-5deg) scaleX(1.05);
    transform-origin: right center;
  }

  .project-footer {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem 1.25rem 0;
  }

  .hero-booking {
    width: 100%;
    min-height: 0;
    border-radius: 0.65rem;
  }

  .hero-booking__intro {
    display: none;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-field {
    min-height: 3.4rem;
  }

  .booking-field:nth-of-type(odd) {
    border-left: 0;
  }

  .booking-field--guests {
    border-top: 1px solid oklch(0.94 0.018 75 / 0.2);
  }

  .booking-submit {
    min-height: 2.8rem;
    margin: 0.35rem;
  }

  .socials {
    gap: 0.75rem;
  }

  .socials a {
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 15vw;
  }

  .script-title {
    margin-right: 0.5rem;
    font-size: 19vw;
  }

  .booking-field {
    padding-inline: 0.65rem;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
  }

  .site-header {
    min-height: 4rem;
    padding-block: 0.5rem;
  }

  .project-stage {
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .hero-heading {
    margin-inline: clamp(1.25rem, 3vw, 2.5rem);
    padding-bottom: 0.5rem;
  }

  h1 {
    font-size: clamp(3.75rem, 11vw, 6rem);
  }

  .project-kicker {
    gap: 2rem;
    margin-top: -1.5rem;
  }

  .project-kicker>p:first-child {
    font-size: 0.78rem;
    transform: translateY(-0.25rem);
  }

  .script-title {
    margin-top: 2rem;
    font-size: clamp(4rem, 9vw, 5.5rem);
  }

  .project-footer {
    align-items: flex-end;
    gap: 1.5rem;
    padding-top: 0.75rem;
  }

  .hero-booking {
    width: min(43rem, 78vw);
  }

  .hero-booking__intro,
  .booking-field--guests {
    display: none;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(7.5rem, 1fr)) auto;
  }
}

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

  .scroll-story {
    min-height: 100svh;
  }

  .hero {
    position: static;
  }

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

/* Editorial project sections */
.architecture-overview,
.river-story {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
}

.architecture-overview {
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1.25rem, 3vw, 3.5rem) clamp(4rem, 8vw, 8rem);
  color: oklch(0.17 0.012 220);
  background: oklch(0.95 0.006 220);
}

.section-meta {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  font-size: clamp(0.68rem, 0.72vw, 0.82rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.section-meta p {
  margin: 0;
}

.section-meta p:nth-child(2) {
  justify-self: center;
}

.section-meta p:last-child {
  justify-self: end;
  text-align: right;
}

.overview-composition {
  position: relative;
  z-index: 2;
  min-height: clamp(39rem, 78svh, 58rem);
  margin-top: clamp(2rem, 5vh, 5rem);
}

.overview-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.overview-carousel.is-dragging {
  cursor: grabbing;
}

.overview-track {
  --overview-gap: clamp(1.5rem, 3.5vw, 4rem);
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: max-content;
  align-items: center;
  gap: var(--overview-gap);
  transform: translate3d(-50%, -50%, 0);
  transition: transform 720ms var(--ease);
  will-change: transform;
}

.overview-carousel.is-dragging .overview-track {
  transition: none;
}

.overview-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(52vw, 46rem);
  aspect-ratio: 1.42 / 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: oklch(0.25 0.012 220);
  box-shadow: 0 1.5rem 4rem oklch(0.12 0.01 220 / 0.16);
  opacity: 0.68;
  transform: scale(0.78);
  transition: opacity 520ms var(--ease), transform 720ms var(--ease), box-shadow 720ms var(--ease);
  cursor: pointer;
}

.overview-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.overview-image.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 2rem 5rem oklch(0.1 0.01 220 / 0.28);
}

.overview-image:not(.is-active):hover,
.overview-image:not(.is-active):focus-visible {
  opacity: 0.88;
  transform: scale(0.82);
}

.overview-image--detail img {
  object-position: 42% center;
}

.overview-image--aerial img {
  object-position: 65% center;
}

.overview-controls {
  position: absolute;
  z-index: 5;
  right: clamp(1rem, 3vw, 3rem);
  bottom: 0;
  display: grid;
  grid-template-columns: 2.75rem auto 2.75rem;
  align-items: center;
  gap: 0.5rem;
}

.overview-controls p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 650;
}

.overview-control {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid oklch(0.17 0.012 220 / 0.35);
  border-radius: 50%;
  color: inherit;
  background: oklch(0.95 0.006 220 / 0.82);
  font: inherit;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.overview-control:hover,
.overview-control:focus-visible {
  color: oklch(0.95 0.006 220);
  background: oklch(0.17 0.012 220);
}

.overview-title {
  position: absolute;
  z-index: 3;
  top: 49%;
  left: 50%;
  width: 100%;
  margin: 0;
  color: oklch(0.13 0.01 220);
  font-size: clamp(4rem, 9vw, 8.6rem);
  font-weight: 440;
  line-height: 0.76;
  letter-spacing: -0.04em;
  text-align: center;
  text-wrap: balance;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.overview-title span {
  display: block;
  color: transparent;
  font-weight: 550;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px oklch(0.98 0 0);
  paint-order: stroke fill;
}

.overview-title em {
  display: block;
  margin-top: 0.12em;
  color: transparent;
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 400;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px oklch(0.98 0 0);
  paint-order: stroke fill;
}

.overview-copy {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 2%;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.overview-copy p {
  margin: 0;
  font-size: clamp(0.78rem, 0.85vw, 0.95rem);
  line-height: 1.5;
  max-width: 300px;
}

.overview-copy a {
  display: inline-flex;
  min-height: 2.75rem;
  flex: 0 0 auto;
  align-items: center;
  gap: 1rem;
  padding: 0.2rem 1rem;
  border: 1px solid oklch(0.17 0.012 220 / 0.45);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.river-line {
  position: absolute;
  z-index: 0;
  width: 58vw;
  height: 40vw;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}

.river-line--light {
  top: 12%;
  left: -30%;
  color: oklch(0.32 0.01 220);
  transform: rotate(18deg);
}

.river-story {
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1.25rem, 3vw, 3.5rem) clamp(3rem, 6vw, 6rem);
  color: oklch(0.94 0.018 75);
  background: oklch(0.25 0.03 115);
}

.river-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: clamp(40rem, 80svh, 58rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
  gap: clamp(2rem, 5vw, 7rem);
  align-items: end;
  padding-top: clamp(3rem, 7vh, 7rem);
}

.gallery {
  min-width: 0;
}

.gallery__viewport {
  position: relative;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  background: oklch(0.16 0.018 115);
}

.gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 650ms var(--ease), transform 900ms var(--ease);
  pointer-events: none;
}

.gallery__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__footer {
  display: grid;
  grid-template-columns: 2.75rem 1fr 2.75rem;
  align-items: center;
  padding-top: 0.9rem;
}

.gallery__footer p {
  justify-self: center;
  margin: 0;
  font-size: 0.72rem;
}

.gallery__arrow {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.river-content {
  position: relative;
  align-self: stretch;
  padding-top: clamp(1rem, 4vh, 3rem);
}

.river-intro {
  max-width: 36ch;
  margin: 0 0 clamp(3rem, 8vh, 7rem);
  font-size: clamp(0.8rem, 0.88vw, 0.96rem);
  line-height: 1.55;
}

.river-content h2 {
  position: relative;
  z-index: 2;
  width: 135%;
  margin: 0 0 1.5rem;
  color: inherit;
  font-size: clamp(4rem, 7.6vw, 8rem);
  font-weight: 480;
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 3px black;
  transform: translateX(-19%);
}

.river-content h2 span {
  font-size: 0.72em;
}

.river-content h2 em {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 400;
  text-transform: none;
}

.gallery-title {
  margin: 0 0 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-facts {
  display: grid;
  max-width: 31rem;
  gap: 0;
  margin: 0;
  border-top: 1px solid oklch(0.94 0.018 75 / 0.38);
}

.project-facts div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 0.58rem 0;
  border-bottom: 1px solid oklch(0.94 0.018 75 / 0.2);
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
}

.project-facts dt {
  color: oklch(0.83 0.016 75);
}

.project-facts dd {
  margin: 0;
}

.gallery-next {
  display: inline-flex;
  min-width: 8.5rem;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0.2rem 1.1rem;
  border: 1px solid oklch(0.94 0.018 75 / 0.55);
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms var(--ease), background 220ms var(--ease);
}

.gallery-next:hover,
.gallery-next:focus-visible {
  color: oklch(0.25 0.03 115);
  background: oklch(0.94 0.018 75);
}

.river-line--dark {
  right: -19%;
  bottom: -17%;
  color: oklch(0.94 0.018 75);
  transform: rotate(-24deg);
}

@media (max-width: 950px) {
  .overview-composition {
    min-height: 46rem;
  }

  .overview-controls {
    top: 0;
    right: 0;
    bottom: auto;
  }

  .overview-copy {
    right: 18%;
    bottom: 0;
  }

  .river-layout {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.84fr);
    gap: 2rem;
  }

  .river-content h2 {
    width: 120%;
    transform: translateX(-14%);
  }
}

@media (max-width: 700px) {

  .architecture-overview,
  .river-story {
    min-height: auto;
    padding: 1.25rem 1rem 4rem;
  }

  .section-meta {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1rem;
  }

  .section-meta p:nth-child(2) {
    display: none;
  }

  .overview-composition {
    min-height: 49rem;
    margin-top: 2.5rem;
  }

  .overview-image {
    width: 68vw;
    aspect-ratio: 0.92 / 1;
    transform: scale(0.86);
  }

  .overview-track {
    --overview-gap: 0.25rem;
    top: 44%;
  }

  .overview-title {
    top: 42%;
    font-size: clamp(3.35rem, 16vw, 5.5rem);
    line-height: 0.78;
  }

  .overview-copy {
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding-top: 1rem;
  }

  .overview-copy p {
    max-width: 33ch;
  }

  .overview-copy a {
    width: auto;
    overflow: hidden;
    padding-inline: 0.85rem;
    white-space: nowrap;
  }

  .overview-copy a span {
    margin-left: 0.7rem;
  }

  .overview-controls {
    top: 0;
    right: 0;
    bottom: auto;
  }

  .river-layout {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 2rem;
    padding-top: 3rem;
  }

  .gallery {
    width: 100%;
  }

  .gallery__viewport {
    aspect-ratio: 0.9 / 1;
  }

  .river-content {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .river-intro {
    order: 2;
    margin: 1.5rem 0 2.5rem;
  }

  .river-content h2 {
    order: 1;
    width: 100%;
    font-size: clamp(3.5rem, 17vw, 5.7rem);
    transform: none;
  }

  .gallery-title {
    order: 3;
  }

  .project-facts {
    order: 4;
    max-width: none;
  }

  .gallery-next {
    order: 5;
  }
}

@media (prefers-reduced-motion: reduce) {

  .overview-image img,
  .gallery__slide {
    transition: none;
  }
}

/* Hotel contact footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 7rem) clamp(1.25rem, 3.3vw, 4rem) 1.5rem;
  color: oklch(0.94 0.018 75);
  background: oklch(0.105 0.012 220);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -18rem;
  right: -12rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid oklch(0.94 0.018 75 / 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.footer-lead {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(9rem, 0.5fr) minmax(24rem, 1.4fr) minmax(13rem, 0.6fr);
  gap: clamp(2rem, 5vw, 7rem);
  align-items: end;
  padding-bottom: clamp(3.5rem, 7vw, 7rem);
}

.footer-logo {
  display: block;
  width: clamp(7rem, 10vw, 10rem);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.footer-lead h2 {
  margin: 0;
  font-size: clamp(3.8rem, 7.8vw, 8.5rem);
  font-weight: 530;
  line-height: 0.78;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

.footer-lead h2 em {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 400;
  text-transform: none;
}

.footer-enquiry {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 1.35rem;
  border: 1px solid oklch(0.94 0.018 75 / 0.55);
  border-radius: 999px;
  font-size: clamp(0.72rem, 0.8vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.footer-enquiry:hover,
.footer-enquiry:focus-visible {
  color: oklch(0.105 0.012 220);
  background: oklch(0.94 0.018 75);
  transform: translateY(-2px);
}

.footer-enquiry span:last-child {
  font-size: 1.35rem;
}

.footer-directory {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr;
  gap: clamp(2rem, 5vw, 7rem);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid oklch(0.94 0.018 75 / 0.25);
  border-bottom: 1px solid oklch(0.94 0.018 75 / 0.25);
}

.footer-group {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-group>p {
  margin: 0 0 0.65rem;
  color: oklch(0.75 0.012 75);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-group a,
.footer-group>span {
  max-width: 100%;
  font-size: clamp(0.88rem, 1.1vw, 1.15rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer-group a {
  position: relative;
}

.footer-group a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.footer-group a:hover::after,
.footer-group a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-group--place {
  color: oklch(0.83 0.012 75);
}

.footer-base {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 1.5rem;
  color: oklch(0.72 0.012 75);
  font-size: 0.7rem;
  font-weight: 560;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.footer-base p {
  margin: 0;
}

.footer-base p:nth-child(2) {
  justify-self: center;
}

.footer-base a {
  justify-self: end;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 800px) {
  .footer-lead {
    grid-template-columns: 7rem 1fr;
    align-items: start;
  }

  .footer-lead h2 {
    font-size: clamp(3.2rem, 10vw, 6rem);
  }

  .footer-enquiry {
    grid-column: 2;
    width: min(100%, 19rem);
  }

  .footer-directory {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-group--place {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .site-footer {
    padding: 2.5rem 1rem 1rem;
  }

  .footer-lead {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    padding-bottom: 3rem;
  }

  .footer-logo {
    width: 6.5rem;
  }

  .footer-lead h2 {
    font-size: clamp(3.25rem, 17vw, 5.5rem);
  }

  .footer-enquiry {
    width: 100%;
  }

  .footer-directory {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
  }

  .footer-base {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .footer-base p:nth-child(2) {
    display: none;
  }
}
