:root {
  --bg: #0e1116;
  --surface: #161b22;
  --surface-alt: #1d232c;
  --text: #eef1f5;
  --text-muted: #a3adba;
  --border: rgba(238, 241, 245, 0.14);
  --accent: #c8a45c;
  --accent-2: #7fa8c9;
  --secondary: #232b36;
  --on-accent: #141821;
  --deep: #080b0f;
  --cream: #efe8dc;
  --cream-text: #141821;
  --cream-muted: #5c564c;
  --radius: 6px;
  --font-heading: 'Hoefler Text', 'Book Antiqua', Georgia, serif;
  --font-body: Avenir, 'Segoe UI', Arial, sans-serif;
  --max: 1180px;
  --section-pad: 108px;
  --header-h: 112px;
  --header-h-shrunk: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.78;
  font-size: 17px;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--accent-2);
}

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

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

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

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

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

.band-deep {
  background: var(--deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 17, 22, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: min-height 0.25s ease;
}

.site-header.is-shrunk .brand-row {
  padding-block: 8px;
}

.site-header.is-shrunk .nav-row {
  padding-bottom: 8px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 6px;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

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

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -0.2px;
  font-weight: 500;
}

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

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

.nav-row {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding-bottom: 12px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: flex-end;
  list-style: none;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
  background: var(--accent);
  color: var(--on-accent);
}

.btn:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  color: var(--on-accent);
}

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

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

