@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #171a23;
  --ink-soft: #2b2e38;
  --cobalt: #243ac4;
  --cobalt-dark: #1d2fa4;
  --oyster: #f2efe6;
  --paper: #fffdf7;
  --white: #ffffff;
  --yellow: #f4d53f;
  --yellow-soft: #fff1a6;
  --mist: #d9deee;
  --line: rgba(23, 26, 35, 0.16);
  --line-light: rgba(255, 255, 255, 0.25);
  --muted: #626774;
  --shell: 1280px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 22px 55px rgba(22, 28, 52, 0.13);
  --shadow-small: 0 12px 30px rgba(22, 28, 52, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--oyster);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

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

.shell {
  width: min(100% - 48px, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.concept-bar {
  background: var(--cobalt);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.concept-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 32px;
  align-items: center;
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--ink);
  color: var(--white);
}

.site-header__inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark__name {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.07em;
}

.wordmark__slash {
  color: var(--yellow);
  font-size: 1.45rem;
  font-weight: 400;
}

.wordmark__descriptor {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 0.86rem;
  font-weight: 500;
}

.site-nav a,
.footer__links a {
  text-decoration: none;
}

.site-nav a:not(.site-nav__cta),
.footer__links a {
  opacity: 0.78;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:not(.site-nav__cta):hover,
.footer__links a:hover {
  color: var(--yellow);
  opacity: 1;
}

.site-nav__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow);
  transition: background 160ms ease, color 160ms ease;
}

.site-nav__cta:hover {
  background: var(--yellow);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  min-width: 76px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.8rem;
  font-weight: 600;
}

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

.menu-toggle__lines i {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.hero {
  padding: clamp(58px, 5vw, 76px) 0 86px;
  background: var(--oyster);
}

.hero__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  column-gap: 48px;
  align-items: end;
}

.hero__intro > .eyebrow {
  grid-column: 1 / -1;
}

.hero__intro > h1 {
  margin-bottom: 0;
}

.hero__intro > .hero__lede {
  padding-bottom: 8px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cobalt);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.065em;
}

h1 {
  max-width: 1050px;
  margin-bottom: 25px;
  font-size: clamp(4.2rem, 9vw, 8.5rem);
  line-height: 0.87;
}

h1 span {
  color: var(--cobalt);
}

.hero__lede {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.35;
}

.postcard-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.4fr) minmax(290px, 0.95fr);
  gap: 20px;
  margin-top: 42px;
  align-items: stretch;
}

.postcard {
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.postcard--aside {
  display: grid;
  gap: 20px;
  overflow: visible;
}

.mini-postcard,
.postcard--feature {
  padding: 11px;
  border: 1px solid rgba(23, 26, 35, 0.12);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.mini-postcard {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.mini-postcard--compact {
  grid-template-columns: 1fr;
}

.postcard--feature {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.postcard__media,
.stay-card__media,
.field-photo {
  min-width: 0;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
  background: var(--mist);
}

.postcard__media--aside {
  min-height: 150px;
  aspect-ratio: 1.7;
}

.postcard__media--compact {
  min-height: 150px;
  aspect-ratio: 1.7;
}

.postcard__media--feature {
  flex: 1;
  min-height: 430px;
}

.image-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.image-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.image-trigger:hover img {
  transform: scale(1.035);
}

.postcard__caption {
  display: grid;
  gap: 4px;
  align-content: end;
  min-width: 0;
  padding: 0 3px 3px;
}

.postcard__caption span,
.stay-card__kicker,
.stay-card__capacity,
.field-photo figcaption {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.postcard__caption strong {
  font-size: 1rem;
  line-height: 1.07;
}

.postcard__caption--feature {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 4px 4px;
}

.postcard__caption--feature strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.postcard__arrow {
  color: var(--cobalt);
  font-size: 1.4rem;
  line-height: 1;
}

.postcard--finder {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  background: var(--cobalt);
  color: var(--white);
  box-shadow: var(--shadow);
}

.finder__head h2 {
  max-width: 260px;
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 3.3vw, 3.8rem);
  line-height: 0.92;
}

.finder__head p:last-child {
  max-width: 290px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.83);
}

.finder-form {
  display: grid;
  gap: 14px;
}

.finder-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-form select {
  width: 100%;
  min-height: 49px;
  padding: 0 40px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 11px;
  outline: 0;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.finder-form select:focus-visible {
  border-color: var(--yellow);
  outline: 3px solid var(--yellow);
}

.finder-form select option {
  background: var(--ink);
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

.button--yellow:hover {
  background: var(--yellow-soft);
}

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

.button--ink:hover {
  background: var(--cobalt);
}

.button--outline {
  border-color: var(--cobalt);
  background: transparent;
  color: var(--cobalt);
}

.button--outline:hover {
  background: var(--cobalt);
  color: var(--white);
}

.finder__note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  line-height: 1.45;
}

.section-space {
  padding: clamp(70px, 9vw, 132px) 0;
}

.intro {
  background: var(--paper);
}

.intro__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.75fr);
  gap: clamp(40px, 10vw, 150px);
  align-items: end;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 6vw, 6.6rem);
  line-height: 0.91;
}

.intro__copy {
  max-width: 460px;
}

.intro__copy p,
.field-notes__copy > p:last-of-type,
.contact__details > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cobalt);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link:hover,
.card-link:hover {
  color: var(--cobalt-dark);
}

.stays {
  background: var(--oyster);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

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

.section-heading__note {
  max-width: 210px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  text-align: right;
}

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

.stay-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 35, 0.13);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.stay-card__media {
  aspect-ratio: 1.03;
  border-radius: 0;
}

