:root {
  --dark:#0A3542;
  --blue:#325C62;
  --grey:#EDECF1;
  --white:#fff;
  --muted:#5d6e73;
  --line:rgba(10,53,66,.18);
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'Manrope',Arial,sans-serif;
}


* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:132px;
}

body {
  margin:0;
  color:var(--dark);
  background:#fff;
  font-family:var(--sans);
  font-size:15px;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
}

img {
  display:block;
  max-width:100%;
  object-fit:cover;
}

a {
  color:inherit;
  text-decoration:none;
}

button {
  font:inherit;
}

button:disabled {
  opacity:1;
  cursor:default;
}

button {
  transition:background .25s,color .25s,border-color .25s;
}

a:focus-visible,button:focus-visible {
  outline:2px solid currentColor;
  outline-offset:6px;
}

h1,h2,h3,p,figure,blockquote {
  margin:0;
}

h1,h2,h3 {
  font-family:var(--serif);
  font-weight:400;
  line-height:1.05;
}

h2 {
  font-size:clamp(42px,4.4vw,66px);
  letter-spacing:-1.8px;
}

h3 {
  font-size:36px;
  letter-spacing:-.7px;
}

em {
  font-weight:400;
}

p {
  color:var(--muted);
}

.wrap {
  width:min(1280px,calc(100% - 112px));
  margin-inline:auto;
}

.section-space {
  padding-block:112px;
}

.eyebrow {
  font-family:var(--sans);
  font-size:10px;
  letter-spacing:2.1px;
  font-weight:600;
  line-height:1.6;
  color:var(--blue);
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  min-height:54px;
  padding:16px 24px;
  border:1px solid var(--dark);
  border-radius:0;
  font-size:11px;
  font-weight:600;
  line-height:1.4;
  letter-spacing:.5px;
  background:var(--dark);
  color:white;
}

.button span {
  font-size:20px;
  font-weight:400;
  line-height:1;
}

.button-white {
  background:white;
  color:var(--dark);
  border-color:white;
}

.button-white:hover {
  background:var(--grey);
  border-color:var(--grey);
}

.text-button {
  border:0;
  border-bottom:1px solid var(--line);
  background:none;
  color:var(--dark);
  padding:0 0 10px;
  display:inline-flex;
  gap:32px;
  align-items:center;
  font-size:12px;
  font-weight:600;
  line-height:1.5;
}

.text-button span {
  font-size:22px;
  font-weight:400;
}

.text-button:hover {
  color:var(--blue);
  border-color:var(--blue);
}

.actions {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.skip-link {
  opacity: 0;
  position:fixed;
  left:20px;
  top:-80px;
  padding:10px 20px;
  background:white;
  z-index:10;
}

.skip-link:focus {
  opacity: 1;
  top:10px;
}

.hero {
  position:relative;
  min-height:820px;
  min-height:min(900px,100svh);
  padding-top:116px;
  color:white;
  isolation:isolate;
  background:var(--dark);
  display:flex;
  flex-direction:column;
}

.hero:after {
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(90deg,rgba(5,30,37,.71),rgba(5,30,37,.19) 80%),linear-gradient(0deg,rgba(5,30,37,.7),transparent 40%,rgba(5,30,37,.18));
}

.hero-photo {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:-2;
  object-position:center 47%;
}

.site-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  margin-inline:0;
  padding-inline:max(56px,calc((100vw - 1280px) / 2));
  min-height:128px;
  border-bottom:1px solid #ffffff30;
  color:white;
  z-index:50;
  transition:background .25s ease,border-color .25s ease,box-shadow .25s ease,min-height .25s ease,padding-block .25s ease;
}

