﻿:root {
  --ink: #16211f;
  --muted: #5c6c68;
  --surface: rgba(255, 255, 255, 0.58);
  --surface-strong: rgba(255, 255, 255, 0.76);
  --line: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(18, 46, 34, 0.18);
  --teal: #019847;
  --coral: #e42228;
  --mint: #ddf8e8;
  --amber: #f6df94;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  background:
    linear-gradient(135deg, rgba(221, 248, 232, 0.9), rgba(255, 255, 255, 0.86) 38%, rgba(246, 223, 148, 0.34)),
    linear-gradient(45deg, rgba(1, 152, 71, 0.2), transparent 42%, rgba(228, 34, 40, 0.14));
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.06) 46%, rgba(255, 255, 255, 0.5)),
    radial-gradient(circle at top left, rgba(1, 152, 71, 0.24), transparent 38%);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 50px rgba(16, 40, 36, 0.16);
  backdrop-filter: blur(24px) saturate(150%);
  transform: translateX(-50%);
}

.brand,
.main-nav,
.header-phone,
.primary-link,
.secondary-link,
button {
  min-height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  overflow: hidden;
  width: min(250px, 34vw);
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo img {
  width: 100%;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 8px 13px;
  color: #273a36;
  font-size: 0.95rem;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.header-phone:hover {
  color: #071311;
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.header-phone {
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  padding: 128px 24px 48px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 15, 13, 0.86), rgba(7, 23, 20, 0.62) 46%, rgba(7, 23, 20, 0.28)),
    linear-gradient(0deg, rgba(4, 15, 13, 0.36), rgba(4, 15, 13, 0.2)),
    url("/assets/rooms/parking.jpg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(236, 250, 244, 0.96), rgba(236, 250, 244, 0));
}

.hero-shell {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 32px;
  margin: auto auto 0;
}

.hero-copy {
  max-width: 680px;
  padding-bottom: 64px;
  color: white;
  text-shadow: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.18rem;
}

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

.primary-link,
.secondary-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.primary-link,
button {
  color: white;
  background: linear-gradient(135deg, var(--teal), #08713a);
  box-shadow: 0 16px 34px rgba(1, 152, 71, 0.26);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: white;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.primary-link:hover,
.secondary-link:hover,
button:hover {
  transform: translateY(-2px);
}

.secondary-button {
  border: 1px solid rgba(1, 152, 71, 0.26);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    var(--shadow);
  backdrop-filter: blur(28px) saturate(160%);
}

.quick-info {
  padding: 0 24px;
  transform: translateY(-28px);
}

.quick-info-grid {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto;
}

.info-pill {
  min-height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 44px rgba(27, 59, 54, 0.1);
  backdrop-filter: blur(20px);
}

.info-pill strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 1.8rem;
  line-height: 1;
}

.info-pill span {
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  display: grid;
  max-width: 720px;
  gap: 4px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.room-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 56px rgba(27, 59, 54, 0.13);
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-content {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.room-type {
  margin-bottom: 5px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 800;
}

.room-content p:not(.room-type) {
  color: var(--muted);
}

.room-content ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-content li {
  position: relative;
  padding-left: 20px;
  color: #30413d;
}

.room-content li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.documents-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1120px) / 2));
  padding-left: max(24px, calc((100% - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(221, 248, 232, 0.58)),
    linear-gradient(90deg, rgba(228, 34, 40, 0.08), rgba(1, 152, 71, 0.12));
}

.documents-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 24px;
}

.documents-teaser .section-heading {
  margin-bottom: 0;
}

.documents-teaser-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.documents-teaser-panel strong,
.documents-teaser-panel span {
  display: block;
}

.documents-teaser-panel strong {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.documents-teaser-panel span {
  color: var(--muted);
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.documents-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.document-card {
  padding: 0;
}

.document-card[id] {
  scroll-margin-top: 120px;
}

.document-card summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  cursor: pointer;
  list-style: none;
}

.document-card summary::-webkit-details-marker {
  display: none;
}

.document-card summary:focus-visible {
  outline: 3px solid rgba(1, 152, 71, 0.32);
  outline-offset: -6px;
}

.document-toggle-icon {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: var(--teal);
}

.document-toggle-icon::before,
.document-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: white;
  transform: translate(-50%, -50%);
}

.document-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.document-card[open] .document-toggle-icon {
  background: var(--coral);
}

.document-card[open] .document-toggle-icon::after {
  opacity: 0;
}

.document-card strong,
.document-card small {
  display: block;
}

.document-card small {
  margin-top: 4px;
  color: var(--muted);
}

.document-card > p {
  margin: 0;
  padding: 0 20px 22px;
  color: #31423f;
}

.documents-page {
  background:
    linear-gradient(135deg, rgba(221, 248, 232, 0.82), rgba(255, 255, 255, 0.92) 42%, rgba(246, 223, 148, 0.38)),
    linear-gradient(110deg, rgba(1, 152, 71, 0.2), transparent 48%, rgba(228, 34, 40, 0.14));
}

.rooms-page {
  background:
    linear-gradient(135deg, rgba(221, 248, 232, 0.86), rgba(255, 255, 255, 0.92) 44%, rgba(246, 223, 148, 0.32)),
    linear-gradient(115deg, rgba(1, 152, 71, 0.2), transparent 48%, rgba(228, 34, 40, 0.12));
}

.documents-hero,
.rooms-hero {
  display: grid;
  min-height: 540px;
  align-items: end;
  padding: 142px 24px 72px;
  color: white;
  background:
    linear-gradient(90deg, rgba(9, 28, 25, 0.78), rgba(9, 28, 25, 0.36) 55%, rgba(9, 28, 25, 0.16)),
    url("/assets/rooms/room-eight-1.jpg") center / cover;
}

.rooms-hero {
  background:
    linear-gradient(90deg, rgba(9, 28, 25, 0.8), rgba(9, 28, 25, 0.4) 55%, rgba(9, 28, 25, 0.14)),
    url("/assets/rooms/room-eight-3.jpg") center / cover;
}

.privacy-hero {
  background:
    linear-gradient(90deg, rgba(9, 28, 25, 0.82), rgba(9, 28, 25, 0.42) 55%, rgba(9, 28, 25, 0.16)),
    url("/assets/rooms/reception.jpg") center / cover;
}

.documents-hero-copy,
.rooms-hero-copy {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.documents-hero-copy .eyebrow,
.rooms-hero-copy .eyebrow {
  color: var(--mint);
}

.documents-hero-copy h1,
.rooms-hero-copy h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 6rem);
}

.documents-hero-copy p:not(.eyebrow),
.rooms-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.12rem;
}

