:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-alt: #efece4;
  --text: #12211a;
  --text-muted: #4d5c55;
  --border: rgba(18, 33, 26, 0.12);
  --accent: #0f5132;
  --accent-2: #c9a227;
  --secondary: #1c3d2c;
  --on-accent: #ffffff;
  --dark: #0c1a13;
  --radius: 10px;
  --radius-btn: 0px;
  --font-heading: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --font-body: Cambria, Georgia, serif;
  --max: 1120px;
  --section-pad: 88px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.16;
}

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

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

p {
  margin: 0 0 1em;
}

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

.kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

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

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

.section--alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

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

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

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

.section--dark .kicker {
  color: var(--accent-2);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--radius-btn);
  padding: 14px 22px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s 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--block {
  width: 100%;
}

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

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

.site-header__inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.2px;
  flex-shrink: 0;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-btn);
  cursor: pointer;
  padding: 0;
  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: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant: small-caps;
  text-decoration: none;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: var(--radius-btn);
}

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

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

.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--surface-alt);
}

.hero__media {
  position: absolute;
  inset: 0 0 0 28%;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__panel {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 520px);
  margin: 72px 0 72px max(20px, calc((100% - var(--max)) / 2));
  background: var(--surface);
  padding: 48px 40px;
  border: 1px solid var(--border);
}

.hero__panel .independence-notice {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.independence-notice {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.cat-rows {
  display: flex;
  flex-direction: column;
}

.cat-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

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

.cat-row h3 {
  margin: 0;
  font-size: 22px;
}

.cat-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
}

.cat-row__link {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testimonial {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

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

.testimonial blockquote {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  font-style: italic;
}

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

.regions-compose {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 48px;
  margin-top: 36px;
}

.regions-compose span {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--on-accent);
}

.closing-cta {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

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

.arrival-note h3 {
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.arrival-note p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.page-head {
  padding: 64px 0 40px;
}

.page-head p {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 18px;
}

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

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

.venue-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.venue-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

.venue-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.venue-card__meta h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin: 0;
  line-height: 1.35;
}

.venue-card__meta p {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.35;
}

.venue-card__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  flex: 1;
}

.venue-card .btn {
  margin-top: auto;
}

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

.masonry-grid .venue-card .btn {
  margin: 0 24px 28px;
  width: calc(100% - 48px);
}

.masonry-grid .venue-card--bottom .venue-card__body {
  padding-bottom: 8px;
}

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

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

.gem-row__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  align-self: stretch;
}

.gem-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gem-row__content {
  padding: 20px 0;
  text-align: center;
}

.gem-row__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 8px;
  align-items: center;
}

.gem-row__content h2,
.gem-row__meta h2 {
  font-size: 20px;
  margin: 0;
}

.gem-row__meta p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-muted);
}

.gem-row__content > p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.gem-row__action {
  padding: 20px 24px 20px 0;
}

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

.editorial-lead {
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.5;
  max-width: 48rem;
  margin-bottom: 48px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.editorial-grid section h2 {
  margin-top: 0;
}

.insights-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.insights-index {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--surface-alt);
  border-radius: var(--radius);
}

.insights-index a {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-muted);
  line-height: 1.4;
}

.insights-index a:hover {
  color: var(--accent);
}

.insights-prose section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.insights-prose section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-intro {
  background: var(--surface-alt);
  padding: 56px 0;
}

.contact-intro p {
  max-width: 58ch;
  font-size: 19px;
}

.contact-email {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 20px;
}

.contact-form-wrap {
  padding: 56px 0 88px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

.agree-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 14px;
}

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

.agree-row label {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  max-width: 56ch;
}

.form-error {
  flex-basis: 100%;
  color: #8b1e1e;
  font-size: 14px;
  margin: 0;
}

.form-error[hidden],
.form-status[hidden] {
  display: none;
}

.form-status {
  grid-column: 1 / -1;
  color: #8b1e1e;
  font-size: 15px;
}

.form-actions {
  grid-column: 1 / -1;
}

.confirm-panel {
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.confirm-panel h2 {
  margin-top: 0;
}

.legal-body {
  padding: 56px 0 88px;
  max-width: 760px;
}

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

.legal-body h2 {
  margin-top: 2em;
  font-size: clamp(20px, 2.4vw, 26px);
}

.legal-body h3 {
  margin-top: 1.4em;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  font-size: 15px;
}

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-list li {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

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

.sitemap-list a {
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.sitemap-list span {
  color: var(--text-muted);
  font-size: 16px;
}

.site-footer {
  background: var(--surface-alt);
  padding-top: 48px;
}

.site-footer__notice {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.site-footer__grid {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-group a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
}

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

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 52ch;
}

.footer-email {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  letter-spacing: -0.3px;
}

.footer-email:hover {
  color: var(--secondary);
}

.footer-requisites {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 20px 32px;
  text-align: center;
}

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

.footer-bottom [data-cookie-settings] {
  display: inline-block;
  margin-top: 10px;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px;
  pointer-events: none;
}

.consent__panel {
  pointer-events: auto;
  width: min(100%, 720px);
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.consent__text {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.consent__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.consent__option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.consent__option input {
  margin-top: 3px;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consent__actions .btn {
  padding: 10px 16px;
  font-size: 12px;
}

.consent[hidden] {
  display: none;
}

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

  .site-nav a {
    padding: 8px 7px;
    letter-spacing: 0.1em;
  }
}

@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: 12px 20px 20px;
    gap: 0;
  }

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

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .site-header__inner {
    position: relative;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero__media {
    position: relative;
    inset: auto;
    order: -1;
    height: 280px;
  }

  .hero__panel {
    width: min(100% - 40px, var(--max));
    margin: -40px auto 48px;
    padding: 36px 28px;
  }

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

  .insights-layout {
    grid-template-columns: 1fr;
  }

  .insights-index {
    position: static;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

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

  .cat-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .gem-row {
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto;
  }

  .gem-row__thumb {
    width: 96px;
    height: 96px;
    grid-row: 1 / 2;
  }

  .gem-row__content {
    text-align: left;
    padding: 16px 16px 8px 0;
  }

  .gem-row__meta {
    align-items: flex-start;
  }

  .gem-row__action {
    grid-column: 1 / -1;
    padding: 0 16px 16px;
  }

  .gem-row__action .btn {
    width: 100%;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sitemap-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .container,
  .site-header__inner,
  .site-footer__notice,
  .site-footer__grid {
    width: min(100% - 28px, var(--max));
  }

  .hero__panel {
    width: min(100% - 28px, var(--max));
    padding: 28px 20px;
  }

  .venue-card__body {
    padding: 20px;
  }

  .consent__actions {
    flex-direction: column;
  }

  .consent__actions .btn {
    width: 100%;
  }
}
