:root {
  --ink: #10201b;
  --ink-soft: #5d6962;
  --night: #061310;
  --night-soft: #0b201a;
  --paper: #f5f1e7;
  --paper-bright: #fffdf7;
  --paper-muted: #e6e0d2;
  --saffron: #f0b35d;
  --white: #fffdf8;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(16, 32, 27, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  --radius-sm: 0.8rem;
  --radius-md: 1.35rem;
  --radius-lg: 2rem;
  --header-height: 5rem;
  --max-width: 88rem;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  background: var(--night);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
  font-family:
    "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button:not(:disabled),
a[href],
select:not(:disabled) {
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family:
    "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia,
    serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--night);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 850;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem max(1.25rem, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(4, 12, 10, 0.72), transparent);
}

.wordmark {
  width: max-content;
  display: inline-flex;
  gap: 0.72rem;
  align-items: center;
  color: var(--white);
  line-height: 1;
  text-decoration: none;
}

.wordmark svg {
  width: 2.15rem;
  height: 2.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.wordmark span {
  display: grid;
  gap: 0.23rem;
}

.wordmark strong,
.wordmark small {
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wordmark small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.57rem;
}

.header-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.header-link,
.header-cta {
  min-height: 2.7rem;
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.header-link {
  border: 0;
  background: transparent;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(4, 12, 10, 0.22);
  backdrop-filter: blur(12px);
}

.header-link:hover,
.header-link:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--night);
  background: var(--white);
}

.section-deck {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: var(--night);
}

.deck-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.015);
  transition:
    opacity 620ms ease,
    transform 760ms ease,
    visibility 0s linear 620ms;
}

.deck-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition-delay: 0s;
}

.slide-art,
.slide-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-art {
  z-index: -2;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.slide-shade {
  z-index: -1;
  pointer-events: none;
}

.intro-shade {
  background:
    linear-gradient(
      90deg,
      rgba(3, 13, 11, 0.92) 0%,
      rgba(3, 13, 11, 0.72) 43%,
      rgba(3, 13, 11, 0.12) 76%
    ),
    linear-gradient(
      180deg,
      rgba(2, 10, 9, 0.3),
      transparent 42%,
      rgba(2, 10, 9, 0.76)
    );
}

.intro-layout,
.profile-scroll {
  height: 100%;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 179, 93, 0.45) transparent;
}

.intro-layout {
  width: min(var(--max-width), calc(100% - 2.5rem));
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(18rem, 0.52fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  margin: 0 auto;
  padding: calc(var(--header-height) + 2rem) 0 2rem;
}

.intro-copy {
  max-width: 59rem;
}

.eyebrow,
.detail-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  width: 1.65rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-dark {
  color: #69746d;
}

.intro-copy h1 {
  max-width: 10.5ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 7.6vw, 8rem);
  line-height: 0.88;
  text-wrap: balance;
}

