/* ── Tokens ───────────────────────────────────────────── */
:root {
  /* Brand palette */
  --green: #44944A;
  --green-dark: #1E5945;
  --green-light: #BDECB6;

  /* Derived neutrals */
  --cream: #f2f7ef;
  --cream-deep: #e4efe1;
  --moss: var(--green-dark);
  --moss-light: var(--green);
  --bark: #3d6b52;
  --bark-soft: #5a8f6a;
  --sage: var(--green-light);
  --mist: #d2f0cc;
  --sand: #b8d4ae;
  --stone: #6b8572;
  --ink: #142a22;
  --ink-soft: #3a5a4a;
  --white: #f9fcf8;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-h: 72px;
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
  touch-action: none;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

/* Icons (Lucide) */
.icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  display: block;
}

.icon--btn {
  width: 1rem;
  height: 1rem;
}

.icon--lg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature .icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--green);
}

.room-card__meta .icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--green);
}

.activity-card__icon .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.modal-amenities .icon {
  width: 1rem;
  height: 1rem;
  color: var(--sage);
}

.toast .icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--green-light);
}

.winter-soon__card-body .icon {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--green-light);
  margin-bottom: 0.85rem;
}

.tracking__eta--done .icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--green);
  margin: 0 auto;
}

.dish__qty .icon,
.cart-line__qty .icon {
  width: 0.875rem;
  height: 0.875rem;
}

.dish__add .icon {
  width: 1.125rem;
  height: 1.125rem;
}

/* Film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ── Header ─────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s;
}

.header--scrolled {
  background: rgba(242, 247, 239, 0.85);
  backdrop-filter: blur(16px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--green-dark);
  flex-shrink: 0;
}

.logo-emblem {
  width: 46px;
  height: auto;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.logo-full {
  width: 168px;
  height: auto;
  margin: 0 auto 0.75rem;
  display: block;
  color: var(--white);
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover { color: var(--green); }
.nav-link:hover::after { width: 100%; }

.nav-link--cta {
  background: var(--green);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: #3a8250;
  color: var(--white);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  z-index: 110;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) clamp(1.25rem, 5vw, 4rem) 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero-slide--active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.14);
  will-change: transform;
}

.hero-slide--ken-left.hero-slide--active img {
  animation: heroKenLeft 6.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero-slide--ken-right.hero-slide--active img {
  animation: heroKenRight 6.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes heroKenLeft {
  from { transform: scale(1.14) translate3d(1.5%, 0, 0); }
  to   { transform: scale(1.04) translate3d(-1%, 0, 0); }
}

@keyframes heroKenRight {
  from { transform: scale(1.14) translate3d(-1.5%, 0, 0); }
  to   { transform: scale(1.04) translate3d(1%, 0, 0); }
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem, 5vw, 4rem);
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.hero-dot {
  position: relative;
  width: 2rem;
  height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: width 0.35s var(--ease-out), background 0.35s;
}

.hero-dot--active {
  width: 2.75rem;
  background: rgba(255, 255, 255, 0.2);
}

.hero-dot__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--white);
  border-radius: inherit;
  transition: width 0.08s linear;
}

.hero-dot:hover:not(.hero-dot--active) {
  background: rgba(255, 255, 255, 0.45);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    165deg,
    rgba(20, 42, 34, 0.08) 0%,
    rgba(30, 89, 69, 0.45) 45%,
    rgba(20, 42, 34, 0.82) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.6s ease;
    transform: none;
  }
  .hero-slide--active { transform: none; }
  .hero-slide img,
  .hero-slide--ken-left.hero-slide--active img,
  .hero-slide--ken-right.hero-slide--active img {
    animation: none;
    transform: scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 4px;
  position: relative;
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--ease-spring);
}

.hero-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.hero-cta:hover svg { transform: translateX(5px); }
.hero-cta:hover::after { transform: scaleX(0.6); transform-origin: right; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Guest perks bar */
.perks-bar {
  background: var(--green-dark);
  color: var(--white);
  padding: 1.35rem clamp(1.25rem, 5vw, 4rem);
}

