:root {
  --bg: #141010;
  --surface: #1e1817;
  --surface-alt: #28201e;
  --text: #f4efe9;
  --text-muted: #b6a79c;
  --border: rgba(244, 239, 233, 0.14);
  --accent: #cfa456;
  --accent-2: #a88b6a;
  --secondary: #2d2422;
  --on-accent: #181312;
  --deep: #0c0908;
  --radius: 20px;
  --radius-btn: 0px;
  --font-heading: Didot, "Bodoni MT", Georgia, serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1160px;
  --section-pad: 112px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

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 + p {
  margin-top: 1.1em;
}

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

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

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

.btn {
  display: inline-block;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

.btn--block {
  display: block;
  width: 100%;
}

.site-header {
  background: var(--bg);
  padding: 28px 0 0;
}

.header-top {
  position: relative;
  padding-bottom: 22px;
}

.header-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.header-brand img {
  width: 44px;
  height: 44px;
}

.header-brand__name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.nav-row {
  position: relative;
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: var(--radius-btn);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 20;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding: 18px 24px 22px;
  list-style: none;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

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

.independence {
  width: min(100% - 48px, var(--max));
  margin: 18px auto 0;
  padding: 12px 18px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: var(--section-pad) 0;
}

.hero-split__copy p {
  color: var(--text-muted);
  max-width: 36em;
}

.hero-frame {
  position: relative;
  padding: 12px;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  transform: translate(10px, 10px);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.category-rows {
  border-top: 1px solid var(--border);
}

.category-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.category-row h2 {
  font-size: clamp(22px, 3vw, 30px);
}

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

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

.band-deep {
  background: var(--deep);
}

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

.centered-band {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

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

.regions-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 56px;
  margin-top: 48px;
}

.regions-type span {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  color: var(--text);
  letter-spacing: 0.04em;
}

.amenities-lead {
  max-width: 640px;
  margin-bottom: 48px;
  color: var(--text-muted);
}

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

.amenity-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.amenity-tile h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

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

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

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

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

.page-title {
  padding: 80px 0 48px;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.page-title p {
  color: var(--text-muted);
  margin-top: 1.2em;
}

.landmark-band {
  padding: 0 0 80px;
}

.landmark-band + .landmark-band {
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.landmark-band img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 36px;
}

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

.landmark-band__body .kicker {
  margin-bottom: 0.6rem;
}

.landmark-band__body p {
  color: var(--text-muted);
  margin: 1em 0 1.6em;
}

.shore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
  padding-bottom: var(--section-pad);
}

.shore-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.shore-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.shore-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.shore-card__meta h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin: 0;
}

.shore-card__meta p {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0;
  margin: 0;
  flex: none;
}

.shore-card > p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 24px;
}

.catalog-close {
  padding: 0 0 var(--section-pad);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  color: var(--text-muted);
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.editorial-band:nth-child(even) .editorial-band__aside {
  order: -1;
}

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

.editorial-band__aside {
  border-left: 1px solid var(--border);
  padding: 24px 0 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.editorial-band:nth-child(even) .editorial-band__aside {
  border-left: 0;
  border-right: 1px solid var(--border);
  padding: 24px 40px 24px 0;
  text-align: right;
}

.editorial-band__aside .aside-mark {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 96px);
  color: var(--accent-2);
  line-height: 1;
  letter-spacing: 0.02em;
}

.editorial-band__aside .aside-label {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  padding-bottom: var(--section-pad);
}

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

.contact-email {
  display: inline-block;
  margin-top: 24px;
  font-size: 18px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-form .field {
  margin-bottom: 22px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  line-height: 1.4;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.agree-row input {
  margin-top: 6px;
  flex-shrink: 0;
}

.agree-row label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.field-error {
  color: #e0a090;
  font-size: 14px;
  margin-top: 8px;
  min-height: 1.2em;
}

.form-status {
  margin-top: 16px;
  color: #e0a090;
  font-size: 15px;
}

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

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

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

.confirm-panel .btn {
  margin-top: 28px;
}

.sitemap-list {
  list-style: none;
  padding-bottom: var(--section-pad);
}

.sitemap-list li {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-list a {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text);
}

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

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

.legal-body {
  padding-bottom: var(--section-pad);
  max-width: 760px;
}

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

.legal-body h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-body h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

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

.legal-body ul {
  padding-left: 1.2em;
  margin-top: 0.8em;
}

.legal-body li + li {
  margin-top: 0.5em;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-brand span {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-requisites {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  display: inline-block;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
}

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

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

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

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

.footer-independence {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  padding: 0 24px;
}

.footer-bar {
  background: var(--surface-alt);
  padding: 28px 24px;
  text-align: center;
}

.footer-bar .copy {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-bar .cookie-settings-wrap {
  margin-top: 10px;
}

.footer-bar [data-cookie-settings] {
  background: none;
  border: 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 24px;
}

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

.consent-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.consent-inner h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.consent-inner > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 18px;
  max-width: 70em;
}

.consent-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.consent-option {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.consent-option label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.consent-option small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 4px;
}

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

.consent-actions .btn {
  font-size: 12px;
  padding: 12px 20px;
}

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

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

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

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 12px 24px 28px;
    gap: 16px;
  }

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

  .header-top {
    padding-bottom: 18px;
  }

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

  .hero-split,
  .about-split,
  .contact-grid,
  .editorial-band {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .editorial-band:nth-child(even) .editorial-band__aside {
    order: 0;
    border-right: 0;
    border-left: 1px solid var(--border);
    padding: 24px 0 24px 28px;
    text-align: left;
  }

  .hero-frame img {
    aspect-ratio: 4 / 5;
  }
}

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

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

  .category-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }

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

  .consent-options {
    grid-template-columns: 1fr;
  }

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

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

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

  .regions-type {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

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

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

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

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

  .independence {
    width: min(100% - 24px, var(--max));
    font-size: 11px;
  }
}
