:root {
  --bg: #faf6f3;
  --surface: #ffffff;
  --surface-alt: #f2e9e4;
  --text: #241417;
  --text-muted: #63494e;
  --border: rgba(36, 20, 23, 0.12);
  --accent: #7b2233;
  --accent-2: #b8860b;
  --secondary: #3d1f26;
  --on-accent: #ffffff;
  --dark-band: #2b1219;
  --radius: 14px;
  --radius-btn: 6px;
  --font-heading: Optima, Candara, 'Segoe UI', sans-serif;
  --font-body: Georgia, serif;
  --max-width: 1160px;
  --section-pad: 112px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  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(--secondary);
}

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

h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.14;
}

h2 {
  font-size: clamp(24px, 4vw, 38px);
}

h3 {
  font-size: clamp(18px, 2.5vw, 24px);
}

.kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

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

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

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

.section--dark {
  background: var(--dark-band);
  color: var(--on-accent);
}

.section--dark h2,
.section--dark h3,
.section--dark .kicker {
  color: var(--on-accent);
}

.section--dark .kicker {
  opacity: 0.7;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.section--dark .note-card {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.section--dark .note-card p {
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  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--text {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1rem;
  text-decoration: none;
}

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

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

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

.site-header__brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.1rem 1.25rem 0.85rem;
}

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

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

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

.brand-lockup__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.site-header__nav-row {
  border-top: 1px solid var(--border);
  padding: 0.65rem 1.25rem 0.85rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  list-style: none;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  position: absolute;
  right: 1.25rem;
  top: 1.05rem;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

.independence-notice {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  padding: 0.85rem 1.1rem;
  margin: 1.5rem auto 0;
  max-width: var(--max-width);
  width: min(100% - 2.5rem, var(--max-width));
  border-radius: var(--radius);
}

.hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
}

.hero__intro {
  max-width: 38rem;
  margin: 1.25rem auto 0;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-frames {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding: 0 1.25rem;
}

.hero-frames__item {
  flex: 1 1 0;
  max-width: 280px;
}

.hero-frames__item img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-frames__item--short img {
  height: 220px;
}

.hero-frames__item--tall img {
  height: 340px;
}

.hero-frames__item--medium img {
  height: 280px;
}

.hero-frames__caption {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
  text-align: center;
}

.category-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 420px;
}

.category-band:nth-child(even) .category-band__media {
  order: 2;
}

.category-band__media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.category-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem clamp(1.5rem, 4vw, 4rem);
  background: var(--surface);
}

.category-band:nth-child(odd) .category-band__body {
  background: var(--surface-alt);
}

.category-band__body p {
  color: var(--text-muted);
  margin: 1rem 0 1.75rem;
  max-width: 28rem;
}

.notes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.note-card {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.note-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

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

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

.region-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

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

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

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.look-block {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.look-block__num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: 0.5rem;
}

.look-block p {
  color: var(--text-muted);
  margin-top: 0.65rem;
}

.testimonials-band {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 3rem clamp(1.5rem, 4vw, 3.5rem);
}

.testimonial {
  padding: 1.75rem 0;
}

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

.testimonial blockquote {
  font-size: 1.15rem;
  line-height: 1.75;
  font-style: italic;
  border: none;
}

.testimonial cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  padding: 3.5rem 0 0;
  text-align: center;
}

.page-hero__intro {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: var(--text-muted);
}

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

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

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

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

.venue-card__media {
  overflow: hidden;
}

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

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem 1.5rem 1.85rem;
  background: var(--surface);
}

.venue-card__meta {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0.45rem 0 0.85rem;
}

.venue-card__body p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.5rem;
}

.venue-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.waterfront-stack {
  margin-top: 3.5rem;
}

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

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

.waterfront-band__media {
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.waterfront-band__media img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.waterfront-band h2 {
  margin-bottom: 0.65rem;
}

.waterfront-band__rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1.15rem;
  border: none;
}