.perks-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.perk__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(189, 236, 182, 0.15);
  border-radius: 50%;
}

.perk__icon .icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--green-light);
}

.perk strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.perk span {
  font-size: 0.82rem;
  opacity: 0.72;
  line-height: 1.45;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Reveal animations ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── About ──────────────────────────────────────────── */
.about {
  padding: clamp(5rem, 12vw, 9rem) clamp(1.25rem, 5vw, 4rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.about-text > p {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature svg,
.feature .icon {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature__icon {
  display: flex;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}

.feature span:not(.feature__icon):not(.winter-soon__card-icon) {
  font-size: 0.88rem;
  color: var(--stone);
}

.about-visual {
  position: relative;
  height: 480px;
}

.about-img {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-out);
}

.about-img:hover img { transform: scale(1.06); }

.about-img--main {
  top: 0;
  right: 0;
  width: 72%;
  height: 85%;
  box-shadow: -20px 30px 60px rgba(30, 89, 69, 0.1);
}

.about-img--accent {
  bottom: 0;
  left: 0;
  width: 48%;
  height: 42%;
  box-shadow: 10px 20px 40px rgba(30, 89, 69, 0.08);
}

/* ── Section head ───────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  padding: 0 1.25rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bark-soft);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--stone);
  font-size: 0.95rem;
}

/* ── Rooms ──────────────────────────────────────────── */
.rooms {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--cream-deep);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.room-card {
  background: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  animation: cardIn 0.7s var(--ease-out) both;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(30, 89, 69, 0.12);
}

.room-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.room-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.room-card:hover .room-card__img img {
  transform: scale(1.07);
}

.room-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(189, 236, 182, 0.88);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.room-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.room-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.room-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
}

.room-card__price {
  font-size: 0.9rem;
  color: var(--bark);
  white-space: nowrap;
}

.room-card__price span {
  font-weight: 500;
  font-size: 1.1rem;
}

.room-card__desc {
  font-size: 0.88rem;
  color: var(--stone);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.room-card__meta {
  display: flex;
  gap: 1.25rem;
}

.room-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--stone);
  letter-spacing: 0.02em;
}

.room-card__meta svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.room-card__meta .icon {
  width: 15px;
  height: 15px;
}

.room-card__action {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease-spring);
}

.room-card__action svg {
  width: 16px;
  height: 16px;
}

.room-card:hover .room-card__action {
  opacity: 1;
  transform: translateY(0);
}

/* ── Activities ─────────────────────────────────────── */
.activities {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--cream);
  overflow: hidden;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 1200px;
  margin: 0 auto;
}

.activities-pair {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: inherit;
  align-items: stretch;
}

.activities-pair .activity-card {
  height: 100%;
  min-height: 420px;
}

.activity-card--paired .activity-card__visual {
  height: 240px;
  min-height: 240px;
  flex: none;
}

.activity-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
  min-height: 400px;
  animation: cardIn 0.7s var(--ease-out) both;
}

.activity-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: 380px;
}

.activity-card__visual {
  position: relative;
  flex: 1;
  min-height: 220px;
  overflow: hidden;
}

.activity-card--featured .activity-card__visual {
  flex: 1.15;
  min-height: auto;
}

.activity-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.activity-card:hover .activity-card__visual img {
  transform: scale(1.06);
}

.activity-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 42, 34, 0.55) 0%,
    rgba(20, 42, 34, 0.05) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.activity-card--featured .activity-card__visual::after {
  background: linear-gradient(
    to right,
    transparent 40%,
    rgba(20, 42, 34, 0.35) 100%
  );
}

.activity-card__icon {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(189, 236, 182, 0.92);
  backdrop-filter: blur(8px);
  color: var(--green-dark);
}

.activity-card--featured .activity-card__icon {
  bottom: auto;
  top: 1.5rem;
  left: 1.5rem;
}

