:root {
  --ink: #0b0d10;
  --ink-soft: #10141a;
  --surface: #171c24;
  --paper: #f0eadf;
  --muted: #aaa89f;
  --line: rgba(240, 234, 223, 0.2);
  --accent: #bd7f52;
  --serif: Iowan Old Style, Baskerville, Times New Roman, serif;
  --sans: Helvetica Neue, Helvetica, Arial, sans-serif;
  --shell: 1710px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
body, button, a { -webkit-font-smoothing: antialiased; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.shell { width: min(var(--shell), calc(100% - 112px)); margin-inline: auto; }
.section { padding-block: 148px; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
}

.site-header {
  height: 84px;
  padding-inline: max(56px, calc((100vw - var(--shell)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  border-bottom: 1px solid rgba(240, 234, 223, 0.08);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 38px; fill: none; stroke: var(--paper); stroke-width: 1.25; }
.brand-type {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.12em;
}
.brand-type i { color: var(--accent); font-style: normal; font-weight: 500; letter-spacing: 0.31em; }
.nav-links { display: flex; align-items: center; gap: clamp(26px, 3vw, 58px); }
.nav-links a, .footer-nav a {
  position: relative;
  color: #d8d3c9;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links a::after, .footer-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after,
.footer-nav a:hover::after, .footer-nav a:focus-visible::after { transform: scaleX(1); }

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  height: 918px;
  max-height: 1000px;
  overflow: hidden;
  background: #11161a;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 8, 0.27) 0%, rgba(4, 7, 8, 0.05) 38%, rgba(4, 7, 8, 0.84) 100%),
    linear-gradient(90deg, rgba(4, 7, 8, 0.28), transparent 60%);
}
.hero-content { position: absolute; right: 0; bottom: 80px; left: 0; }
.eyebrow {
  margin: 0 0 26px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow-light { color: #ead8c4; }
.hero h1, h2, h3 { margin: 0; font-weight: 400; }
.hero h1 {
  max-width: 1180px;
  font-size: clamp(58px, 5.25vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.056em;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: end;
  margin-bottom: 122px;
}
.intro-grid > div { grid-column: 1 / span 7; }
.intro-grid .lead-copy { grid-column: 9 / span 4; }
h2 { font-size: clamp(46px, 4.6vw, 86px); line-height: 0.98; letter-spacing: -0.05em; }
.lead-copy, .understanding-copy p, .setting-copy > p, .notes-section > p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.65;
  color: #d0ccc3;
}
.lead-copy { margin: 0; max-width: 560px; }

.image-study {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 256px 170px 170px 210px;
  gap: 34px;
  padding-bottom: 34px;
}
.image-study figure { margin: 0; min-width: 0; position: relative; }
.image-study img { height: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.03); }
.image-study figcaption {
  position: absolute;
  right: 0;
  bottom: -25px;
  color: #8e8e88;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.study-one { grid-column: 1 / span 7; grid-row: 1 / span 2; }
.study-two { grid-column: 9 / span 4; grid-row: 1 / span 3; margin-top: 74px !important; }
.study-three { grid-column: 1 / span 4; grid-row: 3 / span 2; margin-top: 18px !important; }
.study-four { grid-column: 6 / span 7; grid-row: 4; }

.stay-section { padding-top: 96px; }
.section-heading { max-width: 940px; margin-bottom: 100px; }
.stay-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.stay-list li {
  display: grid;
  grid-template-columns: 70px minmax(260px, 0.7fr) minmax(360px, 1fr);
  align-items: baseline;
  gap: 32px;
  padding: 38px 0 42px;
  border-bottom: 1px solid var(--line);
}
.row-number { color: var(--accent); font-size: 11px; letter-spacing: 0.15em; }
.stay-list h3 { font-size: clamp(27px, 2.1vw, 40px); letter-spacing: -0.035em; }
.stay-list p { margin: 0; max-width: 710px; color: #bdbab2; font-family: var(--serif); font-size: 18px; line-height: 1.7; }

.places-section { padding-bottom: 170px; }
.places-heading { margin-bottom: 90px; }
.places-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(50px, 6vw, 120px);
  align-items: start;
}
.place-tabs { border-top: 1px solid var(--line); }
.place-tabs button {
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 83px;
  padding: 0;
  color: #777b7d;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms ease;
}
.place-tabs button span { font-size: 10px; letter-spacing: 0.13em; color: #6f7376; }
.place-tabs button strong { font-size: 17px; font-weight: 400; letter-spacing: -0.01em; }
.place-tabs button[aria-selected="true"] { color: var(--paper); padding-left: 12px; }
.place-tabs button[aria-selected="true"] span { color: var(--accent); }
.place-tabs button:hover { color: var(--paper); }
.place-tabs button:focus-visible { outline: 1px solid var(--accent); outline-offset: 4px; }

.place-panel { min-width: 0; }
.place-image-wrap { position: relative; height: clamp(430px, 34vw, 615px); overflow: hidden; background: #15191d; }
.place-image-wrap img { height: 100%; object-fit: cover; opacity: 0; transition: opacity 360ms ease; }
.place-image-wrap img.is-ready { opacity: 1; }
.place-index {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 8px 10px;
  color: #efe8dc;
  background: rgba(5, 7, 9, 0.68);
  font-size: 9px;
  letter-spacing: 0.17em;
}
.place-copy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  padding-top: 36px;
}
.place-region { margin: 0 0 13px; color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; }
.place-copy h3 { font-size: clamp(30px, 2.7vw, 52px); line-height: 1; letter-spacing: -0.045em; }
.place-copy > p { margin: 0; color: #c0bdb4; font-family: var(--serif); font-size: 18px; line-height: 1.65; }

.understanding { padding: 164px 0 172px; background: var(--surface); }
.understanding-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(70px, 10vw, 200px);
  align-items: start;
}
.understanding-title h2 { max-width: 700px; font-size: clamp(42px, 4vw, 76px); }
.understanding-copy { max-width: 710px; padding-top: 50px; }
.understanding-copy p { margin: 0; }
.understanding-copy p + p { margin-top: 36px; }

.setting-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  min-height: 560px;
}
.setting-image { min-height: 560px; overflow: hidden; }
.setting-image img { height: 100%; object-fit: cover; }
.setting-copy { display: flex; flex-direction: column; justify-content: center; padding: 74px clamp(56px, 7vw, 138px); background: #0e1115; }
.setting-copy h2 { max-width: 670px; font-size: clamp(40px, 3.6vw, 70px); }
.setting-copy > p { max-width: 650px; margin: 34px 0 0; }
.text-link {
  align-self: flex-start;
  margin-top: 38px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.text-link span { margin-left: 12px; color: var(--accent); }

.notes-section { max-width: 990px; padding-top: 150px; padding-bottom: 155px; text-align: center; }
.notes-section h2 { font-size: clamp(42px, 4.2vw, 76px); }
.notes-section > p:last-child { max-width: 850px; margin: 36px auto 0; }

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 0.7fr 1.5fr;
  gap: 70px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 62px;
  border-top: 1px solid var(--line);
}
.footer-brand { align-self: start; }
.footer-nav { display: grid; gap: 18px; justify-items: start; }
.footer-legal { color: #7f817e; font-size: 11px; line-height: 1.65; }
.footer-legal p { margin: 0; }
.footer-legal p + p { margin-top: 12px; }
.footer-legal strong { color: var(--accent); }

@media (max-width: 1000px) {
  .shell { width: min(100% - 64px, var(--shell)); }
  .site-header { padding-inline: 32px; }
  .section { padding-block: 110px; }
  .intro-grid > div { grid-column: 1 / span 7; }
  .intro-grid .lead-copy { grid-column: 8 / span 5; }
  .places-layout { grid-template-columns: 300px minmax(0, 1fr); gap: 48px; }
  .place-copy { grid-template-columns: 1fr; gap: 22px; }
  .understanding-inner { gap: 64px; }
  .setting-section { grid-template-columns: 1fr 1fr; }
  .setting-copy { padding-inline: 48px; }
}

@media (max-width: 720px) {
  .shell { width: calc(100% - 48px); }
  .site-header { height: 89px; padding-inline: 24px; align-items: center; }
  .brand { gap: 8px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-type { font-size: 8px; }
  .nav-links { gap: clamp(10px, 3.5vw, 18px); }
  .nav-links a { font-size: 7.5px; letter-spacing: 0.09em; }
  .hero { min-height: 692px; height: calc(100svh - 89px); max-height: 760px; }
  .hero-image { object-position: 57% center; }
  .hero-content { bottom: 47px; }
  .hero h1 { font-size: clamp(44px, 13vw, 58px); line-height: 0.98; letter-spacing: -0.05em; }
  .eyebrow { margin-bottom: 19px; font-size: 9px; }
  .section { padding-block: 92px; }
  h2 { font-size: clamp(42px, 12vw, 56px); }
  .intro-grid { display: block; margin-bottom: 74px; }
  .intro-grid .lead-copy { margin-top: 42px; font-size: 18px; line-height: 1.6; }
  .image-study { display: block; padding: 0; }
  .image-study figure { margin: 0 0 56px !important; }
  .image-study figure:last-child { margin-bottom: 0 !important; }
  .image-study img { height: auto; aspect-ratio: 1.2 / 1; }
  .image-study .study-two img { aspect-ratio: 0.71 / 1; object-position: center; }
  .image-study .study-three img { aspect-ratio: 1.2 / 1; }
  .image-study .study-four img { aspect-ratio: 1.55 / 1; }
  .image-study figcaption { bottom: -23px; }
  .gallery-section { padding-bottom: 120px; }
  .stay-section { padding-top: 74px; }
  .section-heading { margin-bottom: 64px; }
  .stay-list li { grid-template-columns: 42px 1fr; gap: 10px 15px; padding: 30px 0 32px; }
  .stay-list h3 { font-size: 29px; }
  .stay-list p { grid-column: 2; font-size: 17px; line-height: 1.62; }
  .places-section { padding-top: 105px; padding-bottom: 116px; }
  .places-heading { margin-bottom: 58px; }
  .places-layout { display: block; }
  .place-tabs { margin-bottom: 46px; }
  .place-tabs button { min-height: 63px; grid-template-columns: 42px 1fr; }
  .place-tabs button strong { font-size: 15px; }
  .place-image-wrap { height: 330px; }
  .place-copy { display: block; padding-top: 30px; }
  .place-copy > p { margin-top: 25px; font-size: 17px; }
  .understanding { padding: 105px 0 112px; }
  .understanding-inner { display: block; }
  .understanding-title h2 { font-size: clamp(41px, 11vw, 54px); }
  .understanding-copy { padding-top: 58px; }
  .understanding-copy p { font-size: 18px; line-height: 1.62; }
  .setting-section { display: flex; flex-direction: column; }
  .setting-image { min-height: 310px; height: 310px; }
  .setting-copy { padding: 76px 24px 86px; }
  .setting-copy h2 { font-size: clamp(39px, 10.8vw, 52px); }
  .setting-copy > p { font-size: 18px; }
  .notes-section { padding-block: 105px 112px; }
  .notes-section > p:last-child { margin-top: 30px; font-size: 18px; }
  .site-footer { display: block; padding-top: 55px; padding-bottom: 48px; }
  .footer-nav { grid-template-columns: repeat(4, auto); gap: 12px 18px; margin: 42px 0; }
  .footer-nav a { font-size: 8px; }
}

@media (max-width: 390px) {
  .nav-links { gap: 9px; }
  .nav-links a { font-size: 7px; }
  .hero h1 { font-size: 45px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
