:root {
  --resort-cream: #f8f0e3;
  --resort-sand: #ead7be;
  --resort-gold: #bc8247;
  --resort-cocoa: #2f1c11;
  --resort-espresso: #4a3021;
  --resort-forest: #445844;
  --resort-line: rgba(73, 49, 30, 0.12);
  --resort-line-strong: rgba(73, 49, 30, 0.2);
  --resort-surface: rgba(255, 252, 247, 0.8);
  --resort-surface-strong: rgba(255, 250, 244, 0.92);
  --resort-shadow: 0 30px 70px rgba(48, 29, 17, 0.16);
  --resort-shadow-soft: 0 20px 38px rgba(48, 29, 17, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--resort-cocoa);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(74, 48, 33, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(74, 48, 33, 0.025) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(188, 130, 71, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(68, 88, 68, 0.18), transparent 26%),
    linear-gradient(180deg, #fcf7f1 0%, #f4eadb 46%, #f8f1e8 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.is-hidden {
  display: none !important;
}

.resort-site-shell {
  width: min(1220px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

#siteHeader,
#siteFooter {
  position: relative;
  z-index: 3;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: start;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid rgba(78, 53, 34, 0.08);
  border-radius: 30px;
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 18px 46px rgba(48, 29, 17, 0.09);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: grid;
  gap: 10px;
}

.brand-lockup__logo,
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(78, 53, 34, 0.1);
  box-shadow: 0 12px 26px rgba(46, 28, 17, 0.08);
}

.brand-lockup__logo {
  width: 88px;
  height: 88px;
  padding: 12px;
}

.site-footer__logo {
  width: 68px;
  height: 68px;
  padding: 10px;
}

.brand-lockup__logo img,
.site-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-lockup__eyebrow,
.hero-panel__tag,
.section-heading__eyebrow,
.booking-panel__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--resort-gold);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(188, 130, 71, 0.16);
}

.brand-lockup h1,
.story-hero h1,
.hero-panel h2,
.story-hero h2,
.detail-hero h2,
.section-heading h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

.brand-lockup h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.site-header__cluster {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(78, 53, 34, 0.1);
  box-shadow: 0 14px 28px rgba(48, 29, 17, 0.08);
  backdrop-filter: blur(14px);
}

.language-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 48px;
  height: 36px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: rgba(47, 28, 17, 0.68);
  background: transparent;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.language-switcher__btn:hover {
  transform: translateY(-1px);
  background: rgba(188, 130, 71, 0.12);
  color: var(--resort-cocoa);
}

.language-switcher__btn.is-active {
  color: #fff9f2;
  background: linear-gradient(135deg, #c88b4a, #9b5f2d);
  box-shadow: 0 10px 20px rgba(154, 92, 42, 0.22);
}

.language-switcher__flag {
  font-size: 15px;
  line-height: 1;
}

.language-switcher__code {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.language-switcher--drawer {
  justify-content: center;
  width: 100%;
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(78, 53, 34, 0.09);
  backdrop-filter: blur(14px);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  color: rgba(47, 28, 17, 0.78);
  transition: 0.2s ease;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--resort-cocoa);
  background: rgba(188, 130, 71, 0.16);
}

.site-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px rgba(48, 29, 17, 0.12);
}

.site-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--resort-cocoa);
  transition: 0.2s ease;
}

.site-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.site-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-header__contact {
  max-width: 300px;
  padding-top: 14px;
  text-align: right;
  color: rgba(47, 28, 17, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-drawer {
  display: none;
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .site-header,
[dir="rtl"] .hero-panel,
[dir="rtl"] .detail-hero__layout,
[dir="rtl"] .site-footer__main,
[dir="rtl"] .story-hero--split,
[dir="rtl"] .location-layout {
  direction: rtl;
}

[dir="rtl"] .site-header__contact,
[dir="rtl"] .booking-date-trigger,
[dir="rtl"] .booking-form input,
[dir="rtl"] .booking-form select,
[dir="rtl"] .booking-form textarea,
[dir="rtl"] .section-heading,
[dir="rtl"] .story-copy,
[dir="rtl"] .contact-card,
[dir="rtl"] .site-footer__detail {
  text-align: right;
}

[dir="rtl"] .reviews-carousel__track {
  direction: rtl;
}

.hero-panel,
.section-block,
.site-footer,
.story-hero,
.detail-hero,
.story-card,
.chalet-card,
.contact-card {
  position: relative;
  border: 1px solid var(--resort-line);
  background: var(--resort-surface);
  backdrop-filter: blur(16px);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 430px);
  gap: 28px;
  margin-bottom: 26px;
  padding: 32px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(52, 31, 18, 0.94), rgba(92, 62, 38, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow: var(--resort-shadow);
  overflow: hidden;
}

.hero-panel__cover {
  position: absolute;
  inset: 0;
}

.hero-panel__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(36, 21, 12, 0.84) 10%, rgba(36, 21, 12, 0.42) 54%, rgba(36, 21, 12, 0.82) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 32%);
}

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

.hero-panel__copy,
.booking-panel {
  position: relative;
  z-index: 1;
}

.hero-panel__copy {
  color: #fbf1e4;
}

.hero-panel__copy h2 {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 0.92;
  margin-top: 12px;
}

.hero-panel__copy p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(251, 241, 228, 0.82);
  line-height: 1.8;
}

