:root {
  --pine-950: #10271f;
  --pine-900: #173e32;
  --pine-800: #235142;
  --pine-700: #356454;
  --moss-600: #607960;
  --moss-400: #97a58c;
  --lichen-200: #dce3cf;
  --lichen-100: #edf0e5;
  --sand-100: #f5f0e6;
  --sand-50: #fbf9f4;
  --paper: #fffdf8;
  --ember-600: #c9572a;
  --ember-500: #dd6b38;
  --gold-500: #d6a850;
  --ink: #17231e;
  --ink-soft: #59635e;
  --line: #d8d9cf;
  --line-dark: #b9beb3;
  --error: #a93f31;
  --success: #357057;
  --shadow-sm: 0 8px 24px rgba(20, 38, 30, 0.08);
  --shadow-md: 0 18px 50px rgba(20, 38, 30, 0.13);
  --shadow-lg: 0 32px 80px rgba(12, 32, 24, 0.18);
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2.1rem;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  --content: 76rem;
  --header-height: 4.75rem;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--ink);
  background: var(--sand-50);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.filter-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.7rem, 9vw, 5.8rem);
}

h2 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
}

h3 {
  line-height: 1.2;
}

::selection {
  color: var(--paper);
  background: var(--pine-700);
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--pine-950);
  border-radius: var(--radius-sm);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.section-shell {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--pine-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.85rem;
  height: 2px;
  flex: 0 0 auto;
  background: var(--ember-500);
}

.eyebrow--light {
  color: var(--lichen-200);
}

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

.section-heading > div {
  max-width: 48rem;
}

.section-heading h2 {
  margin-bottom: 0.8rem;
}

.section-heading p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.section-heading--light p {
  color: var(--lichen-200);
}

.button {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.76rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--primary {
  color: var(--paper);
  background: var(--pine-900);
  box-shadow: 0 8px 20px rgba(23, 62, 50, 0.15);
}

.button--primary:hover {
  background: var(--pine-800);
  box-shadow: 0 11px 24px rgba(23, 62, 50, 0.22);
}

.button--ember {
  color: var(--paper);
  background: var(--ember-500);
  box-shadow: 0 8px 20px rgba(201, 87, 42, 0.2);
}

.button--ember:hover {
  background: var(--ember-600);
}

.button--cream {
  color: var(--pine-950);
  background: var(--sand-100);
}

.button--cream:hover {
  background: var(--paper);
}

.button--outline {
  color: var(--pine-900);
  background: transparent;
  border-color: var(--line-dark);
}

.button--outline:hover {
  border-color: var(--pine-700);
  background: var(--lichen-100);
}

.button--quiet {
  color: var(--pine-900);
  background: transparent;
}

.button--quiet:hover {
  background: var(--lichen-100);
}

.button--saved {
  color: var(--pine-900);
  background: var(--lichen-200);
  border-color: #bac8a9;
}

.button--small {
  min-height: 2.75rem;
  padding: 0.68rem 1rem;
  font-size: 0.84rem;
}

.button--block {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--pine-800);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.2rem);
}

.icon-button {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  color: var(--pine-900);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.icon-button:hover,
.icon-button.is-active {
  color: var(--paper);
  background: var(--ember-500);
  border-color: var(--ember-500);
}

.icon-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.3rem 0.65rem;
  color: var(--pine-950);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.badge--ember {
  color: var(--paper);
  background: var(--ember-500);
  border-color: var(--ember-500);
}

.badge--lichen {
  background: var(--lichen-200);
  border-color: #cbd5bc;
}

.field {
  min-width: 0;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.78rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 0.72rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: white;
  border-color: var(--pine-700);
  box-shadow: 0 0 0 3px rgba(53, 100, 84, 0.14);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8c948f;
}

.field small {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.field__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.field__label-row a {
  color: var(--pine-700);
  font-size: 0.78rem;
  font-weight: 700;
}

.input-with-icon,
.password-field {
  position: relative;
}

.input-with-icon svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0.9rem;
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: var(--moss-600);
  stroke-linecap: round;
  stroke-width: 1.7;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-with-icon input {
  padding-left: 2.75rem;
}

.password-field input {
  padding-right: 4.5rem;
}

.password-field button {
  min-width: 3.4rem;
  min-height: 2.6rem;
  position: absolute;
  top: 50%;
  right: 0.2rem;
  padding: 0.4rem 0.65rem;
  color: var(--pine-700);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
  transform: translateY(-50%);
}

.password-hide,
.password-field.is-visible .password-show {
  display: none;
}

.password-field.is-visible .password-hide {
  display: inline;
}

.avatar {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  color: var(--paper);
  background: var(--pine-700);
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(20, 38, 30, 0.16);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar--small {
  width: 2.3rem;
  height: 2.3rem;
  font-size: 0.82rem;
}

/* Header */
.site-header {
  height: var(--header-height);
  position: sticky;
  z-index: 1000;
  top: 0;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: rgba(251, 249, 244, 0.94);
  border-bottom: 1px solid rgba(185, 190, 179, 0.55);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--content));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--pine-900);
  text-decoration: none;
}

.brand-mark {
  width: 2.3rem;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.brand-copy strong {
  font-size: 1.08rem;
}

.brand-copy span {
  color: var(--ember-600);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-toggle {
  min-width: 3.2rem;
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.5rem 0.7rem;
  color: var(--pine-900);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-toggle-lines {
  width: 1rem;
  display: grid;
  gap: 3px;
}

.nav-toggle-lines i {
  width: 100%;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines i:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines i:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines i:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.primary-nav {
  max-height: calc(100dvh - var(--header-height));
  position: fixed;
  z-index: 999;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: none;
  overflow-y: auto;
  padding: 1rem;
  background: var(--sand-50);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.primary-nav.is-open {
  display: block;
}

.nav-links {
  display: grid;
}

.nav-links a {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  padding: 0.6rem 0.2rem;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding-top: 1rem;
}

.nav-profile {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-right: auto;
  text-decoration: none;
}

.nav-profile small,
.nav-profile strong {
  display: block;
  line-height: 1.15;
}

.nav-profile small {
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-profile strong {
  max-width: 9rem;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-logout {
  display: inline-flex;
}

/* Feedback */
.flash-wrap {
  width: min(calc(100% - 2rem), var(--content));
  position: relative;
  z-index: 30;
  margin: 1rem auto -0.5rem;
}

.flash {
  display: grid;
  grid-template-columns: 1.8rem 1fr 2.75rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.8rem 0.75rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--success);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.flash--error {
  border-left-color: var(--error);
}

.flash p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
}

.flash-icon {
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--success);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.flash--error .flash-icon {
  background: var(--error);
}

.flash button {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--ink-soft);
  background: transparent;
  border-radius: 50%;
  font-size: 1.4rem;
}

.flash.is-leaving {
  opacity: 0;
  transform: translateY(-0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast-region {
  width: min(calc(100% - 2rem), 24rem);
  position: fixed;
  z-index: 5000;
  right: 1rem;
  bottom: 1rem;
  pointer-events: none;
}

.toast {
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  color: var(--paper);
  background: var(--pine-950);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  opacity: 0;
  transform: translateY(0.5rem);
  animation: toast-in 220ms ease forwards;
}

@keyframes toast-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Privacy component */
.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  color: var(--pine-950);
  background: var(--lichen-100);
  border: 1px solid #d3dac7;
  border-radius: var(--radius-md);
}

.privacy-note__icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--pine-700);
  background: var(--paper);
  border-radius: 50%;
}

.privacy-note__icon svg {
  width: 1.25rem;
}

.privacy-note strong {
  display: block;
  font-size: 0.84rem;
}

.privacy-note p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.privacy-note--compact {
  padding: 0.75rem;
}

/* Home hero */
.home-hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding-block: 3.2rem 4rem;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  margin-bottom: 1.3rem;
  color: var(--pine-950);
}

.home-hero h1 em {
  color: var(--ember-600);
  font-weight: 500;
}

.home-hero__lede {
  max-width: 36rem;
  margin-bottom: 1.7rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.hero-search {
  max-width: 39rem;
}

.hero-search > label {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero-search__control {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.hero-search__control > svg {
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  left: 1.15rem;
  fill: none;
  stroke: var(--moss-600);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.hero-search input {
  width: 100%;
  min-width: 0;
  min-height: 3rem;
  padding: 0.7rem 0.5rem 0.7rem 2.8rem;
  background: transparent;
  border: 0;
  outline: 0;
}

.hero-search .button {
  min-width: 5.6rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.hero-trust__avatars {
  display: flex;
  padding-left: 0.4rem;
}

.hero-trust__avatars i {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  margin-left: -0.4rem;
  color: var(--paper);
  background: var(--pine-700);
  border: 2px solid var(--sand-50);
  border-radius: 50%;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
}

.hero-trust__avatars i:nth-child(2) { background: var(--ember-500); }
.hero-trust__avatars i:nth-child(3) { background: var(--gold-500); color: var(--pine-950); }

.hero-trust p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.3;
}

.hero-trust strong {
  display: block;
  color: var(--ink);
}

.home-hero__visual {
  min-height: 23rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.7) 0 2%, transparent 2.3%),
    linear-gradient(155deg, #dfe6d2 0%, #aebca8 52%, #5f7867 100%);
  border-radius: 46% 46% 1.5rem 1.5rem / 34% 34% 1.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.home-hero__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(165deg, transparent 0 22%, #355c4c 22.5% 45%, #173e32 45.5%);
}

.contour {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(23, 62, 50, 0.18);
  border-radius: 45%;
  transform: rotate(-15deg);
}

.contour--one { width: 18rem; height: 11rem; top: 1rem; right: -3rem; }
.contour--two { width: 14rem; height: 8rem; top: 3rem; right: -0.5rem; }
.contour--three { width: 10rem; height: 5rem; top: 4.5rem; right: 1rem; }

.hero-sun {
  width: 4.3rem;
  height: 4.3rem;
  position: absolute;
  z-index: 2;
  top: 16%;
  right: 17%;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 0 1rem rgba(214, 168, 80, 0.12);
}

.hero-mountains i {
  position: absolute;
  z-index: 2;
  right: -10%;
  bottom: 31%;
  left: -12%;
  height: 43%;
  background: #668477;
  clip-path: polygon(0 100%, 19% 42%, 34% 73%, 50% 22%, 68% 70%, 83% 35%, 100% 100%);
}

.hero-mountains i:nth-child(2) {
  z-index: 3;
  bottom: 24%;
  background: #456a5b;
  clip-path: polygon(0 100%, 12% 55%, 29% 76%, 44% 35%, 60% 79%, 79% 48%, 100% 100%);
}

.hero-mountains i:nth-child(3) {
  z-index: 4;
  bottom: 14%;
  background: #284e40;
  clip-path: polygon(0 100%, 18% 61%, 32% 78%, 50% 46%, 66% 75%, 86% 58%, 100% 100%);
}

.hero-tent {
  width: 5.5rem;
  height: 3.8rem;
  position: absolute;
  z-index: 8;
  right: 21%;
  bottom: 13%;
  background: var(--ember-500);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0.7rem 0.5rem rgba(0, 0, 0, 0.18));
}

.hero-tent span {
  width: 2px;
  height: 100%;
  position: absolute;
  left: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.hero-pin-card,
.hero-note-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.hero-pin-card {
  top: 1.2rem;
  left: 1rem;
  padding: 0.7rem 0.85rem;
}

.hero-pin-card__icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ember-500);
  border-radius: 50%;
}

.hero-pin-card small,
.hero-pin-card strong {
  display: block;
  line-height: 1.15;
}

.hero-pin-card small {
  color: var(--ink-soft);
  font-size: 0.64rem;
}

.hero-pin-card strong {
  margin-top: 0.15rem;
  font-family: var(--display);
  font-size: 1rem;
}

.hero-note-card {
  right: 0.7rem;
  bottom: 1rem;
  padding: 0.7rem 0.85rem;
}

.hero-note-card > span {
  color: var(--gold-500);
  font-size: 1.4rem;
}

.hero-note-card p {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.35;
}

.home-stats {
  color: var(--paper);
  background: var(--pine-900);
}

.home-stats__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: 1.6rem;
}

.home-stats p {
  margin: 0;
  padding: 0.8rem;
  text-align: center;
}

.home-stats p:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.home-stats p:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.home-stats strong,
.home-stats span {
  display: block;
}

.home-stats strong {
  font-family: var(--display);
  font-size: 1.55rem;
}

.home-stats span {
  color: var(--lichen-200);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Site cards */
.site-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}

.site-card {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-card:hover,
.site-card:focus-within {
  border-color: #bdc7b5;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.site-card__media {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--lichen-100);
}

.site-card__media > a,
.site-card__media img,
.site-card__placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.site-card__media img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.site-card:hover .site-card__media img {
  transform: scale(1.035);
}

.site-card__placeholder {
  background:
    radial-gradient(circle at 72% 24%, var(--gold-500) 0 7%, transparent 7.5%),
    linear-gradient(150deg, transparent 0 48%, var(--moss-600) 48.5% 68%, var(--pine-800) 68.5%),
    var(--lichen-200);
}

.site-card__badges {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  pointer-events: none;
}

.favourite-form--card {
  position: absolute;
  z-index: 3;
  top: 0.65rem;
  right: 0.65rem;
}

.favourite-form--card .icon-button {
  background: rgba(255, 253, 248, 0.92);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 5px 18px rgba(14, 36, 27, 0.16);
}

.favourite-form--card .icon-button.is-active {
  color: var(--paper);
  background: var(--ember-500);
}

.site-card__body {
  padding: 1rem 1rem 1.1rem;
}

.site-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--moss-600);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--ink);
  letter-spacing: 0;
}

.rating-inline > span {
  color: var(--gold-500);
}

.site-card h3 {
  margin: 0.45rem 0 0.5rem;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.site-card h3 a {
  text-decoration: none;
}

.site-card__body > p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.site-card__facts {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 0.4rem 0.7rem;
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
}

.site-card__facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  white-space: nowrap;
}

.site-card__facts span {
  color: var(--pine-700);
}

.site-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.site-card__price strong,
.site-card__price small {
  display: block;
}

.site-card__price strong {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1;
}

.site-card__price small {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.64rem;
}

/* Home sections */
.how-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  color: var(--paper);
  background:
    radial-gradient(ellipse at 95% 0%, rgba(151, 165, 140, 0.28), transparent 42%),
    var(--pine-950);
}

.how-section::after {
  content: "";
  width: 28rem;
  height: 28rem;
  position: absolute;
  top: -9rem;
  right: -9rem;
  border: 1px solid rgba(220, 227, 207, 0.12);
  border-radius: 48%;
  box-shadow: 0 0 0 2.5rem rgba(220, 227, 207, 0.04), 0 0 0 5rem rgba(220, 227, 207, 0.035);
  transform: rotate(-18deg);
}

.steps {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  min-height: 15rem;
  position: relative;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
}

.steps__number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: rgba(255, 255, 255, 0.13);
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: 1;
}