.activity-card__icon svg {
  width: 22px;
  height: 22px;
}

.activity-card__icon .icon {
  width: 22px;
  height: 22px;
}

.activity-card__body {
  flex: 1;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
}

.activity-card--featured .activity-card__body {
  flex: 0.85;
  justify-content: center;
  padding: clamp(2rem, 4vw, 2.75rem);
}

.activity-card__tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark-soft);
  margin-bottom: 0.5rem;
}

.activity-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.65rem;
  line-height: 1.15;
}

.activity-card__desc {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.activity-card__routes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}

.activity-card__route {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--cream-deep);
  font-size: 0.88rem;
}

.activity-card__route:last-child {
  border-bottom: none;
}

.activity-card__route-name {
  color: var(--ink-soft);
  font-weight: 400;
}

.activity-card__route-meta {
  font-size: 0.75rem;
  color: var(--stone);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.activity-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.activity-card__price {
  font-size: 0.82rem;
  color: var(--bark);
}

.activity-card__price strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
}

.activity-card__price--free strong {
  color: var(--green);
}

.activity-card__guest-discount {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 500;
}

.activity-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: gap 0.3s var(--ease-out), color 0.3s;
}

.activity-card__btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-spring);
}

.activity-card__btn:hover {
  color: var(--green-dark);
  gap: 0.7rem;
}

.activity-card__btn:hover svg {
  transform: translateX(3px);
}

/* ── Food promo ─────────────────────────────────────── */
.food-promo {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--cream);
}

.food-promo__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.food-promo__visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.food-promo__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.food-promo__inner:hover .food-promo__visual img {
  transform: scale(1.04);
}

.food-promo__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
}

.food-promo__text > p {
  color: var(--stone);
  margin-bottom: 2rem;
  max-width: 400px;
  line-height: 1.7;
}

.food-promo__link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.food-promo__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-spring);
}

.food-promo__link:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.food-promo__link:hover svg {
  transform: translateX(4px);
}

/* ── Corporate ──────────────────────────────────────── */
.corporate {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--green-dark) 0%, #163d30 100%);
  color: var(--white);
}

.corporate__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.corporate__eyebrow {
  color: rgba(189, 236, 182, 0.75);
}

.corporate__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.corporate__lead {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(249, 252, 248, 0.75);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.corporate__list {
  margin-bottom: 2rem;
}

.corporate__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  color: rgba(249, 252, 248, 0.85);
  line-height: 1.5;
}

.corporate__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
}

.corporate__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--green-light);
  color: var(--green-dark);
  border: none;
  padding: 0.95rem 1.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.corporate__btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-spring);
}

.corporate__btn:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.corporate__btn:hover svg {
  transform: translateX(4px);
}

.corporate__visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.corporate__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 8s var(--ease-out);
}

.corporate__inner:hover .corporate__visual img {
  transform: scale(1.04);
}

.corporate__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.45rem 0.85rem;
  backdrop-filter: blur(8px);
  background: rgba(20, 42, 34, 0.4);
}

/* ── Offers ─────────────────────────────────────────── */
.offers {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--cream);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: cardIn 0.7s var(--ease-out) both;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(30, 89, 69, 0.1);
}

.offer-card__visual {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.offer-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.offer-card:hover .offer-card__visual img {
  transform: scale(1.06);
}

.offer-card__discount {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--green);
  color: var(--white);
  padding: 0.45rem 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.offer-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card__tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark-soft);
  margin-bottom: 0.5rem;
}

.offer-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.offer-card__desc {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 0.85rem;
  flex: 1;
}

.offer-card__rooms {
  font-size: 0.78rem;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.offer-card__rooms::before {
  content: 'Номера: ';
  color: var(--stone);
}

.offer-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
  transition: gap 0.3s var(--ease-out), color 0.3s;
}

.offer-card__btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-spring);
}

.offer-card__btn:hover {
  color: var(--green-dark);
  gap: 0.7rem;
}

.offer-card__btn:hover svg {
  transform: translateX(3px);
}