.property-film {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 26px;
  align-items: center;
}

.property-film__media {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(188, 130, 71, 0.18);
  background:
    linear-gradient(160deg, rgba(33, 19, 11, 0.96), rgba(78, 50, 30, 0.88)),
    rgba(26, 16, 10, 0.96);
  box-shadow: 0 28px 56px rgba(33, 19, 11, 0.18);
}

.property-film__media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(18, 12, 8, 0.96);
}

.property-film__copy h3 {
  margin-top: 14px;
}

.property-film__copy p {
  margin-top: 14px;
  color: rgba(47, 28, 17, 0.72);
  line-height: 1.8;
}

.property-film__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.property-film__chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(66, 38, 18, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(188, 130, 71, 0.12);
  border: 1px solid rgba(188, 130, 71, 0.18);
}

.hero-panel__stats,
.story-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-stat,
.story-card__stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-stat strong,
.story-card__stats span {
  display: block;
  font-size: 1.24rem;
  font-weight: 800;
}

.hero-stat span,
.story-card__stats small {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: rgba(251, 241, 228, 0.7);
}

.booking-panel,
.story-card,
.contact-card {
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(245, 235, 221, 0.88)),
    radial-gradient(circle at top right, rgba(188, 130, 71, 0.1), transparent 46%);
  box-shadow: var(--resort-shadow-soft);
}

.booking-panel--compact {
  padding: 22px;
}

.booking-panel__head,
.section-heading,
.story-copy {
  display: grid;
  gap: 8px;
}

.booking-panel__head h3,
.section-heading h3,
.story-hero h1,
.story-hero h2,
.detail-hero h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.booking-panel__head p,
.section-heading__copy,
.story-copy p,
.detail-hero__summary p,
.story-card p {
  margin: 0;
  line-height: 1.75;
  color: rgba(47, 28, 17, 0.74);
}

.section-block,
.story-hero,
.detail-hero,
.site-footer {
  margin-bottom: 24px;
  padding: 26px;
  border-radius: 30px;
}

.section-block--flush-top {
  margin-top: -4px;
}

.booking-form,
.booking-form label,
.detail-story,
.contact-card-grid,
.location-card__detail-grid,
.site-footer__details {
  display: grid;
  gap: 14px;
}

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

.booking-form label span,
.booking-form__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(47, 28, 17, 0.74);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(73, 49, 30, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--resort-cocoa);
  outline: none;
  transition: 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(188, 130, 71, 0.55);
  box-shadow: 0 0 0 3px rgba(188, 130, 71, 0.14);
}

.booking-date-field {
  position: relative;
}

.booking-date-trigger {
  width: 100%;
  padding: 0;
  border: 1px solid rgba(73, 49, 30, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  transition: 0.2s ease;
}

.booking-date-trigger:hover,
.booking-date-trigger.is-active {
  border-color: rgba(188, 130, 71, 0.58);
  box-shadow: 0 0 0 3px rgba(188, 130, 71, 0.14);
}

.booking-date-trigger__content {
  padding: 13px 16px;
  display: grid;
  gap: 4px;
}

.booking-date-trigger__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--resort-gold);
}

.booking-date-trigger__value {
  font-size: 0.95rem;
  color: var(--resort-cocoa);
}

.booking-date-trigger.is-empty .booking-date-trigger__value {
  color: rgba(47, 28, 17, 0.52);
}

.booking-date-trigger__calendar {
  width: 52px;
  align-self: stretch;
  border-left: 1px solid rgba(73, 49, 30, 0.08);
  background:
    radial-gradient(circle at center, rgba(188, 130, 71, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 235, 221, 0.74));
}