.site-header.is-scrolled {
  min-height:86px;
  background:rgba(10,53,66,.96);
  border-bottom-color:rgba(255,255,255,.14);
  box-shadow:0 18px 42px rgba(3,25,32,.2);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.brand {
  flex-shrink:0;
  width:155px;
}

.brand img {
  width:155px;
  height:auto;
}

.site-header nav {
  display:flex;
  align-items:center;
  gap:34px;
  padding-left:28px;
  font-size:11px;
  letter-spacing:.3px;
}

.site-header nav a {
  padding-block:10px;
  position:relative;
}

.site-header nav a:after {
  content:'';
  position:absolute;
  left:0;
  right:100%;
  bottom:4px;
  height:1px;
  background:white;
  transition:right .25s;
}

.site-header nav a:hover:after {
  right:0;
}

.header-cta {
  background:transparent;
  border-color:#ffffff80;
  color:white;
  padding:12px 18px;
  min-height:44px;
  font-size:10px;
}

.header-cta:hover {
  background:#ffffff12;
}

.hero-content {
  padding-block:74px 78px;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}

.hero .eyebrow {
  color:white;
  font-size:10px;
  letter-spacing:2.7px;
  display:flex;
  gap:18px;
  align-items:center;
}

.fine-line {
  display:inline-block;
  width:40px;
  height:1px;
  background:currentColor;
}

.hero h1 {
  font-size:clamp(74px,7.7vw,116px);
  letter-spacing:-3px;
  line-height:.98;
  margin-top:25px;
}

.hero h1 em {
  font-weight:400;
}

.hero-description {
  color:#f3f4f3;
  font-size:14px;
  line-height:1.9;
  margin-top:25px;
}

.hero-actions {
  margin-top:30px;
}

.hero-actions .button {
  min-width:184px;
}

.hero-foot {
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid #ffffff35;
  padding-block:22px 26px;
  font-size:10px;
  letter-spacing:.6px;
  color:#edf1f1;
}

.intro-heading {
  text-align:center;
  max-width:690px;
  margin:0 auto 54px;
}

.intro-heading .eyebrow {
  margin-bottom:20px;
}

.intro-heading>p:last-child {
  max-width:520px;
  margin:22px auto 0;
  font-size:14px;
}

.pathways {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.image-window {
  overflow:hidden;
  background:var(--grey);
}

.image-window img {
  width:100%;
  height:100%;
  transition:transform .7s;
}

.pathway:hover .image-window img,.property:hover .image-window img {
  transform:scale(1.025);
}

.pathway .image-window {
  aspect-ratio:1.68;
}

.pathway-copy {
  padding:28px 0 0;
}

.pathway-copy .eyebrow {
  font-size:9px;
  letter-spacing:1.8px;
}

.pathway h3 {
  margin-top:14px;
  font-size:36px;
}

.pathway p {
  font-size:13px;
  max-width:440px;
  margin-top:15px;
}

.pathway .text-button {
  margin-top:22px;
}

.stays {
  background:var(--grey);
}

.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:32px;
  margin-bottom:48px;
}

.section-heading .eyebrow {
  margin-bottom:17px;
}

.section-heading p:last-child {
  margin-top:20px;
  font-size:14px;
}

.section-heading>.text-button {
  flex-shrink:0;
  margin-bottom:4px;
}

.property-grid {
  display:grid;
  grid-template-columns:1.22fr 1fr;
  gap:44px;
}

.property-featured .image-window {
  height:665px;
}

.property-featured .image-window img {
  object-position:42% center;
}

.property-stack {
  display:grid;
  gap:34px;
}

.property-stack .image-window {
  height:247px;
}

.property-title {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  margin-top:20px;
}

.property-location {
  font-size:8px;
  letter-spacing:1.8px;
  color:var(--blue);
  font-weight:600;
}

.property h3 {
  font-size:35px;
  margin-top:6px;
}

.property-stack h3 {
  font-size:30px;
}

.circle-button {
  border:1px solid #325c6260;
  border-radius:50%;
  background:transparent;
  color:var(--dark);
  width:40px;
  height:40px;
  flex-shrink:0;
  font-size:23px;
  line-height:1;
}

.circle-button:hover {
  background:#ffffff70;
}

.property-description {
  font-size:12px;
  margin-top:15px;
}

.property-facts {
  display:flex;
  flex-wrap:wrap;
  gap:0;
  font-size:10px;
  margin-top:12px;
}

.property-facts span+span:before {
  content:'\00b7';
  padding:0 10px;
}

.direct-note {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  border-top:1px solid var(--line);
  padding-top:30px;
  margin-top:46px;
}

.direct-note p {
  font-size:12px;
  line-height:1.9;
}

.direct-note strong {
  font-weight:500;
  color:var(--dark);
}

.line-mark {
  border:1px solid var(--line);
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  font-size:22px;
}

.owners {
  background:var(--dark);
  color:white;
}

.owner-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:86px;
  align-items:center;
}