.room-card__badge--sale {
  background: var(--green);
  color: var(--white);
}

.room-card__photos {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(20, 42, 34, 0.65);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.3rem 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-card__price--sale {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.room-card__price--sale s {
  font-size: 0.78rem;
  color: var(--stone);
  text-decoration-thickness: 1px;
  opacity: 0.75;
}

.room-card__offer {
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green);
  background: rgba(189, 236, 182, 0.5);
  padding: 0.15rem 0.45rem;
}

.modal-price--sale s {
  font-size: 0.85em;
  color: var(--stone);
  margin-right: 0.5rem;
}

.modal-price--sale em {
  font-size: 0.75em;
  font-style: normal;
  color: var(--green);
  margin-left: 0.5rem;
}

/* ── Winter soon ────────────────────────────────────── */
.winter-soon {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) clamp(1.25rem, 5vw, 4rem);
  background: linear-gradient(165deg, var(--green-dark) 0%, #163d30 45%, #0f2a22 100%);
  color: rgba(249, 252, 248, 0.85);
  overflow: hidden;
}

.winter-soon__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(189, 236, 182, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.winter-soon__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.winter-soon__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}

.winter-soon__eyebrow {
  color: rgba(189, 236, 182, 0.75);
}

.winter-soon__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.winter-soon__lead {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(249, 252, 248, 0.7);
  margin-bottom: 1.5rem;
}

.winter-soon__date {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid rgba(189, 236, 182, 0.35);
  padding: 0.55rem 1.25rem;
}

.winter-soon__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.winter-soon__card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(189, 236, 182, 0.12);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}

.winter-soon__card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 236, 182, 0.28);
}

.winter-soon__card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.winter-soon__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 8s var(--ease-out), opacity 0.5s;
  filter: saturate(0.85);
}

.winter-soon__card:hover .winter-soon__card-img img {
  transform: scale(1.05);
  opacity: 0.95;
}

.winter-soon__card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(30, 89, 69, 0.75);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.7rem;
}

.winter-soon__card-badge--free {
  background: var(--green-light);
  color: var(--green-dark);
}

.winter-soon__card-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.winter-soon__card-body svg,
.winter-soon__card-body .icon,
.winter-soon__card-icon .icon {
  width: 22px;
  height: 22px;
  color: var(--green-light);
  margin-bottom: 0.85rem;
}

.winter-soon__card-icon {
  display: block;
}

.winter-soon__card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.winter-soon__card-body p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(249, 252, 248, 0.65);
}

/* ── Booking ────────────────────────────────────────── */
.booking {
  padding: clamp(5rem, 12vw, 9rem) clamp(1.25rem, 5vw, 4rem);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.booking-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
}

.booking-info > p {
  margin-bottom: 2rem;
  max-width: 360px;
}

.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--green);
  transition: gap 0.3s var(--ease-out);
}

.contact-link svg {
  width: 18px;
  height: 18px;
}

.contact-link:hover { gap: 0.9rem; }

.booking-form {
  background: var(--white);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

.field input,
.field select,
.field textarea {
  background: var(--cream);
  border: none;
  padding: 0.85rem 1rem;
  outline: none;
  transition: background 0.3s, box-shadow 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--cream-deep);
  box-shadow: inset 0 -2px 0 var(--green);
}

.field textarea { resize: vertical; min-height: 80px; }

.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b8572' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.submit-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-spring);
}

.submit-btn:hover {
  background: #3a8250;
  transform: translateY(-2px);
}

.submit-btn:hover svg { transform: translate(2px, -2px); }

.submit-btn:active { transform: translateY(0); }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  padding: 3rem clamp(1.25rem, 5vw, 4rem);
  background: var(--ink);
  color: rgba(250, 248, 244, 0.55);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
}

.footer-brand p { font-size: 0.82rem; margin-top: 0.25rem; }

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.75rem;
  text-align: right;
}