.btn-listing {
  width: 100%;
  margin-top: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

.hero {
  padding: calc(var(--section-pad) - 24px) 0 var(--section-pad);
  text-align: center;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 56px;
}

.hero-copy p {
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 18px;
}

.hero-notice {
  margin-top: 28px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 52ch;
  margin-inline: auto;
}

.hero-frames {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: end;
  max-width: 980px;
  margin: 0 auto;
}

.hero-frame {
  margin: 0;
}

.hero-frame img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hero-frame:nth-child(1) img {
  height: 220px;
}

.hero-frame:nth-child(2) img {
  height: 340px;
}

.hero-frame:nth-child(3) img {
  height: 280px;
}

.hero-frame figcaption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head.centered {
  text-align: center;
  margin-inline: auto;
}

.section-head p {
  color: var(--text-muted);
  margin-top: 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-card {
  background: var(--cream);
  color: var(--cream-text);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(20, 24, 33, 0.18);
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.category-card .card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid rgba(20, 24, 33, 0.12);
}

.category-card h3 {
  color: var(--cream-text);
  margin-bottom: 10px;
  font-size: 22px;
}

.category-card p {
  color: var(--cream-muted);
  font-size: 15px;
  flex: 1;
  margin-bottom: 18px;
}

.category-card a {
  color: var(--cream-text);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.category-card a:hover {
  color: #8a6e2f;
}

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

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

.approach-block h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

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

.approach-block p + p {
  margin-top: 10px;
}

.accordion {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

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

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.accordion-trigger::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1;
}

.accordion-item.is-open .accordion-trigger::after {
  content: "–";
}

.accordion-panel {
  display: none;
  padding: 0 0 22px;
  color: var(--text-muted);
  max-width: 68ch;
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.notice-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
}

.notice-panel p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.65;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.testimonials-grid > div:first-child p {
  color: var(--text-muted);
  margin-top: 16px;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: var(--surface);
}

.quote-block p {
  color: var(--text);
  font-size: 16px;
}

.quote-block cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  padding: calc(var(--section-pad) - 32px) 0 48px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 62ch;
  margin-top: 18px;
}

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

.catalog-close {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 68ch;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.venue-card {
  background: var(--cream);
  color: var(--cream-text);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.venue-card .card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.venue-card .card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.venue-card .city-kicker {
  color: #8a6e2f;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.venue-card h2 {
  color: var(--cream-text);
  font-size: clamp(22px, 2vw, 26px);
  border-top: 1px solid rgba(20, 24, 33, 0.14);
  padding-top: 12px;
}

.venue-card .meta {
  color: var(--cream-muted);
  font-size: 14px;
}

.venue-card .desc {
  color: var(--cream-muted);
  font-size: 15px;
  flex: 1;
}

.venue-card .btn {
  margin-top: 16px;
}

.row-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.row-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
}

.row-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
}

.row-card .row-copy {
  text-align: center;
}

.row-card h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.row-card .meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.row-card .desc {
  color: var(--text-muted);
  font-size: 15px;
}

.row-card .btn {
  white-space: nowrap;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tall-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.tall-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.tall-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.tall-card .meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.tall-card .desc {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 18px;
}

.tall-card .btn-row {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.masonry-card {
  background: var(--cream);
  color: var(--cream-text);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.masonry-card.is-flip {
  flex-direction: column;
}

.masonry-card.is-flip .card-media {
  order: 2;
}

.masonry-card.is-flip .card-body {
  order: 1;
}

.masonry-card .card-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.masonry-card .card-body {
  padding: 22px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.masonry-card .city-kicker {
  color: #8a6e2f;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.masonry-card h2 {
  color: var(--cream-text);
  font-size: 26px;
  border-top: 1px solid rgba(20, 24, 33, 0.14);
  padding-top: 12px;
}

.masonry-card .meta,
.masonry-card .desc {
  color: var(--cream-muted);
}

.masonry-card .btn {
  order: 3;
  margin: 18px 22px 22px;
  width: calc(100% - 44px);
}

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

.editorial-column {
  max-width: 70ch;
  margin: 0 auto;
}

.editorial-block {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.editorial-block:first-child {
  padding-top: 0;
}

.editorial-block:last-child {
  border-bottom: 0;
}

.editorial-block h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 32px);
}

.editorial-block p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.editorial-block p:last-child {
  margin-bottom: 0;
}

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

.contact-wrap > p {
  color: var(--text-muted);
  margin: 18px 0 28px;
}

.contact-email {
  display: block;
  margin-bottom: 32px;
  font-size: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text);
}

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

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

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

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0;
}

.agree-row input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.agree-row label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.agree-row label a {
  color: var(--accent);
}

.field-error {
  color: #d98989;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

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

.form-status {
  color: #d98989;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}

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

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

.confirm-panel h2 {
  margin-bottom: 14px;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-body {
  padding: 0 0 var(--section-pad);
  max-width: 760px;
}

.legal-body h1 {
  margin-bottom: 12px;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 36px 0 14px;
}

.legal-body h3 {
  margin: 24px 0 10px;
}

.legal-body p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.sitemap-list {
  list-style: none;
  padding-bottom: var(--section-pad);
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 18px 0;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 22px;
}

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

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

.footer-independence {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 78ch;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand-blurb {
  color: var(--text-muted);
  margin: 18px 0;
  max-width: 42ch;
  font-size: 15px;
}

.footer-brand .brand-lockup {
  margin-bottom: 4px;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0;
  display: inline-block;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

.footer-group ul {
  list-style: none;
}

.footer-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  padding: 5px 0;
}

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

.footer-mailto-large {
  display: block;
  margin: 40px 0 28px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text);
  text-decoration: none;
}

.footer-mailto-large:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.footer-bottom .copy {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-bottom .adults {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 6px;
}

.footer-controls {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

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

.footer-controls button:hover {
  color: var(--accent);
}

.consent-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 2000;
  width: min(400px, calc(100% - 40px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  border-bottom: 2px solid var(--accent);
}

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

.consent-banner h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.consent-banner > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.consent-actions .btn {
  padding: 10px 16px;
}

.consent-link {
  background: none;
  border: 0;
  color: var(--text-muted);
  font: inherit;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

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

.consent-policy {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.consent-cats {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.consent-cats.is-open {
  max-height: 320px;
}

.consent-cat {
  border-top: 1px solid var(--border);
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.consent-cat:first-child {
  margin-top: 12px;
}

.consent-cat strong {
  display: block;
  font-size: 13px;
  color: var(--text);
}

.consent-cat span {
  font-size: 12px;
  color: var(--text-muted);
}

.consent-cat input {
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .nav-row {
    display: none;
    padding-bottom: 16px;
  }

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

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .site-nav a {
    font-size: 16px;
    padding: 10px 0;
  }

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

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

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

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

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

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

  .hero-frames {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    max-width: none;
  }

  .hero-frame {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .hero-frame img,
  .hero-frame:nth-child(1) img,
  .hero-frame:nth-child(2) img,
  .hero-frame:nth-child(3) img {
    height: 240px;
  }

  .row-card {
    grid-template-columns: 96px 1fr;
    gap: 16px;
  }

  .row-card img {
    width: 96px;
    height: 96px;
  }

  .row-card .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .row-card .row-copy {
    text-align: left;
  }

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

  .masonry-card.is-flip {
    flex-direction: column;
  }

  .masonry-card.is-flip .card-media {
    order: 0;
  }

  .masonry-card.is-flip .card-body {
    order: 0;
  }
}

@media (max-width: 640px) {
  .consent-banner {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

@media (max-width: 560px) {
  .category-grid,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }

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

  .brand-name {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .wrap,
  .brand-row,
  .nav-row {
    width: min(100% - 28px, var(--max));
  }

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

  .hero-frame {
    flex-basis: 85%;
  }
}