.steps__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 2.3rem;
  color: var(--pine-950);
  background: var(--gold-500);
  border-radius: 50%;
  font-size: 1.3rem;
}

.steps h3 {
  margin-bottom: 0.6rem;
  font-family: var(--display);
  font-size: 1.35rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--lichen-200);
  font-size: 0.85rem;
}

.community-preview {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.community-preview__intro {
  max-width: 35rem;
}

.community-preview__intro h2 {
  margin-bottom: 1rem;
}

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

.trip-stack {
  display: grid;
  gap: 0.9rem;
}

.trip-card {
  position: relative;
  padding: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.trip-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.trip-card h3 {
  margin: 0.8rem 0 0.45rem;
  font-family: var(--display);
  font-size: 1.3rem;
}

.trip-card h3 a {
  text-decoration: none;
}

.trip-card > p {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.trip-card__route {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}

.trip-card__route i {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  background: var(--ember-500);
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ember-500);
}

.trip-card__route span {
  height: 2px;
  flex: 1;
  background: repeating-linear-gradient(90deg, var(--moss-400) 0 5px, transparent 5px 9px);
}

.host-callout {
  position: relative;
  display: grid;
  overflow: hidden;
  margin-block: clamp(4rem, 8vw, 7rem);
  background: var(--lichen-200);
  border-radius: var(--radius-xl);
}

.host-callout__art {
  min-height: 18rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(#c9d5c1, #eef0e4 65%);
}

.host-callout__sun {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 16%;
  right: 18%;
  background: var(--gold-500);
  border-radius: 50%;
}

.host-callout__field {
  position: absolute;
  right: -10%;
  bottom: -8%;
  left: -10%;
  height: 65%;
  background: var(--moss-600);
  border-radius: 50% 50% 0 0;
  transform: rotate(-4deg);
}

.host-callout__trees {
  position: absolute;
  right: 0;
  bottom: 25%;
  left: 0;
  height: 38%;
  background: var(--pine-800);
  clip-path: polygon(0 100%, 7% 38%, 13% 100%, 21% 14%, 29% 100%, 37% 45%, 44% 100%, 57% 20%, 67% 100%, 76% 42%, 83% 100%, 91% 10%, 100% 100%);
}

.host-callout__copy {
  padding: clamp(1.7rem, 5vw, 3.5rem);
}

.host-callout__copy h2 {
  max-width: 38rem;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.host-callout__copy > p:not(.eyebrow) {
  max-width: 37rem;
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.4rem 0 1.7rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  width: 1.15rem;
  height: 1.15rem;
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--pine-700);
  border-radius: 50%;
  font-size: 0.65rem;
}

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

.journal-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.journal-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.journal-card > div {
  padding: 1.1rem;
}

.journal-card span {
  color: var(--ember-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 0.5rem 0;
  font-family: var(--display);
  font-size: 1.3rem;
}

.journal-card h3 a {
  text-decoration: none;
}

.journal-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.pledge-strip {
  padding-block: 2.2rem;
  color: var(--paper);
  background: var(--ember-600);
}

.pledge-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.pledge-strip__mark {
  font-size: 3rem;
}

.pledge-strip h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.pledge-strip .eyebrow {
  margin-bottom: 0.5rem;
}

/* Empty states */
.empty-state {
  padding: 3rem 1.2rem;
  text-align: center;
  background: var(--paper);
  border: 1px dashed var(--line-dark);
  border-radius: var(--radius-lg);
}

.empty-state__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: var(--paper);
  background: var(--pine-700);
  border-radius: 50%;
  font-size: 1.5rem;
}

.empty-state h2,
.empty-state h3 {
  margin-bottom: 0.6rem;
  font-family: var(--display);
}

.empty-state p {
  max-width: 29rem;
  margin: 0 auto 1.2rem;
  color: var(--ink-soft);
}

.empty-state--small {
  padding: 1.2rem;
}

.empty-state--small p {
  margin-bottom: 0;
}

/* Auth */
.auth-page .site-footer {
  margin-top: 0;
}

.auth-shell {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  background: var(--paper);
}

.auth-art {
  min-height: 14rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #cbd6c4, #8ca391 55%, #496b5c);
}

.auth-art__contours {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background:
    repeating-radial-gradient(ellipse at 80% 20%, transparent 0 24px, rgba(255, 255, 255, 0.22) 25px 26px, transparent 27px 44px);
}

.auth-art__sun,
.auth-art__moon {
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  z-index: 2;
  top: 1.8rem;
  right: 2.3rem;
  background: var(--gold-500);
  border-radius: 50%;
}

.auth-art__moon {
  background: var(--sand-100);
  box-shadow: -0.9rem 0.35rem 0 -0.25rem #809887 inset;
}

.auth-art__ridge {
  position: absolute;
  right: -10%;
  bottom: -1px;
  left: -10%;
  height: 62%;
  background: var(--pine-700);
  clip-path: polygon(0 100%, 18% 50%, 34% 75%, 51% 32%, 68% 74%, 85% 45%, 100% 100%);
}

.auth-art__ridge--front {
  z-index: 2;
  height: 45%;
  background: var(--pine-950);
  clip-path: polygon(0 100%, 16% 61%, 36% 80%, 55% 47%, 72% 78%, 88% 59%, 100% 100%);
}

.auth-art blockquote {
  max-width: 27rem;
  position: absolute;
  z-index: 4;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: none;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1.25;
}

.auth-art blockquote span {
  display: block;
  color: var(--gold-500);
  font-size: 4rem;
  line-height: 0.5;
}

.auth-pledge-card {
  position: absolute;
  z-index: 5;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 0.7rem 0.85rem;
  color: var(--pine-950);
  background: rgba(255, 253, 248, 0.92);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.auth-pledge-card > span {
  grid-row: 1 / span 2;
  margin-right: 0.65rem;
  color: var(--ember-500);
  font-size: 1.5rem;
}

.auth-pledge-card strong,
.auth-pledge-card small {
  line-height: 1.2;
}

.auth-pledge-card small {
  color: var(--ink-soft);
}

.auth-panel {
  display: grid;
  place-items: center;
  padding: 2.5rem 1rem 3.5rem;
}

.auth-panel__inner {
  width: min(100%, 31rem);
}

.auth-panel h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.3rem, 8vw, 3.7rem);
}

.auth-intro {
  margin-bottom: 1.7rem;
  color: var(--ink-soft);
}

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

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

.pledge-check {
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  align-items: start;
  gap: 0.7rem;
  padding: 0.9rem;
  background: var(--lichen-100);
  border: 1px solid #d2dac7;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.pledge-check input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}

.pledge-check__box {
  width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  color: transparent;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 0.35rem;
  font-size: 0.8rem;
  transition: color 160ms ease, background 160ms ease;
}

.pledge-check input:checked + .pledge-check__box {
  color: var(--paper);
  background: var(--pine-700);
}

.pledge-check input:focus-visible + .pledge-check__box {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

.pledge-check strong,
.pledge-check small {
  display: block;
}

.pledge-check strong {
  font-size: 0.86rem;
}

.pledge-check small {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.45;
}

.form-terms {
  margin: -0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-align: center;
}

.auth-switch {
  margin: 1.4rem 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-align: center;
}

.auth-switch a {
  color: var(--pine-700);
  font-weight: 800;
}

.notice-card {
  padding: 1rem;
  background: var(--lichen-100);
  border: 1px solid #d2dac7;
  border-radius: var(--radius-md);
}

.notice-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.notice-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.notice-card .button {
  margin-top: 0.8rem;
}

.notice-card--muted {
  margin-top: 1rem;
  background: var(--sand-100);
  border-color: var(--line);
}

.auth-success-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  color: var(--paper);
  background: var(--success);
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 0 0 0.7rem rgba(53, 112, 87, 0.1);
}

/* Explore */
.explore-hero {
  position: relative;
  overflow: hidden;
  padding-block: 2.6rem;
  color: var(--paper);
  background:
    radial-gradient(ellipse at 92% 10%, rgba(220, 227, 207, 0.18), transparent 42%),
    var(--pine-900);
}

.explore-hero::after {
  content: "";
  width: 18rem;
  height: 11rem;
  position: absolute;
  top: -3rem;
  right: -3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 2rem rgba(255, 255, 255, 0.025), 0 0 0 4rem rgba(255, 255, 255, 0.018);
  transform: rotate(-12deg);
}

.explore-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
}

.explore-hero h1 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.7rem, 8vw, 4.5rem);
}

