:root {
  --bg: #141019;
  --surface: #1d1725;
  --surface-alt: #261e31;
  --text: #f2eef6;
  --text-muted: #b0a3bd;
  --border: rgba(242, 238, 246, 0.14);
  --accent: #d8c08e;
  --accent-2: #9b7fc0;
  --secondary: #2b2236;
  --on-accent: #1a1421;
  --deep: #0d0a11;
  --radius: 2px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Rockwell, "Courier Bold", Georgia, serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --max: 1040px;
  --section-pad: 68px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

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

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

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

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

.btn {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s 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:disabled {
  opacity: 0.65;
  cursor: wait;
}

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

.notice-strip p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}

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

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 56px;
  padding: 0.35rem 0;
}

.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: 0.95rem;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

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

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

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

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

.nav-contact a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  width: 40px;
  height: 36px;
  padding: 0;
  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);
}

.hero {
  position: relative;
  padding: var(--section-pad) 0 calc(var(--section-pad) + 40px);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

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

.hero h1 {
  margin: 0;
  margin-inline: 0;
  max-width: 14ch;
  justify-self: start;
}

.hero__intro {
  grid-column: 1;
  max-width: 36ch;
  margin-left: auto;
  margin-right: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.hero__photo {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: end;
  width: min(100%, 340px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: -72px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.hero__photo:hover img {
  transform: scale(1.02);
}

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

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

.band__media {
  overflow: hidden;
  min-height: 280px;
  background: var(--surface);
}

.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.band:hover .band__media img {
  transform: scale(1.02);
}

.band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.25rem;
  background: var(--surface);
  border-left: 1px solid var(--border);
}

.band:nth-child(even) .band__body {
  border-left: none;
  border-right: 1px solid var(--border);
}

.band__body p {
  color: var(--text-muted);
  max-width: 38ch;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.cta-band__panel {
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.timeline li {
  position: relative;
  padding: 0 0 2rem 1.75rem;
}

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

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

.timeline h3 {
  margin-bottom: 0.35rem;
}

.timeline p {
  color: var(--text-muted);
  margin-bottom: 0.4em;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.amenities__item {
  background: var(--surface);
  padding: 1.35rem 1.15rem;
}

.amenities__item h3 {
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 1rem;
}

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

.page-head {
  padding: calc(var(--section-pad) * 0.75) 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}

.page-head p {
  max-width: 52ch;
  margin: 0.75rem auto 0;
  color: var(--text-muted);
}

.quiet-card {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.quiet-card:hover {
  transform: translateY(-2px);
}

.quiet-card__media {
  overflow: hidden;
  width: 100%;
  max-height: 420px;
}

.quiet-card__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.quiet-card:hover .quiet-card__media img {
  transform: scale(1.02);
}

.quiet-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.75rem 3rem;
  max-width: 640px;
  margin: 0 auto;
}

.quiet-card__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

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

.water-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.water-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.water-row:hover {
  transform: translateY(-2px);
}

.water-row__thumb {
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.water-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.water-row:hover .water-row__thumb img {
  transform: scale(1.02);
}

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

.water-row__text .kicker {
  margin-bottom: 0.35rem;
}

.water-row__text h2 {
  font-size: clamp(18px, 2.4vw, 24px);
  margin-bottom: 0.4rem;
}

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

.water-row__action {
  justify-self: end;
}

.catalog-close {
  padding: var(--section-pad) 0;
  text-align: center;
  color: var(--text-muted);
}

.catalog-close p {
  max-width: 52ch;
  margin: 0 auto;
}

.editorial-lead {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  color: var(--text);
  max-width: 48ch;
  margin-bottom: 0;
}

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

.editorial-grid article h2 {
  margin-bottom: 0.75rem;
}

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

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

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

.legal-body h3 {
  margin-top: 1.25rem;
  color: var(--accent);
}

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

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

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

.contact-email {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
}

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

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

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

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

.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-2);
  outline-offset: 1px;
}

.form-agree {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

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

.form-error {
  display: none;
  color: #e8a0a0;
  font-size: 0.82rem;
  margin-top: 0.35rem;
}

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

.form-status {
  display: none;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: #e8a0a0;
}

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

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

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

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

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

.sitemap-list a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 2.5rem 3rem;
  padding-bottom: 2.5rem;
}

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

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

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

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

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

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

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

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

.footer-notice {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 56ch;
}

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

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

.footer-bottom .cookie-line {
  margin-top: 0.45rem;
  font-size: 0.75rem;
}

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

.consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--accent);
}

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

.consent__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 1.15rem 0 1.25rem;
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
}

.consent__copy h2 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
}

.consent__copy p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.consent__copy a {
  color: var(--accent);
  font-size: 0.82rem;
}

.consent__divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}

.consent__controls {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.1rem;
}

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

.consent__cats {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.consent__cats.is-open {
  max-height: 320px;
  opacity: 1;
}

.consent__cat {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.consent__cat input:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.consent__cat strong {
  color: var(--text);
  font-weight: 600;
}

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

  .hero__grid {
    gap: 1.5rem;
  }

  .hero__photo {
    width: min(100%, 280px);
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

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

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-column: 1 / -1;
    gap: 0;
    padding: 0.5rem 0 0.75rem;
    border-top: 1px solid var(--border);
  }

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

  .nav.is-open .nav-links a,
  .nav.is-open .nav-contact a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: none;
  }

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

  .hero__intro {
    margin-left: 0;
    max-width: 48ch;
  }

  .hero__photo {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-bottom: -48px;
    width: min(100%, 260px);
  }

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

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

  .band__body,
  .band:nth-child(even) .band__body {
    border: none;
    border-top: 1px solid var(--border);
  }

  .band__media {
    min-height: 220px;
  }

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

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

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

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

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

  .consent__divider {
    width: 100%;
    height: 1px;
  }
}

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

  .container {
    width: min(100% - 1.75rem, var(--max));
  }

  .water-row {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

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

  .water-row__action {
    grid-column: 2;
    justify-self: center;
    margin-top: 0.35rem;
  }

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

  .quiet-card__media img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .hero__photo {
    width: 100%;
    max-width: 220px;
  }

  .water-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .water-row__thumb {
    margin: 0 auto;
  }

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

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

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

  .water-row__action .btn,
  .quiet-card__body .btn {
    width: auto;
  }
}
