:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-alt: #efece4;
  --text: #12211a;
  --text-muted: #4d5c55;
  --border: rgba(18, 33, 26, 0.12);
  --accent: #0f5132;
  --accent-2: #c9a227;
  --secondary: #1c3d2c;
  --on-accent: #ffffff;
  --deep: #0c1a13;
  --radius: 4px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Garamond, "EB Garamond", Georgia, serif;
  --font-body: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  --content: 1180px;
  --section-pad: 108px;
  --header-h: 112px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.78;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 4.4vw, 44px);
}

h3 {
  font-size: clamp(22px, 2.5vw, 28px);
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

.wrap {
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #856914;
  margin-bottom: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.link-arrow:hover {
  border-bottom-color: var(--accent-2);
  color: var(--secondary);
}

.link-arrow::after {
  content: "→";
  font-weight: 400;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.site-header.is-compact .brand-row {
  padding-block: 0.45rem;
}

.site-header.is-compact .nav-row {
  padding-block: 0.35rem;
}

.site-header.is-compact .brand-lockup span {
  font-size: 1.15rem;
}

.brand-row {
  padding: 0.85rem 0 0.35rem;
  transition: padding 0.2s ease;
}

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

.brand-lockup img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-lockup span {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  transition: font-size 0.2s ease;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.45rem 0 0.85rem;
  position: relative;
  transition: padding 0.2s ease;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.35rem;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent-2);
}

.independence {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.independence p {
  margin: 0;
  padding: 0.65rem 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero {
  padding: 72px 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem 3rem;
  align-items: start;
}

.hero__copy h1 {
  margin-bottom: 0;
  max-width: 14ch;
  margin-inline: 0;
}

.hero__intro {
  margin-top: 2.5rem;
  margin-left: clamp(0px, 12vw, 8rem);
  max-width: 38ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero__visual {
  justify-self: end;
  width: min(100%, 340px);
  margin-bottom: -72px;
  position: relative;
  z-index: 2;
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.section {
  padding: var(--section-pad) 0;
}

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

.section__head {
  max-width: 42rem;
  margin-bottom: 3rem;
  margin-inline: 0;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.legal-cookie-action {
  padding: 0 0 var(--section-pad);
}

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.band:last-child {
  margin-bottom: 0;
}

.band--flip .band__media {
  order: 2;
}

.band--flip .band__body {
  order: 1;
}

.band__media {
  overflow: hidden;
  border-radius: var(--radius);
}

.band__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.band:hover .band__media img {
  transform: scale(1.02);
}

.band__body h2 {
  margin-bottom: 0.75rem;
}

.band__body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.approach-block {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.approach-block h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.approach-block p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

.steps::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.step__num {
  width: 2.3rem;
  height: 2.3rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.amenity-list dt,
.amenity-list dd {
  margin: 0;
  padding: 1.15rem 1.25rem 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.amenity-list dt {
  font-weight: 600;
  color: var(--text);
}

.amenity-list dd {
  color: var(--text-muted);
  padding-right: 0;
}

.photo-strip__intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  margin-inline: 0;
  color: var(--text-muted);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 0.95fr;
  grid-template-rows: 220px 280px;
  gap: 1rem;
}

.mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mosaic figure:hover img {
  transform: scale(1.02);
}

.mosaic figure:nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1;
}

.mosaic figure:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}

.mosaic figure:nth-child(3) {
  grid-row: 1;
  grid-column: 3 / 5;
}

.mosaic figure:nth-child(4) {
  grid-row: 2;
  grid-column: 2 / 4;
}

.mosaic figure:nth-child(5) {
  grid-row: 2;
  grid-column: 4;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.region-tile {
  padding: 1.5rem 1.35rem;
  border-top: 2px solid var(--accent);
  background: var(--surface);
}

.region-tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.region-tile p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.page-hero {
  padding: 64px 0 48px;
}

.page-hero h1,
.page-hero p {
  max-width: 42rem;
  margin-inline: 0;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.venue-rows {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding-bottom: var(--section-pad);
}

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--surface);
  padding: 0;
}

.venue-row:nth-child(even) .venue-row__media {
  order: 2;
}

.venue-row:nth-child(even) .venue-row__body {
  order: 1;
  padding-left: 0;
  padding-right: 2rem;
}

.venue-row__media {
  overflow: hidden;
  border-radius: var(--radius);
}

.venue-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.venue-row:hover .venue-row__media img {
  transform: scale(1.02);
}

.venue-row__body {
  padding: 1.5rem 2rem 1.5rem 0;
}

.venue-row__body h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 0.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.venue-meta {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0.85rem 0 1rem;
}

.venue-row__body p.desc,
.venue-card .desc {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.catalog-close {
  padding: 0 0 var(--section-pad);
  color: var(--text-muted);
}

.catalog-close p {
  max-width: 42rem;
  margin-inline: 0;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding-bottom: var(--section-pad);
}

.venue-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.venue-card:hover {
  transform: translateY(-2px);
}

.venue-card__media {
  overflow: hidden;
}

.venue-card__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.venue-card:hover .venue-card__media img {
  transform: scale(1.02);
}

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.6rem 1.5rem 1.75rem;
  border-top: 1px solid var(--border);
}

.venue-card__body h2 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
  padding-top: 0.35rem;
  border-top: 2px solid var(--accent);
}

.venue-card__body .link-arrow {
  margin-top: auto;
  padding-top: 0.5rem;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.editorial-band:last-of-type {
  border-bottom: 0;
  padding-bottom: var(--section-pad);
}

.editorial-band--alt .editorial-band__text {
  order: 2;
}

.editorial-band--alt .editorial-band__aside {
  order: 1;
}

.editorial-band__aside {
  border-left: 2px solid var(--accent-2);
  padding: 1.5rem 0 1.5rem 1.75rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.45;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.editorial-band--alt .editorial-band__aside {
  border-left: 0;
  border-right: 2px solid var(--accent-2);
  padding-left: 0;
  padding-right: 1.75rem;
  text-align: right;
}

.editorial-band__text h2 {
  margin-bottom: 1rem;
}

.editorial-band__text p {
  color: var(--text-muted);
}

.contact-intro {
  background: var(--surface-alt);
  padding: 64px 0 56px;
}

.contact-intro p {
  max-width: 40rem;
  margin-inline: 0;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.contact-email {
  margin-top: 1.25rem;
}

.contact-form-wrap {
  padding: 64px 0 var(--section-pad);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.75rem;
  max-width: 820px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.65rem;
}

.agree-row input {
  margin-top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.agree-row label {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-error {
  color: #8a1c1c;
  font-size: 0.88rem;
  width: 100%;
  margin: 0;
}

.form-error[hidden],
.form-status[hidden] {
  display: none;
}

.form-status {
  grid-column: 1 / -1;
  color: #8a1c1c;
  font-size: 0.95rem;
}

.form-actions {
  grid-column: 1 / -1;
}

.confirm-panel {
  max-width: 640px;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.confirm-panel h2 {
  margin-bottom: 0.75rem;
}

.confirm-panel p {
  color: var(--text-muted);
}

.confirm-again {
  margin-top: 1.5rem;
}

.wrap.legal-body {
  padding: 48px 0 var(--section-pad);
}

.legal-body > h1,
.legal-body > h2,
.legal-body > h3,
.legal-body > p,
.legal-body > ul {
  max-width: 760px;
}

.legal-body h2 {
  margin-top: 2.25rem;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-body h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.legal-body ul {
  padding-left: 1.25rem;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: var(--section-pad);
}

.sitemap-col h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.sitemap-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-col li {
  margin-bottom: 0.65rem;
}

.sitemap-col a {
  text-decoration: none;
  color: var(--text-muted);
}

.sitemap-col a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-upper {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.footer-brand .brand-lockup {
  margin-bottom: 1.15rem;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-pills span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  background: var(--surface);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-lower {
  background: var(--surface-alt);
  padding: 1.75rem 0 2rem;
  text-align: center;
}

.footer-lower .independence-foot {
  max-width: 52rem;
  margin: 0 auto 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-consent {
  margin-top: 0.65rem;
}

.footer-consent button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  pointer-events: none;
}

.consent[hidden] {
  display: none;
}

.consent__panel {
  pointer-events: auto;
  max-width: var(--content);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.consent__step--main {
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.consent__step--main[hidden] {
  display: none;
}

.consent__copy {
  padding: 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.consent__copy p {
  margin: 0;
}

.consent__copy a {
  color: var(--accent);
}

.consent__divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.consent__controls {
  padding: 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: center;
}

.consent__controls .btn {
  width: 100%;
  font-size: 0.88rem;
  padding: 0.7em 1.1em;
}

.consent__manage {
  background: none;
  border: none;
  padding: 0.35rem 0 0;
  font: inherit;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-align: left;
}

.consent__cats {
  padding: 1.25rem 1.5rem;
  grid-column: 1 / -1;
}

.consent__cats[hidden],
.consent__main[hidden] {
  display: none;
}

.consent__back {
  background: none;
  border: none;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  margin-bottom: 1rem;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent__cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.consent__cat:last-of-type {
  border-bottom: 0;
}

.consent__cat h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.consent__cat p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.consent__cat input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
}

.consent__save-row {
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 88px;
  }

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

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 220px 200px;
  }

  .mosaic figure:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1;
  }

  .mosaic figure:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
  }

  .mosaic figure:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
  }

  .mosaic figure:nth-child(4) {
    grid-row: 3;
    grid-column: 1;
  }

  .mosaic figure:nth-child(5) {
    grid-row: 3;
    grid-column: 2;
  }

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

  .footer-upper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-row {
    justify-content: flex-end;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    gap: 0;
    box-shadow: var(--shadow-card);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a[aria-current="page"] {
    border-bottom-color: var(--border);
  }

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

  .consent__step--main {
    grid-template-columns: 1fr;
  }

  .consent__divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 768px) {
  .wrap {
    width: min(100% - 32px, var(--content));
  }

  :root {
    --section-pad: 72px;
  }

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

  .hero__intro {
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .hero__visual {
    justify-self: start;
    width: min(100%, 280px);
    margin-bottom: -40px;
  }

  .band,
  .band--flip .band__media,
  .band--flip .band__body {
    grid-template-columns: 1fr;
  }

  .band--flip .band__media,
  .band--flip .band__body {
    order: initial;
  }

  .band {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .approach-grid,
  .steps,
  .amenity-list {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .step {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem 1rem;
    align-items: start;
  }

  .step__num {
    margin: 0;
    grid-row: 1 / 3;
  }

  .venue-row,
  .venue-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .venue-row:nth-child(even) .venue-row__media,
  .venue-row:nth-child(even) .venue-row__body {
    order: initial;
    padding-right: 0;
  }

  .venue-row__body {
    padding: 0 0 0.5rem;
  }

  .editorial-band,
  .editorial-band--alt .editorial-band__text,
  .editorial-band--alt .editorial-band__aside {
    grid-template-columns: 1fr;
  }

  .editorial-band {
    gap: 1.5rem;
  }

  .editorial-band--alt .editorial-band__text,
  .editorial-band--alt .editorial-band__aside {
    order: initial;
  }

  .editorial-band__aside,
  .editorial-band--alt .editorial-band__aside {
    border: 0;
    border-top: 2px solid var(--accent-2);
    padding: 1.25rem 0 0;
    text-align: left;
  }

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

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

  .footer-links {
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .picks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

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

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.75rem;
  }

  .mosaic figure:nth-child(n) {
    grid-row: auto;
    grid-column: auto;
    min-height: 200px;
  }

  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .consent {
    padding: 0.5rem;
  }

  .consent__copy,
  .consent__controls,
  .consent__cats {
    padding: 1rem;
  }
}