.intro-lede {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.button-row,
.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.button,
.profile-action {
  min-height: 3.05rem;
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible,
.profile-action:hover,
.profile-action:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.profile-action.primary {
  color: var(--night);
  background: var(--accent, var(--saffron));
}

.button-glass,
.profile-action {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-glass:hover,
.button-glass:focus-visible,
.profile-action:hover,
.profile-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--night);
  background: var(--white);
}

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

.button-dark:disabled {
  opacity: 0.55;
}

.guide-card {
  align-self: center;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(4, 15, 12, 0.54);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.guide-card-label {
  margin-bottom: 1.2rem;
  color: var(--saffron);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-card dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.guide-card dl div {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.guide-card dt,
.guide-card dd {
  margin: 0;
  font-size: 0.72rem;
}

.guide-card dt {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 750;
}

.guide-card dd {
  min-width: 0;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: right;
}

.guide-card > p:last-child {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.72rem;
  line-height: 1.65;
}

.profile-shade {
  background:
    linear-gradient(
      90deg,
      rgba(2, 11, 9, 0.97) 0%,
      rgba(2, 11, 9, 0.88) 40%,
      rgba(2, 11, 9, 0.3) 69%,
      rgba(2, 11, 9, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 9, 8, 0.38),
      transparent 38%,
      rgba(2, 9, 8, 0.62)
    );
}

.profile-scroll {
  overflow-y: auto;
  overflow-x: hidden;
}

.profile-layout {
  width: min(var(--max-width), calc(100% - 2.5rem));
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(27rem, 0.72fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
  margin: 0 auto;
  padding: calc(var(--header-height) + 1.5rem) 0 2.3rem;
}

.profile-copy {
  max-width: 52rem;
  padding: 1rem 0;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.34);
}

.profile-copy h2 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(4rem, 7vw, 7.6rem);
  line-height: 0.84;
  text-wrap: balance;
}

.profile-summary {
  max-width: 42rem;
  margin-bottom: 1.55rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.25vw, 1.15rem);
  font-weight: 680;
  line-height: 1.62;
}

.profile-summary span {
  color: rgba(255, 255, 255, 0.62);
}

.profile-actions {
  margin-bottom: 0;
}

.profile-action.primary:hover,
.profile-action.primary:focus-visible {
  border-color: var(--white);
  color: var(--night);
  background: var(--white);
}

.profile-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  height: min(38rem, calc(100svh - var(--header-height) - 3rem));
  min-height: 31rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(4, 14, 12, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.profile-panel-top {
  display: grid;
  grid-template-columns: minmax(10rem, 0.78fr) minmax(0, 1.22fr);
  gap: 1rem;
  align-items: start;
  padding: 0.55rem 0.45rem 0.9rem;
}

.profile-panel-top > section {
  min-width: 0;
}

.profile-address-summary {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.panel-kicker {
  margin-bottom: 0.34rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-address-summary a,
.profile-address-summary strong {
  display: block;
  color: rgba(255, 255, 255, 0.91);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.45;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.profile-address-summary a:hover,
.profile-address-summary a:focus-visible {
  color: var(--accent);
}

.profile-review-summary {
  min-width: 0;
}

.review-score {
  display: flex;
  gap: 0.38rem;
  align-items: baseline;
}

.review-score > span {
  color: var(--accent);
  font-size: 0.9rem;
}

.review-score strong {
  font-family:
    "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia,
    serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}

.review-score small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.55rem;
  font-weight: 700;
}

.review-unverified {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
}

.review-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.75rem;
  margin-top: 0.22rem;
}

.review-text-link,
.profile-review-summary > a {
  display: inline-flex;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.54rem;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.review-text-link:hover,
.review-text-link:focus-visible,
.profile-review-summary > a:hover,
.profile-review-summary > a:focus-visible {
  color: var(--accent);
}

.menu-carousel {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(14rem, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: calc(var(--radius-md) - 0.35rem);
  background: rgba(2, 10, 8, 0.48);
}

.menu-carousel-heading {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.8rem 0.9rem 0.75rem;
}

.menu-carousel-heading .panel-kicker {
  margin-bottom: 0.12rem;
  color: var(--accent);
}

.menu-carousel-heading h3 {
  margin: 0;
  font-family:
    "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 780;
}

.menu-carousel-heading > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.59rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.menu-carousel-viewport {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  touch-action: pan-y;
}

.menu-item-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  opacity: 0;
  isolation: isolate;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.menu-item-slide::before,
.menu-item-slide::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

.menu-item-slide::before {
  background-image: var(--menu-art);
  background-position: var(--menu-position) center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.03);
  transform: scale(var(--menu-scale));
}

.menu-item-slide::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 11, 9, 0.05) 20%, rgba(2, 11, 9, 0.92) 100%),
    linear-gradient(90deg, rgba(2, 11, 9, 0.42), rgba(2, 11, 9, 0.08));
}

.menu-item-slide.is-current {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.menu-item-copy {
  max-width: 28rem;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.54);
}

.menu-item-copy p {
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-item-copy h3 {
  max-width: 12ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.05rem, 3.4vw, 4.15rem);
  line-height: 0.92;
  text-wrap: balance;
}

.menu-item-copy small {
  display: block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
}

.menu-carousel-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.8rem;
}

.menu-arrow {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  place-items: center;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.menu-arrow:hover,
.menu-arrow:focus-visible {
  border-color: var(--accent);
  color: var(--night);
  background: var(--accent);
  transform: scale(1.04);
}

.menu-source-link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.6rem;
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.menu-source-link:hover,
.menu-source-link:focus-visible {
  color: var(--accent);
}

.menu-carousel-note {
  margin: 0;
  padding: 0 0.9rem 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.5rem;
  line-height: 1.45;
}

dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

dialog::backdrop {
  background: rgba(3, 11, 9, 0.78);
  backdrop-filter: blur(12px);
}

.directory-dialog {
  width: min(46rem, calc(100% - 2rem));
  max-width: none;
  max-height: 90svh;
  margin: auto;
}

.directory-shell {
  max-height: 90svh;
  padding: clamp(1.25rem, 4vw, 2.3rem);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-lg);
  overflow-y: auto;
  color: var(--ink);
  background: rgba(250, 247, 238, 0.98);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
}

.dialog-heading {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.dialog-heading h2,
.suggest-intro h2 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.9;
  text-wrap: balance;
}

.round-close {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: inherit;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  place-items: center;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.round-close:hover,
.round-close:focus-visible {
  color: var(--white);
  background: var(--night);
  transform: rotate(8deg);
}

.directory-search {
  min-height: 3.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: var(--paper-bright);
}

.directory-search:focus-within {
  border-color: var(--ink);
}

.directory-search svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.directory-search input {
  min-width: 0;
  min-height: 3.2rem;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.78rem;
}

.directory-list {
  display: grid;
}

.directory-item {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  column-gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 0.35rem;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
  background: transparent;
  text-align: left;
  transition:
    padding 160ms ease,
    background 160ms ease;
}

.directory-item:hover,
.directory-item:focus-visible {
  padding-right: 0.7rem;
  padding-left: 0.7rem;
  background: rgba(16, 32, 27, 0.05);
}

.directory-item > span {
  grid-row: 1 / 3;
  color: #818981;
  font-size: 0.61rem;
  font-weight: 850;
}

.directory-item strong {
  font-size: 0.82rem;
  font-weight: 850;
}

.directory-item small {
  color: #6e776f;
  font-size: 0.62rem;
}

.directory-item i {
  grid-row: 1 / 3;
  grid-column: 3;
  font-style: normal;
}

.directory-empty {
  padding: 2rem;
  color: var(--ink-soft);
  text-align: center;
}

.directory-foot {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
}

.directory-foot p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.text-button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 850;
}

.suggest-dialog {
  width: min(77rem, calc(100% - 2rem));
  max-width: none;
  max-height: 92svh;
  margin: auto;
}

.suggest-shell {
  position: relative;
  min-height: min(47rem, 90svh);
  display: grid;
  grid-template-columns: minmax(18rem, 0.55fr) minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.36);
}

