:root {
  --cream: #f6f1e8;
  --paper: #fffaf3;
  --ink: #1c1917;
  --ink-soft: #4a433c;
  --pine: #2f4a3c;
  --pine-deep: #1e3329;
  --gold: #c4a574;
  --wood: #8b5e3c;
  --snow: #ffffff;
  --line: rgba(28, 25, 23, 0.12);
  --shadow: 0 24px 60px rgba(28, 25, 23, 0.12);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.4em;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

a {
  color: var(--pine);
  text-decoration: none;
}

a:hover {
  color: var(--wood);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section,
.hero {
  scroll-margin-top: 84px;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover:not(:disabled) {
  background: #d4b88a;
  color: var(--ink);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--snow);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--snow);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.coming-soon {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wood);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

.brand-text small {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.2rem;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.35rem;
}

.lang-btn {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.15rem 0.2rem;
}

.lang-btn.is-active {
  color: var(--pine);
  font-weight: 600;
}

.lang-sep {
  color: var(--line);
  opacity: 0.9;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 28px;
  height: 18px;
  cursor: pointer;
  position: relative;
}

.nav-toggle-label span,
.nav-toggle-label::before,
.nav-toggle-label::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
}

.nav-toggle-label span {
  top: 8px;
}

.nav-toggle-label::before {
  top: 0;
}

.nav-toggle-label::after {
  bottom: 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: end start;
  color: var(--snow);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(20, 16, 12, 0.25) 0%,
    rgba(20, 16, 12, 0.55) 55%,
    rgba(20, 16, 12, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 5rem;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.hero-content .eyebrow,
.hero-lead {
  color: rgba(255, 250, 243, 0.86);
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.15rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.intro {
  background: var(--paper);
}

.highlights {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 0.55rem 0 0.55rem 1.2rem;
  position: relative;
  border-top: 1px solid var(--line);
}

.highlights li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 1.05rem;
}

.intro-media {
  display: grid;
  gap: 1rem;
}

.intro-photo {
  margin: 0;
}

.intro-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-media .intro-photo img {
  height: 260px;
}

.intro-media .intro-photo:first-child img {
  height: 300px;
}

.intro-photo figcaption {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.rooms {
  background: var(--cream);
}

.commons {
  background: var(--paper);
}

.room-grid,
.commons-grid,
.activity-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .room-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .commons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .commons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.room-card,
.commons-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

a.room-card {
  display: block;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.room-card:hover,
a.commons-card:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(28, 25, 23, 0.16);
}

a.commons-card {
  display: block;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.room-card:hover .card-link-hint,
a.commons-card:hover .card-link-hint {
  color: var(--wood);
}

.ski-highlights {
  margin-bottom: 2rem;
}

.piste-map {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper);
}

.piste-map > img {
  width: 100%;
  height: auto;
  display: block;
}

.map-pin {
  position: absolute;
  left: 88%;
  bottom: 28%;
  top: auto;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.map-pin-arrow {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid #c62828;
  border-bottom: 0;
  animation: pin-bounce 1.6s ease-in-out infinite;
}

.map-pin-label {
  display: none;
}

@keyframes pin-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.piste-map figcaption {
  padding: 0.9rem 1.1rem 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--cream);
}

.tariff-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .tariff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tariff-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}

.tariff-card h3 {
  margin-bottom: 0.25rem;
}

.tariff-note {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.tariff-table th,
.tariff-table td {
  text-align: left;
  padding: 0.55rem 0.35rem;
  border-bottom: 1px solid var(--line);
}

.tariff-table th {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

@media (max-width: 640px) {
  .map-pin {
    left: 86%;
    bottom: 26%;
  }

  .map-pin-arrow {
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 20px;
  }
}

.partner-media {
  display: grid;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 520px) {
  .partner-media {
    grid-template-columns: 1.4fr 0.85fr;
  }
}

.partner-media .partner-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.partner-media .partner-photo img {
  width: 100%;
  height: min(320px, 50vw);
  object-fit: cover;
}

.partner-media .partner-logo {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 160px;
}

.partner-media .partner-logo img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.itinerary-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 760px) {
  .itinerary-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.itinerary-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}

.itinerary-card h3 {
  margin-bottom: 0.35rem;
}

.itinerary-meta {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.place-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 760px) {
  .place-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.place-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  outline: none;
}

.place-card h3 {
  margin-bottom: 0.35rem;
}

.place-card > p:last-of-type {
  margin-bottom: 0;
}

.place-card-details {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.25s ease;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.place-card-details p {
  margin: 0 0 0.45rem;
  color: inherit;
}

.place-card-details a {
  color: var(--pine);
}

.place-maps {
  display: inline-block;
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
  .place-card:hover,
  .place-card:focus-within {
    transform: scale(1.045);
    z-index: 2;
    box-shadow: 0 28px 70px rgba(28, 25, 23, 0.16);
  }

  .place-card:hover .place-card-details,
  .place-card:focus-within .place-card-details {
    max-height: 220px;
    opacity: 1;
    margin-top: 0.95rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .place-card-details {
    max-height: none;
    opacity: 1;
    margin-top: 0.95rem;
  }
}

.card-link-hint {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine);
  font-weight: 500;
}

.btn-outline {
  border-color: var(--pine);
  color: var(--pine);
  background: transparent;
}

.btn-outline:hover {
  background: var(--pine);
  color: var(--snow);
}

.page-hero {
  position: relative;
  min-height: min(52vh, 520px);
  display: grid;
  align-items: end;
  color: var(--snow);
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 51, 41, 0.25) 0%,
    rgba(30, 51, 41, 0.72) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.2rem;
  max-width: 720px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--snow);
}

.page-hero p {
  color: rgba(255, 250, 243, 0.88);
  max-width: 36rem;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.rooms-detail-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .rooms-detail-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.rooms-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.amenity-panel {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: var(--shadow);
}

.amenity-panel h3 {
  margin-bottom: 1rem;
}

.amenity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.amenity-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
}

.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.rooms-gallery {
  background: var(--paper);
}

.photo-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .photo-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item--wide {
    grid-column: span 2;
  }
}

@media (min-width: 640px) {
  .photo-gallery--duo {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-gallery--ski {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-gallery--ski .gallery-item--small {
    grid-column: 1 / -1;
    width: min(100%, 380px);
    justify-self: center;
  }

  .photo-gallery--ski .gallery-item--small img {
    height: 200px;
  }
}

@media (min-width: 980px) {
  .photo-gallery--ski {
    grid-template-columns: repeat(2, 1fr);
  }
}

.photo-gallery--sauna {
  grid-template-columns: 1fr;
  max-width: 520px;
}

.photo-gallery--sauna .gallery-item img {
  height: 360px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item img.gallery-img--bottom {
  object-position: center 88%;
}

.gallery-item img.gallery-img--rando-focus {
  object-position: center 76%;
}

.gallery-item img.gallery-img--skiers,
.img-focus--skiers {
  object-position: center 72%;
}

.gallery-item img.gallery-img--panorama {
  object-position: center 62%;
}

.gallery-item img.gallery-img--lift {
  object-position: center 70%;
}

.gallery-item img.gallery-img--sunset {
  object-position: center 64%;
}

.gallery-item img.gallery-img--center {
  object-position: center center;
}

.gallery-item img.gallery-img--mysfl {
  object-position: center 70%;
}

.gallery-item img.gallery-img--piste {
  object-position: center 72%;
}

.gallery-item img.gallery-img--sauna,
.img-focus--right {
  object-position: right center;
}

.gallery-item--wide img {
  height: 320px;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  padding: 0.85rem 1.1rem 1.05rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.commons-note {
  margin: 1.6rem auto 0;
  max-width: 42rem;
  text-align: center;
  color: var(--ink-soft);
  line-height: 1.65;
}

.rooms-booking .booking-panel {
  grid-template-columns: 1fr;
}

.commons .commons-card {
  background: var(--cream);
}

.room-card img,
.commons-card img,
.activity-card--photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.room-card-body,
.commons-card-body,
.activity-card {
  padding: 1.3rem 1.35rem 1.5rem;
}

a.activity-card {
  display: block;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.activity-card:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(28, 25, 23, 0.16);
}

a.activity-card:hover .card-link-hint {
  color: var(--wood);
}

.spot-section--alt {
  background: var(--paper);
}

.spot-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .spot-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .spot-layout--reverse .spot-copy {
    order: 2;
  }

  .spot-layout--reverse .spot-photo,
  .spot-layout--reverse .partner-media {
    order: 1;
  }
}

.spot-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.spot-photo img {
  width: 100%;
  height: min(420px, 55vw);
  object-fit: cover;
}

.spot-img--balneo {
  object-position: left bottom;
}

.spot-photo figcaption {
  padding: 0.85rem 1.1rem 1.05rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--cream);
}

.spot-meta {
  display: grid;
  gap: 1.1rem;
  margin: 1.4rem 0 1rem;
}

.spot-meta dt {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.spot-meta dd {
  margin: 0;
  color: var(--ink-soft);
}

.activity-card--photo {
  padding: 0;
  overflow: hidden;
}

.activity-card--photo .activity-card-body {
  padding: 1.3rem 1.35rem 1.5rem;
}

.booking {
  background: var(--pine-deep);
  color: var(--snow);
}

.booking h2,
.booking p,
.booking .eyebrow {
  color: var(--snow);
}

.booking p {
  color: rgba(255, 250, 243, 0.82);
}

.booking-panel {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .booking-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}

.booking-form {
  display: grid;
  gap: 0.9rem;
  background: rgba(255, 250, 243, 0.08);
  border: 1px solid rgba(255, 250, 243, 0.14);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  padding: 0 0.85rem;
  font: inherit;
  background: var(--paper);
  color: var(--ink);
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.booking-request {
  max-width: 760px;
}

.booking-dates-first {
  display: grid;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

@media (min-width: 640px) {
  .booking-dates-first {
    grid-template-columns: repeat(2, 1fr);
  }
}

.booking-details {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.booking-details.is-disabled {
  opacity: 0.45;
}

.booking-stock {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(47, 74, 60, 0.1);
  color: var(--pine);
  font-size: 0.92rem;
  font-weight: 500;
}

.booking-stock.is-empty {
  background: rgba(139, 94, 60, 0.12);
  color: var(--wood);
}

.booking-blocked {
  margin: 0 0 1.25rem;
  color: var(--wood);
}

.booking-request-form {
  display: grid;
  gap: 1.2rem;
}

.booking-request-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .booking-request-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-request-full {
    grid-column: 1 / -1;
  }
}

.booking-request-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.booking-request-form input,
.booking-request-form select,
.booking-request-form textarea {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font: inherit;
  background: var(--paper);
  color: var(--ink);
}

.booking-request-form textarea {
  min-height: 110px;
  resize: vertical;
}

.booking-feedback {
  margin: 0.35rem 0 0;
  color: var(--pine);
}

.booking-feedback.is-error {
  color: var(--wood);
}

.admin-dispos-link {
  margin-top: 2rem;
  font-size: 0.9rem;
}

.admin-dispos-section .container.admin-dispos-container {
  max-width: min(1180px, calc(100vw - 1.5rem));
}

.admin-calendar-root {
  margin-top: 0.5rem;
}

.admin-cal-help {
  margin: 0 0 0.55rem;
}

.admin-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin: 0 0 0.85rem;
}

.admin-cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.admin-cal-legend-item i {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 2px;
  border: 1px solid rgba(47, 74, 60, 0.2);
}

.admin-cal-legend-item i.is-am {
  background: linear-gradient(90deg, rgba(139, 94, 60, 0.45) 0 100%, transparent 0);
}

.admin-cal-legend-item i.is-pm {
  background: linear-gradient(90deg, transparent 0 0, rgba(47, 74, 60, 0.45) 0 100%);
  background: rgba(47, 74, 60, 0.45);
}

.admin-calendar-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  -webkit-overflow-scrolling: touch;
  user-select: none;
  touch-action: pan-x;
}

.admin-calendar {
  display: grid;
  grid-template-columns: 8.75rem repeat(var(--days), 3rem);
  width: max-content;
  min-width: 100%;
}

.admin-cal-corner,
.admin-cal-day-head,
.admin-cal-room,
.admin-cal-cell,
.admin-cal-month {
  border-right: 1px solid rgba(47, 74, 60, 0.08);
  border-bottom: 1px solid rgba(47, 74, 60, 0.08);
}

.admin-cal-corner {
  position: sticky;
  left: 0;
  z-index: 4;
  background: #f3eee4;
  padding: 0.55rem 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-end;
}

.admin-cal-corner-month {
  align-items: center;
  z-index: 5;
  background: #e8e0d2;
}

.admin-cal-month {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  min-height: 2.2rem;
  background: linear-gradient(180deg, #ebe3d4 0%, #e4dccb 100%);
  color: var(--pine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: inset 2px 0 0 rgba(47, 74, 60, 0.28);
}

.admin-cal-month.is-year-start {
  background: linear-gradient(180deg, #d9cfc0 0%, #d0c4b2 100%);
  color: var(--ink);
  box-shadow: inset 3px 0 0 rgba(47, 74, 60, 0.55);
  font-weight: 700;
}

.admin-cal-day-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  padding: 0.35rem 0.1rem 0.3rem;
  min-height: 3.2rem;
  background: #f7f3eb;
  font-size: 0.68rem;
  color: var(--ink-soft);
}

.admin-cal-halves-hint {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-top: 0.1rem;
  font-size: 0.55rem;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.7;
}

.admin-cal-halves-hint em {
  font-style: normal;
  text-align: center;
}

.admin-cal-day-head.is-today {
  background: rgba(47, 74, 60, 0.14);
  color: var(--pine);
  font-weight: 600;
}

.admin-cal-day-head.is-past {
  opacity: 0.55;
}

.admin-cal-day-head.is-month-start,
.admin-cal-cell.is-month-start {
  box-shadow: inset 2px 0 0 rgba(47, 74, 60, 0.28);
}

.admin-cal-day-head.is-year-start,
.admin-cal-cell.is-year-start {
  box-shadow: inset 3px 0 0 rgba(47, 74, 60, 0.55);
}

.admin-cal-wd {
  text-transform: lowercase;
}

.admin-cal-num {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.admin-cal-day-head.is-today .admin-cal-num {
  color: var(--pine);
}

.admin-cal-room {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--paper);
  padding: 0.45rem 0.65rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  min-height: 2.6rem;
}

.admin-cal-room strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.admin-cal-room small {
  font-size: 0.68rem;
  color: var(--ink-soft);
}

.admin-cal-cell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  padding: 1px;
  min-height: 2.6rem;
  background: rgba(47, 74, 60, 0.06);
  position: relative;
}

.admin-cal-cell.is-past {
  background: rgba(0, 0, 0, 0.04);
}

.admin-cal-cell.is-today-col {
  background: rgba(47, 74, 60, 0.1);
}

.admin-cal-half {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  min-height: 100%;
  background: transparent;
  cursor: cell;
  position: relative;
  transition: background 0.12s ease;
}

.admin-cal-half:hover:not(.is-booked) {
  background: rgba(47, 74, 60, 0.1);
}

.admin-cal-half.is-painting {
  background: rgba(47, 74, 60, 0.3) !important;
}

.admin-cal-half.is-ghost-source {
  opacity: 0.28;
}

.admin-cal-half.is-booked {
  cursor: grab;
}

.admin-cal-half.is-edge-start,
.admin-cal-half.is-edge-end {
  cursor: ew-resize;
}

.admin-cal-half.is-kind-client {
  background: rgba(139, 94, 60, 0.58);
}

.admin-cal-half.is-kind-friend {
  background: rgba(47, 74, 60, 0.62);
}

.admin-cal-half.is-kind-closure {
  background: rgba(110, 110, 105, 0.42);
}

.admin-cal-half.is-booking-start {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: visible;
  z-index: 1;
}

.admin-cal-half.is-booking-end {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.admin-cal-half.is-kind-client:hover {
  background: rgba(139, 94, 60, 0.75);
}

.admin-cal-half.is-kind-friend:hover {
  background: rgba(47, 74, 60, 0.78);
}

.admin-cal-half.is-kind-closure:hover {
  background: rgba(110, 110, 105, 0.55);
}

.admin-cal-guest {
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  max-width: min(12rem, 36vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fffaf3;
  text-shadow: 0 1px 2px rgba(40, 24, 12, 0.45);
  pointer-events: none;
  z-index: 2;
}

.admin-booking-dialog {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  max-width: 22rem;
  width: calc(100% - 2rem);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.admin-booking-dialog::backdrop {
  background: rgba(28, 36, 30, 0.45);
}

.admin-booking-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem 1.35rem 1.35rem;
}

.admin-booking-form h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.admin-booking-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.admin-booking-form input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 0.85rem;
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  background: var(--cream);
}

.admin-booking-kind-label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.admin-booking-kinds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.admin-kind-btn {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 600;
  color: #fffaf3;
}

.admin-kind-btn.is-friend {
  background: rgba(47, 74, 60, 0.9);
}

.admin-kind-btn.is-client {
  background: rgba(139, 94, 60, 0.9);
}

.admin-kind-btn:hover {
  filter: brightness(1.05);
}

.admin-booking-cancel {
  width: 100%;
}

@media (min-width: 860px) {
  .booking-panel:has(> div:only-child) {
    grid-template-columns: 1fr;
  }
}

.activities {
  background: var(--paper);
}

.activity-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.contact address {
  font-style: normal;
  margin-bottom: 1rem;
}

.muted {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.map-frame {
  min-height: 320px;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #e8e4dc;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-link {
  font-weight: 500;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 250, 243, 0.7);
  padding: 1.6rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem 1.5rem;
}

.footer-brand {
  display: grid;
  gap: 0.55rem;
}

.footer-contact {
  margin: 0;
  line-height: 1.55;
  color: rgba(255, 250, 243, 0.85);
}

.footer-contact strong {
  color: rgba(255, 250, 243, 0.95);
  font-weight: 600;
}

.site-footer a {
  color: rgba(255, 250, 243, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fffaf3;
  text-decoration: underline;
}

.site-footer p {
  margin: 0;
  color: inherit;
}

@media (max-width: 820px) {
  .nav-toggle-label {
    display: block;
    z-index: 22;
  }

  .site-nav {
    position: absolute;
    inset: 76px 0 auto;
    background: var(--paper);
    flex-direction: column;
    padding: 1rem 1.25rem 1.4rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}
