:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --surface-alt: #e9ebef;
  --text: #1a1f27;
  --text-muted: #525c6b;
  --border: rgba(26, 31, 39, 0.12);
  --accent: #b3623a;
  --accent-2: #2f4a63;
  --secondary: #2b3542;
  --on-accent: #ffffff;
  --deep: #161c24;
  --radius: 4px;
  --radius-btn: 2px;
  --font-head: Candara, Optima, 'Segoe UI', sans-serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(38px, 6vw, 66px); line-height: 1.14; }
h2 { font-size: clamp(24px, 4vw, 38px); }
h3 { font-size: 21px; line-height: 1.4; }

p { max-width: 68ch; }

a { color: inherit; text-decoration: none; }

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

::selection { background: var(--accent); color: var(--on-accent); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 400;
}

.section { padding: 112px 0; }
.section--alt { background: var(--surface-alt); }

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

.page-head { padding: 96px 0 64px; }
.page-head .kicker { margin-bottom: 16px; }
.page-head h1 { margin-bottom: 24px; }
.page-head p { color: var(--text-muted); max-width: 58ch; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26, 31, 39, 0.14);
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn--sm { padding: 12px 24px; font-size: 12px; }
.btn--filled { background: var(--text); color: var(--bg); }
.btn--filled:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

.independence-notice {
  background: var(--surface-alt);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  padding: 10px 24px;
  border-bottom: 1px solid var(--border);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 245, 247, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__logo { width: 42px; height: 32px; }
.brand__name {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover { color: var(--text); border-bottom-color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 38px;
  padding: 9px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-burger span { display: block; height: 1px; background: var(--text); }

.site-footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 64px;
  padding-top: 88px;
  padding-bottom: 72px;
  align-items: start;
}
.footer-brand p { color: var(--text-muted); font-size: 15px; margin-top: 20px; max-width: 44ch; }
.footer-brand .brand { margin-bottom: 4px; }
.footer-brand__email { display: inline-block; margin-top: 20px; font-size: 15px; border-bottom: 1px solid var(--border); padding-bottom: 2px; }
.footer-brand__email:hover { color: var(--accent); border-bottom-color: var(--accent); }
.footer-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 72px;
  justify-content: flex-end;
}
.footer-groups ul { list-style: none; }
.footer-groups li { margin-bottom: 12px; }
.footer-groups a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-groups a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  padding-bottom: 40px;
}
.footer-bottom__copyright { font-size: 13px; color: var(--text-muted); }
.footer-bottom__consent { margin-top: 12px; font-size: 12px; color: var(--text-muted); }
.footer-bottom__consent .cookie-control {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent-2);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.footer-bottom__consent .cookie-control:hover { color: var(--accent); border-bottom-color: var(--accent); }
.footer-notice { margin-top: 20px; font-size: 12px; color: var(--text-muted); max-width: 90ch; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 112px;
}
.hero__kicker { margin-bottom: 24px; }
.hero h1 { margin-bottom: 32px; }
.hero__lead { color: var(--text-muted); margin-bottom: 20px; max-width: 52ch; }
.hero-frame { position: relative; }
.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  transform: translate(12px, 12px);
}
.hero-frame img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.category-rows { border-top: 1px solid var(--border); }
.category-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr) auto;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.category-row h3 { font-size: 26px; }
.category-row p { color: var(--text-muted); font-size: 15px; }
.category-row__link {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.category-row__link:hover { color: var(--accent); border-bottom-color: var(--accent); }

.quiet-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.quiet-strip h2 { margin-bottom: 16px; }
.quiet-strip p { margin: 0 auto; color: var(--text-muted); max-width: 62ch; }
.quiet-strip a { color: var(--accent-2); border-bottom: 1px solid var(--border); }
.quiet-strip a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.center-head { text-align: center; margin-bottom: 64px; }
.center-head p { margin: 0 auto; color: var(--text-muted); max-width: 60ch; }

.about-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.about-col h3 {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
}
.about-col p { color: var(--text-muted); font-size: 15px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  position: relative;
  list-style: none;
  counter-reset: step;
}
.steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 9%;
  right: 9%;
  border-top: 1px solid var(--border);
}
.step { position: relative; }
.step__num {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--accent-2);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.step h3 { margin-bottom: 10px; font-size: 19px; }
.step p { color: var(--text-muted); font-size: 15px; }