.suggest-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.suggest-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background:
    radial-gradient(circle at 20% 15%, rgba(240, 179, 93, 0.24), transparent 20rem),
    var(--night);
}

.suggest-intro > p:not(.eyebrow) {
  max-width: 28rem;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.65;
}

.admin-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.admin-note > span {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  border: 1px solid rgba(240, 179, 93, 0.5);
  border-radius: 50%;
  color: var(--saffron);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  place-items: center;
}

.admin-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  line-height: 1.5;
}

.suggest-content {
  max-height: 90svh;
  overflow-y: auto;
  padding: clamp(2rem, 5vw, 3.8rem);
  scrollbar-width: thin;
}

.form-heading {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line-dark);
}

.form-heading p,
.form-heading span {
  margin: 0;
}

.form-heading p {
  font-size: 0.74rem;
  font-weight: 850;
}

.form-heading span {
  color: #737d75;
  font-size: 0.58rem;
}

.contact-heading {
  margin-top: 1.7rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field > span {
  color: #546158;
  font-size: 0.62rem;
  font-weight: 800;
}

.field small {
  color: #858d87;
  font-size: 0.56rem;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-dark);
  border-radius: 0.62rem;
  outline: 0;
  color: var(--ink);
  background: var(--paper-bright);
  font-size: 0.78rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 3rem;
  padding: 0 0.8rem;
}

.field textarea {
  min-height: 5.7rem;
  padding: 0.75rem 0.8rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(16, 32, 27, 0.08);
}

.field-wide {
  grid-column: 1 / -1;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.submit-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
}

.submit-row > p {
  max-width: 21rem;
  margin: 0;
  color: #717a73;
  font-size: 0.6rem;
  line-height: 1.5;
}

.suggest-status,
.fallback {
  margin: 0.8rem 0 0;
  font-size: 0.65rem;
}

.suggest-status[data-kind="error"] {
  color: #a2382e;
}

.fallback {
  color: #747d76;
}

.fallback a,
.submit-row a {
  color: var(--ink);
  text-underline-offset: 0.18em;
}

.suggest-success {
  max-width: 29rem;
  margin: min(8vh, 4rem) auto;
}

.success-mark {
  width: 4rem;
  height: 4rem;
  display: grid;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--night);
  font-size: 1.25rem;
  place-items: center;
}

.suggest-success h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.92;
}

.suggest-success > p:not(.eyebrow) {
  color: var(--ink-soft);
}