.owner-visual {
  position:relative;
  height:680px;
  isolation:isolate;
}

.owner-visual>img {
  width:100%;
  height:100%;
  object-position:40% center;
}

.owner-visual:after {
  content:'';
  position:absolute;
  inset:35% 0 0;
  background:linear-gradient(transparent,#082a35d9);
  z-index:0;
}

.owner-caption {
  position:absolute;
  bottom:36px;
  left:34px;
  right:25px;
  z-index:1;
}

.owner-caption>span {
  font-size:9px;
  letter-spacing:1.8px;
}

.owner-caption p {
  color:white;
  font-family:var(--serif);
  font-size:36px;
  line-height:1.12;
  margin-top:15px;
}

.owners .eyebrow {
  color:#c6d4d6;
}

.owner-content h2 {
  font-size:clamp(44px,4vw,62px);
  margin-top:22px;
}

.owner-content>p:not(.eyebrow) {
  font-size:13px;
  color:#cad6d9;
  margin-top:23px;
  max-width:470px;
}

.owner-values {
  margin-block:28px;
}

.owner-values>div {
  display:flex;
  gap:20px;
  padding:16px 0;
  border-top:1px solid #ffffff25;
}

.owner-values>div>span {
  font-size:10px;
  color:#b5c8ca;
  padding-top:2px;
}

.owner-values p {
  color:#bbcccf;
  font-size:11px;
  line-height:1.9;
}

.owner-values strong {
  font-size:13px;
  font-weight:500;
  color:white;
}

.owner-content .button {
  font-size:10px;
  gap:30px;
}

.story {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:90px;
  align-items:center;
}

.story h2 {
  font-size:54px;
  margin-top:20px;
}

.story-copy>p:not(.eyebrow) {
  font-size:13px;
  margin-top:21px;
  max-width:470px;
}

.story-copy>p:nth-of-type(2) {
  font-size:16px;
  color:var(--dark);
}

.story .text-button {
  margin-top:28px;
}

.signature {
  font-family:var(--serif);
  font-size:33px;
  margin-top:35px;
}

.signature em {
  font-size:30px;
}

.signature span {
  display:block;
  font-family:var(--sans);
  font-size:8px;
  letter-spacing:1.7px;
  margin-top:3px;
  color:var(--blue);
}

.host-photo {
  padding:0 0 35px 25px;
  position:relative;
}

.host-photo:before {
  content:'';
  position:absolute;
  inset:30px 25px 0 0;
  background:var(--grey);
  z-index:-1;
}

.host-photo img {
  width:100%;
  height:480px;
  object-position:50% center;
}

.host-photo figcaption {
  position:absolute;
  bottom:6px;
  left:25px;
  font-size:10px;
  color:var(--blue);
}

.explore {
  background:var(--grey);
}

.experience-grid {
  display:grid;
  grid-template-columns:1.18fr 1fr;
  grid-template-rows:280px 280px;
  gap:22px;
}

.experience {
  position:relative;
  overflow:hidden;
  background:var(--dark);
  color:white;
  isolation:isolate;
}

.experience-large {
  grid-row:span 2;
}

.experience>img {
  width:100%;
  height:100%;
  transition:transform .8s;
}

.experience:hover>img {
  transform:scale(1.025);
}

.experience:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(transparent 15%,rgba(5,28,35,.78));
  z-index:0;
}

.experience>div {
  position:absolute;
  left:32px;
  bottom:29px;
  right:24px;
  z-index:1;
}

.experience span {
  font-size:8px;
  letter-spacing:1.8px;
}

.experience h3 {
  font-size:33px;
  margin-top:12px;
  line-height:1.07;
}

.experience-large h3 {
  font-size:43px;
}

.experience p {
  color:#e0ebea;
  font-size:12px;
  margin-top:14px;
}

.testimonial {
  text-align:center;
  max-width:930px;
  padding-block:96px 110px;
}

.quote-mark {
  display:block;
  font-family:var(--serif);
  height:64px;
  font-size:100px;
  color:var(--blue);
  line-height:1.25;
  margin-top:18px;
}