.timeline {
  list-style: none;
  position: relative;
  max-width: 720px;
  padding-left: 48px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  border-left: 1px solid var(--border);
}
.timeline li { position: relative; padding-bottom: 44px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -48px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1px solid var(--accent);
  transform: translateX(-50%);
}
.timeline h3 { font-size: 19px; margin-bottom: 8px; }
.timeline p { color: var(--text-muted); font-size: 15px; }

.region-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px 40px; }
.region-tile { padding-top: 22px; border-top: 1px solid var(--border); }
.region-tile h3 { font-size: 17px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.region-tile p { color: var(--text-muted); font-size: 15px; }

.feedback { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.feedback blockquote { padding-top: 24px; border-top: 1px solid var(--border); }
.feedback blockquote p { font-family: var(--font-head); font-size: 19px; line-height: 1.65; margin-bottom: 20px; }
.feedback cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.venue-band { padding: 88px 0; }
.venue-band + .venue-band { border-top: 1px solid var(--border); }
.venue-band__photo {
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.venue-band__photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.venue-band__photo:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(26, 31, 39, 0.12); }
.venue-band__photo:hover img { transform: scale(1.02); }
.venue-band__plate {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  background: rgba(244, 245, 247, 0.86);
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  width: max-content;
  max-width: 92%;
  text-align: center;
}
.venue-band__plate h3 { font-size: 26px; white-space: nowrap; }
.venue-band__body { max-width: 620px; margin: 0 auto; text-align: center; }
.venue-band__meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.venue-band__body > p { margin: 0 auto 28px; color: var(--text-muted); }

.catalog-closing {
  border-top: 1px solid var(--border);
  padding: 72px 0 96px;
  text-align: center;
}
.catalog-closing p { margin: 0 auto; color: var(--text-muted); max-width: 60ch; }
.catalog-closing a { color: var(--accent-2); border-bottom: 1px solid var(--border); }
.catalog-closing a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.insight { padding: 88px 0; }
.insight + .insight { border-top: 1px solid var(--border); }
.insight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.insight--flip .insight__media { order: -1; }
.insight__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.insight__text .kicker { margin-bottom: 14px; }
.insight__text h2 { margin-bottom: 24px; }
.insight__text p { color: var(--text-muted); margin-bottom: 18px; }
.insight__text p:last-child { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; }
.contact-intro p { color: var(--text-muted); margin-bottom: 20px; }
.contact-intro__email {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--accent-2);
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  margin-top: 8px;
}
.contact-intro__email:hover { color: var(--accent); border-bottom-color: var(--accent); }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 44px 40px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px var(--accent-2);
}
.agree-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 26px; }
.agree-row input[type="checkbox"] { margin-top: 5px; width: 16px; height: 16px; accent-color: var(--accent); flex: none; }
.agree-row label { font-size: 15px; line-height: 1.7; color: var(--text); cursor: pointer; }
.agree-row label a { color: var(--accent-2); border-bottom: 1px solid var(--border); }
.agree-row label a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.form-error { color: var(--accent); font-size: 14px; margin-top: 8px; }
.form-status { font-size: 14px; color: var(--accent); margin-top: 16px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; }

.confirmation { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 52px 44px; }
.confirmation h3 { font-size: 26px; margin-bottom: 16px; }
.confirmation p { color: var(--text-muted); margin-bottom: 16px; }
.confirmation__ref { font-family: var(--font-body); font-size: 15px; color: var(--accent-2); letter-spacing: 0.06em; }

.prose { max-width: 780px; }
.prose h2 { margin-top: 56px; margin-bottom: 18px; font-size: 26px; }
.prose h3 { margin-top: 32px; margin-bottom: 12px; }
.prose p { color: var(--text-muted); margin-bottom: 16px; }
.prose p:first-of-type { color: var(--text); }
.prose ul { margin: 0 0 16px 22px; color: var(--text-muted); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-2); border-bottom: 1px solid var(--border); }
.prose a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.prose .consent-block { margin: 48px 0; }