.room-detail-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1120px) / 2));
  padding-left: max(24px, calc((100% - 1120px) / 2));
}

.room-detail-list {
  display: grid;
  width: min(1120px, 100%);
  gap: 18px;
  margin: 0 auto;
}

.room-detail-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  overflow: hidden;
  padding: 12px;
}

.room-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
}

.room-carousel {
  position: relative;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  outline: 0;
}

.room-carousel-track {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.42);
}

.room-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  opacity: 0;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.room-carousel-slide.is-active {
  opacity: 1;
}

.room-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  padding: 0;
  color: white;
  background: rgba(9, 28, 25, 0.46);
  box-shadow: 0 14px 30px rgba(9, 28, 25, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
  font-size: 0;
  line-height: 0;
  transform: translateY(-50%);
}

.room-carousel-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.room-carousel-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.room-carousel-button:hover {
  background: rgba(1, 152, 71, 0.72);
  transform: translateY(-50%) scale(1.04);
}

.room-carousel-button-prev {
  left: 14px;
}

.room-carousel-button-prev::before {
  transform: translate(calc(-50% - 1px), calc(-50% - 3px)) rotate(-45deg);
}

.room-carousel-button-prev::after {
  transform: translate(calc(-50% - 1px), calc(-50% + 5px)) rotate(45deg);
}

.room-carousel-button-next {
  right: 14px;
}

.room-carousel-button-next::before {
  transform: translate(calc(-50% + 1px), calc(-50% - 3px)) rotate(45deg);
}

.room-carousel-button-next::after {
  transform: translate(calc(-50% + 1px), calc(-50% + 5px)) rotate(-45deg);
}

