: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;
  --deep: #0c1a13;
  --radius: 6px;
  --radius-btn: 0px;
  --font-heading: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: 'Palatino Linotype', Palatino, serif;
  --max: 1160px;
  --section-y: 112px;
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.85;
  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: 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;
  margin: 0 0 0.6em;
  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(20px, 2.5vw, 26px);
}

p {
  margin: 0 0 1.1em;
}

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

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.3em;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  padding: 0.95em 1.6em;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
  box-shadow: 0 8px 24px rgba(12, 26, 19, 0.18);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.nav-contact {
  justify-self: end;
}

.nav-contact a {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 2px solid transparent;
  padding: 0.25rem 0;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-inner > nav {
  display: contents;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

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

.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero .independence {
  width: 100%;
  margin: 1.25rem 0 0;
}

.page-hero .lead {
  margin-top: 1.75rem;
  max-width: 40rem;
  color: var(--text-muted);
}

.legal-body.legal-body--head {
  padding-bottom: 0;
}

.legal-body.legal-body--rest {
  padding-top: 0;
}

.page-hero .container {
  max-width: var(--max);
}

.hero {
  position: relative;
  padding: 4.5rem 0 7rem;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem 3rem;
  align-items: start;
}

.hero h1 {
  grid-column: 1 / -1;
  max-width: 16ch;
  margin-bottom: 0;
  margin-inline: 0;
  justify-self: start;
}

.hero-intro {
  grid-column: 2;
  margin-top: -0.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-photo {
  position: absolute;
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: -72px;
  width: min(340px, 38vw);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  z-index: 2;
}

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

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

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

.section--tight {
  padding: 4rem 0;
}

.section-head {
  max-width: 44rem;
  margin-bottom: 3rem;
}

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

.band + .band {
  margin-top: 0;
}

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

.band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--surface);
}

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

.band:nth-child(even) .band__body {
  order: 1;
  background: var(--surface-alt);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--border);
  max-width: 52rem;
}

.timeline li {
  position: relative;
  padding: 0 0 2.75rem 2.25rem;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--accent-2);
}

.timeline h3 {
  margin-bottom: 0.4em;
}

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

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

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

.quote blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--text);
}

.quote cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

.region-tile h3 {
  font-size: 18px;
  margin-bottom: 0.5em;
}

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

.photo-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: end;
}

.photo-strip__text {
  color: var(--text-muted);
}

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-strip figcaption {
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.accordion {
  max-width: 48rem;
  border-top: 1px solid var(--border);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.4px;
  text-align: left;
  color: var(--text);
}

.accordion__trigger::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--accent);
  flex-shrink: 0;
}

.accordion__item.is-open .accordion__trigger::after {
  content: "–";
}

.accordion__panel {
  display: none;
  padding: 0 0 1.5rem;
  color: var(--text-muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

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

.masonry .venue-card:nth-child(even) {
  margin-top: 3.5rem;
}

.venue-card {
  background: var(--surface);
}

.venue-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.venue-card__body {
  padding: 1.75rem 1.5rem 2rem;
}

.venue-card__meta {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.venue-card__body h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 0.65rem;
}

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

.venue-card--flip {
  display: flex;
  flex-direction: column;
}

.venue-card--flip .venue-card__body {
  order: 1;
}

.venue-card--flip img {
  order: 2;
}

.venue-card--flip .btn {
  order: 3;
  margin: 0 1.5rem 1.75rem;
  align-self: flex-start;
}

.venue-card:not(.venue-card--flip) .btn {
  margin-top: 0;
}

.stay-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stay-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--border);
  padding: 1.25rem;
  background: var(--surface);
}

.stay-row img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
}

.stay-row__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stay-row__text h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 0.35rem;
}

.stay-row__text .venue-card__meta {
  margin-bottom: 0.5rem;
}

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

.stay-row .btn {
  white-space: nowrap;
}

.closing-note {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.closing-note p {
  max-width: 40rem;
}

.editorial-lead {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.55;
  max-width: 48rem;
  margin-bottom: 3.5rem;
  color: var(--text);
}

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

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

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

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

.insights-stack section:first-of-type {
  padding-top: 0;
}

.insights-stack .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.85rem;
}

.insights-stack p {
  color: var(--text-muted);
  max-width: 42rem;
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-wrap .intro {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-form {
  text-align: left;
}

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

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

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

.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 {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.5rem 0;
  text-align: left;
}

.agree-row input {
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.agree-row label {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

.form-error {
  display: none;
  color: #8a1f1f;
  font-size: 14px;
  margin-top: 0.5rem;
}

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

.form-actions {
  margin-top: 1.5rem;
}

.form-actions .btn {
  width: 100%;
}

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

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

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

.legal-body {
  max-width: 44rem;
  padding-bottom: var(--section-y);
}

.legal-body h2 {
  margin-top: 2.5rem;
}

.legal-body h3 {
  margin-top: 1.75rem;
}

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

.sitemap-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.sitemap-list a {
  display: grid;
  grid-template-columns: minmax(140px, 280px) 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

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

.sitemap-title {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--text);
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  text-decoration: none;
}

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

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

.footer-group a,
.footer-group button {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

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

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 36rem;
}

.footer-independence {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.footer-requisites {
  margin-top: 1.25rem;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: left;
}

.footer-bottom .copy {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.footer-bottom .consent-line {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom .consent-line button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -12px 40px rgba(12, 26, 19, 0.12);
  padding: 1.35rem 1.25rem;
}

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

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

.consent-copy {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 52rem;
}

.consent-copy strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 400;
  display: block;
  margin-bottom: 0.35rem;
  font-size: 17px;
}

.consent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.consent-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-heading);
}

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

.consent-actions .btn {
  font-size: 12px;
  padding: 0.8em 1.2em;
}

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

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

  .hero h1 {
    max-width: 14ch;
  }

  .hero-intro {
    grid-column: 1;
    max-width: 36rem;
  }

  .hero-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(280px, 70%);
    margin: 2.5rem 0 0 auto;
  }

  .hero {
    padding-bottom: 4rem;
  }

  .regions {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

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

  .nav-links,
  .nav-contact {
    display: none;
  }

  .nav-inner.is-open {
    grid-template-columns: 1fr auto;
  }

  .nav-inner.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: 1 / -1;
    padding: 0.5rem 0 1rem;
    gap: 0.75rem;
  }

  .nav-inner.is-open .nav-contact {
    display: block;
    grid-column: 1 / -1;
    justify-self: start;
    padding-bottom: 1rem;
  }

  .band {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .band:nth-child(even) .band__media,
  .band:nth-child(even) .band__body {
    order: initial;
  }

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

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

  .masonry .venue-card:nth-child(even) {
    margin-top: 0;
  }

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

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .independence {
    width: min(100% - 32px, var(--max));
  }

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

  .stay-row {
    grid-template-columns: 96px 1fr;
  }

  .stay-row img {
    width: 96px;
    height: 96px;
  }

  .stay-row .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .sitemap-list a {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

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

@media (max-width: 480px) {
  :root {
    --section-y: 72px;
  }

  body {
    font-size: 16px;
  }

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

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

  .stay-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .stay-row__text {
    text-align: left;
    align-items: flex-start;
  }

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

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