: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: 6px;
  --font-heading: Didot, "Bodoni MT", Georgia, serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1080px;
  --header-h: 72px;
  --header-h-shrink: 56px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  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.6px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.15;
}

h2 {
  font-size: clamp(24px, 3.6vw, 36px);
}

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

p {
  margin: 0 0 1em;
}

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

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

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

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

.site-header.is-compact {
  min-height: var(--header-h-shrink);
}

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

.header-inner {
  position: relative;
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
  transition: padding 0.2s ease;
}

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

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

.brand-name {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  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;
  align-items: center;
  gap: 0.15rem 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: var(--text-muted);
  text-decoration: none;
  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);
}

.section {
  padding: 76px 0;
}

.section-title {
  margin-bottom: 0.4em;
}

.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 42rem;
}

.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}

.page-hero .lead {
  margin-top: 0.75rem;
}

.hero {
  padding: 72px 0 40px;
}

.hero-copy {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.hero-copy .lead {
  margin: 1rem auto 0;
}

.independence-line {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 1.25rem auto 0;
}

.hero-frames {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: end;
}

.hero-frame {
  margin: 0;
}

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

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

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

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

.hero-frame figcaption {
  margin-top: 0.55rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.category-card {
  position: relative;
  min-height: 420px;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.category-card__panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.25rem 1.15rem 1.35rem;
}

.category-card__panel h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 0.45em;
}

.category-card__panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.85em;
}

.category-card__panel a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
}

.category-card__panel a::after {
  content: " →";
}

.arrival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.arrival-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.75rem 1.5rem 1.5rem;
  overflow: hidden;
  border-radius: 0;
}

.arrival-card .num {
  position: absolute;
  top: 0.35rem;
  right: 0.75rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--border);
  font-weight: 700;
  pointer-events: none;
}

.arrival-card h3 {
  position: relative;
  margin-bottom: 0.5em;
  font-size: 1.35rem;
}

.arrival-card p {
  position: relative;
  color: var(--text-muted);
  margin: 0;
}

.closing-cta {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.closing-cta h2 {
  color: var(--on-accent);
}

.closing-cta p {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
}

.closing-cta a {
  color: #e8cfc4;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 207, 196, 0.5);
}

.closing-cta a:hover {
  color: var(--on-accent);
}

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

.mission-grid__left {
  padding-right: 2rem;
  border-right: 1px solid var(--border);
}

.mission-grid__right {
  color: var(--text-muted);
}

.band-stack .venue-band {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.band-stack .venue-band:first-of-type {
  border-top: 1px solid var(--border);
}

.venue-band__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.venue-band__body {
  max-width: 40rem;
  margin: 1.5rem auto 0;
  text-align: center;
}

.venue-band__body h2 {
  margin-bottom: 0.55rem;
}

.venue-meta {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.accent-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1rem;
  border: 0;
}

.venue-desc {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.listing-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-radius: var(--radius);
}

.listing-link::after {
  content: " →";
}

.listing-link:hover {
  color: var(--secondary);
}

.urban-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.urban-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 0;
}

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

.urban-card.is-flip .urban-card__media {
  order: 2;
}

.urban-card.is-flip .urban-card__body {
  order: 1;
}

.urban-card__media {
  padding: 1rem;
}

.urban-card__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.urban-card__body {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.urban-card__body h2 {
  margin-bottom: 0.35rem;
}

.urban-card__rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.15rem 0 1rem;
}

.landmark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

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

.landmark-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.landmark-card__body {
  padding: 1.5rem 1.35rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.landmark-card__body .accent-rule {
  margin-left: 0;
}

.landmark-card__body .venue-desc {
  flex: 1;
}

.landmark-card__body .listing-link {
  align-self: flex-start;
}

.catalog-close {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 42rem;
}

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

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

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

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

.editorial-band__aside {
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 2rem 1.75rem;
  min-height: 100%;
}

.editorial-band__aside .aside-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
  display: block;
}

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

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

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

.contact-layout {
  max-width: 640px;
  margin: 0 auto;
}

.contact-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem 1.75rem;
  border-radius: 0;
  margin-top: 1.75rem;
}

.form-row {
  margin-bottom: 1.15rem;
}

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

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

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

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

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

.agree-row input {
  margin-top: 0.3rem;
  flex-shrink: 0;
  width: auto;
}

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

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

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

#form-submit-error.is-visible {
  display: block;
  margin-bottom: 0.85rem;
}

.field-error[hidden] {
  display: none !important;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
}

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

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

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

.confirm-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem 1.75rem;
  text-align: center;
}

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

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

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: clamp(20px, 2.5vw, 28px);
}

.legal-content h3 {
  margin-top: 1.35rem;
  font-size: 1.15rem;
}

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

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

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

.sitemap-list a {
  display: block;
  padding: 1rem 0;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.4px;
}

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

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

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

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  text-align: center;
}

.footer-notice {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--on-accent);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 118px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-blurb {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-regions {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0;
  max-width: 52rem;
  margin: 0 auto 1.75rem;
  font-size: 0.9rem;
}

.footer-links a {
  padding: 0.15rem 0.35rem;
}

.footer-links .dot {
  color: rgba(255, 255, 255, 0.35);
  padding: 0 0.15rem;
  user-select: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  text-align: left;
}

.footer-bottom .copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.footer-bottom .requisites {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.65rem;
}

.footer-bottom .consent-line {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom .consent-line button {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-bottom .consent-line button:hover {
  color: var(--on-accent);
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1rem;
  box-shadow: none;
}

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

.consent-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.consent-inner h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.consent-inner > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  max-width: 48rem;
}

.consent-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.consent-option {
  border: 1px solid var(--border);
  padding: 0.75rem 0.85rem;
  background: var(--bg);
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.consent-option label {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}

.consent-option label small {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.consent-actions button {
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.consent-actions button[data-action="accept"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.consent-actions button[data-action="reject"] {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
}

@media (max-width: 1024px) {
  .category-grid {
    gap: 1.25rem;
  }

  .category-card,
  .category-card img {
    min-height: 380px;
  }

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

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

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

  .venue-band__media img {
    height: 340px;
  }
}

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

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

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

  .site-nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-variant: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mission-grid__left {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
  }

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

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

@media (max-width: 768px) {
  .wrap,
  .header-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 56px 0;
  }

  .hero-frames {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .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: 220px;
  }

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

  .category-card,
  .category-card img {
    min-height: 360px;
  }

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

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

  .urban-card.is-flip .urban-card__media,
  .urban-card.is-flip .urban-card__body {
    order: initial;
  }

  .urban-card__media img {
    min-height: 220px;
  }

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

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

  .venue-band__media img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 0.95rem;
  }

  .brand img,
  .footer-brand img {
    width: 96px;
    height: 20px;
  }

  .hero {
    padding: 48px 0 28px;
  }

  .contact-panel,
  .confirm-panel {
    padding: 1.35rem 1.1rem;
  }

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

  .consent-actions button {
    width: 100%;
  }

  .footer-links {
    font-size: 0.85rem;
  }
}
