:root {
  --ink: #17363b;
  --ink-2: #224449;
  --text: #2b494e;
  --muted: #687a7f;
  --sea: #779eab;
  --sea-light: #c4d6de;
  --stone: #e8eee9;
  --mist: #f6f8f6;
  --paper: #ffffff;
  --white: #ffffff;
  --line: rgba(23, 54, 59, 0.11);
  --nav-dark: rgba(7, 24, 27, 0.50);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  animation: pageIn 0.28s ease both;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  letter-spacing: 0;
}

button {
  border-radius: 0;
}

main {
  min-height: 100vh;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  min-height: 76px;
  padding: 0 42px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 24, 27, 0.66), rgba(7, 24, 27, 0.12));
}

.site-nav.light-nav {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a,
.reserve-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  font-size: 13px;
  font-weight: 700;
}

.reserve-link {
  justify-self: end;
}

.nav-links a::after,
.reserve-link::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--sea-light);
  transition: transform 0.28s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.reserve-link:hover::after,
.reserve-link.is-active::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 2px;
  margin: 7px 0 7px auto;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 26px;
  background: linear-gradient(180deg, #17363b, #1f464c);
  color: var(--white);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease, visibility 0s linear 0.35s;
}

.mobile-menu.is-open {
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.35s ease;
}

.mobile-menu a {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1.05;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero > img {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  animation: heroScale 9s ease forwards;
}

.home-hero > img {
  object-position: 58% 50%;
}

.houses-hero > img {
  object-position: 64% 56%;
}

.area-hero > img {
  object-position: 58% 50%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 32, 36, 0.14), rgba(10, 32, 36, 0.05) 58%, rgba(10, 32, 36, 0)),
    linear-gradient(0deg, rgba(10, 32, 36, 0.14), rgba(10, 32, 36, 0) 56%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  max-width: 1030px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 44px 108px;
}

.hero-copy h1,
.reserve-panel h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 112px;
  font-weight: 400;
  line-height: 0.95;
}

.hero-copy p {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: 19px;
  line-height: 1.7;
}

.hero-stays {
  position: absolute;
  z-index: 3;
  right: 42px;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, 112px);
  gap: 12px;
}

.hero-stays a {
  position: relative;
  aspect-ratio: 1 / 1.25;
  overflow: hidden;
  background: var(--ink);
}

.hero-stays a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 32, 36, 0.48), rgba(10, 32, 36, 0.03) 62%);
}

.hero-stays img {
  transition: transform 0.65s ease;
}

.hero-stays a:hover img {
  transform: scale(1.04);
}

.hero-stays span {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 11px;
  right: 12px;
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 132px 0;
}

.section:nth-of-type(even) {
  background: var(--mist);
}

.inner {
  width: min(1680px, calc(100% - 88px));
  margin: 0 auto;
}

.two-col,
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 90px;
  align-items: end;
}

.two-col h2,
.section-head h2,
.editorial-copy h2,
.cta-band h2,
.place-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.02;
}

.copy-stack p,
.section-head p,
.editorial-copy p,
.cta-band p,
.place-card p,
.reserve-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.copy-stack {
  display: grid;
  gap: 28px;
  max-width: 560px;
}

.text-link {
  position: relative;
  width: max-content;
  padding: 0 0 9px;
  color: var(--ink);
  font-weight: 700;
}

.text-link::after {
  bottom: 0;
  transform: scaleX(1);
  background: var(--sea);
}

.pin-section {
  position: relative;
  height: 260vh;
  background: #18383d;
}

.pin-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.pin-photo,
.pin-photo::after {
  position: absolute;
  inset: 0;
}

.pin-photo {
  margin: 0;
}

.pin-photo::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 32, 36, 0.34), rgba(10, 32, 36, 0.05) 52%, rgba(10, 32, 36, 0.03)),
    linear-gradient(0deg, rgba(10, 32, 36, 0.44), rgba(10, 32, 36, 0.02) 65%);
}

.pin-track {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: max-content;
  min-height: 100svh;
  gap: 28px;
  padding: 0 44px 72px;
  will-change: transform;
}

.pin-track article {
  width: 520px;
  min-height: 320px;
  padding: 0 0 26px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.pin-track span {
  display: block;
  margin: 0 0 30px;
  color: var(--sea-light);
  font-size: 28px;
  font-family: var(--display);
  font-weight: 400;
}

.pin-track h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.pin-track p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.photo-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 76px;
  align-items: center;
}

.photo-pair.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.photo-pair.reverse .large-photo {
  order: 2;
}

.large-photo {
  margin: 0;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background: var(--stone);
}

.editorial-copy {
  display: grid;
  gap: 26px;
}

.story-section {
  padding: 0;
  background: var(--paper);
}

.story-panels {
  display: grid;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  min-height: 86svh;
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.story-panel:nth-child(even) {
  grid-template-columns: minmax(340px, 0.97fr) minmax(0, 1.03fr);
}

.story-panel:nth-child(even) .story-photo {
  order: 2;
}

.story-photo {
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

.story-photo img {
  transition: transform 0.95s ease;
}

.story-panel:hover .story-photo img {
  transform: scale(1.035);
}

.story-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.6rem, 4vw, 4rem);
  background: var(--white);
}

.story-kicker {
  color: var(--sea);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.story-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 62px;
  font-weight: 400;
  line-height: 1.02;
}

