: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-band: #0c1a13;
  --radius: 14px;
  --radius-btn: 2px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --font-body: Cambria, Georgia, serif;
  --max: 1040px;
  --section-pad: 68px;
  --header-h: 58px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.58;
  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: 2px;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

h3 {
  font-size: clamp(18px, 2.4vw, 22px);
}

p {
  margin: 0 0 1em;
}

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

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

.kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  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.7em 1.15em;
  cursor: pointer;
  line-height: 1.2;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

.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: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

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

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  cursor: pointer;
  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 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35em 0;
  border-bottom: 2px solid transparent;
}

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

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

.independence {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.independence__inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  padding: 0.55rem 0;
  border: 1px solid var(--border);
  border-top: none;
  border-bottom: none;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
}

.independence__inner p {
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

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

.hero-quiet {
  background: var(--surface-alt);
  border-top: none;
  padding: calc(var(--section-pad) + 12px) 0 var(--section-pad);
}

.hero-quiet__rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.1rem;
  border: none;
}

.hero-quiet .lead {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.cat-band:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cat-band:first-child {
  padding-top: 0;
}

.cat-band--flip .cat-band__media {
  order: 2;
}

.cat-band--flip .cat-band__body {
  order: 1;
}

.cat-band__media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cat-band__body h2 {
  margin-bottom: 0.5rem;
}

.cat-band__body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.amenity-item {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.amenity-item:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.amenity-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: -0.2px;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.amenity-item span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.arrival-note {
  padding: 1.25rem 1.1rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.arrival-note:last-child {
  border-right: none;
}

.arrival-note h3 {
  font-size: 15px;
  margin-bottom: 0.55rem;
  color: var(--secondary);
}

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

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

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.2rem;
}

.quote-card blockquote {
  margin: 0 0 0.85rem;
  padding: 0;
  font-size: 0.98rem;
  color: var(--text);
}

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

.closing-cta {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.closing-cta__panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.about-split__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.page-title {
  background: var(--surface-alt);
  border-top: none;
  padding: calc(var(--section-pad) - 8px) 0 2.5rem;
}

.page-title .lead {
  max-width: 68ch;
  color: var(--text-muted);
}

.page-title__rule {
  width: 40px;
  height: 2px;
  background: var(--accent-2);
  margin: 0 0 1rem;
  border: none;
}

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

.catalog-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

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

.catalog-row__thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: calc(var(--radius) / 2);
}

.catalog-row__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.catalog-row__body .kicker {
  margin-bottom: 0.35rem;
}

.catalog-row__body h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 0.4rem;
}

.catalog-row__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.catalog-row__meta {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.catalog-row__action {
  flex-shrink: 0;
}

.band-stack {
  display: flex;
  flex-direction: column;
}

.band-card {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

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

.band-card__photo {
  width: 100%;
  max-height: 420px;
  height: 52vw;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.35rem;
}

.band-card .kicker {
  margin-bottom: 0.45rem;
}

.band-card h2 {
  margin-bottom: 0.45rem;
}

.band-card__meta {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.band-card p {
  max-width: 62ch;
  margin: 0 auto 1.2rem;
  color: var(--text-muted);
}

.catalog-close {
  padding-top: 0;
  border-top: none;
}

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

.editorial {
  padding-top: 2.5rem;
}

.editorial__col {
  max-width: 70ch;
}

.editorial__section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

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

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

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

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

.contact-email {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.4rem;
}

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

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

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

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

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

.form-agree {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1.1rem 0 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.form-agree input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

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

.form-error {
  display: none;
  color: #8a1c1c;
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

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

.form-status {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: #8a1c1c;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.5rem;
}

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

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

.confirm-ref {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.legal-body {
  padding-top: 2rem;
}

.legal-body .wrap > * {
  max-width: 70ch;
}

.prose-measure {
  max-width: 70ch;
}

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

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

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

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

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

.sitemap-list a {
  display: block;
  padding: 0.95rem 0.15rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.2px;
}

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

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

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
}

.footer-brand {
  max-width: 320px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-links {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: flex-end;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 0.65rem;
  display: inline-block;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.15rem;
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
}

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

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

.footer-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 1.1rem;
}

.footer-bottom__notice {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.footer-bottom__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom__bar button {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

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

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

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

  .arrival-note:nth-child(2n) {
    border-right: none;
  }

  .cat-band__media img {
    height: 240px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }

  .site-header__inner {
    position: relative;
  }

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem 1rem;
    display: none;
  }

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

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

  .site-nav a {
    display: block;
    padding: 0.55rem 0;
    letter-spacing: 0.12em;
  }

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

  .closing-cta {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

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

  .cat-band,
  .cat-band--flip {
    grid-template-columns: 1fr;
  }

  .cat-band--flip .cat-band__media,
  .cat-band--flip .cat-band__body {
    order: initial;
  }

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

  .amenity-item:nth-child(odd) {
    border-right: none;
  }

  .catalog-row {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .catalog-row__thumb {
    width: 80px;
    height: 80px;
    grid-row: 1 / 3;
  }

  .catalog-row__body {
    text-align: left;
    align-items: flex-start;
  }

  .catalog-row__action {
    grid-column: 2;
  }

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

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

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

  .arrival-note {
    border-right: none;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .brand span {
    font-size: 13px;
  }

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

  .catalog-row__thumb {
    width: 100%;
    height: 180px;
    grid-row: auto;
  }

  .catalog-row__action {
    grid-column: 1;
  }

  .band-card__photo {
    height: 200px;
  }

  .footer-bottom__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

.consent__panel {
  pointer-events: auto;
  width: min(100%, 720px);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem 1.25rem;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 0.5rem;
}

.consent__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.95rem;
}

.consent__options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.consent__opt {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text);
}

.consent__opt input {
  margin-top: 0.2rem;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consent__actions .btn {
  font-size: 11px;
  padding: 0.65em 0.95em;
}

.consent__actions .btn--ghost {
  border-color: var(--border);
}