@media (max-width: 1050px) {
  .intro-layout {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.46fr);
    gap: 2.5rem;
  }

  .profile-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(23rem, 0.72fr);
    gap: 2rem;
  }

  .profile-copy h2 {
    font-size: clamp(3.4rem, 6.8vw, 6rem);
  }

  .profile-panel {
    height: min(36rem, calc(100svh - var(--header-height) - 2.5rem));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 4.6rem;
  }

  .site-header {
    padding: 0.55rem 0.75rem;
  }

  .wordmark svg {
    width: 1.85rem;
    height: 1.85rem;
  }

  .wordmark small {
    display: none;
  }

  .header-link {
    display: none;
  }

  .header-cta {
    min-height: 2.45rem;
    padding: 0 0.8rem;
    font-size: 0.62rem;
  }

  .intro-slide .slide-art {
    object-position: 63% center;
  }

  .intro-shade {
    background:
      linear-gradient(
        180deg,
        rgba(3, 13, 11, 0.78) 0%,
        rgba(3, 13, 11, 0.54) 40%,
        rgba(3, 13, 11, 0.88) 100%
      ),
      linear-gradient(90deg, rgba(3, 13, 11, 0.75), rgba(3, 13, 11, 0.15));
  }

  .intro-layout {
    width: 100%;
    display: block;
    padding: calc(var(--header-height) + 2.1rem) 1rem 2.5rem;
    overflow-y: auto;
  }

  .intro-copy {
    min-height: calc(100svh - 12rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .intro-copy h1 {
    max-width: 9ch;
    font-size: clamp(3.5rem, 16.5vw, 5.2rem);
  }

  .intro-lede {
    font-size: 0.92rem;
  }

  .guide-card {
    margin-top: 1.5rem;
  }

  .profile-art {
    object-position: 59% center;
  }

  .profile-shade {
    background:
      linear-gradient(
        180deg,
        rgba(2, 11, 9, 0.66) 0%,
        rgba(2, 11, 9, 0.72) 44%,
        rgba(2, 11, 9, 0.94) 100%
      ),
      linear-gradient(90deg, rgba(2, 11, 9, 0.72), rgba(2, 11, 9, 0.22));
  }

  .profile-layout {
    width: 100%;
    min-height: 100svh;
    display: block;
    padding: calc(var(--header-height) + 2rem) 1rem 7.2rem;
  }

  .profile-copy {
    min-height: calc(62svh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }

  .profile-copy h2 {
    max-width: 9.5ch;
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .profile-summary {
    max-width: 34rem;
    font-size: 0.95rem;
  }

  .profile-panel {
    height: 35rem;
    min-height: 35rem;
    margin-top: 1.2rem;
  }

  .profile-panel-top {
    grid-template-columns: minmax(8.5rem, 0.8fr) minmax(0, 1.2fr);
  }

  .menu-item-copy h3 {
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .directory-dialog,
  .suggest-dialog {
    width: 100%;
    max-height: 100svh;
    margin: 0;
  }

  .directory-shell {
    width: 100%;
    min-height: 100svh;
    max-height: 100svh;
    padding: 1rem;
    border: 0;
    border-radius: 0;
  }

  .dialog-heading {
    padding-top: 0.5rem;
  }

  .suggest-shell {
    min-height: 100svh;
    display: block;
    border: 0;
    border-radius: 0;
    overflow-y: auto;
  }

  .suggest-close {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .suggest-intro {
    min-height: 19rem;
    padding: 3.8rem 1.2rem 2rem;
  }

  .suggest-intro h2 {
    font-size: 3.4rem;
  }

  .admin-note {
    margin-top: 1.3rem;
  }

  .suggest-content {
    max-height: none;
    padding: 1.5rem 1rem 4rem;
    overflow: visible;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-row .button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .wordmark strong {
    font-size: 0.58rem;
  }

  .profile-copy h2 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .profile-action {
    flex: 1 1 calc(50% - 0.4rem);
  }

  .profile-panel {
    height: 39rem;
    min-height: 39rem;
  }

  .profile-panel-top {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .profile-address-summary {
    padding-top: 0.7rem;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }
}

@media (max-height: 760px) and (min-width: 761px) {
  .intro-layout,
  .profile-layout {
    align-items: start;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 2.2rem;
    overflow-y: auto;
  }

  .intro-copy h1 {
    font-size: clamp(3.7rem, 6.5vw, 6rem);
  }

  .profile-copy h2 {
    font-size: clamp(3.2rem, 5.8vw, 5.3rem);
  }

  .profile-panel {
    height: 27rem;
    min-height: 27rem;
    margin-top: 0.5rem;
  }

  .menu-carousel-note {
    display: none;
  }
}

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