:root {
  --bg: #faf5ef;
  --surface: #ffffff;
  --surface-alt: #f0e6da;
  --text: #241c14;
  --text-muted: #645648;
  --border: rgba(36, 28, 20, 0.12);
  --accent: #a8533a;
  --accent-2: #4f6b52;
  --secondary: #3a2c20;
  --on-accent: #ffffff;
  --dark: #2a2017;
  --radius: 14px;
  --radius-btn: 999px;
  --font-heading: Constantia, Georgia, serif;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
  --max: 1040px;
  --section-pad: 68px;
  --header-h: 58px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  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: 0.18em;
}

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

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

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

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

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.brand:hover {
  color: var(--accent);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  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);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35rem 0;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--accent);
}

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

.independence__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 0.55rem 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-top: none;
  border-bottom: none;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  margin-top: 0;
  margin-bottom: 0;
}

.independence__box {
  width: min(100% - 2rem, var(--max));
  margin: 0.65rem auto;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 6px);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  background: var(--surface);
}

main {
  min-height: 50vh;
}

.section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.section--tight {
  padding: 2.5rem 0;
}

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

.section--dark {
  background: var(--dark);
  color: #e8dfd4;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.section--dark h2,
.section--dark h3 {
  color: #faf5ef;
}

.section--dark p {
  color: #cbb9a8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
}

.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--block {
  width: 100%;
}

.btn--text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn--text:hover {
  color: var(--secondary);
  background: none;
}

.page-head {
  padding: 2.75rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-head p {
  max-width: 40rem;
  color: var(--text-muted);
  margin: 0;
}

.catalog-close {
  padding: 2.5rem 0 var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.catalog-close p {
  max-width: 40rem;
  color: var(--text-muted);
}

.hero {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.hero__copy {
  max-width: 38rem;
  margin: 0 auto 2.25rem;
}

.hero__copy p {
  color: var(--text-muted);
  margin: 0;
}

.hero-frames {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
}

.hero-frames figure {
  margin: 0;
  flex: 1 1 0;
  max-width: 280px;
}

.hero-frames figure:nth-child(1) img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hero-frames figure:nth-child(2) img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hero-frames figure:nth-child(3) img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hero-frames figcaption {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.category-rows {
  display: flex;
  flex-direction: column;
}

.category-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) 1.6fr auto;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.category-row:first-child {
  border-top: 1px solid var(--border);
}

.category-row:hover h3 {
  color: var(--accent);
}

.category-row h3 {
  margin: 0;
  font-size: 1.2rem;
}

.category-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.category-row__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.closing-cta {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.closing-cta h2 {
  margin-bottom: 0.65rem;
}

.closing-cta p {
  color: var(--text-muted);
  margin: 0;
}

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

.testimonials__intro p {
  color: var(--text-muted);
  margin: 0;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.quote {
  margin: 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.quote p {
  margin: 0 0 0.65rem;
  color: var(--text);
}

.quote footer {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
  text-align: left;
}

.accordion__btn span:last-child {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--accent);
  line-height: 1;
}

.accordion__panel {
  display: none;
  padding: 0 0 1.1rem;
  color: var(--text-muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.accordion__item.is-open .accordion__btn span:last-child {
  transform: rotate(45deg);
}

.regions-type {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.regions-type span {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #faf5ef;
}

.regions-frame {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 2.25rem 0 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

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

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

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.card__body {
  padding: 1rem 1.05rem 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.card__meta {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.card__loc {
  margin: -0.25rem 0 0;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.card__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.card__foot {
  padding: 0.75rem 1.05rem 1.05rem;
}

.card--img-bottom .card__body {
  padding-top: 1.05rem;
}

.picks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  padding: 2.25rem 0 0;
}

.pick-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

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

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

.pick-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.pick-card__body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.pick-card h2 {
  margin: 0;
  font-size: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--accent);
}

.pick-card__loc {
  margin: -0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pick-card__desc {
  margin: 0;
  color: var(--text-muted);
  flex: 1;
}

.shore-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.25rem 0 0;
}

.shore-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.2s ease;
}

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

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

.shore-card--flip {
  grid-template-columns: 1fr 40%;
}

.shore-card--flip .shore-card__media {
  order: 2;
}

.shore-card--flip .shore-card__content {
  order: 1;
}

.shore-card__media {
  padding: 1rem;
}

.shore-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--border);
  transition: transform 0.25s ease;
}

.shore-card__content {
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.shore-card__content h2 {
  margin: 0;
  font-size: 1.3rem;
}

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

.shore-card__desc {
  margin: 0;
  color: var(--text-muted);
  flex: 1;
}

.shore-card__actions {
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}

.editorial-band {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.editorial-band:nth-child(even) {
  background: var(--surface-alt);
}

.editorial-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.editorial-band--flip .editorial-band__copy {
  order: 2;
}

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

.editorial-band__aside {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.25rem;
}

.editorial-band__aside .aside-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.editorial-band__aside p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

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

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 0 var(--section-pad);
}

.contact-wrap > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.contact-email {
  margin-bottom: 1.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

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

.agree-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1.25rem 0 1rem;
}

.agree-row input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.agree-row label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.form-error {
  display: none;
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.form-error.is-visible {
  display: block;
}

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

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

.legal-body {
  padding: 2.5rem 0 var(--section-pad);
}

.legal-body h1 {
  margin-bottom: 0.35rem;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.legal-body h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.legal-body h3 {
  margin-top: 1.15rem;
  margin-bottom: 0.45rem;
}

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

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

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem 0 var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.sitemap-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.sitemap-row:first-child {
  border-top: 1px solid var(--border);
}

.sitemap-row:hover .sitemap-row__title {
  color: var(--accent);
}

.sitemap-row__title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.sitemap-row__desc {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
}

.footer-about {
  max-width: 40rem;
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem 1.25rem;
  margin-bottom: 2rem;
}

.footer-brand .brand {
  margin-bottom: 0.75rem;
}

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

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin: 0 0 0.75rem;
  text-decoration: none;
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

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

.footer-independence {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.15rem;
  margin-bottom: 1.15rem;
  max-width: 48rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 1.15rem;
}

.footer-bottom .copyright {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom [data-cookie-settings] {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-bottom [data-cookie-settings]:hover {
  color: var(--secondary);
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(250, 245, 239, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

.consent-banner[hidden] {
  display: none !important;
}

.consent-banner__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.consent-banner__copy {
  flex: 1;
  min-width: 0;
}

.consent-banner__copy h2 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.consent-banner__copy p {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.consent-banner__copy p:last-child {
  margin-bottom: 0;
}

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

.consent-banner__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  flex-shrink: 0;
  width: min(100%, 420px);
}

.consent-banner__actions .btn {
  padding: 0.65rem 0.5rem;
  font-size: 0.78rem;
  text-align: center;
  width: 100%;
}

.consent-banner__manage {
  display: block;
  margin-top: 0.55rem;
  text-align: right;
  font-size: 0.8rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  padding: 0;
  width: 100%;
}

.consent-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(42, 32, 23, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.consent-dialog-backdrop[hidden] {
  display: none !important;
}

.consent-dialog {
  width: min(100%, 420px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.consent-dialog h2 {
  font-size: 1.15rem;
  margin: 0 0 1rem;
}

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

.consent-cat:first-of-type {
  border-top: 1px solid var(--border);
}

.consent-cat p {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.consent-cat strong {
  font-size: 0.9rem;
}

.consent-cat input {
  margin-top: 0.2rem;
}

.consent-dialog__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .pick-card img {
    height: 220px;
  }
}

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

  .nav-list {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0;
  }

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

  .nav-list a {
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    position: relative;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 52px;
  }

  .hero-frames {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
  }

  .hero-frames figure {
    flex: 0 0 70%;
    max-width: none;
    scroll-snap-align: start;
  }

  .hero-frames figure img {
    height: 200px !important;
  }

  .category-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

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

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

  .shore-card,
  .shore-card--flip {
    grid-template-columns: 1fr;
  }

  .shore-card--flip .shore-card__media,
  .shore-card--flip .shore-card__content {
    order: initial;
  }

  .editorial-band__grid,
  .editorial-band--flip .editorial-band__grid {
    grid-template-columns: 1fr;
  }

  .editorial-band--flip .editorial-band__copy,
  .editorial-band--flip .editorial-band__aside {
    order: initial;
  }

  .sitemap-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .consent-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-banner__actions {
    width: 100%;
  }

  .consent-banner__manage {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 1.25rem, var(--max));
  }

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

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

  .hero-frames figure {
    flex: 0 0 85%;
  }

  .regions-type {
    gap: 0.5rem 1.25rem;
  }
}