.explore-hero__inner > div > p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--lichen-200);
}

.explore-hero .privacy-note {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.explore-hero .privacy-note p {
  color: var(--lichen-200);
}

.explore-hero .privacy-note__icon {
  color: var(--pine-900);
}

.explore-layout {
  display: grid;
  gap: 1.2rem;
  padding-block: 1.2rem 4rem;
}

.filter-panel {
  position: fixed;
  z-index: 2100;
  inset: auto 0 0;
  max-height: min(92dvh, 48rem);
  display: none;
  overflow-y: auto;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
  background: var(--sand-50);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -18px 60px rgba(11, 29, 22, 0.24);
}

.filter-panel.is-open {
  display: block;
  animation: sheet-up 220ms ease;
}

@keyframes sheet-up {
  from { transform: translateY(100%); }
}

.filter-backdrop {
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(16, 39, 31, 0.58);
  backdrop-filter: blur(2px);
}

.filter-panel__mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.filter-search {
  margin-bottom: 0.9rem;
}

.filter-row {
  display: grid;
  gap: 0.8rem;
}

.filter-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 0;
  border: 0;
}

.filter-checks legend {
  width: 100%;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-checks label {
  position: relative;
  cursor: pointer;
}

.filter-checks input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}

.filter-checks label span {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0.58rem 0.8rem;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.filter-checks input:checked + span {
  color: var(--paper);
  background: var(--pine-700);
  border-color: var(--pine-700);
}

.filter-checks input:focus-visible + span {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

.popular-points > span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.popular-points > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.popular-points a {
  padding: 0.3rem 0.55rem;
  color: var(--pine-700);
  background: var(--lichen-100);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
}

.filter-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.results-toolbar,
.results-toolbar > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.results-toolbar {
  margin-bottom: 1rem;
}

.button--filter {
  min-height: 2.75rem;
}

.button--filter svg {
  width: 1rem;
}

.results-count {
  display: none;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.results-count strong {
  color: var(--ink);
}

.view-toggle {
  display: inline-flex;
  padding: 0.2rem;
  background: var(--lichen-100);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.view-toggle button {
  min-width: 3.8rem;
  min-height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  padding: 0.45rem 0.65rem;
  color: var(--ink-soft);
  background: transparent;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.view-toggle button.is-active {
  color: var(--paper);
  background: var(--pine-800);
  box-shadow: 0 3px 9px rgba(16, 39, 31, 0.18);
}

.view-toggle svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.results-views {
  min-width: 0;
}

.results-map {
  min-height: calc(100dvh - 12rem);
  position: relative;
  overflow: hidden;
  background: var(--lichen-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.map-canvas {
  width: 100%;
  height: 100%;
  min-height: calc(100dvh - 12rem);
  z-index: 1;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 18%),
    var(--lichen-200);
}

.map-canvas:focus-visible {
  outline-offset: -4px;
}

.map-loading {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.7rem;
  color: var(--pine-800);
  background: rgba(237, 240, 229, 0.88);
  pointer-events: none;
}

.map-loading span {
  width: 2.3rem;
  height: 2.3rem;
  border: 3px solid rgba(53, 100, 84, 0.2);
  border-top-color: var(--pine-700);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.map-loading p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
}

.map-loading.is-done {
  display: none;
}

@keyframes spin {
  to { transform: rotate(1turn); }
}

.map-status {
  position: absolute;
  z-index: 500;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem;
  color: var(--paper);
  background: rgba(16, 39, 31, 0.9);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  text-align: center;
}

.map-status:empty {
  display: none;
}

.map-privacy-pill {
  min-height: 2.35rem;
  position: absolute;
  z-index: 450;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.48rem 0.7rem;
  color: var(--pine-950);
  background: rgba(255, 253, 248, 0.94);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.68rem;
  font-weight: 800;
  pointer-events: none;
}

.map-fallback {
  padding: 1rem;
  color: var(--ink-soft);
  background: var(--lichen-100);
  border-radius: var(--radius-md);
  text-align: center;
}

.map-fallback p {
  margin: 0;
}

.leaflet-container {
  color: var(--ink);
  font-family: var(--sans);
}

.leaflet-bar {
  overflow: hidden;
  border: 0 !important;
  border-radius: 0.7rem !important;
  box-shadow: var(--shadow-md) !important;
}

.leaflet-bar a {
  width: 2.8rem !important;
  height: 2.8rem !important;
  display: grid !important;
  place-items: center;
  color: var(--pine-900) !important;
  background: var(--paper) !important;
  font-size: 1.2rem !important;
  line-height: 1 !important;
}

.leaflet-control-attribution {
  font-size: 0.56rem !important;
}

.ogc-marker {
  width: 2.35rem !important;
  height: 2.35rem !important;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ember-500);
  border: 3px solid var(--paper);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 4px 10px rgba(16, 39, 31, 0.28);
  transform: rotate(-45deg);
}

.ogc-marker::after {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  background: currentColor;
  border-radius: 50%;
}

.ogc-marker.is-saved {
  background: var(--gold-500);
}

.ogc-cluster-wrap {
  background: transparent;
}

.ogc-cluster {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--pine-800);
  border: 4px solid rgba(255, 253, 248, 0.92);
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(16, 39, 31, 0.3);
  font-size: 0.75rem;
  font-weight: 900;
}

.map-popup {
  min-width: 12rem;
  padding: 0.2rem;
}

.map-popup img {
  width: 100%;
  height: 6rem;
  margin-bottom: 0.65rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

.map-popup small {
  color: var(--moss-600);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-popup h3 {
  margin: 0.2rem 0 0.35rem;
  font-family: var(--display);
  font-size: 1.15rem;
}

.map-popup p {
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.map-popup a {
  color: var(--pine-700);
  font-size: 0.76rem;
  font-weight: 800;
}

/* Detail page */
.detail-hero {
  min-height: 30rem;
  position: relative;
  display: grid;
  align-items: end;
  color: var(--paper);
  background: var(--pine-900);
}

.detail-hero__media,
.detail-hero__shade {
  position: absolute;
  inset: 0;
}

.detail-hero__media img,
.detail-hero__placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-hero__placeholder {
  background:
    radial-gradient(circle at 75% 22%, var(--gold-500) 0 6%, transparent 6.5%),
    linear-gradient(155deg, transparent 0 48%, var(--moss-600) 48.5% 68%, var(--pine-800) 68.5%),
    var(--lichen-200);
}

.detail-hero__shade {
  background: linear-gradient(180deg, rgba(12, 30, 23, 0.13), rgba(12, 30, 23, 0.87));
}

.detail-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 1.2rem 2rem;
}

.breadcrumbs {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  white-space: nowrap;
}

.breadcrumbs a {
  color: inherit;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  opacity: 0.75;
  text-overflow: ellipsis;
}

.breadcrumbs--light {
  color: var(--lichen-200);
}

.detail-hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.detail-hero h1 {
  max-width: 53rem;
  margin-bottom: 0.8rem;
  font-size: clamp(2.8rem, 8vw, 5rem);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.9rem;
  color: var(--lichen-200);
  font-size: 0.76rem;
}

.detail-meta > span + span {
  position: relative;
  padding-left: 0.9rem;
}

.detail-meta > span + span::before {
  content: "·";
  position: absolute;
  left: 0;
}

.rating-inline--light {
  color: var(--paper);
}

.detail-hero .button svg {
  width: 1rem;
}

.detail-action-bar {
  position: sticky;
  z-index: 500;
  top: var(--header-height);
  background: rgba(251, 249, 244, 0.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 5px 18px rgba(20, 38, 30, 0.06);
  backdrop-filter: blur(12px);
}

.detail-action-bar__inner {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding-block: 0.55rem;
}

.key-point-row {
  display: none;
  flex: 1;
  overflow-x: auto;
  gap: 0.4rem;
  scrollbar-width: none;
}

.key-point-row::-webkit-scrollbar {
  display: none;
}

.key-point-row a {
  flex: 0 0 auto;
  padding: 0.35rem 0.6rem;
  color: var(--pine-700);
  background: var(--lichen-100);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  text-decoration: none;
}

.detail-actions {
  display: flex;
  gap: 0.45rem;
}

.detail-actions .button {
  min-height: 2.8rem;
  padding-inline: 0.85rem;
}

.detail-actions .button svg {
  width: 1rem;
  height: 1rem;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.7;
}

.detail-actions .button--saved svg {
  fill: currentColor;
}

.detail-layout {
  display: grid;
  gap: 2rem;
  padding-block: 2.4rem 5rem;
}

.detail-main {
  min-width: 0;
}

.detail-section {
  padding-block: 2.4rem;
  border-bottom: 1px solid var(--line);
}

.detail-section:first-child {
  padding-top: 0;
}

.detail-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.detail-intro h2 {
  max-width: 50rem;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.12;
}

.prose {
  max-width: 48rem;
  color: var(--ink-soft);
}

.prose p {
  white-space: pre-line;
}

.detail-section__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.detail-section__heading h2,
.detail-section__heading .eyebrow {
  margin-bottom: 0;
}

.wild-rating {
  display: flex;
  align-items: center;
  gap: 0.18rem;
}

.wild-rating i {
  width: 0.58rem;
  height: 1.05rem;
  display: block;
  background: var(--line);
  border-radius: 70% 0 70% 0;
  transform: rotate(-28deg);
}

.wild-rating i.is-filled {
  background: var(--pine-700);
}

.wild-rating small {
  margin-left: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

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

.fact-grid > div {
  min-height: 6.5rem;
  padding: 0.9rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-grid dt {
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-grid dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 750;
}

.fact-grid dd span {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  color: var(--pine-700);
  background: var(--lichen-100);
  border-radius: 50%;
}

.tag-groups {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.tag-groups strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.76rem;
}

.tag-groups p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
}

.tag {
  padding: 0.35rem 0.62rem;
  color: var(--pine-800);
  background: var(--lichen-100);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

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

.gallery-grid button {
  min-height: 8rem;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--lichen-100);
  border-radius: var(--radius-sm);
}

.gallery-grid button:first-child {
  grid-column: 1 / -1;
  min-height: 15rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.gallery-grid button > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: rgba(16, 39, 31, 0.6);
  font-size: 1.1rem;
  font-weight: 800;
}

.map-canvas--detail {
  min-height: 24rem;
  margin-top: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.review-summary {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0;
}

.review-summary strong {
  font-family: var(--display);
  font-size: 2rem;
}

.review-summary > span {
  color: var(--gold-500);
}

.review-summary small {
  margin-left: 0.35rem;
  color: var(--ink-soft);
}

.review-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-list li {
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.review-list li.review-list__item--scout {
  border-color: #e97f0e;
  border-left-width: 0.35rem;
  background: #fff8ef;
}

.review-list li.review-list__item--reply {
  width: calc(100% - 2rem);
  margin-left: 2rem;
  border-left: 0.25rem solid #e97f0e;
  background: var(--sand-50);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.review-author p {
  margin: 0;
}

.review-author strong,
.review-author time {
  display: block;
  line-height: 1.3;
}

.review-author strong {
  font-size: 0.84rem;
}

.review-author time {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.review-origin-badge {
  display: inline-flex;
  margin: 0.18rem 0 0.1rem;
  padding: 0.2rem 0.42rem;
  color: #171917;
  background: #e97f0e;
  border-radius: 99rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.review-stars {
  margin: 0.7rem 0 0.45rem;
  color: var(--gold-500);
  letter-spacing: 0.1em;
}

.review-list li > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  white-space: pre-line;
}

.review-image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.review-image-grid__thumb,
.review-image-grid article {
  display: block;
  position: relative;
  flex: 0 0 6.5rem;
  overflow: hidden;
  padding: 0;
  background: var(--paper);
  border: 0;
  border-radius: 0.45rem;
  box-shadow: 0 3px 12px rgba(34, 37, 34, 0.16);
}

.review-image-grid__thumb {
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

.review-image-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.review-image-grid__thumb img {
  transition: transform 180ms ease, filter 180ms ease;
}

.review-image-grid__thumb:hover img {
  filter: brightness(0.88);
  transform: scale(1.04);
}

.review-image-grid__thumb:focus-visible {
  outline: 3px solid #e97f0e;
  outline-offset: 3px;
}

.review-image-grid__expand {
  width: 1.65rem;
  height: 1.65rem;
  position: absolute;
  right: 0.3rem;
  bottom: 0.3rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: #e97f0e;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(34, 37, 34, 0.28);
}

@media (max-width: 32rem) {
  .review-list li.review-list__item--reply {
    width: calc(100% - 0.75rem);
    margin-left: 0.75rem;
  }
}

.review-image-grid--editable {
  padding-inline: 1rem;
}

.review-image-grid--editable article {
  flex-basis: 8rem;
  display: grid;
  height: auto;
}

.inline-form-panel .review-image-grid--editable form {
  padding: 0.45rem;
}

.inline-form-panel .review-photo-upload {
  margin: 1rem;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.inline-form-panel {
  margin-top: 1rem;
  background: var(--lichen-100);
  border: 1px solid #d3dac9;
  border-radius: var(--radius-md);
}

.inline-form-panel summary {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--pine-800);
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.inline-form-panel form {
  display: grid;
  gap: 0.8rem;
  padding: 0 1rem 1rem;
}

.member-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: var(--lichen-100);
  border-radius: var(--radius-md);
}

.member-inline-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.member-inline-cta a {
  flex: 0 0 auto;
  color: var(--pine-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.key-point-suggest {
  display: grid;
  gap: 1.2rem;
  border-bottom: 0;
}

.key-point-suggest > div > p:last-child {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.key-point-suggest form {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.booking-card {
  overflow: hidden;
  align-self: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.booking-card__price {
  padding: 1.2rem;
  background: var(--lichen-100);
}

.booking-card__price small,
.booking-card__price strong,
.booking-card__price span {
  display: block;
}

.booking-card__price small {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.booking-card__price strong {
  margin-block: 0.25rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.booking-card__price span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.booking-card > p {
  margin: 0;
  padding: 0.9rem 1.2rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

.booking-card__member,
.booking-card__locked {
  padding: 1.2rem;
}

.booking-card__member > p {
  margin: 1rem 0;
}

.booking-card__member > p small,
.booking-card__member > p strong {
  display: block;
}

.booking-card__member > p small,
.private-detail small {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-card__online {
  display: grid;
  grid-template-columns: 2.45rem minmax(0, 1fr);
  gap: 0.6rem 0.7rem;
  margin: 0.85rem 0 1rem;
  padding: 0.8rem;
  color: var(--paper);
  background: var(--pine-900);
  border-top: 0.22rem solid var(--ember-500);
  border-radius: var(--radius-sm);
}

.booking-card__online-icon {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  color: var(--pine-900);
  background: var(--ember-500);
  border-radius: 50%;
  font-size: 1.2rem;
  place-items: center;
}

.booking-card__online strong {
  display: block;
  font-size: 0.84rem;
}

.booking-card__online p {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

.booking-card__online .button,
.booking-card__online .text-link {
  grid-column: 1 / -1;
}

.booking-card__online .text-link {
  color: var(--paper);
  font-size: 0.72rem;
  text-align: center;
}

.booking-card__direct {
  display: grid;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}

.booking-card__direct .button {
  border-color: var(--ember-500);
  color: var(--ember-600);
}

.booking-card__direct .button:hover,
.booking-card__direct .button:focus-visible {
  color: var(--paper);
  background: var(--ember-600);
  border-color: var(--ember-600);
}

.booking-card__direct small {
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: center;
}

.booking-card__contribute {
  display: grid;
  gap: 0.3rem;
  margin: 0.85rem 0 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.booking-card__contribute .button {
  justify-content: center;
  color: var(--ember-600);
  background: var(--sand-50);
}

.booking-card__contribute .button:hover,
.booking-card__contribute .button:focus-visible {
  color: var(--paper);
  background: var(--ember-600);
}

.booking-card__contribute svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.booking-card__contribute small {
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-align: center;
}

.key-point-dialog {
  width: min(calc(100% - 1.25rem), 32rem);
  border-top: 0.28rem solid var(--ember-500);
}

.key-point-dialog > p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.key-point-dialog form {
  display: grid;
  gap: 0.8rem;
}

.private-detail {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.private-detail p {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.booking-directions {
  border-top: 1px solid var(--line);
}

.booking-directions summary {
  min-height: 3rem;
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.booking-directions p {
  color: var(--ink-soft);
  font-size: 0.78rem;
  white-space: pre-line;
}

.booking-card__trust {
  display: flex;
  gap: 0.45rem;
  margin: 0.8rem 0 0 !important;
  padding: 0.7rem;
  color: var(--pine-800);
  background: var(--lichen-100);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
}

.booking-card__locked {
  text-align: center;
}

.booking-lock {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  margin: 0 auto 0.9rem;
  color: var(--paper);
  background: var(--pine-700);
  border-radius: 50%;
  font-size: 1.3rem;
}

.booking-card__locked h2 {
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
}

.booking-card__locked p {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.booking-card__locked .text-link {
  margin-top: 0.9rem;
}

/* Dialogs */
dialog {
  width: min(calc(100% - 1.5rem), 34rem);
  max-height: calc(100dvh - 1.5rem);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

dialog::backdrop {
  background: rgba(8, 23, 17, 0.78);
  backdrop-filter: blur(5px);
}

.form-dialog {
  padding: 1.2rem;
}

.form-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-dialog__head h2,
.form-dialog__head .eyebrow {
  margin-bottom: 0;
}

.form-dialog form {
  display: grid;
  gap: 0.9rem;
}

.host-contact-dialog__body {
  display: grid;
  gap: 1rem;
}

.host-contact-dialog__body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.host-contact-dialog__details {
  padding: 1rem;
  background: var(--lichen-100);
  border-left: 0.22rem solid var(--ember-500);
  border-radius: var(--radius-sm);
}

.host-contact-dialog__details small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.host-contact-dialog__details p {
  margin: 0;
  font-weight: 700;
  line-height: 1.55;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.host-contact-dialog__notice {
  padding: 0.75rem;
  color: var(--pine-800) !important;
  background: color-mix(in srgb, var(--lichen-100) 76%, var(--paper));
  border-radius: var(--radius-sm);
  font-size: 0.75rem !important;
}

.form-hint {
  display: flex;
  gap: 0.4rem;
  margin: 0;
  padding: 0.65rem;
  color: var(--ink-soft);
  background: var(--lichen-100);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
}

.image-dialog {
  width: min(calc(100% - 1rem), 70rem);
  max-height: calc(100dvh - 1rem);
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.image-dialog figure {
  margin: 0;
}

.image-dialog figure img {
  width: 100%;
  max-height: calc(100dvh - 5rem);
  object-fit: contain;
}

.image-dialog figcaption {
  min-height: 2rem;
  padding: 0.45rem;
  color: var(--paper);
  font-size: 0.75rem;
  text-align: center;
}

.image-dialog__close {
  position: absolute;
  z-index: 3;
  top: 0.5rem;
  right: 0.5rem;
}

.image-dialog__nav {
  width: 2.85rem;
  height: 2.85rem;
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  color: var(--pine-950);
  background: rgba(255, 253, 248, 0.94);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transform: translateY(-50%);
}

.image-dialog__nav--prev { left: 0.5rem; }
.image-dialog__nav--next { right: 0.5rem; }

/* Error */
.error-page {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  gap: 2rem;
  padding-block: 3rem 5rem;
}

.error-page__art {
  min-height: 19rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(#dbe3d3, #9eb19f);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.error-page__art > strong {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--display);
  font-size: 7rem;
  line-height: 1;
}

.error-page__sun {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--gold-500);
  border-radius: 50%;
}

.error-page__ridge {
  position: absolute;
  right: -10%;
  bottom: 0;
  left: -10%;
  height: 60%;
  background: var(--moss-600);
  clip-path: polygon(0 100%, 20% 43%, 35% 76%, 54% 28%, 72% 72%, 89% 46%, 100% 100%);
}

.error-page__ridge--front {
  z-index: 2;
  height: 43%;
  background: var(--pine-800);
}

.error-page__tent {
  width: 4.8rem;
  height: 3.6rem;
  position: absolute;
  z-index: 3;
  right: 23%;
  bottom: 11%;
  background: var(--ember-500);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.error-page__copy {
  max-width: 35rem;
}

.error-page__copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.error-page__copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Member, account and group-planning pages */
.visually-hidden {
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.muted {
  color: var(--ink-soft);
}

.optional {
  color: var(--ink-soft);
  font-size: 0.78em;
  font-weight: 500;
}

.lede {
  font-family: var(--display);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  line-height: 1.45;
}

.pre-line {
  white-space: pre-line;
}

.button--outline.button--light {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.48);
}

.button--outline.button--light:hover {
  color: var(--pine-950);
  background: var(--paper);
  border-color: var(--paper);
}

.button--text {
  color: var(--pine-800);
  background: transparent;
}

.button--text:hover {
  background: var(--lichen-100);
}

.button--danger {
  color: var(--error);
  background: #fff4f0;
  border-color: #ebc2b8;
}

.button--danger:hover {
  color: var(--paper);
  background: var(--error);
  border-color: var(--error);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.inline-check {
  min-height: 3.25rem;
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  gap: 0.7rem;
  padding: 0.75rem 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.inline-check input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.15rem 0 0;
  accent-color: var(--pine-700);
}

.inline-check strong,
.inline-check small {
  display: block;
}

.inline-check strong {
  font-size: 0.84rem;
}

.inline-check small {
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.4;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 87% 8%, rgba(214, 168, 80, 0.22), transparent 22rem),
    linear-gradient(135deg, var(--pine-950), var(--pine-800));
}

.page-hero::before {
  content: "";
  width: 30rem;
  height: 17rem;
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 2rem rgba(255, 255, 255, 0.025),
    0 0 0 4rem rgba(255, 255, 255, 0.018);
  transform: rotate(-9deg);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero__inner {
  display: grid;
  align-items: end;
  gap: 1.5rem;
}

.page-hero__inner > div:first-child {
  max-width: 52rem;
}

.page-hero h1 {
  max-width: 58rem;
  margin-bottom: 0.9rem;
  font-size: clamp(2.55rem, 8vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--lichen-200);
}

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

.page-hero--compact h1 {
  font-size: clamp(2.3rem, 7vw, 4rem);
}

.page-hero--split {
  display: grid;
  gap: 2rem;
  padding-inline: max(1rem, calc((100vw - var(--content)) / 2));
}

.page-hero--split .eyebrow,
.page-hero--compact > .page-hero__content .eyebrow {
  color: var(--lichen-200);
}

.page-hero__content {
  width: min(100%, 52rem);
  align-self: center;
}

.page-hero > .page-hero__content {
  width: min(calc(100% - 2rem), 52rem);
  margin-inline: auto;
}

.page-hero--split > .page-hero__content {
  width: 100%;
  margin-inline: 0;
}

.page-hero__aside {
  align-self: stretch;
  padding: clamp(1.2rem, 3vw, 2rem);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-hero__aside .eyebrow {
  color: var(--pine-700);
}

.page-hero__aside p:not(.eyebrow),
.page-hero__aside .numbered-list p {
  color: var(--ink-soft);
}

.numbered-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.numbered-list li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  align-items: start;
  gap: 0.75rem;
}

.numbered-list li > span {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ember-500);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 700;
}

.numbered-list strong,
.numbered-list p {
  display: block;
}

.numbered-list p {
  margin: 0.18rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.panel-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  margin-bottom: 1.35rem;
}

.panel-heading .eyebrow,
.panel-heading h2 {
  margin-bottom: 0;
}

.panel-heading h2 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.dashboard-layout {
  display: grid;
  gap: 1.2rem;
  padding-block: 1.5rem 5rem;
}

.dashboard-main,
.dashboard-sidebar,
.settings-main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 1.2rem;
}

.dashboard-panel,
.settings-panel,
.content-panel,
.form-panel {
  padding: clamp(1rem, 3vw, 1.6rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.dashboard-panel > h2,
.settings-panel > h2,
.content-panel > h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.site-grid--compact {
  gap: 0.8rem;
}

.site-grid--compact .site-card__body {
  padding: 0.85rem;
}

.trip-list {
  display: grid;
  gap: 0.8rem;
}

.trip-row {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.trip-row h3 {
  margin: 0.55rem 0 0.35rem;
  font-family: var(--display);
  font-size: 1.35rem;
}

.trip-row h3 a {
  text-decoration: none;
}

.trip-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.trip-row__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0;
}

.trip-row__facts div {
  min-width: 0;
}

.trip-row__facts dt,
.account-facts dt,
.compact-facts dt,
.fact-list dt {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trip-row__facts dd,
.account-facts dd,
.compact-facts dd,
.fact-list dd {
  margin: 0.15rem 0 0;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.trip-row__facts dd {
  font-size: 0.72rem;
}

.profile-progress {
  color: var(--paper);
  background:
    radial-gradient(circle at 100% 0, rgba(214, 168, 80, 0.25), transparent 10rem),
    var(--pine-900);
  border-color: var(--pine-900);
}

.profile-progress .eyebrow,
.profile-progress p {
  color: var(--lichen-200);
}

.profile-progress .button {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.35);
}

.profile-progress .button:hover {
  color: var(--pine-950);
  background: var(--paper);
}

.progress-bar {
  width: 100%;
  height: 0.75rem;
  display: block;
  overflow: hidden;
  margin: 1rem 0;
  appearance: none;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  border-radius: 999px;
}

.progress-bar::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.progress-bar::-webkit-progress-value {
  background: var(--gold-500);
  border-radius: 999px;
}

.progress-bar::-moz-progress-bar {
  background: var(--gold-500);
  border-radius: 999px;
}

.activity-list,
.notification-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-list li {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 0.65rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.activity-list li:last-child {
  border-bottom: 0;
}

.activity-list__mark {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--success);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.activity-list a {
  text-decoration: none;
}

.activity-list time {
  display: block;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.activity-list p {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.notification-list li {
  position: relative;
  padding: 0.85rem 0.25rem 0.85rem 0.85rem;
  border-bottom: 1px solid var(--line);
}

.notification-list li:last-child {
  border-bottom: 0;
}

.notification-list li.is-unread::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  position: absolute;
  top: 1.25rem;
  left: 0;
  background: var(--ember-500);
  border-radius: 50%;
}

.notification-list a {
  display: block;
  text-decoration: none;
}

.notification-list strong,
.notification-list time {
  display: block;
}

.notification-list p {
  margin: 0.2rem 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.notification-list time {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.dashboard-role-link {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  color: var(--pine-800);
  background: var(--lichen-100);
  border: 1px solid #d3dac9;
  border-radius: var(--radius-md);
  font-weight: 800;
  text-decoration: none;
}

.dashboard-quick-links {
  display: grid;
  gap: 0.55rem;
}

.dashboard-quick-links a {
  display: grid;
  gap: 0.12rem;
  padding: 0.7rem 0.75rem;
  color: var(--pine-900);
  background: var(--sand-50);
  border-left: 0.2rem solid var(--ember-500);
  text-decoration: none;
}

.dashboard-quick-links a:hover {
  background: var(--lichen-100);
}

.dashboard-quick-links span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.settings-layout {
  display: grid;
  gap: 1.2rem;
  padding-block: 1.5rem 5rem;
}

.settings-panel {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.settings-panel form,
form.settings-panel {
  display: grid;
  gap: 0.9rem;
}

.settings-nav {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.45rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  scrollbar-width: thin;
}

.settings-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0.65rem 0.8rem;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.settings-nav a:hover,
.settings-nav a:focus-visible {
  color: var(--pine-900);
  background: var(--lichen-100);
}

.auth-form--embedded {
  max-width: 36rem;
}

.account-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.account-facts > div {
  display: grid;
  grid-template-columns: minmax(6.5rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding-block: 0.78rem;
  border-bottom: 1px solid var(--line);
}

.account-facts > div:last-child {
  border-bottom: 0;
}

.account-facts dd {
  font-size: 0.84rem;
}

.privacy-card {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  padding: 1rem;
  color: var(--pine-950);
  background: var(--lichen-100);
  border: 1px solid #d3dac9;
  border-radius: var(--radius-md);
}

.privacy-card > span {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--pine-700);
  border-radius: 50%;
  font-size: 1.25rem;
}

.privacy-card strong {
  display: block;
}

.privacy-card p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

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

.profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.avatar--large {
  width: 4.5rem;
  height: 4.5rem;
  font-size: 1.55rem;
}

.profile-card h2 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.55rem;
}

.profile-card h2 a {
  text-decoration: none;
}

.profile-card__region {
  margin-bottom: 0.45rem;
  color: var(--pine-700);
  font-size: 0.75rem;
  font-weight: 800;
}

.profile-card div > p:not(.profile-card__region) {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.profile-hero {
  position: relative;
  color: var(--paper);
  background: var(--pine-900);
}

.profile-hero__cover {
  height: clamp(11rem, 31vw, 21rem);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(151, 165, 140, 0.72), rgba(23, 62, 50, 0.96)),
    var(--pine-800);
}

.profile-hero__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(16, 39, 31, 0.72));
}

.profile-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 1rem;
  margin-top: -3rem;
  padding-bottom: 1.5rem;
}

.avatar--profile {
  width: clamp(5.5rem, 20vw, 8rem);
  height: clamp(5.5rem, 20vw, 8rem);
  border-width: 4px;
  font-size: clamp(2rem, 7vw, 3.2rem);
}

.profile-hero__inner .eyebrow {
  margin-bottom: 0.3rem;
}

.profile-hero__inner h1 {
  margin-bottom: 0.2rem;
  font-size: clamp(2.3rem, 7vw, 4.5rem);
}

.profile-hero__inner p:last-child {
  margin: 0;
  color: var(--lichen-200);
}

.profile-hero__inner > .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.profile-layout {
  display: grid;
  gap: 1.2rem;
  padding-block: 1.5rem 5rem;
}

.profile-main,
.profile-sidebar {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 1.2rem;
}

.profile-section {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.profile-section > h2 {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
}

.prose-lede {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  line-height: 1.6;
  white-space: pre-line;
}

.profile-gallery {
  display: grid;
  gap: 0.7rem;
}

.profile-gallery figure {
  overflow: hidden;
  margin: 0;
  background: var(--sand-100);
  border-radius: var(--radius-md);
}

.profile-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.profile-gallery figcaption {
  padding: 0.65rem 0.75rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.visit-grid,
.vehicle-list {
  display: grid;
  gap: 0.8rem;
}

.visit-card {
  overflow: hidden;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.visit-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.visit-card > div {
  padding: 0.85rem;
}

.visit-card > div > p:first-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.visit-card h3 {
  margin-bottom: 0.35rem;
  font-family: var(--display);
  font-size: 1.25rem;
}

.visit-card h3 a {
  text-decoration: none;
}

.visit-card > div > p:last-child:not(:first-child) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.vehicle-card {
  display: grid;
  gap: 0.8rem;
  overflow: hidden;
  padding: 0.85rem;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.vehicle-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.vehicle-card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.3rem;
}

.vehicle-card p {
  margin: 0.2rem 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.vehicle-card .badge {
  margin-top: 0.45rem;
  border-color: var(--line);
}

.privacy-options {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.privacy-options legend {
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.privacy-options label {
  min-height: 3.5rem;
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  gap: 0.7rem;
  padding: 0.75rem;
  background: var(--lichen-100);
  border: 1px solid #d3dac9;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.privacy-options input,
.choice-card input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  accent-color: var(--pine-700);
}

.privacy-options strong,
.privacy-options small {
  display: block;
}

.privacy-options strong {
  font-size: 0.82rem;
}

.privacy-options small {
  margin-top: 0.12rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.4;
}

.upload-grid {
  display: grid;
  gap: 0.8rem;
}

.upload-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--sand-50);
  border: 1px dashed var(--line-dark);
  border-radius: var(--radius-md);
}

.upload-card > label:first-of-type strong,
.upload-card > label:first-of-type span {
  display: block;
}

.upload-card > label:first-of-type span {
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.upload-card input[type="file"] {
  width: 100%;
  font-size: 0.75rem;
}

.upload-card input[type="file"]::file-selector-button {
  min-height: 2.6rem;
  margin-right: 0.65rem;
  padding: 0.55rem 0.75rem;
  color: var(--pine-900);
  background: var(--lichen-100);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.upload-status {
  min-height: 1.15rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.editable-gallery {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.editable-gallery article {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.editable-gallery img {
  width: 5rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 0.45rem;
}

.editable-gallery p {
  margin: 0 0 0.2rem;
  font-size: 0.8rem;
  font-weight: 750;
}

.editable-gallery form {
  grid-column: 1 / -1;
}

.vehicle-list--editable .vehicle-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
}

.vehicle-list--editable .vehicle-card__actions form {
  margin: 0;
}

.inline-form-panel {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.inline-form-panel summary {
  min-height: 3.25rem;
}

.inline-form-panel[open] summary {
  border-bottom: 1px solid #d3dac9;
}

.inline-form-panel form {
  padding-top: 1rem;
}

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

.card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.trip-card.card {
  padding: 0;
}

.card__media {
  min-height: 13rem;
  display: block;
  overflow: hidden;
  background: var(--lichen-100);
}

.card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 300ms ease;
}

.card:hover .card__media img {
  transform: scale(1.03);
}

.card__body {
  padding: 1.1rem;
}

.card__meta,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.card__meta > span:not(.badge) {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.badge--status {
  color: var(--pine-900);
  background: var(--lichen-100);
  border-color: #ced8c2;
}

.card__body h3 {
  margin: 0.85rem 0 0.45rem;
  font-family: var(--display);
  font-size: 1.45rem;
}

.card__body h3 a {
  text-decoration: none;
}

.card__body > p:not(.card__byline) {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.compact-facts {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compact-facts dd {
  font-size: 0.78rem;
}

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

.card__byline a {
  color: var(--pine-700);
  font-weight: 800;
}

.trip-hero .badge-row {
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.trip-summary-card {
  align-self: center;
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.fact-list > div {
  display: grid;
  grid-template-columns: minmax(6rem, 0.72fr) minmax(0, 1.28fr);
  gap: 0.8rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.fact-list > div:last-child {
  border-bottom: 0;
}

.fact-list dd {
  font-size: 0.8rem;
}

.small-print,
.field-help {
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.5;
}

.small-print {
  margin: 1rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.trip-layout {
  display: grid;
  gap: 1.2rem;
  padding-block: 1.5rem 5rem;
}

.trip-main,
.trip-sidebar {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 1.2rem;
}

.content-panel > p:last-child {
  margin-bottom: 0;
}

.trip-route-map {
  min-height: 16rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-top: 1rem;
  padding: 0.5rem;
  color: var(--pine-700);
  background:
    linear-gradient(rgba(255, 253, 248, 0.76), rgba(255, 253, 248, 0.76)),
    repeating-linear-gradient(30deg, var(--lichen-100) 0 1px, transparent 1px 20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.trip-route-map svg {
  width: 100%;
  min-width: 0;
  height: auto;
}

.route-stop-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: route-stop;
}

.route-stop {
  min-width: 0;
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.route-stop__number {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ember-500);
  border: 3px solid var(--paper);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 800;
  box-shadow: 0 0 0 1px var(--ember-500);
}

.route-stop__image {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.route-stop:has(.route-stop__image) .route-stop__number {
  grid-row: 2;
}

.route-stop__content {
  min-width: 0;
}

.route-stop:has(.route-stop__image) .route-stop__content {
  grid-row: 2;
}

.route-stop h3 {
  margin: 0 0 0.2rem;
  font-family: var(--display);
  font-size: 1.2rem;
}

.route-stop h3 a {
  text-decoration: none;
}

.route-stop p {
  margin: 0.12rem 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.note-panel {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--lichen-100);
  border-left: 4px solid var(--moss-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.note-panel h3 {
  margin-bottom: 0.4rem;
}

.note-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-chip {
  min-height: 3.25rem;
  display: grid;
  grid-template-columns: 2.35rem auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem 0.45rem 0.45rem;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
}

.member-chip img,
.avatar-placeholder {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  object-fit: cover;
  color: var(--paper);
  background: var(--pine-700);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 800;
}

.member-chip strong,
.member-chip small {
  display: block;
  line-height: 1.25;
}

.member-chip strong {
  font-size: 0.78rem;
}

.member-chip small {
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.section-shell--narrow {
  max-width: 58rem;
}

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

fieldset.form-panel {
  margin: 0;
}

.form-panel > legend {
  padding: 0 0.5rem;
  color: var(--pine-900);
  font-family: var(--display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 700;
}

.form-panel > .field,
.form-panel > .field-grid,
.form-panel > .choice-groups {
  margin-top: 1rem;
}

.field-grid--three {
  grid-template-columns: 1fr;
}

.choice-groups {
  display: grid;
  gap: 1rem;
  max-height: 33rem;
  overflow-y: auto;
  padding-right: 0.3rem;
  scrollbar-width: thin;
}

.trip-site-picker {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.trip-site-search {
  position: relative;
  z-index: 1;
  padding: 0.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 0.22rem solid #e97f0e;
}

.trip-site-search small {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-soft);
}

.trip-site-picker .choice-groups {
  margin-top: 0;
}

.choice-group {
  padding: 0.85rem;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.choice-group h3 {
  margin-bottom: 0.65rem;
  font-family: var(--display);
  font-size: 1.15rem;
}

.check-grid {
  display: grid;
  gap: 0.5rem;
}

.choice-card {
  min-height: 3.8rem;
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  padding: 0.7rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.choice-card:has(input:checked) {
  background: var(--lichen-100);
  border-color: var(--moss-600);
  box-shadow: inset 0 0 0 1px var(--moss-600);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  font-size: 0.8rem;
}

.choice-card small {
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.35;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.pagination ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
  order: 3;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination ol span {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.7rem;
  color: var(--pine-800);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.pagination ol span[aria-current="page"] {
  color: var(--paper);
  background: var(--pine-800);
  border-color: var(--pine-800);
}

.pagination__direction {
  gap: 0.35rem;
  min-width: auto !important;
}

.pagination a:hover {
  background: var(--lichen-100);
  border-color: var(--moss-600);
}

.pagination a.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.pagination__gap {
  min-width: 1.4rem;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  color: var(--paper);
  background: var(--pine-950);
}

.footer-landscape {
  height: 5rem;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  background: var(--sand-50);
}

.footer-sun {
  width: 2.8rem;
  height: 2.8rem;
  position: absolute;
  right: 18%;
  bottom: 0.4rem;
  background: var(--gold-500);
  border-radius: 50%;
}

.footer-ridge {
  position: absolute;
  right: -10%;
  bottom: -1px;
  left: -10%;
  height: 70%;
  background: var(--moss-600);
  clip-path: polygon(0 100%, 14% 44%, 29% 76%, 47% 35%, 66% 74%, 82% 48%, 100% 100%);
}

.footer-ridge--front {
  height: 48%;
  background: var(--pine-950);
  clip-path: polygon(0 100%, 18% 53%, 38% 80%, 57% 45%, 75% 77%, 90% 59%, 100% 100%);
}

.footer-inner {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
  padding-block: 2.8rem 1.4rem;
}

.brand--footer {
  color: var(--paper);
}

.footer-intro > p {
  max-width: 22rem;
  margin: 1rem 0 2rem;
  color: var(--lichen-200);
  font-family: var(--display);
  font-size: 1.2rem;
}

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

.footer-links h2 {
  margin-bottom: 0.7rem;
  color: var(--moss-400);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  min-height: 2rem;
  display: block;
  color: var(--lichen-200);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer-base {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  color: var(--moss-400);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
}

.footer-base p {
  margin: 0;
}

/* Tablet */
@media (min-width: 44rem) {
  .section-shell,
  .header-inner,
  .footer-inner,
  .flash-wrap {
    width: min(calc(100% - 3rem), var(--content));
  }

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

  .site-grid--featured .site-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
  }

  .site-grid--featured .site-card:first-child .site-card__media {
    aspect-ratio: auto;
    min-height: 19rem;
  }

  .home-stats__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-stats p {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 0 !important;
  }

  .home-stats p:last-child {
    border-right: 0;
  }

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

  .steps li {
    min-height: 19rem;
  }

  .pledge-strip__inner {
    flex-direction: row;
    align-items: center;
  }

  .pledge-strip__inner > div {
    flex: 1;
  }

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

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

  .explore-hero__inner {
    grid-template-columns: 1fr minmax(17rem, 24rem);
    align-items: center;
  }

  .results-count {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 9rem);
  }

  .gallery-grid button {
    min-height: 0;
  }

  .gallery-grid button:first-child {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    min-height: 0;
  }

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

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

  .key-point-suggest {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .error-page {
    grid-template-columns: minmax(18rem, 1fr) minmax(18rem, 0.85fr);
  }

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

/* Desktop */
@media (min-width: 64rem) {
  :root {
    --header-height: 5.1rem;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    max-height: none;
    position: static;
    display: flex !important;
    align-items: center;
    gap: 2rem;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
  }

  .nav-links a {
    min-height: 2.8rem;
    padding: 0.65rem 0.8rem;
    border: 0;
    border-radius: 999px;
    font-size: 0.8rem;
  }

  .nav-links a:hover {
    background: var(--lichen-100);
  }

  .nav-actions {
    flex-wrap: nowrap;
    padding: 0;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(27rem, 0.85fr);
    gap: clamp(2rem, 6vw, 6rem);
    padding-block: 4rem;
  }

  .home-hero__visual {
    min-height: 37rem;
  }

  .hero-pin-card {
    top: 3rem;
    left: 1rem;
  }

  .hero-note-card {
    right: 1rem;
    bottom: 2.5rem;
  }

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

  .site-grid--featured .site-card:first-child {
    grid-column: auto;
    display: block;
  }

  .site-grid--featured .site-card:first-child .site-card__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .how-section .section-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr;
  }

  .community-preview {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
  }

  .trip-stack {
    position: relative;
    min-height: 27rem;
  }

  .trip-card:not(:only-child) {
    position: absolute;
    inset: calc(var(--trip-index) * 3.7rem) calc(var(--trip-index) * 1.2rem) auto;
    z-index: calc(4 - var(--trip-index));
  }

  .host-callout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .host-callout__art {
    min-height: 31rem;
  }

  .auth-shell {
    grid-template-columns: minmax(26rem, 0.95fr) minmax(31rem, 1.05fr);
  }

  .auth-art {
    min-height: calc(100svh - var(--header-height));
  }

  .auth-art blockquote {
    display: block;
  }

  .auth-panel {
    padding: 4rem 3rem;
  }

  .auth-shell--register .auth-art {
    order: 2;
  }

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

  .explore-layout {
    grid-template-columns: 19rem minmax(0, 1fr);
    gap: 1.6rem;
    padding-block: 1.6rem 5rem;
  }

  .filter-panel {
    max-height: none;
    position: sticky;
    z-index: 1;
    top: calc(var(--header-height) + 1rem);
    display: block;
    overflow: visible;
    align-self: start;
    padding: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
  }

  .filter-panel__mobile-head,
  .button--filter,
  .filter-backdrop {
    display: none !important;
  }

  .filter-row {
    grid-template-columns: 1fr;
  }

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

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

  .filter-checks label span {
    width: 100%;
    justify-content: center;
    padding-inline: 0.5rem;
    text-align: center;
  }

  .filter-actions {
    flex-direction: column;
  }

  .results-map,
  .map-canvas {
    min-height: calc(100dvh - var(--header-height) - 9rem);
  }

  .detail-hero {
    min-height: 39rem;
  }

  .detail-hero__content {
    padding-bottom: 3.5rem;
  }

  .detail-hero__title {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .key-point-row {
    display: flex;
  }

  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 21rem;
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .booking-card {
    position: sticky;
    top: calc(var(--header-height) + 5.5rem);
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
  }

  .footer-intro > p {
    margin-bottom: 0;
  }

  .footer-base {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 78rem) {
  .site-grid--featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps li {
    padding: 1.8rem;
  }
}

/* Member-area responsive layout */
@media (min-width: 44rem) {
  .page-hero__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .profile-grid,
  .profile-gallery,
  .visit-grid,
  .card-grid,
  .upload-grid,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .profile-card__avatar {
    margin-bottom: 0.2rem;
  }

  .profile-hero__inner > .button {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .profile-hero__inner > div {
    grid-column: 2;
  }

  .profile-hero__inner > .avatar {
    grid-row: 1 / span 2;
  }

  .editable-gallery article {
    grid-template-columns: 5rem minmax(0, 1fr) auto;
  }

  .editable-gallery form {
    grid-column: auto;
  }

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

  .pagination {
    flex-wrap: nowrap;
  }

  .pagination ol {
    order: initial;
    width: auto;
  }
}

@media (min-width: 64rem) {
  .page-hero--split {
    grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.7fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
  }

  .dashboard-layout {
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: 1.5rem;
    padding-block: 2rem 6rem;
  }

  .dashboard-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: start;
  }

  .trip-row {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: center;
  }

  .settings-layout {
    grid-template-columns: 14rem minmax(0, 1fr);
    gap: 1.5rem;
    padding-block: 2rem 6rem;
  }

  .settings-nav {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    display: grid;
    align-self: start;
    overflow: visible;
  }

  .settings-nav a {
    width: 100%;
  }

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

  .profile-layout {
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: 1.5rem;
    padding-block: 2rem 6rem;
  }

  .profile-hero__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .profile-hero__inner > div {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
  }

  .profile-hero__inner > .button {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: end;
    justify-self: end;
  }

  .profile-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: start;
  }

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

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

  .vehicle-list--editable .vehicle-card {
    grid-template-columns: 8rem minmax(0, 1fr) auto;
    align-items: center;
  }

  .vehicle-list--editable .vehicle-card > img {
    aspect-ratio: 4 / 3;
  }

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

  .trip-grid .trip-card:not(:only-child) {
    position: relative;
    inset: auto;
    z-index: auto;
  }

  .trip-layout {
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: 1.5rem;
    padding-block: 2rem 6rem;
  }

  .trip-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: start;
  }

  .route-stop:has(.route-stop__image) {
    grid-template-columns: 2.5rem 7rem minmax(0, 1fr);
  }

  .route-stop__image {
    grid-column: 2;
    grid-row: 1;
    width: 7rem;
    aspect-ratio: 4 / 3;
  }

  .route-stop:has(.route-stop__image) .route-stop__number,
  .route-stop:has(.route-stop__image) .route-stop__content {
    grid-row: 1;
  }
}

@media (min-width: 78rem) {
  .trip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 27rem) {
  .nav-toggle-label {
    display: none;
  }

  .hero-search__control {
    border-radius: var(--radius-md);
  }

  .hero-search input {
    min-height: 3.4rem;
    padding-right: 0.5rem;
  }

  .hero-search .button {
    min-width: 3.4rem;
    width: 3.4rem;
    overflow: hidden;
    padding-inline: 0;
    color: transparent;
  }

  .hero-search .button::after {
    content: "→";
    color: var(--paper);
    font-size: 1rem;
  }

  .detail-actions .button {
    min-width: 2.85rem;
    padding-inline: 0.72rem;
  }

  .detail-actions .button svg + span {
    display: none;
  }

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

  .trip-row__facts {
    grid-template-columns: 1fr;
  }

  .account-facts > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .profile-hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .profile-hero__inner > .button {
    grid-column: auto;
  }

  .pagination__direction {
    padding-inline: 0.65rem !important;
  }
}

.press-links {
  display: grid;
  gap: 0.75rem;
}

.press-links a {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  color: var(--pine-900);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
}

.press-links strong {
  font-family: var(--display);
  font-size: 1.25rem;
}

.press-links span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.social-newsletter {
  color: var(--paper);
  background: var(--pine-900);
}

.social-newsletter__inner {
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-block: clamp(2rem, 6vw, 5rem);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links a {
  padding: 0.55rem 0.75rem;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.newsletter-form {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
}

.newsletter-form h2,
.newsletter-form p {
  margin: 0;
}

.newsletter-form small {
  color: var(--ink-soft);
}

.consent-check {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.55rem;
  align-items: start;
  font-size: 0.75rem;
}

.consent-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
}

@media (min-width: 48rem) {
  .press-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-newsletter__inner {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
    align-items: center;
  }
}

.product-grid {
  align-items: stretch;
}

.legacy-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.legacy-gallery a {
  display: block;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.legacy-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.partner-map-layout {
  display: grid;
  gap: 1rem;
}

.map-canvas--partners {
  min-height: clamp(22rem, 55dvh, 34rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.partner-grid {
  margin-top: 1rem;
}

.partner-card .card__media {
  aspect-ratio: 16 / 9;
}

.partner-card .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card .card__body > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card__media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 0.65rem;
  transition: transform 180ms ease;
}

.product-card__media:hover img {
  transform: scale(1.025);
}

.product-card .card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .card__body > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.inline-cart-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-top: auto;
}

.product-placeholder {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--pine-700);
  font-family: var(--display);
  font-size: 1.1rem;
}

.shop-page .section-heading {
  flex-wrap: wrap;
}

.shop-page .section-heading .filter-row,
.shop-page .section-heading .filter-row form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.55rem;
}

.shop-page .section-heading .filter-row label {
  width: 100%;
  font-size: 0.78rem;
  font-weight: 800;
}

.shop-page .section-heading .filter-row select {
  min-height: 2.75rem;
  padding: 0.55rem 2.2rem 0.55rem 0.7rem;
}

.basket-layout,
.checkout-layout {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding-block: clamp(1.25rem, 3vw, 3rem) 4rem;
}

.basket-items {
  display: grid;
  gap: 0.8rem;
}

.basket-item {
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.basket-item__image {
  width: 5.25rem;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--sand-100);
  border-radius: var(--radius-sm);
}

.basket-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.basket-item__details {
  min-width: 0;
}

.basket-item__details h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.basket-item__details h2 a {
  text-decoration: none;
}

.basket-item__details p,
.basket-item__total {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.basket-item__quantity {
  grid-column: 1 / -1;
}

.basket-item__quantity input {
  max-width: 7rem;
}

.basket-item__total {
  grid-column: 1 / -1;
  text-align: right;
}

.selected-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: 0.35rem 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.selected-options div {
  display: flex;
  gap: 0.25rem;
}

.selected-options dt {
  font-weight: 800;
}

.selected-options dd {
  margin: 0;
}

.order-summary {
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.order-summary h2 {
  margin-top: 0;
}

.order-summary dl {
  margin: 1rem 0;
}

.order-summary dl > div,
.order-summary__items li,
.order-summary__total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.order-summary dl > div {
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.order-summary dd {
  margin: 0;
  font-weight: 800;
}

.order-summary__items {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-summary__items small {
  display: block;
  color: var(--ink-soft);
}

.order-summary__total {
  align-items: baseline;
  padding-top: 0.8rem;
  border-top: 2px solid var(--pine-700);
}

.order-summary__total strong {
  font-family: var(--display);
  font-size: 1.35rem;
}

.checkout-form {
  display: grid;
  gap: 0.9rem;
}

.checkout-form h2 {
  margin: 0.8rem 0 0;
}

.success-panel {
  margin-block: clamp(2rem, 8vw, 6rem);
  padding: clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.success-panel__mark {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: var(--paper);
  background: var(--pine-700);
  border-radius: 50%;
  font-size: 2rem;
}

.product-detail {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-block: clamp(1.5rem, 4vw, 4.5rem);
}

.product-detail__media {
  min-width: 0;
}

.product-detail__primary-image,
.product-placeholder--large {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  object-fit: contain;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr));
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.product-gallery a {
  display: block;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.product-gallery a[aria-current="true"] {
  border-color: var(--ember-500);
  box-shadow: 0 0 0 2px rgba(194, 78, 47, 0.18);
}

.product-gallery a:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-gallery a:hover img {
  transform: scale(1.035);
}

.product-detail__content {
  min-width: 0;
}

.purchase-form {
  display: grid;
  gap: 0.9rem;
  margin-block: 1.25rem;
}

/* Reusable dashboard collection controls */
.dashboard-list-item {
  display: contents;
}

.dashboard-list-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.65rem 0.8rem;
  margin-bottom: 0.9rem;
  padding: 0.75rem;
  background: var(--sand-50);
  border-left: 0.25rem solid var(--ember-500);
}

.dashboard-list-search {
  display: grid;
  flex: 1 1 16rem;
  gap: 0.3rem;
  margin: 0;
}

.dashboard-list-search__label {
  color: var(--pine-900);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dashboard-list-search input {
  width: 100%;
  min-height: 2.65rem;
  margin: 0;
  padding: 0.55rem 0.7rem;
  color: var(--pine-900);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.dashboard-list-search input:focus {
  border-color: var(--ember-600);
  outline: 0.18rem solid rgba(194, 78, 47, 0.2);
  outline-offset: 0.08rem;
}

.button.dashboard-list-toggle {
  flex: 0 0 auto;
  min-width: 8.5rem;
  color: var(--pine-900);
  background: #e97f0e;
  border-color: #e97f0e;
  box-shadow: 0 0.45rem 1rem rgba(82, 50, 12, 0.15);
}

.button.dashboard-list-toggle:hover {
  color: var(--pine-900);
  background: #f0922f;
  border-color: #f0922f;
  box-shadow: 0 0.55rem 1.1rem rgba(82, 50, 12, 0.2);
}

.dashboard-list-status {
  flex: 1 0 100%;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.dashboard-list-no-results {
  margin: 0 0 1rem;
  padding: 1rem;
  color: var(--pine-900);
  background: var(--paper);
  border-left: 0.25rem solid var(--ember-500);
  font-weight: 700;
}

.dashboard-collection.is-search-empty {
  display: none !important;
}

/* Secure administrator dashboard and content manager */
.admin-page .section-shell {
  width: min(100% - 2rem, var(--content));
}

.admin-nav,
.admin-resource-nav,
.admin-manager-toolbar,
.admin-status-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.admin-nav {
  margin-top: 1.5rem;
}

.admin-nav a,
.admin-resource-nav a,
.admin-status-summary span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.65rem;
  padding: 0.55rem 0.8rem;
  color: var(--pine-900);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
}

.admin-nav a:hover,
.admin-resource-nav a:hover,
.admin-resource-nav a[aria-current="page"] {
  color: var(--paper);
  background: var(--pine-800);
  border-color: var(--pine-800);
}

.admin-nav span {
  min-width: 1.55rem;
  padding: 0.08rem 0.38rem;
  color: var(--paper);
  background: var(--ember-600);
  border-radius: 999px;
  text-align: center;
}

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

.stat-grid > div {
  min-width: 0;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 0.28rem solid var(--ember-500);
}

.stat-grid dt {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.stat-grid dd {
  margin: 0.2rem 0 0;
  color: var(--pine-900);
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
}

.admin-content-hub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1rem;
}

.admin-content-hub article,
.admin-insight-panel {
  min-width: 0;
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.admin-content-hub h3,
.admin-insight-panel h3 {
  margin: 0.25rem 0 0.45rem;
}

.admin-content-hub p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.admin-content-hub__count {
  color: var(--ember-600);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
}

.admin-insight-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.admin-breakdown {
  margin: 0;
}

.admin-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.admin-breakdown dt {
  text-transform: capitalize;
}

.admin-breakdown dd {
  margin: 0;
  font-weight: 800;
}

.admin-activity-feed {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-activity-feed li {
  display: grid;
  gap: 0.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.admin-activity-feed span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

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

.management-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.management-card__main {
  min-width: 0;
}

.management-card__main h3 {
  margin-block: 0.45rem;
}

.management-card__actions {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.host-workspace-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0 0 1rem;
}

.host-workspace-summary div {
  min-width: 0;
  padding: 0.8rem;
  color: var(--paper);
  background: var(--pine-900);
  border-top: 0.24rem solid var(--ember-500);
  border-radius: var(--radius-sm);
}

.host-workspace-summary dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.host-workspace-summary dd {
  margin: 0.22rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
}

.host-site-card {
  overflow: hidden;
  padding: 0;
}

.host-site-card__image {
  display: grid;
  min-height: 10rem;
  overflow: hidden;
  color: var(--pine-900);
  background: var(--lichen-100);
  font-weight: 800;
  text-decoration: none;
  place-items: center;
}

.host-site-card__image img {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  object-fit: cover;
  transition: transform 180ms ease;
}

.host-site-card__image:hover img {
  transform: scale(1.025);
}

.host-site-card .management-card__main,
.host-site-card .management-card__actions {
  padding: 1rem;
}

.host-site-card .management-card__actions {
  padding-top: 0;
}

.host-site-card__change-note {
  margin: 0.85rem 0 0;
  padding: 0.7rem 0.8rem;
  color: var(--pine-900);
  background: #fff4e6;
  border-left: 0.22rem solid var(--ember-500);
  font-size: 0.84rem;
}

.moderation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1rem;
}

.moderation-card {
  min-width: 0;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table-wrap th small {
  display: block;
  color: var(--ink-soft);
  font-weight: 400;
}

.admin-content-manager,
.admin-editor {
  display: grid;
  gap: 1.25rem;
}

.admin-manager-toolbar {
  justify-content: space-between;
}

.admin-status-summary {
  padding: 0.8rem;
  background: var(--lichen-100);
  border: 1px solid var(--line);
}

.admin-status-summary span {
  min-height: auto;
  padding: 0.35rem 0.65rem;
  font-weight: 400;
  text-transform: capitalize;
}

.admin-content-table {
  min-width: 54rem;
}

.admin-status-form {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.admin-status-form select {
  min-width: 8.5rem;
}

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

.admin-editor-panel {
  min-width: 0;
  margin: 0;
  padding: 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.admin-editor-panel legend {
  padding-inline: 0.35rem;
  color: var(--pine-900);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

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

.form-help {
  margin-top: 0;
  padding: 0.75rem;
  color: var(--pine-900);
  background: var(--lichen-100);
  border-left: 0.25rem solid var(--ember-500);
}

.admin-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.admin-editor .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.75rem;
  background: var(--sand-50);
  border: 1px solid var(--line);
  cursor: pointer;
}

.admin-editor .checkbox-row input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
}

.admin-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  position: sticky;
  z-index: 5;
  bottom: 0;
  padding: 0.8rem;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 -0.5rem 1.8rem rgba(16, 39, 31, 0.08);
}

.admin-danger-zone {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff7f4;
  border: 2px solid #d9a59a;
  border-radius: var(--radius-md);
}

.admin-danger-zone h2 {
  margin-top: 0;
  color: var(--error);
}

.admin-danger-zone form {
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 46rem) {
  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .admin-insight-grid {
    grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
  }

  .management-card {
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 18rem);
  }

  .host-site-card {
    grid-template-columns: minmax(9rem, 12rem) minmax(0, 1fr) minmax(12rem, 15rem);
    align-items: stretch;
  }

  .host-site-card .management-card__actions {
    padding: 1rem 1rem 1rem 0;
  }

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

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

  .form-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .admin-danger-zone {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
  }
}

@media (min-width: 52rem) {
  .basket-layout,
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem);
  }

  .basket-item {
    grid-template-columns: 6.5rem minmax(0, 1fr) 7rem 6.5rem;
    align-items: center;
  }

  .basket-item__image {
    width: 6.5rem;
  }

  .basket-item__quantity,
  .basket-item__total {
    grid-column: auto;
  }

  .order-summary {
    position: sticky;
    top: 6.5rem;
  }

  .product-detail {
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  }

  .product-detail__content {
    position: sticky;
    top: 6.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .detail-action-bar,
  .booking-card__locked,
  .filter-panel,
  .results-toolbar,
  .map-canvas,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .detail-hero {
    min-height: 0;
    color: #000;
  }

  .detail-hero__media {
    display: none;
  }

  .detail-hero__content {
    padding-block: 1rem;
  }
}