.room-carousel-dots {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.room-carousel-dot {
  width: 10px;
  min-height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 18px rgba(9, 28, 25, 0.16);
}

.room-carousel-dot.is-active {
  background: var(--teal);
}

.room-detail-content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 18px 18px 18px 0;
}

.room-detail-content h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.room-detail-content p:not(.eyebrow) {
  margin-bottom: 0;
  color: #31423f;
  font-size: 1.03rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-features span {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 8px 12px;
  color: #30413d;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.rate-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rate-item {
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.rate-item span,
.rate-item strong,
.rate-item small {
  display: block;
}

.rate-item span {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rate-item strong {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.12;
}

.rate-item small {
  margin-top: 7px;
  color: var(--muted);
  font-weight: 700;
}

.room-price-note {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 18px auto 0;
  padding: 24px;
}

.room-price-note h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.room-price-note p {
  margin-bottom: 0;
  color: #31423f;
}

.legal-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1120px) / 2));
  padding-left: max(24px, calc((100% - 1120px) / 2));
}

.legal-card {
  display: grid;
  width: min(1120px, 100%);
  gap: 22px;
  margin: 0 auto 18px;
  padding: 24px;
  scroll-margin-top: 120px;
}

.legal-card:last-child {
  margin-bottom: 0;
}

.legal-text {
  max-width: 920px;
}

.legal-text h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.15rem;
}

.documents-grid-wide {
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.document-full {
  display: block;
  overflow: hidden;
  padding: 0;
}

.document-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-width: 0;
}

.document-card summary .document-card-head {
  flex: 1 1 auto;
}

.document-card-head h2 {
  margin: 0;
  font-size: clamp(1.28rem, 2.2vw, 1.75rem);
}

.document-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  font-weight: 900;
}

.document-text {
  display: grid;
  gap: 14px;
  padding: 0 24px 24px;
  color: #31423f;
}

.document-text strong {
  color: var(--ink);
  font-weight: 900;
}

.document-text p,
.document-text ul {
  margin: 0;
  padding: 0;
}

.document-text ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.document-text li {
  position: relative;
  padding-left: 22px;
}

.document-text li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
  gap: 12px;
}

.photo-strip img {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 20px 52px rgba(27, 59, 54, 0.14);
}

.photo-strip img:nth-child(even) {
  margin-top: 34px;
}

.location-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 24px;
}

.location-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.route-list span {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 10px 14px;
  color: #30413d;
  background: rgba(255, 255, 255, 0.62);
}

.map-frame {
  overflow: hidden;
  min-height: 460px;
  padding: 10px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  border-radius: var(--radius);
  filter: saturate(0.9) contrast(0.98);
}

.sport-section {
  padding-top: 18px;
}

