:root {
  --ink: #14201c;
  --ink-soft: #3a4a44;
  --paper: #f3f6f4;
  --paper-deep: #e4ebe7;
  --panel: #ffffff;
  --accent: #8f2d3a;
  --accent-deep: #6e1f2a;
  --brass: #a67c3d;
  --line: #c9d4ce;
  --ok: #2f6b4f;
  --max: 1140px;
  --radius: 4px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(143, 45, 58, 0.08), transparent 55%),
    radial-gradient(900px 420px at 90% 0%, rgba(166, 124, 61, 0.1), transparent 50%),
    linear-gradient(180deg, #f7f9f8 0%, var(--paper) 40%, #eef3f0 100%);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  background: transparent;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand span {
  display: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(20, 32, 28, 0.35);
  color: #fff;
  padding: 0.45rem 0.7rem;
  font: inherit;
  cursor: pointer;
}

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

.nav-list a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.active {
  color: #fff;
  border-bottom-color: var(--brass);
}

/* Inner pages: dark text nav */
body:not(.is-home) .site-header {
  position: sticky;
  top: 0;
  background: rgba(243, 246, 244, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

body:not(.is-home) .brand {
  color: var(--ink);
}

body:not(.is-home) .nav-list a {
  color: var(--ink-soft);
}

body:not(.is-home) .nav-list a:hover,
body:not(.is-home) .nav-list a:focus-visible,
body:not(.is-home) .nav-list a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

body:not(.is-home) .nav-toggle {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 24, 20, 0.82) 0%, rgba(12, 24, 20, 0.55) 48%, rgba(12, 24, 20, 0.28) 100%),
    linear-gradient(0deg, rgba(12, 24, 20, 0.75) 0%, transparent 42%);
}

.hero-content {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 4.5rem;
  max-width: 640px;
  animation: rise 0.9s ease both;
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.94);
}

.hero .lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(243, 246, 244, 0.88);
  font-size: 1.02rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-deep);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

body:not(.is-home) .btn-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: var(--panel);
}

body:not(.is-home) .btn-secondary:hover,
body:not(.is-home) .btn-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 600;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

/* Benefits — not cards: numbered rail */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit {
  padding: 1.6rem 1.3rem 1.8rem;
  border-right: 1px solid var(--line);
  animation: fade-up 0.7s ease both;
}

.benefit:nth-child(2) {
  animation-delay: 0.1s;
}

.benefit:nth-child(3) {
  animation-delay: 0.2s;
  border-right: 0;
}

.benefit-num {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}

.benefit h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.benefit p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* Gallery mosaic */
.gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.gallery figure:first-child {
  grid-row: span 2;
  min-height: 420px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  background: linear-gradient(transparent, rgba(12, 24, 20, 0.78));
}

/* Visit / contact */
.visit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.visit-copy {
  padding: 0.4rem 0;
}

.visit-copy h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.visit-copy > p {
  color: var(--ink-soft);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--brass);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-list a {
  color: var(--accent);
  font-weight: 600;
}

.visit-visual {
  min-height: 360px;
  background:
    linear-gradient(160deg, rgba(20, 32, 28, 0.55), rgba(143, 45, 58, 0.35)),
    url("../img/hall-lounge.jpg") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #fff;
}

.visit-visual p {
  margin: 0 0 0.9rem;
  max-width: 22rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.25;
}

.map-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.map-link {
  display: block;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(12, 24, 20, 0.35);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.map-link:hover,
.map-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* FAQ */
.faq {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-toggle {
  width: 100%;
  text-align: left;
  padding: 1.05rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-toggle::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
}

.faq-item.open .faq-toggle::after {
  content: "–";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  color: var(--ink-soft);
}

.faq-item.open .faq-content {
  max-height: 220px;
}

.faq-content p {
  margin: 0 0 1rem;
}

/* Inner pages */
.page-content {
  padding: 3.5rem 0 4rem;
}

.page-content h1 {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
}

.page-content article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  margin-bottom: 1rem;
}

.page-content h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.page-content p,
.page-content li {
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  margin-top: 1rem;
  padding: 2.2rem 0 2.6rem;
  background: #12201c;
  color: rgba(243, 246, 244, 0.78);
}

.site-footer p {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 24, 20, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 80;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  width: min(100%, 500px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--ink);
  animation: rise 0.35s ease;
}

.modal h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
}

.modal p {
  color: var(--ink-soft);
}

.modal .btn-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.age-ok {
  display: inline-block;
  margin: 0.4rem 0 0.2rem;
  font-weight: 700;
  color: var(--ok);
  font-size: 0.9rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .benefits,
  .visit,
  .gallery {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .gallery figure:first-child {
    grid-row: auto;
    min-height: 280px;
  }

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

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

  .site-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 1rem;
    right: 1rem;
    background: #12201c;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  body:not(.is-home) .site-nav {
    background: var(--panel);
    border-color: var(--line);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.55rem;
  }

  .hero-content {
    margin-bottom: 3rem;
  }

  .hero-brand {
    font-size: clamp(2.4rem, 14vw, 3.4rem);
  }
}
