@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --ink: #0b0d10;
  --ink-soft: #101419;
  --ink-card: rgba(22, 25, 29, 0.8);
  --cream: #f3ead8;
  --cream-soft: rgba(243, 234, 216, 0.76);
  --cream-dim: rgba(232, 217, 192, 0.56);
  --cream-faint: rgba(232, 217, 192, 0.34);
  --line: rgba(232, 217, 192, 0.14);
  --line-strong: rgba(212, 175, 55, 0.42);
  --gold: #d4af37;
  --gold-bright: #e5c55e;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 300px;
  background:
    radial-gradient(900px 500px at 0% -8%, rgba(212, 175, 55, 0.11), transparent 62%),
    radial-gradient(780px 480px at 100% 20%, rgba(196, 132, 143, 0.06), transparent 58%),
    var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:hover {
  color: var(--gold-bright);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10;
  padding: 8px 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--cream);
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.wordmark-name,
.footer-mark {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.primary-nav {
  display: flex;
  gap: 24px;
  color: var(--cream-dim);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.primary-nav a:hover,
.site-footer a:hover {
  color: var(--gold-bright);
}

.share-button,
.button {
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.09em;
  padding: 11px 15px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.share-button {
  justify-self: end;
  white-space: nowrap;
}

.share-button span {
  margin-right: 5px;
  color: var(--gold);
  font-size: 16px;
}

.share-button:hover,
.button-quiet:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-bright);
}

.share-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

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

main {
  display: block;
}

.hero {
  max-width: 760px;
  padding: clamp(74px, 11vw, 142px) 0 108px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(58px, 8.8vw, 110px);
  letter-spacing: -0.045em;
  line-height: 0.82;
}

h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--cream-soft);
  font-size: clamp(18px, 2.3vw, 22px);
  font-weight: 300;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.button-primary:hover {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  color: var(--ink);
}

.hero-caption {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 560px;
  margin: 42px 0 0;
  color: var(--cream-faint);
  font-size: 12px;
  line-height: 1.5;
}

.caption-rule {
  display: inline-block;
  width: 30px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold);
}

.principles {
  padding: 0 0 112px;
}

.section-heading h2,
.listing-intro h2,
.field-note h2 {
  margin-bottom: 0;
  font-size: clamp(37px, 5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.principles .section-heading {
  max-width: 440px;
  margin-bottom: 42px;
}

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

.principle {
  min-height: 220px;
  padding: 25px 28px 20px 0;
  border-right: 1px solid var(--line);
}

.principle + .principle {
  padding-left: 28px;
}

.principle:last-child {
  border-right: 0;
}

.principle-number {
  display: block;
  margin-bottom: 31px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.principle h3 {
  margin-bottom: 7px;
  font-size: 28px;
  line-height: 1;
}

.principle p {
  max-width: 290px;
  margin-bottom: 0;
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.55;
}

.field-note {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin: 0 0 122px;
  padding: 30px 32px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(100deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
}

.field-note-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.field-note .eyebrow {
  margin-bottom: 7px;
}

.field-note h2 {
  margin-bottom: 10px;
  font-size: clamp(35px, 4.2vw, 50px);
}

.field-note p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--cream-soft);
  font-size: 15px;
}

.listing-section {
  padding-bottom: 120px;
}

.listing-intro {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  align-items: end;
  margin-bottom: 50px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.listing-intro > p {
  max-width: 355px;
  margin-bottom: 2px;
  color: var(--cream-dim);
  font-size: 14px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 36px;
}

.region-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line-strong);
}

.region-kicker {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.region-header h3 {
  margin: 0;
  font-size: 42px;
  line-height: 0.9;
}

.region-count {
  padding-bottom: 2px;
  color: var(--cream-faint);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.place-list {
  display: grid;
  gap: 9px;
}

.place-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--ink-card);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.place-card:hover {
  border-color: var(--line-strong);
  background: rgba(29, 31, 33, 0.95);
  transform: translateY(-2px);
}

.place-card-link {
  display: block;
  padding: 18px 19px 16px;
  color: inherit;
  text-decoration: none;
}

.place-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.place-type {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.place-arrow {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.place-card:hover .place-arrow {
  transform: translate(2px, -2px);
}

.place-card h4 {
  margin-bottom: 2px;
  font-size: 27px;
  line-height: 1;
}

.name-note {
  color: var(--cream-dim);
  font-size: 0.8em;
}

.address {
  min-height: 22px;
  margin-bottom: 15px;
  color: var(--cream-dim);
  font-size: 12px;
  line-height: 1.45;
}

.place-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin: 0;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.place-facts div {
  min-width: 0;
}

.place-facts dt {
  margin-bottom: 2px;
  color: var(--cream-faint);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.place-facts dd {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  text-transform: lowercase;
}

.place-context {
  margin: 12px 0 0;
  color: var(--cream-dim);
  font-size: 12px;
  line-height: 1.45;
}

.faq {
  padding: 0 0 112px;
}

.faq .section-heading {
  margin-bottom: 40px;
}

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

.faq-grid article {
  padding: 24px 26px 0 0;
  border-right: 1px solid var(--line);
}

.faq-grid article + article {
  padding-left: 26px;
}

.faq-grid article:last-child {
  border-right: 0;
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  border-top: 1px solid var(--line);
  color: var(--cream-faint);
  font-size: 12px;
}

.footer-mark {
  color: var(--cream);
  font-size: 22px;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  margin-left: auto;
  color: var(--cream-dim);
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 17px;
    padding: 17px 0;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    gap: 12px;
    padding-top: 2px;
    border-top: 1px solid var(--line);
  }

  .share-button {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    padding-top: 88px;
  }

  .region-grid {
    gap: 60px 20px;
  }
}

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

  .wordmark-name {
    font-size: 25px;
  }

  .share-button {
    padding: 9px 10px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .primary-nav {
    font-size: 10px;
  }

  .hero {
    padding: 70px 0 76px;
  }

  h1 {
    font-size: clamp(52px, 15vw, 80px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-caption {
    align-items: flex-start;
  }

  .principles,
  .listing-section,
  .faq {
    padding-bottom: 78px;
  }

  .principle-grid,
  .faq-grid {
    display: block;
  }

  .principle,
  .principle + .principle,
  .faq-grid article,
  .faq-grid article + article {
    min-height: 0;
    padding: 21px 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child,
  .faq-grid article:last-child {
    border-bottom: 0;
  }

  .principle-number {
    margin-bottom: 13px;
  }

  .field-note {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
    margin-bottom: 78px;
    padding: 23px 18px;
  }

  .field-note-icon {
    width: 38px;
    height: 38px;
    font-size: 23px;
  }

  .listing-intro {
    display: block;
    margin-bottom: 37px;
  }

  .listing-intro > p {
    margin-top: 22px;
  }

  .region-grid {
    display: block;
  }

  .region + .region {
    margin-top: 53px;
  }

  .region-header h3 {
    font-size: 38px;
  }

  .place-card h4 {
    font-size: 25px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 12px;
    padding: 18px 0;
  }

  .site-footer > span {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer nav {
    grid-column: 2;
    grid-row: 1;
    gap: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}