:root {
  --bg: #f5f6f1;
  --surface: #ffffff;
  --surface-alt: #e8ebe2;
  --text: #16211b;
  --text-muted: #4e5b52;
  --border: rgba(22, 33, 27, 0.12);
  --accent: #2f5d3f;
  --accent-2: #a68a4e;
  --secondary: #24382c;
  --on-accent: #ffffff;
  --dark: #131f18;
  --radius: 2px;
  --font-heading: Garamond, 'EB Garamond', Georgia, serif;
  --font-body: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --max-width: 1120px;
  --section-pad: 88px;
  --header-height: 72px;
  --header-height-shrink: 56px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  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: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

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

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

p {
  margin: 0 0 1.2em;
}

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

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

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

.independence-notice {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

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

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

.site-header.is-scrolled {
  box-shadow: var(--shadow-card);
}

.site-header.is-scrolled .header-inner {
  min-height: var(--header-height-shrink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
  transition: min-height 0.25s ease;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

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

.brand-lockup span {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 8px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.nav-toggle-icon::before {
  top: -7px;
}

.nav-toggle-icon::after {
  top: 7px;
}

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

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .site-nav li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a {
    display: block;
    padding: 16px 0;
    width: 100%;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(19, 31, 24, 0.4);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }
}

section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-split {
  padding: calc(var(--section-pad) - 16px) 0 var(--section-pad);
}

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

.hero-copy {
  max-width: 48ch;
}

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

.hero-frame {
  position: relative;
}

.hero-frame-border {
  position: absolute;
  inset: -8px 8px 8px -8px;
  border: 1px solid var(--accent-2);
  border-radius: var(--radius);
  pointer-events: none;
}

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

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

  .hero-frame {
    order: -1;
    max-width: 480px;
  }
}

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

.category-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 24px 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

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

.category-row h2 {
  font-size: clamp(20px, 3vw, 28px);
  margin: 0;
}

.category-row p {
  margin: 0;
  color: var(--text-muted);
}

.category-row-link {
  white-space: nowrap;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

@media (max-width: 768px) {
  .category-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.dark-band {
  background: var(--dark);
  color: var(--on-accent);
  text-align: center;
  border-bottom: none;
}

.dark-band h2 {
  color: var(--on-accent);
}

.dark-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

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

.quote-block {
  text-align: center;
  padding: var(--section-pad) 0;
}

.quote-block blockquote {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--accent);
  letter-spacing: -0.3px;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.quote-block p {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto;
}

.mission-col {
  max-width: 68ch;
  margin: 0 auto;
  text-align: center;
}

.mission-col::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
}

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

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  padding-top: 24px;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

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

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.step-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .steps-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-row::before {
    display: none;
  }
}

.page-header {
  padding: calc(var(--section-pad) - 24px) 0 48px;
  border-bottom: 1px solid var(--border);
}

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

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: var(--section-pad) 0;
}

.venue-card-grid {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.venue-card-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.venue-card-grid-body {
  padding: 28px 32px 32px;
}

.venue-card-grid-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 8px;
}

.venue-location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.venue-card-grid-body p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.water-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--section-pad) 0;
}

.water-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

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

.water-thumb {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

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

.water-content .city-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 8px;
}

.water-content h2 {
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 8px;
}

.water-content .venue-location {
  margin-bottom: 12px;
}

.water-content p {
  color: var(--text-muted);
  margin: 0;
}

.water-action {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .water-row {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .water-thumb {
    width: 80px;
    height: 80px;
  }

  .water-action {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

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

.catalog-close {
  padding: 48px 0 var(--section-pad);
  border-top: 1px solid var(--border);
}

.catalog-close p {
  color: var(--text-muted);
  max-width: 62ch;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: center;
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.editorial-band.is-reverse .editorial-text {
  order: 2;
}

.editorial-band.is-reverse .editorial-media {
  order: 1;
}

.editorial-text h2 {
  margin-bottom: 24px;
}

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

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

.editorial-text-only {
  max-width: 68ch;
  margin: 0 auto;
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.editorial-text-only h2 {
  margin-bottom: 24px;
}

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

@media (max-width: 900px) {
  .editorial-band,
  .editorial-band.is-reverse {
    grid-template-columns: 1fr;
  }

  .editorial-band.is-reverse .editorial-text,
  .editorial-band.is-reverse .editorial-media {
    order: unset;
  }
}

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

.contact-intro {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 40px;
  color: var(--text-muted);
}

.contact-panel {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

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

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

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-checkbox input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.form-checkbox label a {
  color: var(--accent);
}

.form-error {
  font-size: 13px;
  color: #8b3a3a;
  margin-top: 8px;
}

.contact-email-line {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
}

.confirmation-panel {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.confirmation-panel h2 {
  margin-bottom: 16px;
}

.confirmation-ref {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent);
  margin: 16px 0 24px;
}

.legal-content {
  padding: var(--section-pad) 0;
  max-width: 72ch;
}

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

.legal-content h2 {
  font-size: clamp(20px, 3vw, 26px);
  margin-top: 40px;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
}

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

.legal-content ul {
  padding-left: 1.4em;
}

.legal-content a {
  color: var(--accent);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: var(--section-pad) 0;
}

.sitemap-group h2 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 16px;
}

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

.sitemap-group li {
  margin-bottom: 10px;
}

.sitemap-group a {
  color: var(--text);
  text-decoration: none;
}

.sitemap-group a:hover {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px 64px;
  padding: 64px 24px 48px;
}

.footer-blurb {
  font-size: 15px;
  color: var(--text-muted);
  margin: 16px 0;
  max-width: 36ch;
}

.footer-email {
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px;
}

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

.footer-group li {
  margin-bottom: 10px;
}

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

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

.footer-bottom {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  padding: 24px;
}

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

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

.cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
}

.cookie-settings-link:hover {
  color: var(--accent);
}

.footer-requisites {
  font-size: 12px !important;
  margin-top: 12px !important;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 64px 0;
  }

  .contact-panel,
  .confirmation-panel {
    padding: 28px 20px;
  }

  .footer-groups {
    grid-template-columns: 1fr;
  }
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.consent-banner.is-visible {
  transform: translateY(0);
}

.consent-panel {
  max-width: 420px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.consent-headline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}

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

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-btn {
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
}

.consent-btn:hover {
  background: var(--surface-alt);
}

.consent-btn-accept {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
  order: -1;
}

.consent-btn-accept:hover {
  background: var(--secondary);
}

.consent-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.consent-categories {
  display: none;
}

.consent-banner.is-manage .consent-intro {
  display: none;
}

.consent-banner.is-manage .consent-categories {
  display: block;
}

.consent-back {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: var(--accent);
  cursor: pointer;
  margin-bottom: 16px;
}

.consent-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.consent-category label {
  font-size: 14px;
  font-weight: 600;
}

.consent-category span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
  font-weight: 400;
}

.consent-category input:disabled {
  opacity: 0.5;
}

@media (max-width: 600px) {
  .consent-actions {
    flex-direction: column;
  }

  .consent-btn {
    width: 100%;
    text-align: center;
  }

  .consent-btn-accept {
    order: -1;
  }
}

@media (min-width: 900px) {
  .consent-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    padding: 0;
    max-width: 420px;
  }
}