.story-copy p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.area-preview {
  background: var(--mist);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 58px;
}

.area-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 32, 36, 0.14), rgba(10, 32, 36, 0.04) 66%);
}

.area-card div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
}

.area-card h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.area-card p {
  max-width: 380px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.fine-list {
  display: grid;
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.fine-list span {
  padding: 17px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.cta-section {
  padding: 96px 0;
  background: var(--white);
}







.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 44px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.cta-band p {
  max-width: 620px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: max-content;
  padding: 0 30px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  border-color: var(--sea);
  color: var(--ink);
  background: var(--sea-light);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  background: var(--white);
}

.button.light:hover {
  border-color: var(--sea-light);
  background: var(--sea-light);
}

.houses-section {
  background: var(--white);
}

.house-selector {
  display: flex;
  gap: 18px;
  min-height: 720px;
  margin-top: 58px;
}

.house-panel {
  position: relative;
  flex: 0.86;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  transition: flex 0.68s cubic-bezier(0.22, 1, 0.36, 1), filter 0.42s ease;
}

.house-trigger {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.house-panel.is-active {
  flex: 2.35;
  cursor: default;
}

.house-panel:has(.house-trigger:focus-visible) {
  outline: 3px solid var(--sea-light);
  outline-offset: 4px;
}

.house-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 32, 36, 0.14), rgba(10, 32, 36, 0.14) 48%, rgba(10, 32, 36, 0.02)),
    linear-gradient(0deg, rgba(10, 32, 36, 0.14), rgba(10, 32, 36, 0.02) 62%);
  opacity: 0.84;
}

.house-panel img {
  object-position: 70% 54%;
  transition: transform 0.7s ease;
}

.house-panel:hover img,
.house-panel.is-active img {
  transform: scale(1.035);
}

.house-panel.faye img {
  object-position: 72% 55%;
}

.house-panel.anatolika img {
  object-position: 52% 58%;
}

.house-content {
  position: absolute;
  z-index: 4;
  inset: auto 34px 34px;
  display: grid;
  gap: 14px;
  max-width: 620px;
}

.house-detail a {
  position: relative;
  z-index: 5;
}

.house-index {
  color: var(--sea-light);
  font-family: var(--display);
  font-size: 56px;
  line-height: 0.88;
  font-weight: 400;
}

.house-content h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}

.house-short {
  margin: 0;
  max-width: 460px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
}

.house-detail {
  display: grid;
  gap: 26px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: max-height 0.58s ease, opacity 0.35s ease, transform 0.35s ease;
}

.house-panel.is-active .house-detail {
  max-height: 460px;
  opacity: 1;
  transform: none;
}

.house-detail dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 12px 0 0;
}

.house-detail div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.house-detail dt {
  margin-bottom: 5px;
  color: var(--sea-light);
  font-size: 12px;
  font-weight: 700;
}

.house-detail dd {
  margin: 0;
  color: var(--white);
  font-size: 16px;
}

.triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.triptych figure {
  margin: 0;
  aspect-ratio: 0.95 / 1;
  overflow: hidden;
  background: var(--stone);
}

.places-section {
  background: var(--mist);
}

.place-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
}

.place-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.place-card.tall {
  grid-row: span 2;
  min-height: 744px;
}

.place-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 32, 36, 0.14), rgba(10, 32, 36, 0.04) 66%);
}

.place-card div {
  position: absolute;
  z-index: 2;
  left: 32px;
  right: 32px;
  bottom: 30px;
}

.place-card h2 {
  color: var(--white);
  font-size: 46px;
}

.place-card p {
  max-width: 430px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.reserve-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  min-height: 100svh;
  padding-top: 76px;
  background: var(--white);
}

.reserve-photo {
  margin: 0;
  min-height: calc(100svh - 76px);
  background: var(--stone);
}

.reserve-photo img {
  object-position: 50% 60%;
}

.reserve-panel {
  align-self: center;
  padding: 80px 70px;
}

.reserve-panel h1 {
  color: var(--ink);
  font-size: 82px;
  font-weight: 400;
}

.reserve-panel p {
  max-width: 620px;
  margin-top: 24px;
}

.reserve-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.form-row {
  display: grid;
  gap: 9px;
}