.testimonial blockquote {
  font-family:var(--serif);
  font-size:clamp(32px,3.4vw,48px);
  line-height:1.2;
  margin-top:15px;
  letter-spacing:-.7px;
}

.quote-attribution {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-top:32px;
  text-align:left;
}

.quote-attribution strong {
  font-weight:600;
  font-size:10px;
  color:var(--dark);
}

.quote-attribution p>span {
  display:block;
  font-size:9px;
  margin-top:3px;
}

.closing {
  padding:80px 0 84px;
  background:var(--blue);
  color:white;
}

.closing>.wrap>.eyebrow {
  text-align:center;
  color:#d5e2e3;
}

.closing h2 {
  text-align:center;
  margin-top:18px;
  font-size:61px;
}

.closing-paths {
  display:grid;
  grid-template-columns:1fr 1fr;
  margin-top:46px;
}

.closing-paths>div {
  text-align:center;
  padding:5px 25px;
}

.closing-paths>div+div {
  border-left:1px solid #ffffff35;
}

.closing-paths h3 {
  font-size:31px;
}

.closing-paths p {
  color:#e0e8e9;
  font-size:12px;
  margin-top:12px;
}

.closing-paths .button {
  margin-top:25px;
  min-width:195px;
}

.site-footer {
  background:var(--dark);
  color:white;
}

.footer-main {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:70px;
  padding-block:65px;
}

.footer-brand img {
  width:155px;
  height:auto;
}

.footer-brand p {
  font-size:11px;
  color:#b9cbce;
  line-height:1.9;
  margin-top:20px;
}

.footer-main h2 {
  font-family:var(--sans);
  font-size:11px;
  letter-spacing:.4px;
  margin:10px 0 22px;
  font-weight:600;
}

.footer-nav a {
  display:block;
  font-size:11px;
  line-height:2.6;
  color:#c4d2d4;
}

.footer-nav a:hover {
  color:white;
  text-decoration:underline;
  text-underline-offset:5px;
}

.footer-contact p {
  font-size:11px;
  color:#c4d2d4;
  line-height:2.6;
}

.footer-bottom {
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid #ffffff20;
  font-size:9px;
  color:#adc2c6;
  padding-block:20px 26px;
}

@media(min-width:1600px) {
  .hero {
    min-height:900px;
  }
}

@media(max-width:1100px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .site-header {
    padding-inline:32px;
  }
  .site-header nav {
    gap:22px;
    padding-left:0;
  }
  .brand,.brand img {
    width:132px;
  }
  .site-header {
    gap:20px;
  }
  .owner-layout,.story {
    gap:45px;
  }
  .property-grid {
    gap:28px;
  }
  .owner-content h2 {
    font-size:49px;
  }
  .story h2 {
    font-size:46px;
  }
  .host-photo img {
    height:440px;
  }
  .footer-main {
    gap:35px;
  }
  .owner-visual {
    height:670px;
  }
  .property-featured .image-window {
    height:633px;
  }
  .property-stack .image-window {
    height:231px;
  }
}