.booking-quote {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(73, 49, 30, 0.08);
}

.booking-quote__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(47, 28, 17, 0.74);
}

.booking-quote__row strong {
  color: var(--resort-cocoa);
}

.booking-quote__row--total {
  padding-top: 10px;
  border-top: 1px solid rgba(73, 49, 30, 0.08);
  font-weight: 800;
}

.booking-panel__actions button,
.story-actions button,
.detail-back,
.site-footer__cta,
.chalet-card__actions button,
.contact-card a {
  border: 0;
  border-radius: 999px;
  transition: 0.2s ease;
}

.booking-panel__actions {
  display: flex;
}

.booking-panel__actions button,
.site-footer__cta,
.story-actions button,
.chalet-card__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #cf8a3b, #a7652d);
  color: #fff8f0;
  box-shadow: 0 18px 28px rgba(152, 93, 38, 0.18);
}

.btn-ghost,
.detail-back,
.chalet-card__link,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(73, 49, 30, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--resort-cocoa);
}

.booking-panel__actions button:hover,
.site-footer__cta:hover,
.story-actions button:hover,
.chalet-card__actions button:hover,
.btn-ghost:hover,
.detail-back:hover,
.chalet-card__link:hover,
.social-link:hover {
  transform: translateY(-1px);
}

.site-footer__cta--full {
  width: 100%;
  margin-top: 10px;
}

.site-footer__cta--light {
  color: var(--resort-cocoa);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(73, 49, 30, 0.12);
}

.booking-panel__notice {
  min-height: 22px;
  font-size: 0.92rem;
  color: rgba(47, 28, 17, 0.64);
}

.booking-panel__notice.is-success {
  color: #22724a;
}

.booking-panel__notice.is-error {
  color: #b64931;
}

.chalets-grid,
.feature-grid,
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.chalet-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
  box-shadow: var(--resort-shadow-soft);
}

.chalet-card__media {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 20px;
}

.chalet-card__media > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.chalet-card__thumbs {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
}

.chalet-card__thumb {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.84);
}

.chalet-card__thumb.is-active {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(48, 29, 17, 0.18);
}

.chalet-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chalet-card__top,
.chalet-card__actions,
.review-card__head,
.review-card__footer,
.detail-hero__layout,
.site-footer__main {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.chalet-card__top h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.chalet-card__meta,
.chalet-card__location,
.chalet-card__notes {
  color: rgba(47, 28, 17, 0.72);
}

.chalet-card__price {
  font-weight: 800;
  color: var(--resort-gold);
  white-space: nowrap;
}

.amenity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenity-row--spacious {
  margin-top: 6px;
}

.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(73, 49, 30, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.amenity-chip__icon {
  font-size: 0.95rem;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  grid-column: span 3;
  border-radius: 18px;
  box-shadow: var(--resort-shadow-soft);
}

.gallery-card--hero {
  min-height: 228px;
  grid-column: span 6;
}

.gallery-card--tall {
  min-height: 228px;
  grid-column: span 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.gallery-card__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(28, 20, 15, 0.56);
  color: #fff8f2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-carousel {
  overflow: hidden;
}

.reviews-carousel__track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
}

.review-card {
  min-width: calc(33.333% - 12px);
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(73, 49, 30, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--resort-shadow-soft);
}

.review-card__badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(188, 130, 71, 0.12);
  color: var(--resort-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card__stars {
  color: #b97f41;
  font-weight: 800;
}

.review-card__stars span {
  color: rgba(185, 127, 65, 0.26);
}

.review-card__text {
  margin: 18px 0;
  min-height: 86px;
  line-height: 1.75;
  color: rgba(47, 28, 17, 0.78);
}

.review-card__footer strong {
  display: block;
}

.review-card__footer span {
  color: rgba(47, 28, 17, 0.56);
}

.feature-grid {
  margin-top: 16px;
}

.feature-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(73, 49, 30, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--resort-shadow-soft);
}

.feature-card__icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(188, 130, 71, 0.12);
  color: var(--resort-gold);
  font-size: 1.35rem;
}

.feature-card h4 {
  margin: 16px 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(47, 28, 17, 0.72);
}

.story-terms {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(73, 49, 30, 0.08);
  line-height: 1.7;
  color: rgba(47, 28, 17, 0.76);
}

.story-hero,
.detail-hero {
  display: grid;
  gap: 18px;
}

.story-hero--split .story-copy,
.detail-hero__summary {
  padding: 4px 2px;
}

.story-copy h2,
.detail-hero__summary h2 {
  margin-top: 4px;
}

