@font-face {
  font-family: "Font Awesome 7 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/vendor/fontawesome/webfonts/fa-brands-400.woff2") format("woff2");
}

.fa-brands {
  display: inline-block;
  font-family: var(--fa-family-brands);
  font-style: normal;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1;
  text-rendering: auto;
}

:root {
  color-scheme: light;
  --fa-family-brands: "Font Awesome 7 Brands";
  --ink: #173f38;
  --ink-deep: #0f302b;
  --paper: #f4efe4;
  --paper-light: #fffaf1;
  --orange: #e45e3d;
  --orange-deep: #bd3d26;
  --yellow: #f0ba45;
  --sage: #cddbcf;
  --blue: #b9d9df;
  --muted: #58736d;
  --line: rgb(23 63 56 / 16%);
  --shadow: 0 20px 50px rgb(15 48 43 / 12%);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.shell {
  width: min(calc(100% - 3rem), 76rem);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  background: white;
  color: var(--ink);
  transform: translateY(-200%);
}

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

.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;
}

.notice {
  background: var(--ink-deep);
  color: var(--paper-light);
  font-size: .8rem;
}

.notice__inner {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.notice a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.notice-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.notice-login {
  padding: 0;
  background: none;
  border: 0;
  color: var(--paper-light);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.notice-login:hover,
.notice-login:focus-visible {
  color: var(--yellow);
}

.notice-divider {
  color: rgb(255 250 241 / 45%);
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgb(244 239 228 / 95%);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  min-height: 5.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .14em;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  color: var(--orange);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
}

.desktop-nav a,
.location-link {
  position: relative;
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.55rem;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.location-link span {
  color: var(--orange);
  font-size: .7rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  z-index: 50;
  inset: 7.6rem 0 0;
  padding: 2rem 1.5rem;
  background: var(--paper);
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu:not([hidden]) {
  display: flex;
  flex-direction: column;
}

.mobile-menu__account {
  width: 100%;
  min-height: 3.25rem;
  margin-top: auto;
  padding: .8rem 1rem;
  border: 1px solid var(--ink);
  border-radius: .45rem;
  background: var(--ink);
  color: white;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.mobile-menu__account:hover,
.mobile-menu__account:focus-visible {
  background: var(--orange);
}

.mobile-menu__logout {
  width: 100%;
  min-height: 3rem;
  margin-top: .55rem;
  padding: .7rem 1rem;
  border: 1px solid var(--ink);
  border-radius: .45rem;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.mobile-menu__logout:hover,
.mobile-menu__logout:focus-visible {
  background: var(--paper-deep);
}

.hero {
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0;
  background:
    radial-gradient(circle at 75% 5%, rgb(240 186 69 / 24%), transparent 25rem),
    var(--paper);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(20rem, .68fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 .9rem;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.9rem, 7.4vw, 7rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .83;
}

.hero h1 em {
  color: var(--orange);
  font-weight: inherit;
}

.hero__intro {
  max-width: 40rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.search-box {
  max-width: 44rem;
  min-height: 4.35rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .85rem;
  padding: .42rem .45rem .42rem 1.2rem;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: .6rem;
  box-shadow: .4rem .4rem 0 var(--yellow);
}

.search-box__icon {
  font-size: 1.5rem;
  font-weight: 900;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
}

.search-box input::placeholder {
  color: #6f827e;
}

.search-box button,
.button {
  min-height: 3.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.45rem;
  border: 0;
  border-radius: .35rem;
  background: var(--ink);
  color: white;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.search-box button:hover,
.button:hover {
  background: var(--ink-deep);
}

.quick-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  color: var(--muted);
  font-size: .86rem;
}

.quick-links span {
  font-weight: 850;
}

.quick-links a {
  text-underline-offset: .2rem;
}

.weekend-card {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: var(--ink-deep);
  border: 2px solid var(--ink);
  border-radius: .7rem;
  box-shadow: .75rem .75rem 0 var(--ink);
  transform: rotate(1.3deg);
}

.weekend-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.35rem 0;
}

.event-badge {
  padding: .35rem .6rem;
  border-radius: 999px;
  background: var(--paper-light);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.weekend-card__art {
  position: relative;
  height: 12rem;
  overflow: hidden;
  margin-top: .5rem;
}

.sun {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 5rem;
  height: 5rem;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hill {
  position: absolute;
  bottom: -4.5rem;
  width: 19rem;
  height: 10rem;
  background: var(--sage);
  border: 2px solid var(--ink);
  border-radius: 50% 50% 0 0;
}

.hill--one {
  left: -5rem;
  transform: rotate(7deg);
}

.hill--two {
  right: -4rem;
  background: var(--blue);
  transform: rotate(-8deg);
}

.tree {
  position: absolute;
  z-index: 2;
  bottom: 1.6rem;
  width: 1.1rem;
  height: 3rem;
  background: var(--ink);
}

.tree::before {
  content: "";
  position: absolute;
  top: -1.3rem;
  left: 50%;
  width: 3.4rem;
  height: 3.4rem;
  background: var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.tree--one {
  left: 20%;
}

.tree--two {
  right: 16%;
  bottom: 1rem;
  transform: scale(.78);
}

.weekend-card__content {
  position: relative;
  z-index: 3;
  padding: 1.4rem;
  background: var(--paper-light);
  border-top: 2px solid var(--ink);
}

.date-line {
  margin: 0 0 .65rem;
  color: var(--muted);
  font-size: .83rem;
  text-transform: uppercase;
}

.date-line strong {
  color: var(--orange);
  font-size: 1.2rem;
}

.weekend-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.weekend-card__content > p:not(.date-line) {
  margin: .65rem 0 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: .28rem;
}

.category-strip {
  padding: 2.75rem 0 3.25rem;
  background: var(--paper-light);
  border-block: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 2.2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading--compact {
  margin-bottom: 1.35rem;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -.05em;
  line-height: .95;
}

.section-heading--compact h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .85rem;
}

.category-tile {
  min-height: 10.5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 1.1rem;
  border: 1.5px solid var(--ink);
  border-radius: .45rem;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.category-tile:hover,
.category-tile:focus-visible {
  box-shadow: .35rem .35rem 0 var(--ink);
  transform: translate(-.2rem, -.2rem);
}

.category-tile--orange { background: #f3a08b; }
.category-tile--yellow { background: var(--yellow); }
.category-tile--sage { background: var(--sage); }
.category-tile--blue { background: var(--blue); }
.category-tile--cream { background: var(--paper); }

.category-tile__icon {
  margin-bottom: auto;
  font-size: 1.65rem;
}

.category-tile strong {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.category-tile small {
  margin-top: .25rem;
  color: var(--muted);
  font-size: .78rem;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section--paper {
  background: var(--paper);
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.place-card {
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: .5rem;
  box-shadow: 0 8px 24px rgb(15 48 43 / 6%);
}

.place-card__visual {
  position: relative;
  min-height: 13rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.place-card__visual::before,
.place-card__visual::after {
  content: "";
  position: absolute;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.place-card__visual--image::before,
.place-card__visual--image::after {
  display: none;
}

.place-card__visual::before {
  width: 9rem;
  height: 9rem;
  top: -3rem;
  right: -2rem;
}

.place-card__visual::after {
  width: 5rem;
  height: 5rem;
  bottom: -1.5rem;
  left: -1rem;
}

.visual--tapas { background: #ef957d; }
.visual--coffee { background: var(--yellow); }
.visual--thai { background: var(--sage); }
.visual--museum { background: var(--blue); }
.visual--cafe { background: #e9c6a8; }
.visual--fitness { background: #b9c99a; }

.place-card__monogram {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -.08em;
}

.place-card__image {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-card__image--logo {
  padding: 1.25rem;
  background: var(--paper-light);
  object-fit: contain;
}

.place-card__label {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  z-index: 2;
  padding: .35rem .55rem;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 850;
}

.place-card__body {
  padding: 1.25rem;
}

.place-card__meta,
.place-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.place-card h3 {
  margin: .7rem 0 .5rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
}

.place-card__body > p {
  min-height: 3rem;
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.place-card__footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  text-transform: none;
}

.open {
  color: #19724d;
}

.data-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: .75rem;
}

.button--mobile {
  display: none;
}

.section--green {
  background: var(--ink);
  color: var(--paper-light);
}

.section-heading--light .eyebrow {
  color: var(--yellow);
}

.text-link--light {
  color: var(--paper-light);
}

.event-list {
  border-top: 1px solid rgb(255 250 241 / 28%);
}

.event-row {
  min-height: 8.6rem;
  display: grid;
  grid-template-columns: 6.5rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgb(255 250 241 / 28%);
}

.event-row time {
  display: flex;
  align-items: baseline;
  gap: .55rem;
}

.event-row time strong {
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 3.3rem;
  line-height: 1;
}

.event-row time span {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.event-row__tags {
  margin: 0 0 .5rem;
  display: flex;
  gap: .5rem;
}

.event-row__tags span {
  padding: .25rem .5rem;
  background: rgb(255 250 241 / 10%);
  border-radius: 999px;
  color: var(--yellow);
  font-size: .67rem;
  font-weight: 850;
  text-transform: uppercase;
}

.event-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.event-row__body > p:last-child {
  margin: .35rem 0 0;
  color: #c7d3cf;
  font-size: .9rem;
}

.event-row > a {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 250 241 / 40%);
  border-radius: 50%;
  color: var(--paper-light);
  font-size: 1.2rem;
  text-decoration: none;
}

.editorial {
  background: var(--paper-light);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 1.5rem;
}

.feature-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: .5rem;
}

.feature-story__visual {
  position: relative;
  min-height: 24rem;
  display: flex;
  align-items: end;
  padding: 1.5rem;
  background:
    linear-gradient(45deg, transparent 47%, var(--ink) 48%, var(--ink) 52%, transparent 53%) 0 0 / 3rem 3rem,
    var(--orange);
  border-right: 1.5px solid var(--ink);
}

.feature-story__number {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 800;
}

.feature-story__caption {
  padding: .45rem .7rem;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  font-size: .72rem;
  font-weight: 850;
}

.feature-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.feature-story h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -.04em;
  line-height: .95;
}

.feature-story__copy > p:not(.eyebrow) {
  color: #435b56;
  line-height: 1.55;
}

.coming-label {
  align-self: flex-start;
  padding: .45rem .7rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.story-stack {
  display: grid;
  gap: 1.5rem;
}

.small-story {
  min-height: 11rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--sage);
  border: 1.5px solid var(--ink);
  border-radius: .5rem;
}

.small-story:last-child {
  background: var(--blue);
}

.story-index {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 800;
}

.small-story h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.05;
}

.newsletter {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--orange);
  color: var(--ink-deep);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: clamp(2rem, 8vw, 7rem);
}

.newsletter h2 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -.05em;
  line-height: .95;
}

.newsletter__status p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.newsletter-form {
  display: grid;
  gap: 1rem;
}

.newsletter-form__fields {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: .8rem;
}

.newsletter-form__fields label:last-child {
  grid-column: 1 / -1;
}

.newsletter-form__fields label {
  display: grid;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 850;
}

.newsletter-form__fields small {
  font-weight: 650;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"],
.newsletter-form select {
  min-width: 0;
  width: 100%;
  padding: .8rem .85rem;
  border: 1.5px solid var(--ink);
  border-radius: .25rem;
  background: var(--paper-light);
  color: var(--ink);
  font: inherit;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
  outline: 3px solid rgb(255 250 240 / 55%);
  outline-offset: 2px;
}

.newsletter-form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .65rem;
  font-size: .8rem;
  line-height: 1.45;
}

.newsletter-form__consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .1rem;
}

.newsletter-form__consent a {
  color: inherit;
  font-weight: 850;
}

.newsletter-form__action {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-form__action .form-status {
  flex: 1 1 14rem;
  margin: 0;
  font-size: .85rem;
  font-weight: 800;
}

.newsletter-form__action .form-status.is-success {
  color: var(--ink-deep);
}

.newsletter-form__action .form-status.is-error {
  color: #641b10;
}

.site-footer {
  padding: 4.5rem 0 6rem;
  background: var(--ink-deep);
  color: #c6d3cf;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
}

.brand--footer {
  color: white;
  font-size: 2.3rem;
}

.footer__grid > div:first-child p {
  max-width: 16rem;
  color: #9fb3ae;
}

.footer__grid h2 {
  margin: 0 0 1rem;
  color: var(--yellow);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer__grid div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .7rem;
  font-size: .86rem;
}

.footer__grid a {
  text-decoration: none;
}

.footer__grid a:hover {
  color: white;
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgb(255 255 255 / 14%);
  color: #78918b;
  font-size: .75rem;
}

.mobile-bottom-nav {
  display: none;
}

/* Listing pages */
.page-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 3rem;
  background: var(--paper);
}

.page-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: -.06em;
  line-height: .85;
}

.page-hero p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.page-hero--directory {
  padding: 2rem 0 2.1rem;
}

.page-hero--directory .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 2rem 3.5rem;
}

.page-hero--directory h1 {
  max-width: none;
  font-size: clamp(2.8rem, 4.5vw, 4.35rem);
  line-height: .92;
}

.page-hero--directory p:not(.eyebrow) {
  max-width: 36rem;
  margin-top: .8rem;
  font-size: .98rem;
  line-height: 1.45;
}

.page-hero--directory .search-box {
  width: 100%;
  min-height: 3.25rem;
  gap: .6rem;
  padding: .3rem .35rem .3rem .85rem;
  border-width: 1px;
  border-radius: .45rem;
  box-shadow: .25rem .25rem 0 var(--yellow);
}

.page-hero--directory .search-box__icon {
  font-size: 1.15rem;
}

.page-hero--directory .search-box button {
  min-height: 2.65rem;
  padding: 0 1.05rem;
}

.filter-bar {
  position: sticky;
  z-index: 10;
  top: 0;
  padding: .85rem 0;
  background: rgb(255 250 241 / 94%);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: .65rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar__inner::-webkit-scrollbar {
  display: none;
}

.mobile-filter-select {
  display: none;
}

.filter-bar--directory .filter-bar__inner {
  display: grid;
  grid-template-columns: minmax(18rem, 30rem) auto;
  justify-content: start;
  overflow: visible;
}

.filter-bar--directory .filter-bar__inner > .filter-chip[data-filter] {
  display: none;
}

.filter-bar--directory .mobile-filter-select {
  min-width: 0;
  min-height: 3rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: white;
  border: 1px solid var(--ink);
  border-radius: .5rem;
  box-shadow: .2rem .2rem 0 rgb(228 94 61 / 18%);
}

.filter-bar--directory .mobile-filter-select > span {
  display: flex;
  align-items: center;
  padding: 0 .85rem;
  background: var(--paper-deep);
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.filter-bar--directory .mobile-filter-select select {
  width: 100%;
  min-width: 0;
  min-height: 3rem;
  appearance: none;
  padding: .55rem 2.5rem .55rem .85rem;
  background-color: white;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 1.05rem) 50%, calc(100% - .72rem) 50%;
  background-repeat: no-repeat;
  background-size: .36rem .36rem, .36rem .36rem;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-bar--directory .mobile-filter-select select:focus-visible {
  outline: 3px solid rgb(228 94 61 / 30%);
  outline-offset: -3px;
}

.filter-bar--directory .filter-chip--near {
  min-height: 3rem;
  align-self: stretch;
  border-color: var(--ink);
}

.filter-bar--stacked .filter-bar__inner {
  display: grid;
  grid-template-columns: minmax(18rem, 36rem) auto;
  grid-template-rows: auto auto;
  justify-content: start;
  align-items: stretch;
  gap: .7rem .85rem;
  overflow: visible;
}

.filter-bar--stacked .mobile-filter-select {
  min-width: 0;
  min-height: 3rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: white;
  border: 1px solid var(--ink);
  border-radius: .5rem;
  box-shadow: .2rem .2rem 0 rgb(228 94 61 / 18%);
}

.filter-bar--stacked .mobile-filter-select > span {
  display: flex;
  align-items: center;
  padding: 0 .85rem;
  background: var(--paper-deep);
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.filter-bar--stacked .mobile-filter-select select {
  width: 100%;
  min-width: 0;
  min-height: 3rem;
  appearance: none;
  padding: .55rem 2.5rem .55rem .85rem;
  background-color: white;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 1.05rem) 50%, calc(100% - .72rem) 50%;
  background-repeat: no-repeat;
  background-size: .36rem .36rem, .36rem .36rem;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-bar--stacked .mobile-filter-select select:focus-visible {
  outline: 3px solid rgb(228 94 61 / 30%);
  outline-offset: -3px;
}

.filter-bar--stacked .search-box {
  width: 100%;
  max-width: none;
  min-height: 3rem;
  grid-column: 1;
  gap: .6rem;
  padding: .28rem .35rem .28rem .85rem;
  border-width: 1px;
  border-radius: .5rem;
  box-shadow: .2rem .2rem 0 var(--yellow);
}

.filter-bar--stacked .search-box__icon {
  font-size: 1.15rem;
}

.filter-bar--stacked .search-box button {
  min-height: 2.55rem;
  padding: 0 1.05rem;
}

.filter-bar--stacked .filter-chip--near {
  grid-column: 2;
  grid-row: 1;
}

.filter-bar--stacked .filter-chip[data-event-filter] {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  padding: .65rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--ink);
  color: white;
}

.directory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  gap: 2.5rem;
}

.directory-list {
  display: grid;
  gap: 1rem;
}

.directory-status {
  margin: 0 0 .25rem;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 750;
}

.directory-card {
  display: grid;
  grid-template-columns: 10rem 1fr;
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: .5rem;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.directory-card:hover,
.directory-card:focus-within {
  border-color: var(--ink);
  box-shadow: 0 12px 30px rgb(15 48 43 / 10%);
  transform: translateY(-2px);
}

.directory-card[hidden] {
  display: none;
}

.directory-card .place-card__visual {
  min-height: 11rem;
  border: 0;
  border-right: 1px solid var(--line);
}

.directory-card .place-card__body > p {
  min-height: auto;
}

.directory-card .place-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.directory-card .place-card__body > * {
  flex-shrink: 0;
}

.directory-card .place-card__footer {
  margin-top: auto;
}

.directory-card__open,
.directory-card__details {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.directory-card__open:hover,
.directory-card__open:focus-visible,
.directory-card__details:hover,
.directory-card__details:focus-visible {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: .2rem;
}

.directory-card__details {
  color: var(--ink);
  font-size: .82rem;
  font-weight: 850;
}

.place-card__ratings,
.business-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .85rem;
  margin: 0 0 1rem;
}

.rating-line {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .01em;
}

.directory-card__link {
  margin-left: auto;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: .2rem;
}

.directory-card__admin-edit {
  flex: 0 0 auto;
  margin-left: auto;
  padding: .22rem .45rem;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: .25rem;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
  text-decoration: none;
}

.directory-card__admin-hide {
  flex: 0 0 auto;
  padding: .22rem .45rem;
  background: #f3a08b;
  border: 1px solid var(--ink);
  border-radius: .25rem;
  color: var(--ink);
  font: inherit;
  font-size: .72rem;
  font-weight: 900;
  cursor: pointer;
}

.directory-card__admin-hide:hover,
.directory-card__admin-hide:focus-visible {
  background: var(--orange);
  color: white;
}

.directory-card__admin-hide:disabled {
  cursor: wait;
  opacity: .65;
}

.directory-load-more {
  justify-self: center;
  margin: .75rem 0;
}

.map-panel {
  position: sticky;
  z-index: 0;
  isolation: isolate;
  top: 5rem;
  height: min(42rem, calc(100vh - 6rem));
  min-height: 32rem;
  overflow: hidden;
  background: #d7dfcf;
  border: 1.5px solid var(--ink);
  border-radius: .5rem;
}

.service-subfilters {
  padding: .8rem 0;
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}

.service-subfilters__inner {
  display: flex;
  align-items: center;
  gap: .6rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.service-subfilters__inner > span {
  flex: 0 0 auto;
  margin-right: .25rem;
  font-size: .76rem;
  font-weight: 900;
}

.service-chip {
  flex: 0 0 auto;
  padding: .5rem .75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-size: .76rem;
  font-weight: 800;
  cursor: pointer;
}

.service-chip.is-active,
.service-chip:hover {
  background: var(--blue);
  border-color: var(--ink);
}

.places-map {
  width: 100%;
  height: 100%;
  font-family: var(--sans);
}

.map-status {
  position: absolute;
  z-index: 500;
  top: .75rem;
  left: 50%;
  margin: 0;
  padding: .45rem .7rem;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgb(255 252 245 / 92%);
  border: 1px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgb(15 48 43 / 12%);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 850;
}

.sg1-map-marker {
  background: transparent;
  border: 0;
}

.sg1-map-marker span {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 3px 7px rgb(15 48 43 / 25%);
  transform: rotate(-45deg) translate(2px, 2px);
}

.map-popup {
  min-width: 12rem;
  display: grid;
  gap: .2rem;
  color: var(--ink);
}

.map-popup strong {
  font-size: .95rem;
}

.map-popup span {
  color: var(--muted);
  font-size: .75rem;
}

.map-popup .map-popup__rating {
  margin-top: .15rem;
  color: var(--ink);
  font-weight: 850;
}

.map-popup__details {
  justify-self: start;
  margin-top: .4rem;
  padding: .35rem .55rem;
  background: var(--ink);
  border: 0;
  border-radius: .25rem;
  color: white;
  font-size: .72rem;
  font-weight: 850;
  cursor: pointer;
}

.business-dialog {
  width: min(64rem, calc(100% - 2rem));
  max-width: none;
  max-height: min(48rem, calc(100dvh - 2rem));
  padding: 0;
  overflow: auto;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: .7rem;
  box-shadow: 1rem 1rem 0 rgb(15 48 43 / 35%);
  color: var(--ink);
}

.business-dialog::backdrop {
  background: rgb(15 48 43 / 72%);
  backdrop-filter: blur(3px);
}

.business-dialog__panel {
  position: relative;
  min-width: 0;
}

.business-dialog__close {
  position: sticky;
  z-index: 3;
  top: .8rem;
  width: max-content;
  display: block;
  margin: .8rem .8rem -3rem auto;
  padding: .55rem .75rem;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 850;
  cursor: pointer;
}

.business-dialog__content {
  min-width: 0;
}

.business-dialog__loading {
  min-height: 20rem;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--muted);
}

.business-dialog__grid {
  display: grid;
  grid-template-columns: minmax(16rem, .8fr) minmax(0, 1.2fr);
  min-height: 34rem;
  min-width: 0;
}

.business-dialog__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.business-dialog__visual::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 13rem;
  height: 13rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.business-dialog__visual img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-dialog__visual img.is-logo {
  padding: 2.5rem;
  background: var(--paper-light);
  object-fit: contain;
}

.business-dialog__monogram {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: -.09em;
}

.business-dialog__copy {
  min-width: 0;
  align-self: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.business-dialog__copy h2 {
  max-width: 13ch;
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: -.055em;
  line-height: .9;
}

.business-dialog__description {
  margin: 0 0 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.business-ratings {
  padding: .8rem 0;
  border-block: 1px solid var(--line);
}

.business-details {
  margin: 1.25rem 0;
}

.business-detail {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  padding: .55rem 0;
}

.business-detail dt {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.business-detail dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.business-detail a {
  color: var(--ink);
  font-weight: 750;
  text-underline-offset: .2rem;
}

.business-hours {
  margin: 1.25rem 0;
  padding: 1rem;
  background: rgb(205 219 207 / 35%);
  border: 1px solid var(--line);
  border-radius: .4rem;
}

.business-hours h3 {
  margin: 0 0 .75rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.business-hours dl {
  margin: 0;
}

.business-hours dl > div {
  display: grid;
  grid-template-columns: minmax(6.5rem, 1fr) auto;
  gap: 1rem;
  padding: .3rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}

.business-hours dl > div:last-child {
  border-bottom: 0;
}

.business-hours dt {
  font-weight: 800;
}

.business-hours dd {
  margin: 0;
  color: var(--muted);
}

.business-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
}

.button--outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.button--outline:hover {
  background: var(--ink);
  color: white;
}

.business-dialog__google-link {
  flex-basis: 100%;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 750;
  text-underline-offset: .2rem;
}

.business-dialog__claim-link {
  flex-basis: 100%;
  margin-top: .25rem;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
  color: var(--orange-deep);
  font-size: .82rem;
  font-weight: 850;
  text-underline-offset: .2rem;
}

.business-dialog__admin-edit {
  order: 5;
}

.business-review-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.business-review-section__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.business-review-section__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.business-review-section__heading .button {
  padding: .55rem .75rem;
  font-size: .75rem;
}

.business-review-summary {
  margin: .6rem 0 1rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.review-notice {
  padding: .75rem;
  background: var(--sage);
  border-left: .25rem solid var(--ink);
  font-size: .82rem;
  font-weight: 800;
}

.verified-review-list {
  display: grid;
  gap: .75rem;
  margin: 1rem 0;
}

.verified-review {
  padding: .9rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: .35rem;
}

.verified-review__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .78rem;
}

.verified-review__meta span {
  letter-spacing: .08em;
}

.verified-review h4 {
  margin: .65rem 0 .3rem;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.verified-review p {
  margin: .35rem 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.verified-review small {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
}

.review-form {
  position: relative;
  display: grid;
  gap: .9rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgb(205 219 207 / 30%);
  border: 1px solid var(--line);
  border-radius: .4rem;
}

.review-form[hidden] {
  display: none;
}

.review-form__intro {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.5;
}

.review-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.review-form label:not(.form-trap, .review-consent) {
  display: grid;
  gap: .35rem;
  font-size: .76rem;
  font-weight: 850;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: .7rem .75rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: .3rem;
  color: var(--ink);
  font: inherit;
}

.review-form textarea {
  resize: vertical;
  line-height: 1.5;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: 3px solid rgb(228 94 61 / 25%);
  border-color: var(--orange);
}

.review-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem;
  align-items: start;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.45;
}

.review-consent input {
  width: 1rem;
  height: 1rem;
  margin-top: .15rem;
  accent-color: var(--orange);
}

.review-consent a {
  font-weight: 800;
}

.auth-dialog {
  width: min(29rem, calc(100% - 2rem));
  max-width: none;
  padding: 0;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: .65rem;
  box-shadow: .75rem .75rem 0 rgb(15 48 43 / 35%);
  color: var(--ink);
}

.auth-dialog::backdrop {
  background: rgb(15 48 43 / 72%);
  backdrop-filter: blur(3px);
}

.auth-dialog__panel {
  position: relative;
}

.auth-dialog__close {
  position: absolute;
  z-index: 2;
  top: .8rem;
  right: .8rem;
  padding: .5rem .7rem;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: .74rem;
  font-weight: 850;
  cursor: pointer;
}

.auth-dialog__body {
  padding: clamp(1.5rem, 6vw, 2.5rem);
}

.auth-dialog__body h2 {
  max-width: 9ch;
  margin: .45rem 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 8vw, 3.4rem);
  line-height: .92;
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-form label {
  display: grid;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 800;
}

.auth-form input {
  width: 100%;
  padding: .8rem .85rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: .3rem;
  color: var(--ink);
  font: inherit;
}

.auth-form input:focus {
  outline: 3px solid rgb(228 94 61 / 25%);
  border-color: var(--orange);
}

.auth-dialog__email {
  padding: .8rem;
  background: white;
  border: 1px solid var(--line);
  overflow-wrap: anywhere;
  font-weight: 800;
}

.auth-dialog__note {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.account-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.account-heading .button {
  flex: 0 0 auto;
  margin-bottom: .5rem;
}

.account-shell {
  max-width: 68rem;
}

.account-page.is-authenticated > .section {
  padding-top: 2rem;
}

.account-loading {
  margin: 0 0 1.5rem;
  padding: .85rem 1rem;
  background: var(--sage);
  border-left: .3rem solid var(--ink);
  font-weight: 800;
}

.account-loading.is-error {
  background: rgb(228 94 61 / 14%);
  border-color: var(--orange-deep);
}

.account-intro {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: .85rem;
}

.account-section-heading {
  margin-bottom: 1.5rem;
}

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

.account-business-card {
  position: relative;
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  overflow: hidden;
  background: var(--paper-light);
  border: 1.5px solid var(--ink);
  border-radius: .5rem;
}

.plan-corner {
  position: absolute;
  z-index: 3;
  top: .8rem;
  right: -.05rem;
  min-width: 4.2rem;
  padding: .42rem .75rem .42rem 1rem;
  border: 1px solid rgb(23 63 56 / 45%);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  box-shadow: 0 .2rem .45rem rgb(23 63 56 / 15%);
  color: #173f38;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.plan-corner--free,
.plan-pill--free {
  background: #c58b5c;
}

.plan-corner--plus,
.plan-pill--plus {
  background: #d6d9d8;
}

.plan-corner--pro,
.plan-pill--pro {
  background: #e1b93f;
}

.plan-pill {
  display: inline-flex;
  margin-top: .8rem;
  padding: .4rem .65rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.account-business-card__actions,
.account-editor-actions,
.offer-form__controls,
.account-offer-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.account-edit-button {
  padding: .52rem .7rem;
  font-size: .72rem;
}

.account-editor-actions {
  justify-content: flex-end;
}

.account-business-card__visual {
  min-height: 13rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--yellow);
  border-right: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 800;
}

.account-business-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-business-card__copy {
  min-width: 0;
  padding: 1.25rem;
}

.account-business-card__copy h3 {
  margin: 0 0 .5rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.account-business-card__copy > p:not(.eyebrow) {
  min-height: 3em;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}

.account-business-card__copy .account-business-card__views {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  min-height: 0;
  margin: .65rem 0 .75rem;
  padding-top: .55rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .74rem;
  font-weight: 750;
}

.account-business-card__views strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1;
}

.account-profile-section {
  margin-bottom: 1.5rem;
  padding: 1.15rem 1.35rem;
}

.account-profile-heading {
  margin-bottom: .9rem;
}

.account-editor-section .account-profile-heading h2 {
  margin: 0;
  font-size: 1.8rem;
}

.account-profile-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}

.account-profile-form .account-field {
  gap: .3rem;
  font-size: .75rem;
}

.account-profile-form .account-field input {
  padding: .58rem .65rem;
}

.account-profile-form .account-field--readonly input {
  background: var(--sage);
  color: var(--muted);
  cursor: not-allowed;
}

.account-profile-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: .75rem 1rem;
  min-width: 0;
}

.account-profile-footer .form-status {
  flex: 1;
  margin: 0;
}

.account-profile-footer .button {
  min-height: 2.55rem;
  margin-left: auto;
  padding-inline: 1rem;
}

.account-business-card.is-pending {
  opacity: .72;
}

.account-business-card.is-pending .account-business-card__visual {
  filter: grayscale(.75);
}

.account-pending-label {
  display: inline-flex;
  padding: .6rem .75rem;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: .3rem;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 850;
}

.account-empty {
  max-width: 43rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--paper-light);
  border: 1.5px solid var(--ink);
  border-radius: .5rem;
}

.account-empty h2,
.account-editor-heading h2,
.account-editor-section h2 {
  margin: 0 0 .8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.account-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-weight: 800;
  text-underline-offset: .2rem;
}

.account-editor-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.account-editor-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.account-editor-section {
  margin-bottom: 1.5rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: .5rem;
}

.upgrade-dialog {
  width: min(calc(100% - 2rem), 54rem);
  max-height: min(88vh, 54rem);
  padding: 0;
  overflow: auto;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: .6rem;
  color: var(--ink);
}

.upgrade-dialog::backdrop {
  background: rgb(23 63 56 / 72%);
}

.upgrade-dialog__panel {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.upgrade-dialog__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .55rem .75rem;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-size: .75rem;
  font-weight: 850;
  cursor: pointer;
}

.upgrade-dialog h2,
.offers-heading h1 {
  margin: 0 0 .75rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
}

.upgrade-dialog__intro {
  max-width: 44rem;
  color: var(--muted);
}

.upgrade-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.upgrade-plan {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--ink);
  border-radius: .45rem;
}

.upgrade-plan--plus {
  background: #edf0ef;
}

.upgrade-plan--pro {
  background: #f3dfa2;
}

.upgrade-plan h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
}

.upgrade-plan__price {
  margin: .55rem 0;
  font-weight: 900;
}

.upgrade-plan ul {
  flex: 1;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}

.upgrade-dialog__setup {
  margin: 1rem 0 0;
  padding: .8rem;
  background: var(--sage);
  font-size: .82rem;
}

.upgrade-dialog__setup a {
  color: var(--ink);
  font-weight: 850;
}

.offer-form {
  display: grid;
  gap: 1rem;
}

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

.account-offer-card {
  position: relative;
  padding: 1.15rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: .4rem;
}

.account-offer-card.is-expired {
  opacity: .65;
}

.account-offer-card h3 {
  margin: .7rem 0 .5rem;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.account-offer-card > p {
  color: var(--muted);
  line-height: 1.5;
}

.offer-status {
  display: inline-flex;
  padding: .3rem .5rem;
  background: var(--yellow);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.account-offer-card__dates {
  font-size: .76rem;
  font-weight: 850;
}

.place-card__offer {
  position: absolute;
  right: .7rem;
  bottom: .7rem;
  z-index: 2;
  padding: .45rem .7rem;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.business-social-links {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .15rem;
}

.business-social-link {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.business-social-link:hover,
.business-social-link:focus-visible {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
}

.business-social-link--linkedin {
  font-size: 1.15rem;
}

.business-social-link--youtube {
  font-size: 1.12rem;
}

.business-social-links--compact {
  flex-basis: auto;
  align-self: stretch;
  margin: 0 0 .9rem;
}

.business-social-links--compact .business-social-link {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1rem;
}

.business-social-links--compact .business-social-link--linkedin {
  font-size: .95rem;
}

.business-social-links--compact .business-social-link--youtube {
  font-size: .92rem;
}

.business-offers {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.business-offers h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.business-offer-list {
  display: grid;
  gap: .75rem;
}

.business-offer {
  position: relative;
  padding: 1rem;
  overflow: hidden;
  background: #f3dfa2;
  border: 1px solid var(--ink);
  border-radius: .4rem;
}

.business-offer h4 {
  margin: .65rem 0 .35rem;
  padding-right: 4rem;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.business-offer p {
  margin: .35rem 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.business-offer small {
  display: block;
  margin-top: .7rem;
  font-weight: 850;
}

.business-offer__link {
  margin-top: .9rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: .2rem;
  cursor: pointer;
}

.business-offer__flag {
  position: absolute;
  top: .75rem;
  right: -.1rem;
  padding: .35rem .65rem;
  background: var(--orange);
  border: 1px solid var(--ink);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  color: white;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-dialog {
  width: min(34rem, calc(100% - 2rem));
  max-width: none;
  max-height: calc(100dvh - 2rem);
  padding: 0;
  overflow: auto;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: .7rem;
  box-shadow: .75rem .75rem 0 rgb(15 48 43 / 35%);
  color: var(--ink);
}

.offer-dialog::backdrop {
  background: rgb(15 48 43 / 72%);
  backdrop-filter: blur(3px);
}

.offer-dialog__panel {
  position: relative;
}

.offer-dialog__close {
  position: sticky;
  z-index: 2;
  top: .7rem;
  width: max-content;
  display: block;
  margin: .7rem .7rem -2.8rem auto;
  padding: .55rem .75rem;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-size: .76rem;
  font-weight: 850;
  cursor: pointer;
}

.offer-dialog__content {
  padding: 2.25rem;
}

.offer-dialog__content > h2 {
  max-width: 12ch;
  margin: .35rem 0 1.3rem;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 7vw, 3.7rem);
  letter-spacing: -.045em;
  line-height: .95;
}

.offer-dialog__list {
  display: grid;
  gap: 1rem;
}

.offer-dialog__offer {
  position: relative;
  padding: 1.25rem;
  overflow: hidden;
  background: #f3dfa2;
  border: 1px solid var(--ink);
  border-radius: .4rem;
}

.offer-dialog__offer h3 {
  max-width: 18ch;
  margin: .5rem 4rem .65rem 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.offer-dialog__offer p {
  color: var(--muted);
  line-height: 1.55;
}

.offer-dialog__offer small {
  display: block;
  margin-top: .8rem;
  font-weight: 850;
}

.offer-dialog__business {
  width: 100%;
  margin-top: 1rem;
}

.offer-dialog__loading {
  min-height: 14rem;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--muted);
}

.account-details-form,
.account-image-form {
  display: grid;
  gap: 1rem;
}

.account-field {
  display: grid;
  gap: .4rem;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 850;
}

.account-field input,
.account-field textarea,
.account-field select,
.hours-row input[type="time"],
.account-image-form input[type="file"] {
  width: 100%;
  padding: .75rem .8rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: .3rem;
  color: var(--ink);
  font: inherit;
}

.account-field textarea {
  resize: vertical;
  line-height: 1.55;
}

.account-field input:focus,
.account-field textarea:focus,
.account-field select:focus,
.hours-row input:focus {
  outline: 3px solid rgb(228 94 61 / 25%);
  border-color: var(--orange);
}

.category-form {
  display: grid;
  gap: 1rem;
}

.category-group {
  min-width: 0;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: .4rem;
}

.category-group legend {
  padding: 0 .4rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 800;
}

.category-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
}

.category-choice {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .65rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: .3rem;
  font-size: .78rem;
  font-weight: 750;
}

.category-choice input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  accent-color: var(--orange);
}

.category-choice:has(input:checked) {
  background: var(--sage);
  border-color: var(--ink);
}

.category-primary {
  max-width: 25rem;
}

.account-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.account-help {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}

.hours-form {
  display: grid;
  gap: .55rem;
}

.hours-row {
  display: grid;
  grid-template-columns: 7rem minmax(7rem, 1fr) minmax(7rem, 1fr) 6rem;
  align-items: center;
  gap: .8rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-time {
  display: grid;
  gap: .25rem;
}

.hours-time span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hours-closed {
  font-size: .78rem;
  font-weight: 800;
}

.hours-closed input {
  width: 1rem;
  height: 1rem;
}

.account-image-editor {
  display: grid;
  grid-template-columns: minmax(15rem, .8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: center;
}

.account-image-preview {
  min-height: 12rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: .4rem;
  color: var(--muted);
  font-weight: 800;
}

.account-image-preview img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.claim-shell {
  max-width: 66rem;
}

.claim-intro {
  max-width: 50rem;
  margin-bottom: 2rem;
}

.claim-business {
  display: grid;
  gap: .3rem;
  padding: 1.25rem;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: .5rem;
}

.claim-business h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.claim-business p {
  margin: 0;
}

.claim-account,
.claim-method {
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--paper-light);
  border: 1.5px solid var(--ink);
  border-radius: .5rem;
}

.claim-account h2,
.claim-method h2 {
  margin: 0 0 .75rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

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

.claim-form {
  display: grid;
  gap: 1rem;
}

.claim-form .form-row {
  margin: 0;
}

.claim-form .button {
  justify-self: start;
}

.claim-help {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
}

.claim-success {
  padding: 1.25rem;
  background: #e2f0e7;
  border: 1px solid #17603d;
  border-radius: .4rem;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.button--danger {
  background: transparent;
  border: 1px solid #9d2d20;
  color: #9d2d20;
}

.empty-state {
  padding: 2rem;
  background: var(--paper-light);
  border: 1px solid var(--line);
  text-align: center;
}

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

.events-status,
.events-load-more,
.events-empty {
  grid-column: 1 / -1;
}

.events-status {
  margin: 0 0 .25rem;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 750;
}

.seo-detail {
  max-width: 68rem;
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
}

.seo-breadcrumb a {
  color: var(--ink);
  text-underline-offset: .18rem;
}

.seo-detail__card {
  display: grid;
  grid-template-columns: minmax(16rem, 24rem) minmax(0, 1fr);
  overflow: hidden;
  background: var(--paper-light);
  border: 1.5px solid var(--ink);
  border-radius: .55rem;
}

.seo-detail__card:not(:has(.seo-detail__image)) {
  grid-template-columns: 1fr;
}

.seo-detail__image {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  background: var(--sage);
  border-right: 1px solid var(--ink);
}

.seo-detail__content {
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.seo-detail__content h2 {
  margin: 0 0 .8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: .98;
}

.seo-detail__content > p:not(.eyebrow) {
  max-width: 48rem;
  color: var(--muted);
  line-height: 1.65;
}

.seo-detail__facts {
  display: grid;
  gap: .65rem;
  margin: 1.4rem 0;
}

.seo-detail__facts > div {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--line);
}

.seo-detail__facts dt {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.seo-detail__facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 750;
}

.seo-detail__facts a {
  color: var(--ink);
  text-underline-offset: .18rem;
}

.seo-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.events-load-more {
  justify-self: center;
}

.event-card {
  display: grid;
  grid-template-columns: 7rem 1fr;
  min-height: 15rem;
  overflow: hidden;
  background: var(--paper-light);
  border: 1.5px solid var(--ink);
  border-radius: .5rem;
}

.event-card time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-right: 1.5px solid var(--ink);
}

.event-card:nth-child(2n) time {
  background: var(--orange);
}

.event-card time strong {
  font-family: var(--serif);
  font-size: 3.5rem;
}

.event-card time span {
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.event-card__body {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
}

.event-card h2 {
  margin: .6rem 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.event-card h2 a {
  color: inherit;
  text-decoration: none;
}

.event-card h2 a:hover,
.event-card h2 a:focus-visible {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: .18rem;
}

.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.event-card .event-card__venue {
  margin-bottom: .6rem;
  color: var(--ink);
  font-weight: 800;
}

.event-card .event-card__summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.event-card .coming-label {
  margin-top: auto;
  text-decoration: none;
}

.event-card__source {
  margin-top: .65rem;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.35;
}

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

.event-source-card {
  display: grid;
  align-content: start;
  gap: .8rem;
  padding: 1.5rem;
  background: var(--paper-light);
  border: 1.5px solid var(--ink);
  border-radius: .5rem;
}

.event-source-card h2,
.event-source-card p,
.event-source-card small {
  margin: 0;
}

.event-source-card h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.event-source-card p,
.event-source-card small {
  color: var(--muted);
  line-height: 1.5;
}

.event-source-card .text-link {
  justify-self: start;
  margin-top: .35rem;
}

.business-hero {
  background: var(--yellow);
  border-bottom: 1.5px solid var(--ink);
}

.business-points {
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  list-style: none;
}

.business-points li {
  padding: .55rem .8rem;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  background: var(--paper-light);
  border: 1.5px solid var(--ink);
  border-radius: .5rem;
}

.price-card--featured {
  background: var(--sage);
  box-shadow: .55rem .55rem 0 var(--ink);
  transform: translateY(-.35rem);
}

.price-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
}

.price {
  margin: 1rem 0;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 800;
}

.price small {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.price-card .coming-label {
  margin-top: auto;
}

.footer-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-link:hover {
  color: white;
}

.page-hero--compact {
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.page-hero--compact h1 {
  max-width: 12ch;
}

.legal-updated {
  font-size: .82rem !important;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: 15rem minmax(0, 46rem);
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: .75rem;
  padding: 1.25rem;
  background: var(--sage);
  border: 1px solid var(--ink);
  border-radius: .5rem;
  font-size: .86rem;
}

.legal-nav strong {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-nav a {
  color: var(--ink);
  text-underline-offset: .2rem;
}

.legal-nav p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.prose {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.prose h2 {
  scroll-margin-top: 6rem;
  margin: 2.7rem 0 .75rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.05;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose a {
  color: var(--orange-deep);
  font-weight: 750;
  text-underline-offset: .18rem;
}

.prose li + li {
  margin-top: .5rem;
}

.legal-table {
  margin: 1.5rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .4rem;
}

.legal-table [role="row"] {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  padding: .85rem 1rem;
  background: var(--paper-light);
}

.legal-table [role="row"]:first-child {
  background: var(--ink);
  color: white;
}

.legal-table [role="row"] + [role="row"] {
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.contact-intro h2 {
  margin: .4rem 0 1.75rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .98;
}

.contact-route {
  display: grid;
  gap: .25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-route a {
  color: var(--orange-deep);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  background: var(--paper-light);
  border: 1.5px solid var(--ink);
  border-radius: .6rem;
  box-shadow: .65rem .65rem 0 var(--sage);
}

.form-row {
  display: grid;
  gap: .45rem;
}

.form-row label,
.check-row {
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: .78rem .85rem;
  border: 1px solid var(--line);
  border-radius: .25rem;
  background: white;
  color: var(--ink);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 3px solid rgb(228 94 61 / 25%);
  border-color: var(--orange);
}

.form-row small {
  color: var(--muted);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .65rem;
  align-items: start;
  line-height: 1.5;
}

.check-row input {
  margin-top: .25rem;
  accent-color: var(--orange);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-size: .9rem;
  font-weight: 750;
}

.form-status.is-success {
  color: #17603d;
}

.form-status.is-error {
  color: #9d2d20;
}

.form-status.is-warning {
  color: #7a4b00;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  background: var(--paper-light);
  border: 1.5px solid var(--ink);
  border-radius: .5rem;
  box-shadow: .55rem .55rem 0 rgb(23 63 56 / 30%);
}

.cookie-banner__copy {
  display: grid;
  gap: .25rem;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.cookie-banner__copy a {
  color: var(--orange-deep);
  font-weight: 750;
}

.cookie-banner__actions {
  display: flex;
  gap: .6rem;
}

@media (max-width: 64rem) {
  .desktop-nav {
    display: none;
  }

  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .header__actions {
    grid-column: 3;
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .6rem;
  }

  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    width: 1.25rem;
    height: 2px;
    display: block;
    background: currentColor;
    content: "";
    transition: transform .2s ease;
  }

  .menu-toggle__icon {
    position: relative;
  }

  .menu-toggle__icon::before {
    position: absolute;
    top: -.38rem;
  }

  .menu-toggle__icon::after {
    position: absolute;
    top: .38rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

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

  .weekend-card {
    max-width: 33rem;
    justify-self: end;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-tile:nth-child(4),
  .category-tile:nth-child(5) {
    grid-column: span 1;
  }

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

  .story-stack {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__grid > div:last-child {
    grid-column: 2 / -1;
  }

  .account-business-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 47.99rem) {
  .shell {
    width: min(calc(100% - 2rem), 76rem);
  }

  .notice__inner {
    min-height: 2rem;
  }

  .notice__inner > span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .notice a {
    flex: 0 0 auto;
  }

  .notice__inner > span:first-child {
    display: none;
  }

  .notice-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .notice-login,
  .notice-divider {
    display: none;
  }

  .header__inner {
    min-height: 4.4rem;
    gap: 1rem;
  }

  .brand {
    font-size: 1.55rem;
  }

  .location-link {
    display: none;
  }

  .menu-toggle__label {
    display: none;
  }

  .mobile-menu {
    inset: 6.4rem 0 4.25rem;
  }

  .hero {
    padding: 2.75rem 0 4rem;
  }

  .hero__grid {
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .hero__intro {
    margin: 1.5rem 0;
  }

  .search-box {
    grid-template-columns: auto 1fr;
    min-height: 3.8rem;
    padding: .35rem .8rem;
    box-shadow: .3rem .3rem 0 var(--yellow);
  }

  .search-box button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .filter-bar {
    position: static;
  }

  .filter-bar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .65rem;
    overflow: visible;
  }

  .filter-bar__inner > .filter-chip[data-filter],
  .filter-bar__inner > .filter-chip[data-event-filter] {
    display: none;
  }

  .mobile-filter-select {
    min-width: 0;
    display: grid;
    gap: .25rem;
    color: var(--muted);
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .mobile-filter-select select {
    width: 100%;
    min-width: 0;
    min-height: 2.8rem;
    padding: .55rem 2rem .55rem .7rem;
    background: white;
    border: 1px solid var(--ink);
    border-radius: .4rem;
    color: var(--ink);
    font-weight: 800;
    text-transform: none;
  }

  .filter-bar--directory .mobile-filter-select {
    grid-template-columns: minmax(0, 1fr);
  }

  .filter-bar--directory .mobile-filter-select > span {
    padding: .4rem .7rem .25rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .filter-bar--directory .mobile-filter-select select {
    min-height: 2.55rem;
    padding: .45rem 2.35rem .5rem .7rem;
    font-size: .9rem;
  }

  .filter-chip--near {
    align-self: end;
    min-height: 2.8rem;
    border-color: var(--ink);
  }

  .filter-bar__inner--events .mobile-filter-select {
    grid-column: 1 / -1;
  }

  .filter-bar--stacked .filter-bar__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .filter-bar--stacked .mobile-filter-select,
  .filter-bar--stacked .search-box,
  .filter-bar--stacked .filter-chip--near {
    grid-column: 1;
  }

  .filter-bar--stacked .search-box {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .filter-bar--stacked .search-box button {
    grid-column: auto;
    width: auto;
  }

  .filter-bar--stacked .filter-chip--near {
    grid-row: 3;
  }

  .quick-links {
    gap: .45rem .75rem;
  }

  .claim-methods {
    grid-template-columns: 1fr;
  }

  .weekend-card {
    max-width: calc(100% - .5rem);
    justify-self: start;
    box-shadow: .5rem .5rem 0 var(--ink);
    transform: rotate(-.7deg);
  }

  .category-strip {
    padding: 2.5rem 0;
  }

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

  .category-tile {
    min-height: 9.25rem;
  }

  .category-tile:last-child {
    grid-column: 1 / -1;
    min-height: 7rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

  .section-heading h2 {
    font-size: 2.75rem;
  }

  .text-link--desktop {
    display: none;
  }

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

  .place-card__visual {
    min-height: 10rem;
  }

  .button--mobile {
    width: 100%;
    display: inline-flex;
    margin-top: 1.25rem;
  }

  .button--light {
    background: var(--paper-light);
    color: var(--ink);
  }

  .event-row {
    grid-template-columns: 4.2rem 1fr;
    gap: 1rem;
  }

  .event-row time {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .event-row time strong {
    font-size: 2.6rem;
  }

  .event-row > a {
    display: none;
  }

  .event-row h3 {
    font-size: 1.65rem;
  }

  .feature-story {
    grid-template-columns: 1fr;
  }

  .feature-story__visual {
    min-height: 13rem;
    border-right: 0;
    border-bottom: 1.5px solid var(--ink);
  }

  .feature-story__copy {
    padding: 1.5rem;
  }

  .story-stack {
    grid-template-columns: 1fr;
  }

  .newsletter__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .newsletter-form__fields {
    grid-template-columns: 1fr;
  }

  .newsletter-form__fields label:last-child {
    grid-column: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .footer__grid > div:first-child,
  .footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    padding-bottom: 2rem;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 4.25rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--paper-light);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgb(15 48 43 / 9%);
  }

  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    color: var(--muted);
    font-size: .64rem;
    font-weight: 750;
    text-decoration: none;
  }

  .mobile-bottom-nav a span {
    font-size: 1rem;
  }

  .mobile-bottom-nav a.is-active {
    color: var(--orange-deep);
  }

  .site-footer {
    padding-bottom: 7.5rem;
  }

  .page-hero {
    padding: 2.75rem 0;
  }

  .page-hero h1 {
    font-size: 3.75rem;
  }

  .page-hero--directory {
    padding: 1.35rem 0 1.5rem;
  }

  .page-hero--directory .shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .page-hero--directory h1 {
    font-size: clamp(2.3rem, 12vw, 3.1rem);
  }

  .page-hero--directory p:not(.eyebrow) {
    margin-top: .6rem;
    font-size: .9rem;
    line-height: 1.4;
  }

  .page-hero--directory .search-box {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 3.1rem;
    gap: .5rem;
    padding: .25rem .3rem .25rem .7rem;
  }

  .page-hero--directory .search-box button {
    grid-column: auto;
    width: auto;
    min-height: 2.55rem;
    padding: 0 .85rem;
  }

  .directory-layout {
    grid-template-columns: 1fr;
  }

  .directory-card {
    grid-template-columns: 7.5rem 1fr;
  }

  .directory-card .place-card__visual {
    min-height: 100%;
  }

  .directory-card .place-card__monogram {
    font-size: 2.5rem;
  }

  .directory-card .place-card__label {
    display: none;
  }

  .map-panel {
    position: relative;
    top: auto;
    order: -1;
    height: 22rem;
    min-height: 0;
  }

  .business-dialog {
    width: calc(100% - 1rem);
    max-height: calc(100dvh - 1rem);
    overscroll-behavior: contain;
    box-shadow: .4rem .4rem 0 rgb(15 48 43 / 35%);
  }

  .business-dialog__close {
    top: .5rem;
    margin: .5rem .5rem -3rem auto;
    min-height: 2.75rem;
    padding: .5rem .8rem;
  }

  .business-dialog__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .business-dialog__visual {
    height: clamp(12rem, 48vw, 16rem);
    min-height: 0;
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .business-dialog__copy {
    padding: 1.75rem 1.15rem 2rem;
  }

  .business-dialog__copy h2 {
    max-width: none;
    margin-bottom: .85rem;
    font-size: clamp(2.25rem, 11vw, 3rem);
    overflow-wrap: break-word;
  }

  .business-dialog__description {
    line-height: 1.55;
  }

  .business-details {
    margin: 1rem 0 1.35rem;
  }

  .business-dialog__actions {
    display: grid;
    gap: .65rem;
  }

  .business-dialog__actions .button {
    width: 100%;
  }

  .business-dialog__google-link {
    padding-top: .15rem;
  }

  .offer-dialog {
    width: calc(100% - 1rem);
    max-height: calc(100dvh - 1rem);
    box-shadow: .4rem .4rem 0 rgb(15 48 43 / 35%);
  }

  .offer-dialog__close {
    top: .5rem;
    margin: .5rem .5rem -2.8rem auto;
    min-height: 2.75rem;
  }

  .offer-dialog__content {
    padding: 1.8rem 1.15rem 1.25rem;
  }

  .offer-dialog__content > h2 {
    max-width: calc(100% - 4rem);
    font-size: clamp(2.2rem, 11vw, 3rem);
    overflow-wrap: break-word;
  }

  .business-review-section__heading {
    align-items: stretch;
    flex-direction: column;
  }

  .business-review-section__heading .button {
    width: 100%;
  }

  .review-form__grid {
    grid-template-columns: 1fr;
  }

  .account-heading,
  .account-editor-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .account-heading .button,
  .account-editor-heading .button {
    width: 100%;
    margin: 0;
  }

  .account-intro {
    justify-content: flex-start;
  }

  .account-business-card {
    grid-template-columns: 7rem minmax(0, 1fr);
  }

  .account-business-card__visual {
    min-height: 11rem;
    font-size: 2rem;
  }

  .account-business-card__copy {
    padding: 1rem;
  }

  .account-business-card__copy h3 {
    font-size: 1.5rem;
  }

  .account-business-card__copy .button {
    width: 100%;
    padding-inline: .7rem;
  }

  .account-business-card__actions,
  .account-editor-actions,
  .offer-form__controls,
  .account-offer-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .upgrade-plan-grid,
  .account-offer-list {
    grid-template-columns: 1fr;
  }

  .upgrade-dialog__close {
    position: static;
    float: right;
    margin-bottom: 1rem;
  }

  .plan-corner {
    top: .55rem;
  }

  .account-field-grid,
  .account-image-editor {
    grid-template-columns: 1fr;
  }

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

  .account-profile-footer {
    flex-wrap: wrap;
  }

  .seo-detail__card {
    grid-template-columns: 1fr;
  }

  .seo-detail__image {
    min-height: 17rem;
    max-height: 25rem;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .category-choices {
    grid-template-columns: 1fr 1fr;
  }

  .hours-row {
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    padding: .9rem 0;
  }

  .hours-row > strong,
  .hours-closed {
    grid-column: 1 / -1;
  }

  .hours-closed {
    min-height: 2rem;
    display: flex;
    align-items: center;
    gap: .35rem;
  }

  .events-grid,
  .event-source-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    gap: 1.5rem;
  }

  .event-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .event-card time {
    min-height: 3.25rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: .5rem;
    padding: .6rem 1.1rem;
    border-right: 0;
    border-bottom: 1.5px solid var(--ink);
  }

  .event-card time strong {
    font-size: 1.9rem;
    line-height: 1;
  }

  .event-card time span {
    font-size: .72rem;
  }

  .event-card__body {
    min-width: 0;
    padding: 1.15rem 1.1rem 1.3rem;
  }

  .event-card__body > .eyebrow {
    margin-bottom: .5rem;
  }

  .event-card h2 {
    margin: 0 0 .7rem;
    font-size: 1.75rem;
    line-height: 1.05;
  }

  .event-card .event-card__venue {
    margin-bottom: .75rem;
  }

  .event-card .event-card__summary {
    -webkit-line-clamp: 2;
  }

  .event-card .coming-label {
    margin-top: 1rem;
  }

  .event-card__source {
    margin-top: .8rem;
    padding-top: .75rem;
    border-top: 1px solid var(--line);
  }

  .price-card--featured {
    transform: none;
  }

  .legal-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 31rem) {
  .account-profile-form {
    grid-template-columns: 1fr;
  }

  .account-profile-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .account-profile-footer .button {
    width: 100%;
    margin-left: 0;
  }

  .seo-detail__card {
    grid-template-columns: 1fr;
  }

  .seo-detail__image {
    min-height: 15rem;
    max-height: 22rem;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .seo-detail__facts > div {
    grid-template-columns: 1fr;
    gap: .2rem;
  }

  .seo-detail__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .seo-detail__actions .button {
    width: 100%;
  }

  .business-detail {
    grid-template-columns: 1fr;
    gap: .25rem;
    padding: .7rem 0;
  }

  .legal-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .legal-table [role="row"]:first-child {
    display: none;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }
}

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

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

.submission-shell {
  width: min(100%, 70rem);
  margin-inline: auto;
}

.submission-form {
  display: grid;
  gap: 1.4rem;
}

.submission-section,
.submission-review {
  padding: clamp(1.1rem, 2.5vw, 2rem);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.submission-section h2,
.submission-review h2 {
  margin-top: 0;
}

.submission-grid {
  display: grid;
  gap: 1rem;
}

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

.submission-field {
  display: grid;
  gap: .4rem;
  margin-top: 1rem;
}

.submission-field__label {
  font-weight: 800;
}

.submission-field input,
.submission-field textarea,
.submission-field select {
  width: 100%;
  min-height: 3rem;
  padding: .75rem .85rem;
  border: 1px solid var(--ink);
  border-radius: .5rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.submission-field textarea {
  resize: vertical;
}

.submission-field small,
.submission-plan small {
  color: var(--muted);
}

.submission-hours {
  display: grid;
  gap: .65rem;
  margin-top: 1rem;
}

.submission-hours__row {
  display: grid;
  grid-template-columns: 7rem 1fr auto 1fr 6rem;
  align-items: center;
  gap: .65rem;
  margin: 0;
  padding: .7rem;
  border: 1px solid var(--line);
  border-radius: .5rem;
}

.submission-hours__row legend {
  display: contents;
  font-weight: 800;
}

.submission-hours__row input[type="time"] {
  width: 100%;
  min-width: 0;
  padding: .55rem;
  border: 1px solid var(--ink);
  border-radius: .4rem;
  font: inherit;
}

.submission-hours__closed {
  white-space: nowrap;
}

.submission-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.submission-plan {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .3rem .65rem;
  padding: 1rem;
  border: 1px solid var(--ink);
  border-radius: .65rem;
  cursor: pointer;
}

.submission-plan:has(input:checked) {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  background: var(--cream);
}

.submission-plan input {
  grid-row: 1 / span 3;
  align-self: start;
  margin-top: .25rem;
}

.submission-plan__price {
  font-weight: 800;
}

.submission-check {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin: 1rem 0;
}

.submission-check input {
  flex: 0 0 auto;
  margin-top: .25rem;
}

.submission-success {
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.submission-review__heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.review-facts,
.review-hours__list {
  display: grid;
  gap: 0;
  margin: 1.5rem 0;
}

.review-fact {
  display: grid;
  grid-template-columns: minmax(9rem, 14rem) 1fr;
  gap: 1rem;
  padding: .8rem 0;
  border-top: 1px solid var(--line);
}

.review-fact dt {
  font-weight: 800;
}

.review-fact dd {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.review-hours h3 {
  margin-bottom: 0;
}

.review-hours__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
}

.review-hours__list .review-fact {
  grid-template-columns: 7rem 1fr;
}

@media (max-width: 50rem) {
  .submission-grid--three,
  .submission-plan-grid {
    grid-template-columns: 1fr;
  }

  .submission-hours__row {
    grid-template-columns: 1fr 1fr auto 1fr;
  }

  .submission-hours__row legend {
    display: block;
    grid-column: 1 / -1;
  }

  .submission-hours__closed {
    grid-column: 1 / -1;
  }

  .review-hours__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 34rem) {
  .submission-review__heading,
  .review-fact {
    grid-template-columns: 1fr;
    display: grid;
  }

  .submission-hours__row {
    grid-template-columns: 1fr auto 1fr;
  }
}

.newsletter-callout {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--orange);
  color: var(--ink-deep);
}

.newsletter-callout__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.newsletter-callout h2 {
  max-width: 22ch;
  margin: 0 0 .65rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.04em;
  line-height: 1;
}

.newsletter-callout p:last-child {
  max-width: 46rem;
  margin-bottom: 0;
}

.newsletter-prompt {
  position: fixed;
  z-index: 45;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(calc(100% - 2rem), 27rem);
  padding: 1.5rem;
  background: var(--orange);
  border: 1px solid var(--ink);
  border-radius: .75rem;
  box-shadow: .55rem .55rem 0 rgb(23 63 56 / 22%);
  color: var(--ink-deep);
}

.newsletter-prompt h2 {
  margin: .3rem 2rem .65rem 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  letter-spacing: -.04em;
  line-height: 1;
}

.newsletter-prompt > p:not(.eyebrow) {
  margin: 0 0 1rem;
  line-height: 1.5;
}

.newsletter-prompt .button {
  width: 100%;
}

.newsletter-prompt__close {
  position: absolute;
  top: .65rem;
  right: .65rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgb(23 63 56 / 35%);
  border-radius: 999px;
  color: var(--ink-deep);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.newsletter-prompt__close:hover,
.newsletter-prompt__close:focus-visible {
  background: rgb(255 255 255 / 35%);
}

.newsletter-preferences {
  width: min(100%, 48rem);
  margin-inline: auto;
}

.newsletter-preferences__card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.newsletter-preferences__card h2 {
  margin-top: 0;
  overflow-wrap: anywhere;
}

.newsletter-preferences__notice {
  margin-bottom: 1.5rem;
}

.newsletter-preferences__form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.newsletter-frequency {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  padding: 1rem;
  border: 1px solid var(--ink);
  border-radius: .6rem;
  cursor: pointer;
}

.newsletter-frequency:has(input:checked) {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  background: var(--cream);
}

.newsletter-frequency input {
  margin-top: .2rem;
}

.newsletter-frequency span,
.newsletter-frequency small {
  display: block;
}

.newsletter-frequency small {
  margin-top: .3rem;
  color: var(--muted);
  line-height: 1.45;
}

.newsletter-preferences__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

@media (max-width: 42rem) {
  .newsletter-prompt {
    right: 1rem;
    bottom: 5.5rem;
    width: calc(100% - 2rem);
  }

  .newsletter-callout__inner,
  .newsletter-frequency-choices {
    grid-template-columns: 1fr;
  }

  .newsletter-callout__inner .button {
    width: 100%;
  }

  .newsletter-preferences__actions {
    display: grid;
  }
}
