/* Self-hosted OFL fonts — Cormorant Garamond + Manrope, Cyrillic + Latin */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cormorant-700-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cormorant-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cormorant-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-italic-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Design tokens live in tokens.css (loaded before this file). */

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--viz-text);
  background: var(--viz-bg);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 400;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: var(--viz-gold);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--viz-gold-light);
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 500;
  padding: 0.75rem 1rem;
  background: var(--viz-gold);
  color: #000;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--viz-header-height);
  background: rgba(12, 11, 10, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(235, 215, 176, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--viz-gold);
  text-decoration: none;
}

.site-brand__mark {
  width: 34px;
  height: 34px;
  object-fit: cover;
  object-position: center 5%;
  flex-shrink: 0;
}

.site-brand:hover,
.site-brand:focus-visible {
  color: var(--viz-gold-light);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(235, 215, 176, 0.28);
  background: transparent;
  color: var(--viz-gold);
  cursor: pointer;
}

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

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 1px;
  background: currentColor;
}

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

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

.site-nav {
  display: none;
  position: absolute;
  top: var(--viz-header-height);
  left: 0;
  right: 0;
  background: #141312;
  border-bottom: 1px solid rgba(235, 215, 176, 0.12);
  padding: 0.75rem 0 1rem;
}

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

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: block;
  min-height: 44px;
  padding: 0.85rem 1.25rem;
  color: var(--viz-text);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link[aria-current="page"] {
  color: var(--viz-gold);
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
  }

  .site-nav__list {
    display: flex;
    gap: 0.25rem;
  }

  .site-nav__link {
    padding: 0.5rem 0.9rem;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--gold {
  background: var(--viz-gold);
  color: #0C0B0A;
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--viz-gold-light);
  color: #0C0B0A;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(235, 215, 176, 0.4);
  color: var(--viz-gold);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--viz-gold);
  color: var(--viz-gold-light);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--viz-header-height));
  display: flex;
  align-items: center;
  padding: 4.5rem 0 5.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 50% 18%, rgba(235, 215, 176, 0.14), transparent 62%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(235, 215, 176, 0.05), transparent 70%),
    linear-gradient(180deg, #000 0%, #0C0B0A 55%, #121110 100%);
}

.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--viz-gold), transparent);
  transform: translateX(-50%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__logo {
  display: block;
  width: min(168px, 46vw);
  margin: 0 auto 1.75rem;
}

.hero__kicker {
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--viz-gold);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 12vw, 7.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--viz-gold-light);
}

.hero__rule {
  width: 64px;
  height: 1px;
  margin: 1.75rem auto;
  background: var(--viz-gold);
}

.hero__lede {
  margin: 0 auto 2.25rem;
  max-width: 28rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--viz-text);
}

.hero .btn-row {
  justify-content: center;
}

/* Sections */

.band {
  padding: 5.5rem 0;
}

.band--alt {
  background: var(--viz-surface);
  border-top: 1px solid rgba(235, 215, 176, 0.08);
  border-bottom: 1px solid rgba(235, 215, 176, 0.08);
}

.section-index {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--viz-gold);
}

.display {
  margin: 0 0 1.25rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--viz-text);
}

.prose {
  max-width: 38rem;
  color: var(--viz-text-light);
}

.prose p {
  margin: 0 0 1rem;
}

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

/* Feature grid */

.feature-grid {
  display: grid;
  gap: 1px;
  margin-top: 2.75rem;
  background: rgba(235, 215, 176, 0.12);
  border: 1px solid rgba(235, 215, 176, 0.12);
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  padding: 1.75rem 1.5rem 1.85rem;
  background: var(--viz-bg);
}

.band--alt .feature-card {
  background: var(--viz-surface);
}

.feature-card__index {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--viz-gold-dark);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--viz-text);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--viz-text-light);
}

.store-note {
  margin: 2rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--viz-text-light);
}

/* Split contact */

.split {
  display: grid;
  gap: 0;
  border: 1px solid rgba(235, 215, 176, 0.16);
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split__pane {
  padding: 2.25rem 1.75rem;
  background: var(--viz-card);
}

.split__pane + .split__pane {
  border-top: 1px solid rgba(235, 215, 176, 0.16);
}

@media (min-width: 800px) {
  .split__pane + .split__pane {
    border-top: none;
    border-left: 1px solid rgba(235, 215, 176, 0.16);
  }
}

.split__label {
  margin: 0 0 1.15rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--viz-gold);
}

.split__value {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--viz-text);
}

.split__value a {
  color: inherit;
}

.split__value a:hover,
.split__value a:focus-visible {
  color: var(--viz-gold);
}

.split__meta {
  margin: 0 0 1.25rem;
  color: var(--viz-text-light);
}

.split .btn {
  margin-top: 0.25rem;
}

/* Contact detail lines + working hours (inside .split panes) */

.split__lines {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.split__lines li + li {
  margin-top: 0.9rem;
}

.split__lines dt,
.hours dt {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--viz-text-light);
}

.split__lines dd {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--viz-text);
}

.split__lines dd a {
  color: inherit;
}

.split__lines dd a:hover,
.split__lines dd a:focus-visible {
  color: var(--viz-gold);
}

.hours {
  margin: 0 0 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.25rem;
  align-items: baseline;
}

.hours dt {
  margin: 0;
}

.hours dd {
  margin: 0;
  color: var(--viz-text-light);
  font-size: 0.95rem;
}

/* Legal pages */

.legal-hero {
  padding: 4rem 0 2.5rem;
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%, rgba(235, 215, 176, 0.08), transparent 60%),
    var(--viz-bg);
}

.legal-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.legal-updated {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--viz-text-light);
}

.legal-body {
  padding: 0 0 5rem;
}

.legal-body h2 {
  margin: 2.5rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--viz-gold);
}

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

.legal-body p {
  margin: 0 0 1rem;
}

.legal-body ul,
.legal-body ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

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

.legal-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 1px solid var(--viz-gold);
  background: rgba(235, 215, 176, 0.04);
  font-size: 0.92rem;
  color: var(--viz-text-light);
}

.placeholder {
  color: var(--viz-gold-dark);
  font-style: italic;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(235, 215, 176, 0.12);
  background: #080707;
  padding: 3.5rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 760px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--viz-gold);
  text-decoration: none;
}

.site-footer__brand img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  object-position: center 5%;
}

.site-footer__tag {
  margin: 0.75rem 0 0;
  max-width: 22rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--viz-text-light);
}

.site-footer h3 {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--viz-gold);
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--viz-text-light);
  font-size: 0.95rem;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--viz-gold);
}

.site-footer__copy {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(235, 215, 176, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #6f6a66;
}