.story-card {
  display: grid;
  gap: 14px;
}

.story-card strong {
  font-size: 1.2rem;
}

.story-actions {
  display: flex;
  gap: 10px;
}

.detail-back {
  width: fit-content;
}

.detail-hero__layout {
  align-items: start;
}

.detail-hero--wordpress {
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.94), rgba(238, 220, 195, 0.74)),
    radial-gradient(circle at top right, rgba(188, 130, 71, 0.18), transparent 42%);
  overflow: hidden;
}

.detail-hero--wordpress::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -100px;
  border-radius: 999px;
  background: rgba(68, 88, 68, 0.12);
}

.detail-hero--wordpress .detail-hero__layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
}

.detail-hero__gallery {
  flex: 1 1 auto;
  min-width: 0;
}

.detail-hero__summary {
  width: min(360px, 100%);
  display: grid;
  gap: 16px;
}

.detail-hero--wordpress .detail-hero__summary {
  width: 100%;
  align-content: center;
  padding: 18px 10px;
}

.detail-hero__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--resort-gold);
}

.detail-meta {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(73, 49, 30, 0.08);
}

.detail-meta span {
  font-size: 12px;
  color: rgba(47, 28, 17, 0.6);
}

.detail-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
  min-height: 520px;
}

.detail-gallery--empty {
  min-height: 420px;
  place-items: center;
  padding: 28px;
  border: 1px dashed rgba(188, 130, 71, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
}

.detail-gallery__hero,
.detail-gallery__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--resort-shadow-soft);
}

.detail-gallery__hero img,
.detail-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.detail-gallery__hero:hover img,
.detail-gallery__thumb:hover img {
  transform: scale(1.04);
}

.detail-gallery__overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #fffaf2;
  background: rgba(31, 20, 14, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.detail-gallery__overlay span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.72);
}

.detail-gallery__overlay strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.detail-gallery__rail {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-gallery__thumb {
  min-height: 120px;
}

.detail-quickfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.detail-quickfacts div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(73, 49, 30, 0.08);
}

.detail-quickfacts span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(47, 28, 17, 0.48);
}

.detail-quickfacts strong {
  font-size: 0.92rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.detail-editorial__main,
.detail-editorial__aside,
.detail-booking-shell__intro {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(73, 49, 30, 0.08);
}

.detail-editorial__main h3,
.detail-editorial__aside h3,
.detail-booking-shell__intro h3 {
  margin: 8px 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 2.5vw, 2.7rem);
  line-height: 1;
}

.detail-editorial__main p,
.detail-booking-shell__intro p {
  margin: 0;
  line-height: 1.8;
  color: rgba(47, 28, 17, 0.74);
}

.detail-booking-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.highlight-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(47, 28, 17, 0.78);
  line-height: 1.8;
}

.contact-card-grid {
  margin-top: 10px;
}

.contact-card {
  padding: 18px;
  border-radius: 22px;
  box-shadow: var(--resort-shadow-soft);
}

.contact-card span,
.location-card__detail span,
.site-footer__detail span {
  font-size: 12px;
  color: rgba(47, 28, 17, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card a,
.contact-card strong,
.location-card__detail a,
.location-card__detail strong,
.site-footer__detail a,
.site-footer__detail strong {
  display: block;
  margin-top: 6px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--resort-cocoa);
}

.location-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-top: 18px;
}

.location-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(73, 49, 30, 0.08);
  box-shadow: var(--resort-shadow-soft);
}

.location-card__address {
  font-size: 1.08rem;
  font-weight: 700;
}

.location-card__detail-grid {
  grid-template-columns: 1fr 1fr;
}

.location-card__detail {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(247, 239, 228, 0.62);
}

.location-map-frame {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(73, 49, 30, 0.08);
  min-height: 340px;
  box-shadow: var(--resort-shadow-soft);
}

.location-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.site-footer {
  padding: 24px 26px;
}

.site-footer__brand {
  display: grid;
  gap: 12px;
  max-width: 320px;
}

.site-footer__brand strong {
  font-size: 1.2rem;
}

.site-footer__brand p {
  margin: 0;
  line-height: 1.75;
  color: rgba(47, 28, 17, 0.72);
}

.site-footer__details {
  grid-template-columns: auto auto;
  gap: 24px;
}

.site-footer__detail-group {
  display: grid;
  gap: 10px;
}

.site-footer__detail-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--resort-gold);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(188, 130, 71, 0.12);
  color: var(--resort-gold);
  font-size: 12px;
  font-weight: 800;
}