.sport-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sport-card {
  display: grid;
  min-height: 280px;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.sport-time {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
}

.sport-card h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.sport-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.sport-card strong {
  align-self: end;
  color: #30413d;
}

.site-footer {
  display: flex;
  width: min(1120px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 32px 0 44px;
  color: #31423f;
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 20;
  display: flex;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--ink);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-copy {
  max-width: 650px;
}

.cookie-consent-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-consent-copy a {
  color: var(--green-dark);
  font-weight: 800;
}

.cookie-consent-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-consent-actions button {
  min-width: 138px;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    padding-top: 154px;
  }

  .hero-shell,
  .location-section,
  .documents-teaser,
  .room-detail-card,
  .room-price-note {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .quick-info-grid,
  .rooms-grid,
  .documents-grid,
  .sport-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .documents-grid-wide {
    grid-template-columns: 1fr;
  }

  .room-detail-content {
    padding: 4px 8px 12px;
  }

  .room-detail-media img {
    min-height: 320px;
  }

  .room-carousel,
  .room-carousel-track {
    min-height: 320px;
  }

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

  .photo-strip img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(178px, 48vw);
    padding: 4px 7px;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-phone {
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .hero {
    padding: 158px 16px 34px;
  }

  .documents-hero,
  .rooms-hero {
    min-height: 520px;
    padding: 160px 16px 58px;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-consent {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: calc(100% - 32px);
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }

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

  .cookie-consent-actions button {
    width: 100%;
  }

  .primary-link,
  .secondary-link,
  button {
    width: 100%;
  }

  .documents-teaser-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-info {
    padding: 0 16px;
    transform: none;
  }

  .quick-info-grid,
  .rooms-grid,
  .documents-grid,
  .sport-grid,
  .rate-list,
  .room-price-note,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .section {
    width: calc(100% - 32px);
    padding: 58px 0;
  }

  .documents-section,
  .room-detail-section,
  .legal-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .room-detail-card {
    padding: 10px;
  }

  .room-detail-media img {
    min-height: 260px;
  }

  .room-carousel,
  .room-carousel-track {
    min-height: 260px;
  }

  .room-detail-content {
    padding: 4px;
  }

  .room-price-note {
    padding: 18px;
  }

  .document-full {
    padding: 0;
  }

  .document-card summary {
    padding: 18px;
  }

  .document-text {
    padding: 0 18px 18px;
  }

  .legal-card {
    padding: 18px;
  }

  .document-card-head {
    grid-template-columns: 1fr;
  }

  .photo-strip img,
  .photo-strip img:nth-child(even) {
    height: 250px;
    margin-top: 0;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
    height: 360px;
  }

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

.main-nav a[aria-current="page"] {
  color: #071311;
  background: rgba(255, 255, 255, 0.78);
}

.document-file-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 10px 14px;
  color: white;
  background: linear-gradient(135deg, var(--teal), #08713a);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(1, 152, 71, 0.22);
}

.admin-hero {
  min-height: 440px;
}

.admin-section {
  display: grid;
  gap: 18px;
  padding-top: 58px;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px;
}

.admin-nav form {
  margin-left: auto;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.admin-card {
  padding: 24px;
}

.admin-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.admin-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.admin-helper {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-editor-card {
  display: grid;
  gap: 22px;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-card-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.admin-photo-count {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 7px 12px;
  color: #08713a;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.admin-thumb {
  width: 170px;
  aspect-ratio: 4 / 3;
  flex: 0 0 170px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(27, 59, 54, 0.12);
}

.admin-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.admin-photo-tile {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(255, 255, 255, 0.58);
}

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

.admin-photo-options {
  display: grid;
  gap: 6px;
}

.admin-photo-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #31423f;
  font-size: 0.9rem;
  font-weight: 800;
}

.admin-photo-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.admin-photo-options input[type="checkbox"] {
  accent-color: var(--coral);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-span-2 {
  grid-column: 1 / -1;
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: #31423f;
  font-weight: 800;
}

.admin-field-hint {
  color: rgba(49, 66, 63, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.admin-form input:not([type="checkbox"]),
.admin-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.admin-form textarea {
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus {
  border-color: rgba(1, 152, 71, 0.62);
  box-shadow: 0 0 0 4px rgba(1, 152, 71, 0.14);
}

.admin-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.admin-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--teal);
}

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

.totp-setup {
  display: grid;
  gap: 14px;
}

.totp-qr-box {
  display: grid;
  width: min(260px, 100%);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  text-align: center;
}

.totp-qr {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  image-rendering: pixelated;
}

.totp-secret-box {
  display: grid;
  gap: 7px;
  color: #31423f;
  font-weight: 800;
}

.totp-secret-box code,
.totp-uri {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 0.94rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.totp-uri-label {
  display: grid;
  gap: 7px;
  color: #31423f;
  font-weight: 800;
}

.totp-uri {
  resize: vertical;
}

.admin-sticky-actions {
  position: sticky;
  bottom: 16px;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(27, 59, 54, 0.13);
  backdrop-filter: blur(22px) saturate(150%);
}

.admin-ghost-button {
  border: 1px solid rgba(1, 152, 71, 0.28);
  color: #08713a;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: none;
}

.admin-danger-button {
  background: linear-gradient(135deg, var(--coral), #a81217);
  box-shadow: 0 16px 34px rgba(228, 34, 40, 0.18);
}

.admin-notice,
.admin-error {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.admin-notice {
  color: #08713a;
}

.admin-error {
  color: #a81217;
}

.login-card {
  width: min(520px, 100%);
}

@media (max-width: 900px) {
  .admin-dashboard,
  .admin-security-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-thumb {
    width: 100%;
    flex-basis: auto;
  }

  .admin-nav {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-nav form {
    margin-left: 0;
  }
}