.stay-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 21px 20px 23px;
}

.stay-card__kicker {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.stay-card h3 {
  min-height: 4.1em;
  margin-bottom: 12px;
  font-size: 1.23rem;
  line-height: 1.03;
}

.stay-card__capacity {
  margin-bottom: 23px;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: none;
}

.card-link {
  margin-top: auto;
  font-size: 0.85rem;
}

.empty-state {
  margin-top: 22px;
  padding: 28px;
  border: 1px dashed rgba(36, 58, 196, 0.5);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
}

.empty-state h3 {
  margin-bottom: 5px;
  font-size: 1.45rem;
}

.empty-state p {
  margin-bottom: 18px;
  color: var(--muted);
}

.section-action {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 44px;
}

.section-action p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: right;
}

.field-notes {
  background: var(--ink);
  color: var(--white);
}

.field-notes__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(38px, 8vw, 120px);
  align-items: center;
}

.field-notes__copy h2 {
  max-width: 580px;
  margin-bottom: 25px;
}

.field-notes__copy > p:last-of-type {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.76);
}

.neighborhood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 29px;
}

.neighborhood-list span {
  padding: 8px 11px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.77rem;
}

.field-notes__images {
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  gap: 15px;
  align-items: end;
}

.field-photo {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
}

.field-photo--large {
  aspect-ratio: 0.93;
}

.field-photo--small {
  aspect-ratio: 0.78;
}

.field-photo figcaption {
  position: absolute;
  right: 13px;
  bottom: 11px;
  left: 13px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(23, 26, 35, 0.72);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.contact {
  background: var(--yellow);
}

.contact__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.68fr);
}

.contact__details {
  max-width: 430px;
}

.contact__details > p {
  color: var(--ink-soft);
}

.contact__email {
  display: inline-block;
  margin: 8px 0 20px;
  color: var(--cobalt);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
}

.contact__phones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 18px;
}

.contact__phones a,
.contact__details address {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-style: normal;
  text-decoration: none;
}

.contact__details .text-link {
  margin-top: 25px;
}

.site-footer {
  padding: 52px 0 62px;
  background: var(--ink);
  color: var(--white);
}

.site-footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.wordmark--footer {
  margin-bottom: 20px;
}

.footer__note {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 8px 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(12, 15, 24, 0.86);
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1000px);
  max-height: calc(100vh - 44px);
  padding: 16px;
  overflow: auto;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.lightbox__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 12px;
}

.lightbox__head .eyebrow {
  margin-bottom: 0;
}

.lightbox__close {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.lightbox__close span {
  color: var(--yellow);
  font-size: 1.35rem;
  line-height: 1;
}

.lightbox figure {
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: 15px;
  object-fit: contain;
  background: var(--ink-soft);
}

.lightbox figcaption {
  padding: 12px 3px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
}

@media (max-width: 1080px) {
  .hero__intro {
    display: block;
  }

  .hero__intro > h1 {
    margin-bottom: 25px;
  }
  .site-nav {
    gap: 17px;
    font-size: 0.79rem;
  }

  .postcard-strip {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  }

  .postcard--finder {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .finder-form {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }

  .finder__head {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 20px;
    align-items: end;
  }

  .finder__head .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .finder__head h2,
  .finder__head p:last-child {
    margin-bottom: 0;
  }

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

@media (max-width: 820px) {
  .shell {
    width: min(100% - 36px, var(--shell));
  }

  .site-header__inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 18px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--ink);
    box-shadow: 0 22px 30px rgba(0, 0, 0, 0.2);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a:not(.site-nav__cta),
  .site-nav__cta {
    min-height: 44px;
    align-items: center;
  }

  .site-nav__cta {
    justify-content: center;
  }

  .postcard-strip,
  .intro__grid,
  .field-notes__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .postcard--aside {
    grid-template-columns: 1fr 1fr;
  }

  .postcard--feature {
    order: -1;
  }

  .postcard__media--feature {
    min-height: 0;
    aspect-ratio: 1.2;
  }

  .postcard--finder {
    grid-column: auto;
  }

  .field-notes__images {
    max-width: 680px;
  }

  .contact__details {
    max-width: 520px;
  }

  .site-footer__grid {
    display: grid;
  }

  .footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 580px) {
  .concept-bar__inner {
    min-height: 38px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }

  .concept-bar__inner span:last-child {
    display: none;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .wordmark__descriptor {
    display: none;
  }

  .hero {
    padding-top: 52px;
    padding-bottom: 62px;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 6rem);
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4.3rem);
  }

  .postcard--aside {
    grid-template-columns: 1fr;
  }

  .mini-postcard,
  .mini-postcard--compact {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-rows: auto;
    align-items: center;
  }

  .postcard__media--aside,
  .postcard__media--compact {
    min-height: 0;
    aspect-ratio: 1.2;
  }

  .finder__head {
    display: block;
  }

  .finder__head h2 {
    margin-bottom: 12px;
  }

  .finder__head p:last-child {
    margin-bottom: 28px;
  }

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

  .finder-form .button {
    width: 100%;
  }

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

  .stay-card h3 {
    min-height: 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .section-heading__note {
    max-width: none;
    margin-top: 15px;
    text-align: left;
  }

  .section-action {
    display: block;
  }

  .section-action p {
    max-width: none;
    margin-top: 15px;
    text-align: left;
  }

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

  .contact__email {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .footer__links {
    display: grid;
    gap: 13px;
  }

  .lightbox {
    padding: 10px;
  }

  .lightbox__panel {
    max-height: calc(100vh - 20px);
    padding: 12px;
  }
}

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

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