.booking-date-picker {
  position: fixed;
  z-index: 9999;
  width: min(340px, calc(100vw - 24px));
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(73, 49, 30, 0.12);
  background: rgba(255, 252, 247, 0.98);
  box-shadow: 0 26px 50px rgba(48, 29, 17, 0.22);
  backdrop-filter: blur(18px);
}

.booking-date-picker__header,
.booking-date-picker__weekdays,
.booking-date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.booking-date-picker__header {
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  margin-bottom: 14px;
}

.booking-date-picker__title {
  text-align: center;
  font-weight: 800;
}

.booking-date-picker__nav {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(73, 49, 30, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.booking-date-picker__weekdays {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(47, 28, 17, 0.52);
  text-align: center;
}

.booking-date-picker__day,
.booking-date-picker__pad {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.booking-date-picker__day {
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  color: var(--resort-cocoa);
}

.booking-date-picker__day:hover:not(:disabled),
.booking-date-picker__day.is-selected {
  background: linear-gradient(135deg, #d39349, #a8662e);
  color: #fff9f2;
}

.booking-date-picker__day.is-today {
  box-shadow: inset 0 0 0 2px rgba(188, 130, 71, 0.38);
}

.booking-date-picker__day:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-date-picker__pad {
  border-radius: 14px;
  background: rgba(73, 49, 30, 0.04);
}

@media (max-width: 1120px) {
  .hero-panel,
  .detail-hero__layout,
  .site-footer__main,
  .location-layout,
  .detail-story,
  .detail-hero--wordpress .detail-hero__layout,
  .detail-editorial,
  .detail-booking-shell,
  .property-film {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .detail-gallery {
    min-height: 460px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .chalets-grid,
  .feature-grid,
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card {
    min-width: calc(50% - 10px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header__contact {
    grid-column: 1 / -1;
    max-width: none;
    text-align: left;
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  .resort-site-shell {
    width: min(100vw - 20px, 100%);
    padding-top: 18px;
  }

  .site-nav {
    display: none;
  }

  .site-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .language-switcher--header {
    display: inline-flex;
    gap: 3px;
    padding: 4px;
    border-color: rgba(188, 130, 71, 0.18);
    background:
      linear-gradient(135deg, rgba(255, 252, 247, 0.88), rgba(245, 226, 201, 0.72)),
      rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 28px rgba(48, 29, 17, 0.1);
  }

  .language-switcher--header .language-switcher__btn {
    min-width: 33px;
    width: 33px;
    height: 31px;
    padding: 0;
    gap: 0;
  }

  .language-switcher--header .language-switcher__flag {
    font-size: 14px;
  }

  .language-switcher--header .language-switcher__code {
    display: none;
  }

  .site-drawer {
    display: grid;
    gap: 8px;
    margin: 12px 0 18px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(73, 49, 30, 0.12);
    background: rgba(255, 252, 247, 0.94);
    box-shadow: var(--resort-shadow-soft);
  }

  .site-drawer a {
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 700;
  }

  .site-drawer a.is-active {
    background: rgba(188, 130, 71, 0.14);
  }

  .site-drawer__summary {
    margin-top: 8px;
    padding: 12px 14px 0;
    border-top: 1px solid rgba(73, 49, 30, 0.08);
    font-size: 0.9rem;
    color: rgba(47, 28, 17, 0.68);
  }

  .gallery-card,
  .gallery-card--hero,
  .gallery-card--tall {
    grid-column: span 6;
    min-height: 180px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-gallery__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }
}

@media (max-width: 720px) {
  .hero-panel,
  .section-block,
  .story-hero,
  .detail-hero,
  .site-footer {
    padding: 20px;
    border-radius: 24px;
  }

  .hero-panel__stats,
  .story-card__stats,
  .booking-form__grid,
  .location-card__detail-grid,
  .site-footer__details,
  .chalets-grid,
  .feature-grid,
  .contact-card-grid,
  .detail-quickfacts {
    grid-template-columns: 1fr;
  }

  .detail-gallery {
    min-height: auto;
  }

  .detail-gallery__hero {
    min-height: 320px;
  }

  .property-film__media {
    border-radius: 22px;
  }

  .property-film__copy p {
    margin-top: 12px;
  }

  .detail-gallery__rail {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: 100%;
  }

  .gallery-card,
  .gallery-card--hero,
  .gallery-card--tall {
    grid-column: span 12;
    min-height: 180px;
  }

  .chalet-card__top,
  .chalet-card__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