@media(max-width:800px) {
  html {
    scroll-padding-top:168px;
  }

  .wrap {
    width:calc(100% - 48px);
  }
  .section-space {
    padding-block:80px;
  }
  .site-header {
    min-height:108px;
    gap:20px;
    flex-wrap:wrap;
    padding-block:18px;
  }
  .brand,.brand img {
    width:108px;
  }
  .site-header nav {
    font-size:10px;
    gap:20px;
  }
  .header-cta {
    display:none;
  }
  .hero {
    min-height:780px;
    padding-top:148px;
  }
  .hero-content {
    padding-block:65px;
  }
  .hero h1 {
    font-size:84px;
  }
  .hero .eyebrow {
    font-size:8px;
    letter-spacing:1.9px;
  }
  .hero-foot {
    font-size:8px;
  }
  .hero-description {
    font-size:13px;
  }
  .pathway h3 {
    font-size:29px;
  }
  .pathway p {
    font-size:12px;
  }
  .pathway-copy .eyebrow {
    font-size:8px;
  }
  .text-button {
    font-size:10px;
    gap:18px;
  }
  .property-grid {
    grid-template-columns:1fr 1fr;
    gap:25px;
  }
  .property-featured .image-window {
    height:580px;
  }
  .property-stack .image-window {
    height:205px;
  }
  .property h3 {
    font-size:31px;
  }
  .property-stack h3 {
    font-size:27px;
  }
  .property-location {
    font-size:7px;
    letter-spacing:1.1px;
  }
  .property-facts {
    font-size:9px;
  }
  .property-facts span+span:before {
    padding:0 7px;
  }
  .circle-button {
    width:32px;
    height:32px;
    font-size:19px;
  }
  .owner-layout {
    gap:32px;
  }
  .owner-content h2 {
    font-size:43px;
  }
  .owner-content>p:not(.eyebrow) {
    font-size:11px;
  }
  .owner-content .button {
    font-size:9px;
    padding:15px;
    gap:15px;
  }
  .owner-visual {
    height:650px;
  }
  .owner-caption {
    left:22px;
    bottom:28px;
  }
  .owner-caption p {
    font-size:31px;
  }
  .owner-caption>span {
    font-size:7px;
  }
  .owner-values p {
    font-size:10px;
  }
  .story {
    gap:32px;
  }
  .story h2 {
    font-size:39px;
  }
  .story-copy>p:not(.eyebrow) {
    font-size:12px;
  }
  .host-photo {
    padding-left:14px;
  }
  .host-photo img {
    height:435px;
    object-position:53%;
  }
  .host-photo figcaption {
    font-size:8px;
    left:14px;
  }
  .experience-grid {
    grid-template-rows:240px 240px;
    gap:18px;
  }
  .experience>div {
    left:23px;
    bottom:25px;
  }
  .experience h3 {
    font-size:29px;
  }
  .experience-large h3 {
    font-size:37px;
  }
  .closing h2 {
    font-size:49px;
  }
  .closing-paths h3 {
    font-size:27px;
  }
  .footer-main {
    gap:30px;
    grid-template-columns:1.1fr .9fr 1.2fr;
  }
  .footer-contact p {
    font-size:10px;
  }
  .footer-main {
    padding-block:50px;
  }
}