.form-row.wide,
.reserve-form .button {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 16px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--sea);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links a {
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes heroScale {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}


@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1200px) {
  .hero-copy h1,
  .reserve-panel h1 {
    font-size: 74px;
  }

  .two-col h2,
  .section-head h2,
  .editorial-copy h2,
  .cta-band h2 {
    font-size: 52px;
  }

  .house-selector {
    min-height: 620px;
  }



  .house-detail dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 0 22px;
  }

  .nav-links,
  .reserve-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    font-size: 21px;
  }

  .hero-copy {
    padding: 0 22px 210px;
  }

  .hero-copy h1,
  .reserve-panel h1 {
    font-size: 52px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .home-hero > img {
    object-position: 68% 50%;
  }

  .hero-stays {
    left: 22px;
    right: 22px;
    bottom: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 86px 0;
  }

  .inner {
    width: min(100% - 44px, 760px);
  }

  .two-col,
  .section-head,
  .photo-pair,
  .photo-pair.reverse,
  .cta-band,
  .place-grid,
  .reserve-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .two-col,
  .section-head,
  .photo-pair,
  .photo-pair.reverse {
    gap: 34px;
  }

  .two-col h2,
  .section-head h2,
  .editorial-copy h2,
  .cta-band h2 {
    font-size: 40px;
  }

  .photo-pair.reverse .large-photo {
    order: 0;
  }

  .story-panel,
  .story-panel:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-panel:nth-child(even) .story-photo {
    order: 0;
  }

  .story-photo {
    aspect-ratio: 1.12 / 1;
  }

  .story-copy {
    padding: 34px 28px 38px;
  }

  .story-copy h2 {
    font-size: 48px;
  }

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

  .pin-section {
    height: auto;
  }

  .pin-stage {
    position: relative;
    min-height: 100svh;
  }

  .pin-track {
    display: grid;
    width: auto;
    min-height: 100svh;
    padding: 120px 22px 56px;
  }

  .pin-track article {
    width: auto;
    min-height: 0;
  }

  .pin-track h2 {
    font-size: 36px;
  }


  .house-selector {
    display: grid;
    min-height: 0;
  }

  .house-panel,
  .house-panel.is-active {
    min-height: 520px;
  }

  .house-content {
    inset: auto 22px 24px;
  }

  .house-content h2 {
    font-size: 36px;
  }

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

  .place-card,
  .place-card.tall {
    min-height: 480px;
  }

  .reserve-layout {
    padding-top: 68px;
  }

  .reserve-photo {
    min-height: 58svh;
  }

  .reserve-panel {
    padding: 58px 22px 76px;
  }

  .reserve-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 34px 22px;
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .mobile-menu a {
    font-size: 34px;
  }

  .hero-copy {
    padding-bottom: 190px;
  }

  .hero-copy h1,
  .reserve-panel h1 {
    font-size: 42px;
  }

  .hero-stays {
    gap: 7px;
  }

  .hero-stays a {
    aspect-ratio: 1 / 1.15;
  }

  .hero-stays span {
    left: 9px;
    right: 9px;
    bottom: 8px;
    font-size: 11px;
  }

  .two-col h2,
  .section-head h2,
  .editorial-copy h2,
  .cta-band h2 {
    font-size: 34px;
  }

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

  .area-card {
    min-height: 280px;
  }

  .area-card h2 {
    font-size: 34px;
  }

  .house-panel {
    min-height: 260px;
  }

  .house-panel.is-active {
    min-height: 520px;
  }

  .house-index {
    font-size: 42px;
  }


  .house-detail dl {
    gap: 12px;
  }

  .house-detail dd {
    font-size: 14px;
  }

  .button {
    width: 100%;
  }


}

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

  body,
  .hero > img,
  .reveal,
  .house-panel,
  .house-panel img,
  .house-detail,
  .mobile-menu,
  .menu-toggle span {
    animation: none;
    transition: none;
  }

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

  .pin-track {
    transform: none;
  }
}

.home-hero {
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  transform: scale(1.08) translate3d(0, calc(var(--hero-scroll, 0) * 18px), 0);
  filter: saturate(0.92) contrast(0.98);
  transition: transform 0.12s linear;
}

.hero-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 24, 28, 0.38) 0%, rgba(8, 24, 28, 0.08) 34%, rgba(8, 24, 28, 0) 72%),
    linear-gradient(90deg, rgba(8, 24, 28, 0.24) 0%, rgba(8, 24, 28, 0.18) 32%, rgba(8, 24, 28, 0) 68%);
}

.home-hero .hero-copy {
  max-width: 1060px;
  padding-bottom: 118px;
}

.hero-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-markers {
  position: absolute;
  left: 44px;
  bottom: 46px;
  right: auto;
  top: auto;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(280px, calc(100% - 88px));
  pointer-events: none;
}

.hero-marker {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease;
  transition-delay: var(--delay, 0ms);
  pointer-events: auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

body.is-loaded .hero-marker {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-marker::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
  animation: markerPulse 3.2s ease-in-out infinite;
}

.hero-marker span {
  min-width: 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.hero-marker strong {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.06;
}

.hero-marker small {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.84);
}

.hero-marker:hover {
  transform: translate3d(4px, 0, 0);
}

.intro-section .copy-stack p {
  font-size: 20px;
  line-height: 1.72;
}

.story-section {
  padding-top: 56px;
  background: linear-gradient(180deg, #f7f8f6 0%, #ffffff 100%);
}

.story-panels {
  width: min(1680px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  gap: 38px;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.66fr);
  min-height: min(78svh, 820px);
  overflow: hidden;
  border: 1px solid rgba(23, 54, 59, 0.08);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(23, 54, 59, 0.06);
}

.story-panel:nth-child(even) {
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.14fr);
}

.story-photo {
  margin: 0;
  min-height: 100%;
}

.story-photo img {
  min-height: 100%;
  transition: transform 0.9s ease;
}

.story-panel:hover .story-photo img {
  transform: scale(1.025);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(28px, 4vw, 64px);
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}

.story-panel:nth-child(even) .story-copy {
  order: -1;
}

.story-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
}

.story-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 400;
  line-height: 1.02;
}

.story-copy p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.photo-editorial {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7f5 100%);
}

.photo-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: stretch;
}

.large-photo {
  margin: 0;
  min-height: 74svh;
  overflow: hidden;
  border-radius: 0;
}

