:root {
  color-scheme: dark;
  --background: #11100f;
  --surface: #181614;
  --surface-soft: #1d1a17;
  --text: #f4efe7;
  --muted: #b8afa3;
  --line: #3c3731;
  --accent: #c6a36a;
  --red: #d8202f;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1180px;
}

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

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--background);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.025em;
}

strong {
  color: #fffaf2;
  font-weight: 700;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: #111;
  background: #fff;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--background);
}

.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-nav .submit-link {
  padding: 8px 14px;
  border: 1px solid var(--accent);
  color: var(--text);
}

.hero {
  padding: clamp(68px, 10vw, 124px) 0 clamp(58px, 8vw, 92px);
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: clamp(52px, 10vw, 132px);
  align-items: end;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker,
.place-label,
.preference-index {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  margin-bottom: 28px;
  overflow-wrap: anywhere;
  font-size: clamp(48px, 7.2vw, 88px);
  line-height: 1.01;
}

.hero h1 strong {
  color: var(--accent);
  font-weight: inherit;
}

.hero-lead {
  max-width: 790px;
  margin-bottom: 34px;
  color: #d4cdc4;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.primary-link {
  display: inline-block;
  padding: 11px 17px;
  border: 1px solid var(--accent);
  color: #15120e;
  background: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.primary-link:hover,
.primary-link:focus-visible {
  color: var(--text);
  background: transparent;
}

.secondary-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.place-card {
  border-top: 2px solid var(--accent);
  padding-top: 22px;
}

.place-name {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.place-card dl {
  margin: 0;
}

.place-card dl div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.place-card dt {
  color: var(--muted);
  font-size: 13px;
}

.place-card dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.intro-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-grid p {
  min-width: 0;
  margin: 0;
  padding: 25px 26px;
  color: var(--muted);
  font-size: 14px;
}

.intro-grid p + p {
  border-left: 1px solid var(--line);
}

.intro-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}

.intro-grid strong {
  display: block;
  margin-bottom: 4px;
}

.section {
  padding: clamp(66px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--line);
}

.section-muted {
  background: var(--surface);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading h2,
.faq-heading h2,
.closing h2,
.prose h2 {
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

.section-heading > p:last-child,
.closing-layout > p:not(.section-kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.profile-section {
  background: var(--surface);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.profile-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--background);
}

.profile-photo {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0b0a09;
}

.profile-photo img,
.related-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.profile-card-copy {
  padding: 22px;
}

.profile-location {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile-card h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.profile-card h3 a,
.profile-open,
.related-card a {
  text-decoration: none;
}

.profile-card-copy > p:not(.profile-location) {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.profile-open {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.profile-card h3 a:hover,
.profile-card h3 a:focus-visible,
.profile-open:hover,
.profile-open:focus-visible,
.related-card a:hover span,
.related-card a:focus-visible span {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.profile-hero {
  padding: clamp(62px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--line);
}

.profile-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: end;
}

.profile-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(50px, 8vw, 92px);
  line-height: 1;
}

.profile-intro {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.profile-facts {
  margin: 0;
  border-top: 2px solid var(--accent);
}

.profile-facts div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.profile-facts dt {
  color: var(--muted);
  font-size: 13px;
}

.profile-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.compact-heading {
  margin-bottom: 34px;
}

.compact-heading h2 {
  font-size: clamp(34px, 5vw, 52px);
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.gallery-item {
  margin: 0;
  background: #0b0a09;
}

.gallery-item img {
  width: 100%;
  height: min(760px, 72vw);
  display: block;
  object-fit: contain;
}

.profile-gallery .gallery-item:only-child,
.profile-gallery .gallery-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.profile-copy-layout {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 9vw, 120px);
}

.profile-copy-layout h2 {
  max-width: 420px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.08;
}

.profile-story {
  max-width: 860px;
}

.profile-story h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 400;
  line-height: 1.07;
}

.profile-story h3 {
  margin: 44px 0 14px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
}

.profile-story p {
  margin-bottom: 20px;
  color: #cec7be;
  font-size: 17px;
}

.profile-story .story-lead {
  max-width: 800px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.related-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-card a {
  display: block;
}

.related-card img {
  aspect-ratio: 4 / 3;
}

.related-card span {
  display: block;
  padding: 18px;
  font-family: var(--serif);
  font-size: 22px;
}

.preference-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.preference-list article {
  min-width: 0;
  padding: 28px 28px 34px 0;
  border-bottom: 1px solid var(--line);
}

.preference-list article:nth-child(3n + 2),
.preference-list article:nth-child(3n + 3) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.preference-list h3 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.preference-list article > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
  gap: clamp(48px, 10vw, 130px);
  align-items: start;
}

.content-aside {
  position: sticky;
  top: 118px;
}

.aside-statement {
  max-width: 300px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.35;
}

.prose {
  max-width: 790px;
}

.prose h2 {
  margin-bottom: 30px;
}

.prose h3 {
  margin: 42px 0 16px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.prose p {
  margin-bottom: 22px;
  color: #cec7be;
  font-size: 17px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 10vw, 130px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 34px 22px 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 750;
}

.faq-list details p {
  max-width: 720px;
  padding: 0 32px 22px 0;
  margin-bottom: 0;
  color: var(--muted);
}

.faq-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0 32px 22px 0;
  margin: -4px 0 0;
  list-style: none;
}

.faq-keywords li {
  color: var(--text);
  font-size: 15px;
}

.faq-keywords li:not(:last-child)::after {
  margin-left: 18px;
  color: var(--accent);
  content: "·";
}

.closing {
  padding: clamp(70px, 10vw, 126px) 0;
  background: var(--surface-soft);
}

.closing-layout h2 {
  max-width: 850px;
}

.closing-layout > p:not(.section-kicker) {
  margin-bottom: 30px;
}

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

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero-layout,
  .content-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
  }

  .intro-grid,
  .preference-list,
  .profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .profile-hero-layout,
  .profile-copy-layout {
    grid-template-columns: 1fr;
  }

  .intro-grid p:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .preference-list article:nth-child(3n + 2),
  .preference-list article:nth-child(3n + 3) {
    padding-left: 0;
    border-left: 0;
  }

  .preference-list article:nth-child(even) {
    padding-left: 26px;
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-row {
    min-height: 66px;
  }

  .site-nav a:not(.submit-link) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .site-nav .submit-link {
    padding: 6px 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 64px);
  }

  .intro-grid,
  .preference-list,
  .profile-grid,
  .profile-gallery,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: auto;
    max-height: none;
  }

  .intro-grid p,
  .intro-grid p + p,
  .intro-grid p:nth-child(3) {
    grid-column: auto;
    padding-inline: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .intro-grid p:first-child {
    border-top: 0;
  }

  .preference-list article,
  .preference-list article:nth-child(even) {
    padding: 24px 0 28px;
    border-left: 0;
  }

  .footer-row {
    flex-direction: column;
  }
}

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