.page-list { list-style: none; max-width: 720px; border-top: 1px solid var(--border); }
.page-list li { border-bottom: 1px solid var(--border); }
.page-list a {
  display: block;
  padding: 20px 0;
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 0.4px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.page-list a:hover { color: var(--accent); padding-left: 10px; }

.consent-panel {
  background: var(--deep);
  color: #f4f5f7;
  border-radius: var(--radius);
  padding: 48px 56px;
  margin: 24px 0 0;
}
.consent-panel__inner { max-width: 640px; margin: 0 auto; }
.consent-panel h2 { font-size: 26px; color: #f4f5f7; margin-bottom: 14px; }
.consent-panel__copy { color: rgba(244, 245, 247, 0.72); font-size: 15px; margin-bottom: 32px; }
.consent-panel__copy a { color: #e8b294; border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
.consent-panel__copy a:hover { color: #fff; border-bottom-color: #fff; }
.consent-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.consent-cat__info { max-width: 46ch; }
.consent-cat__info strong { display: block; font-weight: 600; font-size: 15px; color: #f4f5f7; margin-bottom: 4px; }
.consent-cat__info span { font-size: 14px; color: rgba(244, 245, 247, 0.62); }
.consent-switch {
  position: relative;
  flex: none;
  width: 46px;
  height: 26px;
  margin-top: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.consent-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.consent-switch[aria-checked="true"] { background: var(--accent); border-color: var(--accent); }
.consent-switch[aria-checked="true"]::after { transform: translateX(20px); background: var(--on-accent); }
.consent-switch:disabled { cursor: not-allowed; opacity: 0.5; }
.consent-switch:disabled[aria-checked="true"] { opacity: 0.9; }
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.consent-btn {
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #f4f5f7;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.consent-btn:hover { background: #f4f5f7; color: var(--deep); border-color: #f4f5f7; }
.consent-btn--accept:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.consent-btn--accept:disabled { opacity: 0.45; cursor: not-allowed; }
.consent-btn--accept:disabled:hover { background: transparent; color: #f4f5f7; border-color: rgba(255, 255, 255, 0.55); }
.consent-pill {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(26, 31, 39, 0.28);
}

@media (max-width: 1024px) {
  .section { padding: 88px 0; }
  .hero { gap: 48px; }
  .insight__grid { gap: 48px; }
  .region-tiles { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-groups { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px 24px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { display: block; padding: 10px 0; width: 100%; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-frame { max-width: 560px; }
  .insight__grid { grid-template-columns: 1fr; gap: 40px; }
  .insight__media { order: -1; }
  .insight__media img { max-width: 640px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .page-head { padding: 72px 0 48px; }
  .category-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .about-cols { grid-template-columns: 1fr; gap: 40px; }
  .feedback { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before {
    top: 24px;
    bottom: 24px;
    left: 23px;
    right: auto;
    border-top: none;
    border-left: 1px solid var(--border);
  }
  .step { display: grid; grid-template-columns: 48px 1fr; gap: 20px; }
  .step__num { margin-bottom: 0; }
  .venue-band { padding: 64px 0; }
  .venue-band__photo img { height: 380px; }
  .venue-band__plate h3 { white-space: normal; font-size: 22px; }
  .consent-panel { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .venue-band__photo img { height: 300px; }
  .venue-band__plate { padding: 12px 20px; }
  .venue-band__plate h3 { font-size: 19px; }
  .contact-form { padding: 32px 24px; }
  .region-tiles { grid-template-columns: 1fr; gap: 32px; }
  .footer-groups { gap: 32px 48px; }
  .consent-actions { flex-direction: column; align-items: stretch; }
  .consent-btn { text-align: center; }
  .consent-cat { flex-direction: column; gap: 12px; }
  .consent-switch { margin-top: 0; }
  .brand__name { font-size: 17px; }
}