.waterfront-band__meta {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.waterfront-band p {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.urban-list {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.urban-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease;
}

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

.urban-row:nth-child(even) {
  grid-template-columns: 1fr 40%;
}

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

.urban-row__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

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

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

.urban-row__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 1.25rem;
  background: rgba(43, 18, 25, 0.72);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.4px;
}

.urban-row__body {
  padding: 2.5rem clamp(1.5rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.urban-row__meta {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.catalog-close {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  max-width: 40rem;
  margin-inline: auto;
}

.editorial-lead {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  line-height: 1.7;
  max-width: 48rem;
  margin: 2.5rem auto 0;
  color: var(--text);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  margin-top: 4rem;
}

.editorial-block h2 {
  margin-bottom: 1.15rem;
}

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

.contact-wrap {
  max-width: 640px;
  margin: 3rem auto 0;
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem clamp(1.25rem, 3vw, 2.5rem);
}

.form-field {
  margin-bottom: 1.35rem;
}

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0.75rem 0.9rem;
  line-height: 1.5;
}

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

.form-agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

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

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

.contact-email-line {
  text-align: center;
  margin-top: 1.75rem;
  color: var(--text-muted);
}

.confirm-panel {
  text-align: center;
  padding: 1rem 0;
}

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

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

.legal-body {
  max-width: 42rem;
  margin: 2.5rem auto 0;
}

.legal-body h2 {
  margin: 2.25rem 0 0.85rem;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.legal-body h3 {
  margin: 1.5rem 0 0.65rem;
}

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

.legal-body ul {
  margin: 0 0 1rem 1.25rem;
  color: var(--text-muted);
}

.legal-body li {
  margin-bottom: 0.4rem;
}

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

.sitemap-group h2 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

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

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

.sitemap-group a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

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

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  margin-top: 0;
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-regions {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.footer-pills span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 400;
}

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

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

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

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

.footer-independence {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.15rem 0 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  align-items: center;
}

.footer-bottom__links a,
.footer-bottom__links button {
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}

.footer-bottom__links a:hover,
.footer-bottom__links button:hover {
  color: var(--accent);
}

.consent {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  width: min(400px, calc(100vw - 2.5rem));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--accent);
  padding: 1.35rem 1.35rem 1.2rem;
}

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

.consent__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.4px;
  margin-bottom: 0.65rem;
  font-weight: 400;
}

.consent__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.35rem;
}

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

.consent__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.consent__actions .btn {
  width: 100%;
}

.consent__manage {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.35rem 0;
  align-self: center;
}

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

.consent__prefs {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.consent__prefs[hidden] {
  display: none !important;
}

.consent__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

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

.consent__row-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.consent__row-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent__switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.consent__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent__switch-ui {
  position: absolute;
  inset: 0;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.consent__switch-ui::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}

.consent__switch input:checked + .consent__switch-ui {
  background: var(--accent);
  border-color: var(--accent);
}

.consent__switch input:checked + .consent__switch-ui::after {
  transform: translateX(20px);
  background: var(--on-accent);
}

.consent__switch input:disabled + .consent__switch-ui {
  opacity: 0.7;
  cursor: not-allowed;
  background: var(--secondary);
  border-color: var(--secondary);
}

.consent__switch input:disabled + .consent__switch-ui::after {
  background: var(--on-accent);
  transform: translateX(20px);
}

.consent__switch input:focus-visible + .consent__switch-ui {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.consent__save-wrap {
  margin-top: 0.85rem;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

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

.section--dark .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

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

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

  .notes-row {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

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

@media (max-width: 900px) {
  .site-header {
    position: relative;
  }

  .site-header__brand-row {
    justify-content: flex-start;
    padding-right: 4.5rem;
  }

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

  .site-header__nav-row {
    display: none;
    border-top: 1px solid var(--border);
  }

  .site-header__nav-row.is-open {
    display: block;
  }

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

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

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

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

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

  .category-band:nth-child(even) .category-band__media {
    order: 0;
  }

  .category-band__media img {
    min-height: 280px;
    max-height: 360px;
  }
}

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

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

  .hero-frames__item {
    flex: 0 0 72%;
    max-width: none;
    scroll-snap-align: start;
  }

  .hero-frames__item--short img,
  .hero-frames__item--tall img,
  .hero-frames__item--medium img {
    height: 260px;
  }

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

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

  .urban-row:nth-child(even) .urban-row__media {
    order: 0;
  }

  .urban-row__media {
    min-height: 260px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

  .notes-row,
  .regions-row {
    grid-template-columns: 1fr;
  }

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

  .container {
    width: min(100% - 1.75rem, var(--max-width));
  }

  .independence-notice {
    width: min(100% - 1.75rem, var(--max-width));
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0 2rem;
  }

  .contact-panel {
    padding: 1.5rem 1.1rem;
  }

  .btn {
    width: 100%;
  }

  .btn--text,
  .btn--ghost,
  .venue-card__body .btn,
  .urban-row__body .btn {
    width: auto;
  }
}