.large-photo img {
  transition: transform 0.9s ease;
}

.photo-pair:hover .large-photo img {
  transform: scale(1.03);
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}

.editorial-copy h2 {
  max-width: 8.5ch;
}

.fine-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.fine-list span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.area-preview {
  background: linear-gradient(180deg, #f4f7f5 0%, #ffffff 100%);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.area-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 0;
  background: #12353a;
  color: var(--white);
  isolation: isolate;
}

.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 28, 0.04), rgba(8, 24, 28, 0.56));
}

.area-card img {
  position: absolute;
  inset: 0;
  transition: transform 0.85s ease;
}

.area-card:hover img {
  transform: scale(1.03);
}

.area-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 22px 22px 20px;
}

.area-card h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.area-card p {
  max-width: 22ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.cta-section {
  background: linear-gradient(180deg, #ffffff 0%, #eff4f1 100%);
}

.cta-band {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band p {
  max-width: 520px;
  margin-top: 18px;
}

.button {
  margin-top: 34px;
}

@keyframes markerPulse {
  0%, 100% { transform: scale(1); opacity: 0.78; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body.is-loaded .hero-copy {
  animation: heroCopyIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-loaded .hero-markers {
  animation: heroFloat 10s ease-in-out infinite;
}

@media (max-width: 1180px) {
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-panel,
  .story-panel:nth-child(even),
  .photo-pair,
  .two-col,
  .section-head {
    grid-template-columns: 1fr;
  }

  .story-panel:nth-child(even) .story-copy {
    order: 0;
  }

  .hero-markers {
    left: 28px;
    bottom: 28px;
    width: min(260px, calc(100% - 56px));
  }

  .hero-marker {
    width: 100%;
    opacity: 1;
  }

  body.is-loaded .hero-marker {
    transform: none;
  }

  .hero-marker::before {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 920px) {
  .section,
  .story-section {
    padding: 96px 0;
  }

  .inner,
  .story-panels {
    width: min(100% - 32px, 1680px);
  }

  .hero-copy {
    padding: 0 22px 94px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(58px, 11vw, 96px);
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-markers {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .hero-marker {
    width: 100%;
  }

  .story-panel {
    min-height: auto;
  }

  .story-photo {
    min-height: 320px;
  }

  .large-photo {
    min-height: 420px;
  }

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

  .area-card {
    min-height: 340px;
  }

  .cta-band {
    padding: 56px 0;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .hero-media img {
    transform: none;
  }

  .hero-markers,
  .hero-copy {
    animation: none !important;
  }
}

/* East of Prevelis home rewrite */

.home-hero {
  isolation: isolate;
}

.home-hero .hero-wash {
  display: none;
}

.home-hero > img {
  object-position: 58% 48%;
}

.home-hero .hero-copy {
  max-width: 1080px;
  padding-bottom: 126px;
}

.home-hero .hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(62px, 8.8vw, 126px);
}

.home-hero .hero-copy p {
  max-width: 44ch;
}

.hero-kicker,
.section-label,
.sequence-name {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 700;
}

.hero-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 24, 27, 0.24);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero-labels {
  position: absolute;
  right: 44px;
  bottom: 40px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.hero-labels span {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(7, 24, 27, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  backdrop-filter: blur(10px);
}

.hero-labels strong {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
}

.section.statement-section {
  background: linear-gradient(180deg, #10262b, #0f2024);
  color: var(--white);
  padding: 120px 0;
}

.statement-grid,
.sequence-head,
.field-head,
.quote-panel,
.closing-panel {
  display: grid;
  gap: 72px;
  align-items: end;
}

.statement-grid,
.sequence-head,
.field-head,
.quote-panel {
  grid-template-columns: 160px minmax(0, 1fr);
}

.statement-copy h2,
.sequence-head h2,
.field-head h2,
.closing-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
}

.statement-copy h2 {
  max-width: 9ch;
  color: var(--white);
  font-size: clamp(58px, 7.4vw, 104px);
}

.statement-copy p {
  max-width: 48ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.section.sequence-section {
  background: linear-gradient(180deg, #fbfaf6, #f4efe6);
  padding: 120px 0 108px;
}

.sequence-head {
  margin-bottom: 48px;
}

.sequence-head h2,
.field-head h2 {
  color: var(--ink);
  font-size: clamp(44px, 4.8vw, 80px);
}

.sequence-head p,
.field-head p {
  max-width: 46ch;
  margin: 18px 0 0;
}

.sequence-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.sequence-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) minmax(220px, 320px) auto;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.sequence-number {
  font-family: var(--display);
  font-size: 46px;
  line-height: 0.92;
  color: var(--ink);
}

.sequence-copy h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(30px, 3.1vw, 48px);
  font-weight: 400;
  line-height: 0.98;
}

.sequence-copy p {
  margin: 12px 0 0;
  max-width: 36ch;
}

.sequence-name {
  margin: 0;
  color: var(--muted);
}

.sequence-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: center;
}

.sequence-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
}

.sequence-item .text-link {
  justify-self: end;
  align-self: center;
}

.section.field-section {
  background: var(--paper);
  padding: 120px 0;
}

.field-head {
  margin-bottom: 44px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.field-card {
  grid-column: span 6;
  display: grid;
  gap: 14px;
}

.field-card.wide {
  grid-column: 1 / -1;
}

.field-card img {
  aspect-ratio: 16 / 10;
  background: #dfe6e1;
}

.field-card figcaption {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.field-card figcaption span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.field-card figcaption p {
  margin: 0;
  max-width: 34ch;
}

.section.quote-section {
  background: linear-gradient(180deg, #f4efe6, #ece5d8);
  padding: 0;
}

.quote-panel {
  padding: 84px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-panel blockquote {
  margin: 0;
}

.quote-panel blockquote p {
  margin: 0;
  max-width: 11ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 92px);
  line-height: 0.96;
}

.quote-source {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.section.closing-section {
  background: var(--ink);
  color: var(--white);
  padding: 0;
}

.closing-panel {
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  padding: 32px 0;
}

.closing-copy h2 {
  color: var(--white);
  font-size: clamp(48px, 6vw, 88px);
}

.closing-copy p {
  max-width: 44ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding-bottom: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 28px 44px 38px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  justify-self: end;
}

@media (max-width: 1180px) {
  .statement-grid,
  .sequence-head,
  .field-head,
  .quote-panel,
  .closing-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sequence-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .sequence-facts,
  .sequence-item .text-link {
    grid-column: 2;
  }

  .field-card figcaption {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-source,
  .footer-links {
    text-align: left;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .home-hero .hero-copy {
    padding: 0 22px 118px;
  }

  .home-hero .hero-copy h1 {
    max-width: 8.5ch;
    font-size: clamp(44px, 15vw, 76px);
  }

  .hero-labels {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .hero-labels span {
    justify-content: space-between;
    width: 100%;
  }

  .section.statement-section,
  .section.sequence-section,
  .section.field-section {
    padding: 82px 0;
  }

  .quote-panel,
  .closing-panel {
    padding: 44px 0;
  }

  .sequence-item {
    gap: 18px;
    padding: 24px 0;
  }

  .sequence-item .text-link {
    justify-self: start;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .field-card {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 24px 22px 32px;
  }
}

.story-panel,
.large-photo,
.area-card,
.reserve-photo,
.house-panel,
.triptych figure {
  border-radius: 0 !important;
}

.home-hero {
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  transform: scale(1.08) translate3d(0, calc(var(--hero-scroll, 0) * 18px), 0);
  object-position: 66% 58%;
  filter: saturate(0.92) contrast(0.98);
  transition: transform 0.12s linear;
}

.hero-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 24, 28, 0.38) 0%, rgba(8, 24, 28, 0.08) 34%, rgba(8, 24, 28, 0) 72%),
    linear-gradient(90deg, rgba(8, 24, 28, 0.24) 0%, rgba(8, 24, 28, 0.1) 32%, rgba(8, 24, 28, 0) 68%);
}

.home-hero .hero-copy {
  max-width: 1060px;
  padding-bottom: 118px;
}

.hero-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-markers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  gap: 2px;
  width: min(166px, 26vw);
  padding: 10px 12px 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(9, 28, 32, 0.42);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(6, 20, 23, 0.16);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translate3d(-50%, -42%, 0) scale(0.96);
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
  transition-delay: var(--delay, 0ms);
  pointer-events: auto;
}

body.is-loaded .hero-marker {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.hero-marker::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.11);
  animation: markerPulse 3.2s ease-in-out infinite;
}

.hero-marker span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.hero-marker strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.06;
}

.hero-marker small {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.84);
}

.hero-marker:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(14, 35, 39, 0.58);
  transform: translate3d(-50%, -54%, 0) scale(1.02);
}

.intro-section .copy-stack p {
  font-size: 20px;
  line-height: 1.72;
}

.story-section {
  padding-top: 56px;
  background: linear-gradient(180deg, #f7f8f6 0%, #ffffff 100%);
}

.story-panels {
  width: min(1680px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  gap: 38px;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.66fr);
  min-height: min(78svh, 820px);
  overflow: hidden;
  border: 1px solid rgba(23, 54, 59, 0.08);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(23, 54, 59, 0.06);
}

.story-panel:nth-child(even) {
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.14fr);
}

.story-photo {
  margin: 0;
  min-height: 100%;
}

.story-photo img {
  min-height: 100%;
  transition: transform 0.9s ease;
}

.story-panel:hover .story-photo img {
  transform: scale(1.025);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(28px, 4vw, 64px);
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}

.story-panel:nth-child(even) .story-copy {
  order: -1;
}

.story-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
}

.story-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 400;
  line-height: 1.02;
}

.story-copy p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.photo-editorial {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7f5 100%);
}

.photo-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: stretch;
}

.large-photo {
  margin: 0;
  min-height: 74svh;
  overflow: hidden;
  border-radius: 0;
}

.large-photo img {
  transition: transform 0.9s ease;
}

.photo-pair:hover .large-photo img {
  transform: scale(1.03);
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}

.editorial-copy h2 {
  max-width: 8.5ch;
}

.fine-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.fine-list span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.area-preview {
  background: linear-gradient(180deg, #f4f7f5 0%, #ffffff 100%);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.area-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 0;
  background: #12353a;
  color: var(--white);
  isolation: isolate;
}

.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 28, 0.04), rgba(8, 24, 28, 0.56));
}

.area-card img {
  position: absolute;
  inset: 0;
  transition: transform 0.85s ease;
}

.area-card:hover img {
  transform: scale(1.03);
}

.area-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 22px 22px 20px;
}

.area-card h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.area-card p {
  max-width: 22ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.cta-section {
  background: linear-gradient(180deg, #ffffff 0%, #eff4f1 100%);
}

.cta-band {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band p {
  max-width: 520px;
  margin-top: 18px;
}

.button {
  margin-top: 34px;
}

@keyframes markerPulse {
  0%, 100% { transform: scale(1); opacity: 0.78; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body.is-loaded .hero-copy {
  animation: heroCopyIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-loaded .hero-markers {
  animation: heroFloat 10s ease-in-out infinite;
}

@media (max-width: 1180px) {
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-panel,
  .story-panel:nth-child(even),
  .photo-pair,
  .two-col,
  .section-head {
    grid-template-columns: 1fr;
  }

  .story-panel:nth-child(even) .story-copy {
    order: 0;
  }

  .hero-markers {
    inset: auto 28px 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-marker {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    transform: none;
    opacity: 1;
  }

  body.is-loaded .hero-marker {
    transform: none;
  }

  .hero-marker::before {
    left: 12px;
    top: 14px;
  }
}

@media (max-width: 920px) {
  .section,
  .story-section {
    padding: 96px 0;
  }

  .inner,
  .story-panels {
    width: min(100% - 32px, 1680px);
  }

  .hero-copy {
    padding: 0 22px 94px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(58px, 11vw, 96px);
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-markers {
    inset: auto 16px 18px;
    grid-template-columns: 1fr;
  }

  .hero-marker {
    width: 100%;
  }

  .story-panel {
    min-height: auto;
  }

  .story-photo {
    min-height: 320px;
  }

  .large-photo {
    min-height: 420px;
  }

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

  .area-card {
    min-height: 340px;
  }

  .cta-band {
    padding: 56px 0;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .hero-media img {
    transform: none;
  }

  .hero-markers,
  .hero-copy {
    animation: none !important;
  }
}

.home-hero {
  isolation: isolate;
}

.home-hero .hero-copy {
  max-width: 1060px;
}

.home-hero h1 {
  max-width: 10ch;
}

.home-hero p:last-of-type {
  max-width: 680px;
}

.hero-meta {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-labels {
  display: none;
}

.statement-section {
  background: #143c33;
  color: var(--white);
  padding-top: 120px;
  padding-bottom: 120px;
}

.statement-grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 160px;
  gap: 48px;
  align-items: end;
}

.statement-section .section-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.statement-copy h2 {
  margin: 0;
  max-width: 12ch;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 100px);
  font-weight: 400;
  line-height: 0.96;
}

.statement-copy p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.75;
}

.statement-thumb {
  margin: 0;
  width: 160px;
  height: 120px;
  justify-self: end;
  overflow: hidden;
  border-radius: 0;
}

.statement-thumb img {
  transform: scale(1.02);
}

.sequence-section {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 120px;
}

.sequence-head {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.sequence-head h2 {
  margin: 0;
  max-width: 11ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(42px, 4.8vw, 88px);
  font-weight: 400;
  line-height: 0.98;
}

.sequence-head p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.sequence-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.sequence-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(23, 54, 59, 0.12);
}

.sequence-item:last-child {
  border-bottom: 1px solid rgba(23, 54, 59, 0.12);
}

.sequence-number {
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
  color: var(--sea);
  opacity: 0.78;
}

.sequence-copy {
  display: grid;
  gap: 10px;
}

.sequence-name {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
}

.sequence-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 54px);
  font-weight: 400;
  line-height: 1.02;
}

.sequence-copy > p:last-child {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.sequence-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  min-width: 240px;
}

.sequence-facts span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.sequence-item .text-link {
  align-self: center;
  color: var(--ink);
}

.field-section {
  background: #ffffff;
  padding-top: 96px;
  padding-bottom: 116px;
}

.field-head {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.field-head h2 {
  margin: 0;
  max-width: 10ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 84px);
  font-weight: 400;
  line-height: 0.98;
}

.field-head p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.field-card {
  position: relative;
  min-height: 360px;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 0;
  background: #f4f7f5;
  isolation: isolate;
}

.field-card.wide {
  grid-column: span 8;
  min-height: 460px;
}

.field-card img {
  position: absolute;
  inset: 0;
  transition: transform 0.85s ease;
}

.field-card:hover img {
  transform: scale(1.03);
}

.field-card figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, rgba(10, 32, 36, 0.06), rgba(10, 32, 36, 0.56));
  color: var(--white);
}

.field-card span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field-card p,
.field-note {
  margin: 10px 0 0;
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.65;
}

.field-card-text {
  display: grid;
  align-items: end;
  padding: 26px;
  background: linear-gradient(180deg, #f7f8f6, #eef2ef);
}

.field-note {
  color: var(--ink);
  max-width: 24ch;
  font-size: 20px;
  line-height: 1.55;
}

.field-card:nth-child(2),
.field-card:nth-child(5),
.field-card:nth-child(8) {
  grid-column: span 4;
}

.field-card:nth-child(3),
.field-card:nth-child(7) {
  grid-column: span 4;
}

.field-card:nth-child(4) {
  grid-column: span 4;
}

.field-card:nth-child(2) {
  min-height: 320px;
}

.field-card:nth-child(3) {
  min-height: 420px;
}

.field-card:nth-child(4) {
  min-height: 420px;
}

.field-card:nth-child(5) {
  min-height: 420px;
}

.field-card:nth-child(6) {
  min-height: 320px;
}

.field-card:nth-child(7) {
  min-height: 360px;
}

.field-card:nth-child(8) {
  min-height: 320px;
}

.field-card:nth-child(9) {
  min-height: 400px;
}

.quote-section {
  background: #ffffff;
  padding-top: 48px;
  padding-bottom: 112px;
}

.quote-panel {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  padding-top: 36px;
  border-top: 1px solid rgba(23, 54, 59, 0.12);
}

.quote-panel blockquote {
  margin: 0;
}

.quote-panel blockquote p {
  margin: 0;
  max-width: 12ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 100px);
  font-weight: 400;
  line-height: 0.94;
}

.quote-source {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.closing-section {
  background: #143c33;
  color: var(--white);
  padding-top: 110px;
  padding-bottom: 120px;
}

.closing-panel {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.closing-section .section-label,
.closing-section p,
.closing-section h2 {
  color: var(--white);
}

.closing-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.95;
}

.closing-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.72;
}

.closing-panel .button {
  justify-self: end;
}

@media (max-width: 1180px) {
  .statement-grid,
  .sequence-head,
  .field-head,
  .quote-panel,
  .closing-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .statement-thumb {
    justify-self: start;
  }

  .sequence-item {
    grid-template-columns: 86px 1fr;
  }

  .sequence-facts,
  .sequence-item .text-link {
    grid-column: 1 / -1;
  }

  .field-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .field-card,
  .field-card.wide,
  .field-card:nth-child(2),
  .field-card:nth-child(3),
  .field-card:nth-child(4),
  .field-card:nth-child(5),
  .field-card:nth-child(6),
  .field-card:nth-child(7),
  .field-card:nth-child(8),
  .field-card:nth-child(9) {
    grid-column: span 6;
    min-height: 320px;
  }
}

@media (max-width: 920px) {
  .statement-section,
  .sequence-section,
  .field-section,
  .quote-section,
  .closing-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

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

  .field-card,
  .field-card.wide,
  .field-card:nth-child(2),
  .field-card:nth-child(3),
  .field-card:nth-child(4),
  .field-card:nth-child(5),
  .field-card:nth-child(6),
  .field-card:nth-child(7),
  .field-card:nth-child(8),
  .field-card:nth-child(9) {
    grid-column: span 1;
    min-height: 300px;
  }

  .sequence-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sequence-number {
    font-size: 42px;
  }

  .closing-panel .button {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .field-card img,
  .statement-thumb img {
    transform: none !important;
  }
}

/* Eluna Bay literal home remake */
.eluna-home {
  background: #ffffff;
  color: #163a2e;
}

.eluna-home + .site-footer {
  border-top: 0;
}

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

.eluna-home img {
  border-radius: 0 !important;
}

.eluna-hero {
  position: relative;
  height: 660px;
  min-height: 66svh;
  overflow: hidden;
  background: #143c33;
}

.eluna-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  animation: elunaHeroIn 2.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eluna-title-block {
  min-height: 850px;
  padding: 58px 0 120px;
  background: #143c33;
  color: #ffffff;
}

.eluna-title-inner {
  position: relative;
  width: min(1320px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.66fr) 168px;
  gap: 36px;
  align-items: start;
}

.eluna-title-inner h1 {
  margin: 0;
  max-width: 7.5ch;
  font-family: var(--display);
  font-size: clamp(74px, 9vw, 158px);
  font-weight: 600;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eluna-title-copy {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.eluna-title-copy p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.eluna-title-card {
  margin: 0;
  width: 168px;
  height: 132px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.eluna-title-card img {
  padding: 10px;
  background: #ffffff;
}

.eluna-numbers {
  min-height: 640px;
  padding: 122px 0 60px;
  background: #ffffff;
}

.eluna-number-line {
  width: min(820px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px;
  align-items: end;
}

.eluna-number-line article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: end;
}

.eluna-number-line span {
  color: #b68a42;
  font-family: var(--display);
  font-size: clamp(58px, 6vw, 92px);
  line-height: 0.8;
}

.eluna-number-line p {
  margin: 0 0 6px;
  color: #163a2e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.eluna-number-line p strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.eluna-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 70px 0 0 calc((100vw - min(820px, calc(100vw - 88px))) / 2);
  padding: 0 18px;
  border: 1px solid rgba(22, 58, 46, 0.28);
  border-radius: 999px;
  color: #163a2e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eluna-gallery {
  position: relative;
  min-height: 3600px;
  background: #ffffff;
  overflow: hidden;
}

.eluna-float {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #f7f7f3;
  box-shadow: 0 18px 60px rgba(22, 58, 46, 0.08);
}

.eluna-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.eluna-float:hover img {
  transform: scale(1.035);
}

.image-a {
  top: 120px;
  left: 11%;
  width: 170px;
  height: 218px;
}

.image-b {
  top: 520px;
  left: 37%;
  width: 250px;
  height: 334px;
}

.image-c {
  top: 910px;
  right: 19%;
  width: 210px;
  height: 280px;
}

.image-d {
  top: 1350px;
  left: 26%;
  width: 180px;
  height: 140px;
}

.image-e {
  top: 1980px;
  right: 14%;
  width: 300px;
  height: 390px;
}

.image-f {
  top: 2460px;
  left: 9%;
  width: 260px;
  height: 348px;
}

.image-g {
  top: 2920px;
  left: 33%;
  width: 290px;
  height: 382px;
}

.eluna-details {
  padding: 90px 0 210px;
  background: #ffffff;
}

.eluna-details-inner {
  width: min(1040px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 220px;
  align-items: end;
}

.eluna-detail-card {
  border: 1px solid rgba(22, 58, 46, 0.18);
  padding: 28px 30px;
  background: #ffffff;
}

.eluna-detail-card p {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(22, 58, 46, 0.12);
  color: #4a625b;
  font-size: 13px;
  line-height: 1.45;
}

.eluna-detail-card p:last-child {
  border-bottom: 0;
}

.eluna-detail-card span {
  color: #163a2e;
  font-weight: 700;
}

.eluna-details blockquote {
  margin: 0;
}

.eluna-details blockquote p {
  margin: 0;
  max-width: 560px;
  color: #163a2e;
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 64px);
  line-height: 1.04;
}

.eluna-details cite {
  display: block;
  margin-top: 26px;
  color: #5f756f;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eluna-final {
  min-height: 620px;
  padding: 120px 0;
  background: #143c33;
  color: #ffffff;
}

.eluna-final-inner {
  width: min(1040px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.eluna-final h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 132px);
  font-weight: 600;
  line-height: 0.86;
  text-transform: uppercase;
}

.eluna-final p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

@keyframes elunaHeroIn {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .eluna-title-inner,
  .eluna-details-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .eluna-title-card {
    width: 220px;
    height: 160px;
  }

  .eluna-gallery {
    min-height: 2800px;
  }

  .image-a { left: 8%; }
  .image-b { left: 44%; }
  .image-c { right: 8%; }
  .image-e { right: 8%; }
}

@media (max-width: 760px) {
  .eluna-hero {
    height: 520px;
  }

  .eluna-title-block {
    min-height: 620px;
    padding: 48px 0 96px;
  }

  .eluna-title-inner,
  .eluna-number-line,
  .eluna-details-inner,
  .eluna-final-inner {
    width: calc(100% - 32px);
  }

  .eluna-number-line {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .eluna-pill {
    margin-left: 16px;
  }

  .eluna-gallery {
    min-height: 2300px;
  }

  .eluna-float {
    width: 58vw;
    height: 72vw;
  }

  .image-a { top: 80px; left: 8%; }
  .image-b { top: 390px; left: 34%; }
  .image-c { top: 690px; right: 8%; }
  .image-d { top: 1000px; left: 12%; height: 42vw; }
  .image-e { top: 1280px; right: 8%; }
  .image-f { top: 1580px; left: 8%; }
  .image-g { top: 1880px; left: 30%; }

  .eluna-details {
    padding-bottom: 120px;
  }

  .eluna-detail-card p {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.eluna-testimonials {
  padding: 0 0 120px;
  background: #ffffff;
}

.eluna-testimonials-inner {
  width: min(1040px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.eluna-quote {
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(22, 58, 46, 0.12);
}

.eluna-quote p {
  margin: 0;
  color: #163a2e;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.18;
}

.eluna-quote cite {
  display: block;
  margin-top: 18px;
  color: #5f756f;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eluna-packages {
  padding: 0 0 110px;
  background: #ffffff;
}

.eluna-packages-inner {
  width: min(1040px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: end;
}

.eluna-packages .section-label {
  margin: 0 0 12px;
  color: #5f756f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eluna-packages h2 {
  margin: 0;
  max-width: 12ch;
  color: #163a2e;
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
}

.eluna-packages p {
  max-width: 42ch;
  margin: 18px 0 0;
  color: #5f756f;
  font-size: 16px;
  line-height: 1.7;
}

.eluna-package-cards {
  display: grid;
  gap: 18px;
}

.eluna-package-card {
  display: grid;
  gap: 10px;
  padding: 24px 26px;
  border: 1px solid rgba(22, 58, 46, 0.18);
  background: #f7f7f3;
  transition: border-color 0.28s ease, background-color 0.28s ease;
}

.eluna-package-card:hover {
  border-color: rgba(22, 58, 46, 0.34);
  background: #f1f3ef;
}

.eluna-package-card h3 {
  margin: 0;
  color: #163a2e;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.eluna-package-card p {
  margin: 0;
  max-width: none;
  font-size: 14px;
}

.eluna-package-card span {
  margin-top: 6px;
  color: #163a2e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eluna-final .button {
  width: max-content;
  margin-top: 8px;
  border-color: rgba(255, 255, 255, 0.44);
  background: transparent;
  color: #ffffff;
}

.eluna-final .button:hover {
  background: rgba(255, 255, 255, 0.08);
}

body[data-page="home"] .site-nav {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(7, 24, 27, 0.55), rgba(7, 24, 27, 0));
  border-bottom: 0;
}

body[data-page="home"] .site-nav.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

body[data-page="home"] .site-nav.is-solid .nav-links a::after,
body[data-page="home"] .site-nav.is-solid .reserve-link::after {
  background: var(--sea);
}

@media (max-width: 920px) {
  .eluna-testimonials-inner,
  .eluna-packages-inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }
}
