:root {
  --ink: #111111;
  --paper: #ffffff;
  --soft: #f5f5f3;
  --hero: #d3d3d3;
  --placeholder: #d3d3d3;
  --line: #d9d9d9;
  --shell: min(1180px, calc(100% - 48px));
  --font: "Manrope", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.hero {
  min-height: 350px;
  padding: 38px clamp(24px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background: var(--hero);
}

.hero__brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: .95;
  letter-spacing: -.035em;
}

.brand span,
.brand strong {
  font-size: clamp(16px, 1.4vw, 23px);
}

.brand strong {
  font-weight: 700;
}

.hero__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  font-size: 12px;
  line-height: 1.25;
}

.hero__nav a {
  transition: opacity 180ms ease;
}

.hero__nav a:hover,
.hero__nav a:focus-visible {
  opacity: .45;
}

.hero__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
}

.hero__side p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.book-button {
  min-width: 145px;
  min-height: 43px;
  padding: 7px 8px 7px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(17,17,17,.42);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .04em;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.book-button__icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.book-button:hover,
.book-button:focus-visible {
  color: #fff;
  background: var(--ink);
  transform: translateY(-1px);
}

.intro {
  padding-top: 52px;
}

.intro__copy {
  width: min(530px, 100%);
  margin-left: auto;
  margin-bottom: 52px;
}

.intro__copy p {
  margin: 0;
  font-size: clamp(22px, 2.7vw, 40px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.image-placeholder {
  display: block;
  background: var(--placeholder);
}

.image-placeholder--square {
  aspect-ratio: 1 / 1.06;
}

.feature-card h2 {
  margin: 14px 0 5px;
  font-size: 13px;
}

.feature-card p {
  margin: 0;
  max-width: 29ch;
  font-size: 11px;
  line-height: 1.45;
}

.section {
  padding-top: 100px;
}

.section-heading {
  min-height: 35px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-heading h2,
.fact-sheet h2,
.design h2,
.food h2,
.about h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.section-heading a {
  font-size: 11px;
}

.section-heading--lined {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.gallery-controls {
  display: flex;
  gap: 4px;
}

.gallery-controls button {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 42%);
  gap: 34px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: inline mandatory;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  scroll-snap-align: start;
}

.gallery-item--wide {
  aspect-ratio: 1.35 / 1;
}

.gallery-item--portrait {
  aspect-ratio: 1 / 1.1;
}

.gallery-item--square {
  aspect-ratio: 1 / 1;
}

.image-placeholder--room {
  width: 100%;
  aspect-ratio: 2.05 / 1;
}

.room-feature {
  display: block;
}

.fact-sheet {
  padding-top: 78px;
}

.fact-sheet__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(230px, .85fr) 1.65fr;
  gap: 80px;
}

.fact-sheet__intro {
  max-width: 340px;
}

.fact-sheet__intro p {
  margin: 0;
  font-size: 12px;
}

.eyebrow {
  margin-bottom: 14px !important;
  font-weight: 700;
}

.facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 48px;
}

.facts div {
  min-height: 70px;
}

.facts dt {
  margin-bottom: 8px;
  font-size: 11px;
  opacity: .55;
}

.facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.editorial-spacer {
  min-height: 750px;
  padding-top: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.editorial-spacer p {
  margin: 0;
  font-size: 10px;
}

.design {
  padding-top: 74px;
}

.design__canvas {
  min-height: 680px;
  position: relative;
  margin-top: 42px;
}

.design__image {
  position: absolute;
}

.design__image--large {
  width: min(48%, 540px);
  aspect-ratio: 1 / 1.16;
  top: 0;
  right: 0;
}

.design__image--small {
  width: min(32%, 320px);
  aspect-ratio: 1 / 1.18;
  left: 0;
  bottom: 0;
}

.food {
  padding-top: 36px;
  padding-bottom: 130px;
}

.food__image {
  width: min(43%, 450px);
  aspect-ratio: 1 / 1.08;
  margin-top: 30px;
}

.food__note {
  width: min(530px, 100%);
  margin: 42px 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.food__note p {
  margin: 0;
  font-size: 12px;
}

.about {
  min-height: 650px;
  padding: 110px 0;
  background: var(--soft);
}

.about__inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.about__copy {
  max-width: 540px;
}

.about__copy p {
  margin: 0;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.footer {
  min-height: 210px;
  padding: 48px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 10px;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .hero {
    min-height: 305px;
    padding: 26px 20px;
  }

  .feature-grid {
    gap: 14px;
  }

  .gallery-track {
    grid-auto-columns: 72%;
    gap: 14px;
  }

  .fact-sheet__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .editorial-spacer {
    min-height: 560px;
  }

  .design__canvas {
    min-height: 570px;
  }

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

@media (max-width: 620px) {
  body {
    font-size: 13px;
  }

  .hero {
    min-height: 270px;
  }

  .brand span,
  .brand strong {
    font-size: 13px;
  }

  .hero__nav {
    font-size: 9px;
  }

  .hero__side p {
    font-size: 11px;
  }

  .book-button {
    min-width: 104px;
    min-height: 35px;
    padding-left: 12px;
    font-size: 8px;
  }

  .book-button__icon {
    width: 22px;
    height: 22px;
  }

  .intro {
    padding-top: 28px;
  }

  .intro__copy {
    width: 78%;
    margin-bottom: 34px;
  }

  .intro__copy p {
    font-size: 18px;
  }

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

  .feature-card h2 {
    margin-top: 8px;
    font-size: 9px;
  }

  .feature-card p {
    font-size: 7px;
  }

  .section {
    padding-top: 72px;
  }

  .section-heading h2,
  .fact-sheet h2,
  .design h2,
  .food h2,
  .about h2 {
    font-size: 11px;
  }

  .gallery-track {
    grid-auto-columns: 48%;
    gap: 10px;
  }

  .fact-sheet {
    padding-top: 58px;
  }

  .fact-sheet__grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 18px;
  }

  .fact-sheet__intro p,
  .facts dd {
    font-size: 8px;
  }

  .facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .facts div {
    min-height: 48px;
  }

  .facts dt {
    margin-bottom: 3px;
    font-size: 7px;
  }

  .editorial-spacer {
    min-height: 540px;
  }

  .design {
    padding-top: 48px;
  }

  .design__canvas {
    min-height: 500px;
    margin-top: 28px;
  }

  .design__image--large {
    width: 53%;
  }

  .design__image--small {
    width: 37%;
  }

  .food {
    padding-top: 28px;
    padding-bottom: 100px;
  }

  .food__image {
    width: 48%;
  }

  .food__note {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 55%;
    margin-top: 24px;
  }

  .food__note p {
    font-size: 8px;
  }

  .about {
    min-height: 520px;
    padding: 74px 0;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 120px;
  }

  .about__copy {
    width: 72%;
    margin-left: auto;
  }

  .about__copy p {
    font-size: 17px;
  }

  .footer {
    min-height: 170px;
  }
}