/* ── Modal ──────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 42, 34, 0.55);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.4s var(--ease-out);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-panel {
  position: relative;
  background: var(--white);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalUp 0.5s var(--ease-out);
}

@keyframes modalUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.modal-close svg { width: 18px; height: 18px; }
.modal-close:hover { background: var(--cream-deep); transform: rotate(90deg); }

.modal-gallery {
  background: var(--ink);
}

.modal-hero {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s var(--ease-out);
}

.modal-gallery__count {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(20, 42, 34, 0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-gallery__thumbs {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--ink);
}

.modal-gallery__thumbs::-webkit-scrollbar { display: none; }

.modal-gallery__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 52px;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.25s, border-color 0.25s;
}

.modal-gallery__thumb.active {
  opacity: 1;
  border-color: var(--green-light);
}

.modal-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-content {
  padding: 2rem 2rem 2.5rem;
}

.modal-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.modal-price {
  font-size: 1rem;
  color: var(--bark);
  margin-bottom: 1.25rem;
}

.modal-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.modal-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.modal-amenities li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.modal-amenities svg {
  width: 16px;
  height: 16px;
  color: var(--sage);
  flex-shrink: 0;
}

.modal-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.modal-book-btn:hover {
  background: #3a8250;
  transform: translateY(-2px);
}

.modal-book-btn svg { width: 16px; height: 16px; }

/* ── Toast ──────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--ink);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  transition: transform 0.5s var(--ease-spring), opacity 0.5s;
  opacity: 0;
}

.toast[hidden] { display: none; }

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast svg {
  width: 20px;
  height: 20px;
  color: var(--green-light);
  flex-shrink: 0;
}

/* ── Mobile nav open ────────────────────────────────── */
.nav--open {
  display: flex !important;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 105;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: calc(var(--header-h) + 2rem) 2rem 2rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  background: rgba(242, 247, 239, 0.97);
  backdrop-filter: blur(20px);
  animation: navIn 0.45s var(--ease-out);
}

@keyframes navIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav--open .nav-link {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-family: var(--font-serif);
  color: var(--ink);
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(12px);
  animation: navLinkIn 0.5s var(--ease-out) forwards;
}

.nav--open .nav-link:nth-child(1) { animation-delay: 0.08s; }
.nav--open .nav-link:nth-child(2) { animation-delay: 0.14s; }
.nav--open .nav-link:nth-child(3) { animation-delay: 0.2s; }

@keyframes navLinkIn {
  to { opacity: 1; transform: translateY(0); }
}

.nav--open .nav-link::after { display: none; }