@media(max-width:650px) {
  html {
    scroll-padding-top:174px;
  }

  .wrap {
    width:calc(100% - 40px);
  }
  .section-space {
    padding-block:65px;
  }
  h2 {
    font-size:43px;
    letter-spacing:-1px;
  }
  .eyebrow {
    font-size:8px;
    letter-spacing:1.6px;
  }
  .site-header {
    justify-content:center;
    gap:10px;
    min-height:126px;
    padding-block:16px 12px;
  }
  .brand,.brand img {
    width:106px;
  }
  .site-header nav {
    width:100%;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    row-gap:0;
    font-size:9px;
  }
  .site-header nav a {
    padding-block:5px;
  }
  .hero {
    min-height:720px;
    padding-top:158px;
  }
  .hero-photo {
    object-position:60% center;
  }
  .hero:after {
    background:linear-gradient(90deg,#051e259e,#051e2550),linear-gradient(0deg,#051e25bc,transparent 70%);
  }
  .hero-content {
    padding-block:50px 60px;
    justify-content:center;
  }
  .hero .eyebrow {
    font-size:7px;
    letter-spacing:1.6px;
    gap:10px;
  }
  .hero .fine-line {
    width:20px;
  }
  .hero h1 {
    font-size:54px;
    letter-spacing:-1.6px;
    line-height:1.03;
    margin-top:24px;
  }
  .hero-description {
    font-size:12px;
    line-height:1.85;
    margin-top:24px;
    max-width:320px;
  }
  .desktop-break {
    display:none;
  }
  .hero-actions {
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
    gap:10px;
    margin-top:28px;
  }
  .hero-actions .button {
    min-width:0;
    font-size:9px;
    padding:15px 16px;
    gap:12px;
    min-height:49px;
  }
  .hero-foot {
    font-size:8px;
    display:block;
    padding-block:18px 20px;
  }
  .hero-foot span {
    display:block;
  }
  .hero-foot span+span {
    margin-top:5px;
    color:#d0dcde;
  }
  .intro-heading {
    margin-bottom:34px;
  }
  .intro-heading .eyebrow {
    margin-bottom:15px;
  }
  .intro-heading>p:last-child {
    font-size:12px;
    margin-top:18px;
  }
  .pathways {
    grid-template-columns:1fr;
    gap:38px;
  }
  .pathway .image-window {
    aspect-ratio:1.43;
  }
  .pathway-copy {
    padding-top:22px;
  }
  .pathway h3 {
    font-size:32px;
    margin-top:10px;
  }
  .pathway p {
    font-size:12px;
    margin-top:12px;
  }
  .pathway .text-button {
    margin-top:18px;
  }
  .text-button {
    font-size:11px;
  }
  .section-heading {
    display:block;
    margin-bottom:32px;
  }
  .section-heading p:last-child {
    font-size:12px;
    margin-top:16px;
  }
  .section-heading>.text-button {
    margin-top:24px;
  }
  .property-grid {
    grid-template-columns:1fr;
    gap:34px;
  }
  .property-featured .image-window {
    height:auto;
    aspect-ratio:1.04;
  }
  .property-stack {
    gap:34px;
  }
  .property-stack .image-window {
    height:auto;
    aspect-ratio:1.43;
  }
  .property-title {
    margin-top:17px;
  }
  .property h3,.property-stack h3 {
    font-size:33px;
  }
  .property-location {
    font-size:8px;
  }
  .property-facts {
    font-size:10px;
    margin-top:10px;
  }
  .property-description {
    font-size:11px;
  }
  .circle-button {
    height:37px;
    width:37px;
  }
  .direct-note {
    margin-top:32px;
    padding-top:24px;
    align-items:flex-start;
    gap:15px;
  }
  .direct-note p {
    font-size:10px;
  }
  .line-mark {
    flex-shrink:0;
    width:30px;
    height:30px;
    font-size:18px;
  }
  .owner-layout {
    grid-template-columns:1fr;
    gap:37px;
  }
  .owner-visual {
    height:395px;
  }
  .owner-caption {
    left:25px;
    bottom:25px;
  }
  .owner-caption p {
    font-size:33px;
  }
  .owner-caption>span {
    font-size:8px;
  }
  .owner-content h2 {
    font-size:49px;
    margin-top:16px;
  }
  .owner-content>p:not(.eyebrow) {
    font-size:12px;
    margin-top:20px;
  }
  .owner-values p {
    font-size:11px;
  }
  .owner-content .button {
    font-size:10px;
    min-height:52px;
    width:100%;
    padding:17px 20px;
  }
  .story {
    grid-template-columns:1fr;
    gap:37px;
  }
  .story h2 {
    font-size:43px;
  }
  .story-copy>p:not(.eyebrow) {
    font-size:12px;
  }
  .signature {
    font-size:31px;
    margin-top:26px;
  }
  .host-photo {
    padding-left:18px;
  }
  .host-photo img {
    height:350px;
  }
  .host-photo figcaption {
    left:18px;
    font-size:9px;
  }
  .experience-grid {
    grid-template-columns:1fr;
    grid-template-rows:390px 270px 270px;
    gap:18px;
  }
  .experience-large {
    grid-row:auto;
  }
  .experience-large h3 {
    font-size:37px;
  }
  .experience h3 {
    font-size:34px;
  }
  .experience p {
    font-size:11px;
  }
  .experience>div {
    left:24px;
    bottom:24px;
  }
  .testimonial blockquote {
    font-size:35px;
    line-height:1.15;
  }
  .quote-attribution {
    margin-top:25px;
    gap:15px;
  }
  .quote-attribution strong {
    font-size:9px;
  }
  .testimonial .quote-mark {
    margin-top:10px;
  }
  .closing {
    padding-block:62px;
  }
  .closing h2 {
    font-size:45px;
  }
  .closing-paths {
    grid-template-columns:1fr;
    margin-top:32px;
    gap:30px;
  }
  .closing-paths>div {
    padding:0;
  }
  .closing-paths>div+div {
    border-left:0;
    border-top:1px solid #ffffff35;
    padding-top:30px;
  }
  .closing-paths h3 {
    font-size:31px;
  }
  .closing-paths p {
    font-size:11px;
  }
  .closing-paths .button {
    margin-top:20px;
    font-size:10px;
    min-height:49px;
  }
  .footer-main {
    grid-template-columns:1fr 1fr;
    gap:34px 20px;
    padding-block:43px;
  }
  .footer-brand {
    grid-column:1/-1;
    display:flex;
    gap:25px;
    align-items:center;
  }
  .footer-brand img {
    width:120px;
  }
  .footer-brand p {
    font-size:9px;
    margin-top:0;
  }
  .footer-main h2 {
    font-size:10px;
    margin:0 0 15px;
  }
  .footer-nav a {
    font-size:10px;
  }
  .footer-contact p {
    font-size:9px;
    overflow-wrap:anywhere;
  }
  .footer-bottom {
    display:block;
    font-size:8px;
    padding-block:20px;
  }
  .footer-bottom>span {
    display:block;
  }
  .footer-bottom>span+span {
    margin-top:7px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    transition:none!important;
  }
  .pathway:hover .image-window img,.property:hover .image-window img,.experience:hover>img {
    transform:none;
  }
}


/* Cinematic hero and booking panel */
.hero {
  min-height: 900px;
  min-height: max(820px, 100svh);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.is-playing { opacity: 1; }
.hero:after {
  background: linear-gradient(90deg, rgba(3, 25, 32, .76), rgba(3, 25, 32, .23) 85%), linear-gradient(0deg, rgba(3, 25, 32, .79), transparent 52%, rgba(3, 25, 32, .25));
}
.site-header { min-height: 116px; gap: 40px; }
.site-header.is-scrolled { min-height: 82px; }
.site-header .brand, .site-header .brand img { width: 144px; }
.site-header nav { padding-left: 0; gap: clamp(18px, 2vw, 30px); }
.site-header nav a {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .65px;
  white-space: nowrap;
}
.site-header nav a[aria-current='location']:after { right: 0; }
.hero-content { padding-block: 56px 42px; min-height: 490px; }
.hero h1 { font-size: clamp(74px, 6.6vw, 100px); }
.hero-description { max-width: 640px; }
.hero-actions .button { min-width: 190px; text-transform: uppercase; font-size: 10px; letter-spacing: 1px; }
.button-brand { background: var(--blue); border-color: var(--blue); }
.button-brand:hover { background: var(--dark); border-color: var(--dark); }
.button-outline { color: white; background: rgba(10, 53, 66, .16); border-color: rgba(255, 255, 255, .7); }
.button-outline:hover { background: rgba(255, 255, 255, .1); }
.hero-booking { padding-bottom: 20px; }
.booking-heading { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 16px; }
.booking-heading>p { font-family: var(--serif); font-size: 26px; color: white; line-height: 1.2; }
.rental-search { display: grid; grid-template-columns: 1.2fr 1fr 1fr .8fr 1.05fr; align-items: center; background: white; padding: 14px; color: var(--dark); box-shadow: 0 12px 40px rgba(3,25,32,.18); }
.search-field { min-width: 0; padding: 4px 24px; border-right: 1px solid var(--line); }
.search-field:nth-of-type(4) { border-right: 0; }
.search-field label { display: block; font-size: 8px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; line-height: 1.5; margin-bottom: 10px; color: var(--blue); }
.search-field input, .search-field select { min-width: 0; width: 100%; border: 0; border-radius: 0; background: transparent; color: var(--dark); font-family: var(--sans); font-size: 12px; font-weight: 500; padding: 0; min-height: 24px; color-scheme: light; }
.search-field input:focus-visible, .search-field select:focus-visible { outline: 2px solid var(--blue); outline-offset: 5px; }
.search-field select { cursor: pointer; }
.search-field input::-webkit-calendar-picker-indicator { opacity: .65; cursor: pointer; width: 14px; padding: 0; }
.search-submit { min-height: 64px; padding-inline: 22px; gap: 14px; background: var(--blue); border-color: var(--blue); text-transform: uppercase; font-size: 9px; letter-spacing: .8px; white-space: nowrap; }
.search-submit:hover { background: var(--dark); border-color: var(--dark); }
.search-icon { position: relative; width: 12px; height: 12px; border: 1.5px solid currentColor; border-radius: 50%; flex-shrink: 0; }
.search-icon:after { content: ''; width: 5px; height: 1.5px; background: currentColor; position: absolute; right: -4px; bottom: -2px; transform: rotate(45deg); }
.booking-footnote { display: flex; justify-content: space-between; gap: 20px; margin-top: 16px; font-size: 9px; color: #e3ecee; }
.booking-footnote span+span { font-size: 8px; letter-spacing: 1.6px; }
.reveal { transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.3,1); }
.reveal-pending { opacity: 0; transform: translateY(22px); }
@media (min-width: 1600px) {
  .hero { min-height: 940px; }
}
@media (max-width: 1100px) {
  .site-header { gap: 22px; padding-inline: 32px; }
  .site-header .brand, .site-header .brand img { width: 120px; }
  .site-header nav { gap: 17px; }
  .site-header nav a { font-size: 8px; letter-spacing: .35px; }
  .search-field { padding-inline: 16px; }
  .search-field input, .search-field select { font-size: 11px; }
  .search-submit { padding-inline: 14px; font-size: 8px; gap: 12px; }
}
@media (max-width: 800px) {
  html { scroll-padding-top: 164px; }
  .hero { min-height: 920px; }
  .hero { padding-top: 150px; }
  .site-header { justify-content: center; gap: 12px; padding-block: 20px 18px; padding-inline: 24px; }
  .site-header.is-scrolled { min-height: 126px; }
  .site-header .brand, .site-header .brand img { width: 112px; }
  .site-header nav { flex-basis: 100%; flex-wrap: wrap; justify-content: center; column-gap: 21px; row-gap: 0; }
  .site-header nav a { font-size: 8px; padding-block: 7px; }
  .hero-content { min-height: 450px; padding-block: 45px 38px; }
  .hero h1 { font-size: 80px; }
  .hero-actions .button { min-width: 180px; }
  .booking-heading>p { font-size: 24px; }
  .rental-search { grid-template-columns: 1.15fr 1fr 1fr .75fr; padding: 12px; row-gap: 14px; }
  .search-field { padding-inline: 12px; }
  .search-submit { grid-column: 1/-1; justify-content: center; min-height: 45px; font-size: 10px; }
  .search-submit>span:last-child { margin-left: 6px; }
  .booking-footnote { font-size: 8px; }
  .booking-footnote span+span { font-size: 7px; }
}
@media (max-width: 650px) {
  html { scroll-padding-top: 174px; }
  .hero { min-height: 980px; }
  .hero { padding-top: 164px; }
  .site-header { padding-block: 17px 16px; gap: 10px; padding-inline: 14px; }
  .site-header.is-scrolled { min-height: 142px; }
  .site-header .brand, .site-header .brand img { width: 106px; }
  .site-header nav { column-gap: 16px; row-gap: 1px; }
  .site-header nav a { font-size: 10px; letter-spacing: .2px; padding-block: 7px; }
  .hero-content { min-height: 400px; padding-block: 42px 36px; }
  .hero h1 { font-size: 54px; }
  .hero-actions .button { min-width: 0; font-size: 8px; padding-inline: 14px; letter-spacing: .65px; }
  .hero-description { font-size: 12px; }
  .hero-booking { padding-bottom: 23px; }
  .booking-heading { gap: 10px; margin-bottom: 15px; align-items: center; }
  .booking-heading>p { font-size: 23px; max-width: 210px; }
  .rental-search { grid-template-columns: 1fr 1fr; gap: 0; padding: 12px; }
  .search-field { padding: 13px 10px; }
  .search-field:nth-of-type(2) { border-right: none; }
  .search-field:nth-of-type(-n+2) { border-bottom: 1px solid var(--line); }
  .search-field label { font-size: 7px; letter-spacing: 1.25px; margin-bottom: 7px; }
  .search-field input, .search-field select { font-size: 11px; min-height: 25px; }
  .search-submit { margin-top: 12px; min-height: 48px; font-size: 9px; }
  .booking-footnote { margin-top: 14px; font-size: 8px; }
  .booking-footnote span+span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { transition: none; }
  .reveal-pending { opacity: 1; transform: none; }
  .reveal { transition: none; }
}