.nav--open .nav-link--cta {
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  align-self: center;
  min-width: 220px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.header--menu-open {
  z-index: 110;
}

.header--menu-open .logo,
.header--menu-open .menu-toggle span {
  color: var(--ink);
}

/* ── Mobile sticky CTA ──────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out);
  box-shadow: 0 -8px 32px rgba(30, 89, 69, 0.2);
}

.mobile-cta svg {
  width: 16px;
  height: 16px;
}

.mobile-cta.visible {
  transform: translateY(0);
}

.mobile-cta[hidden] { display: none; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 320px;
    order: -1;
  }

  .booking-info > p {
    max-width: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-nav { justify-content: center; flex-wrap: wrap; gap: 1.25rem 2rem; }
  .footer-copy { text-align: center; }

  .activity-card--featured {
    flex-direction: column;
    min-height: auto;
  }

  .activity-card--featured .activity-card__visual {
    min-height: 280px;
  }

  .activity-card--featured .activity-card__visual::after {
    background: linear-gradient(
      to top,
      rgba(20, 42, 34, 0.5) 0%,
      transparent 60%
    );
  }

  .food-promo__inner {
    grid-template-columns: 1fr;
  }

  .corporate__inner {
    grid-template-columns: 1fr;
  }

  .corporate__visual {
    order: -1;
  }

  .corporate__lead { max-width: none; }

  .food-promo__visual {
    order: -1;
    aspect-ratio: 16/10;
  }

  .offers-grid,
  .winter-soon__grid {
    grid-template-columns: 1fr;
  }

  .offer-card__visual {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 60px;
  }

  .nav { display: none; }
  .menu-toggle { display: flex; }

  .header {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .logo { gap: 0.5rem; }
  .logo-emblem { width: 38px; }
  .logo-name { font-size: 0.9rem; }

  .hero {
    align-items: flex-end;
    padding: calc(var(--header-h) + 2rem) 1.25rem 3.5rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
    min-height: 92vh;
    min-height: 92dvh;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: none;
  }

  .hero-scroll { display: none; }

  .hero-dots {
    bottom: 1.25rem;
    right: 50%;
    transform: translateX(50%);
    gap: 0.35rem;
  }

  .hero-dot { width: 1.5rem; }
  .hero-dot--active { width: 2rem; }

  .perks-bar__inner {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .activities-pair {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 4rem 1.25rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .about-visual { height: 260px; }

  .about-text > p { max-width: none; }

  .rooms {
    padding: 4rem 1.25rem 5rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .offers {
    padding: 4rem 1.25rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .winter-soon {
    padding: 4rem 1.25rem 5rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .corporate {
    padding: 4rem 1.25rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .room-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .activities {
    padding: 4rem 1.25rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .activities-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .activity-card {
    min-height: auto;
  }

  .activity-card__visual {
    min-height: 200px;
  }

  .activity-card__route {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .activity-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .food-promo {
    padding: 4rem 1.25rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .food-promo__text > p { max-width: none; }

  .room-card__body {
    padding: 1.25rem 1.25rem 3.5rem;
  }

  .room-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .room-card__meta {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .room-card__action {
    opacity: 1;
    transform: translateY(0);
    bottom: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
  }

  .room-card:active {
    transform: scale(0.985);
  }

  .booking {
    padding: 4rem 1.25rem 6rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
    padding-bottom: max(6rem, calc(5rem + env(safe-area-inset-bottom)));
  }

  .form-row { grid-template-columns: 1fr; }

  .booking-form {
    padding: 1.5rem;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 0.9rem 1rem;
  }

  .field textarea { min-height: 96px; }

  .submit-btn {
    min-height: 52px;
    width: 100%;
  }

  .contact-link {
    min-height: 44px;
    align-items: center;
  }

  .modal {
    padding: 0;
    align-items: flex-end;
  }

  .modal-panel {
    max-height: 92vh;
    max-height: 92dvh;
    border-radius: 16px 16px 0 0;
    animation: modalSheet 0.45s var(--ease-out);
  }

  @keyframes modalSheet {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
  }

  .modal-content {
    padding: 1.5rem 1.25rem 2rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }

  .modal-content h3 { font-size: 1.65rem; }

  .modal-book-btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .modal-amenities { grid-template-columns: 1fr; }

  .toast {
    left: 1rem;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    transform: translateY(120px);
    font-size: 0.85rem;
    padding: 0.9rem 1.15rem;
  }

  .toast.show {
    transform: translateY(0);
  }

  .footer {
    padding: 2.5rem 1.25rem;
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
  }

  .mobile-cta {
    display: flex;
  }

  .mobile-cta[hidden] {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }

  .room-card__meta span {
    font-size: 0.72rem;
  }
}

@media (hover: none) {
  .room-card:hover {
    transform: none;
    box-shadow: none;
  }

  .room-card:hover .room-card__img img {
    transform: none;
  }

  .room-card__action {
    opacity: 1;
    transform: translateY(0);
  }

  .activity-card:hover .activity-card__visual img {
    transform: none;
  }

  .food-promo__inner:hover .food-promo__visual img {
    transform: none;
  }

  .offer-card:hover {
    transform: none;
    box-shadow: none;
  }

  .offer-card:hover .offer-card__visual img {
    transform: none;
  }

  .winter-soon__card:hover {
    transform: none;
  }

  .winter-soon__card:hover .winter-soon__card-img img {
    transform: none;
  }

  .corporate__inner:hover .corporate__visual img {
    transform: none;
  }
}
