/* =========================================================
   Сад Пионов — modern eco-resort stylesheet
   ========================================================= */
:root {
  --green-950: #121a15;
  --green-900: #1c2a21;
  --green-800: #2a3d30;
  --green-700: #3a5243;
  --green-600: #4a6554;
  --green-500: #5c7a66;
  --green-100: #e4ebe6;
  --green-50: #eef3ef;

  /* muted dusty rose — restrained, not candy pink */
  --peony-700: #7a4a52;
  --peony-600: #8f5a62;
  --peony-500: #a06b73;
  --peony-200: #d9c8cb;
  --peony-100: #f0e9ea;

  --cream: #f6f4ef;
  --cream-dark: #efece5;
  --sand: #e8e4db;
  --wood: #6e5a48;
  --wood-dark: #4a3d31;
  --surface: #f1eee7;
  --surface-elevated: #f7f5f0;

  --ink: #161916;
  --ink-soft: #3a403c;
  --muted: #6a716c;
  --white: #fbfaf7;
  --border: rgba(18, 26, 21, 0.09);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --radius: 10px;
  --radius-lg: 14px;
  --radius-sm: 6px;
  --shadow: 0 8px 28px rgba(18, 26, 21, 0.08);
  --shadow-lg: 0 16px 40px rgba(18, 26, 21, 0.12);
  --header-h: 72px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #f3f1eb;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
  height: auto;
}

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

ul {
  list-style: none;
}

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

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container-wide {
  width: min(1400px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--peony-600);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--peony-500);
}

h1,
h2,
h3,
h4,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--green-950);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 52ch;
}

.text-muted {
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.45rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.92;
}

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--green-700);
  opacity: 1;
}

.btn-peony {
  background: var(--peony-700);
  color: var(--white);
  box-shadow: none;
}

.btn-peony:hover {
  background: var(--peony-600);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--green-800);
  color: var(--green-800);
}

.btn-outline-dark:hover {
  background: var(--green-800);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 0.6rem 1.05rem;
  font-size: 0.84rem;
  border-radius: 4px;
}

.float-cta .btn {
  box-shadow: 0 4px 16px rgba(18, 26, 21, 0.18);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(246, 244, 239, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 2;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-800);
  display: grid;
  place-items: center;
  color: white;
  box-shadow: none;
}

.logo-mark svg {
  width: 24px;
  height: 24px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-950);
}

.logo-text span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.site-header:not(.is-scrolled):not(.solid) .logo-text strong,
.site-header:not(.is-scrolled):not(.solid) .nav-link {
  color: var(--white);
}

.site-header:not(.is-scrolled):not(.solid) .logo-text span {
  color: rgba(255, 255, 255, 0.72);
}

.site-header:not(.is-scrolled):not(.solid) .nav-toggle span {
  background: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  padding: 0.45rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 2px;
  transition: color var(--transition), opacity var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-800);
  background: transparent;
}

.site-header:not(.is-scrolled):not(.solid) .nav-link:hover,
.site-header:not(.is-scrolled):not(.solid) .nav-link.active {
  color: var(--white);
  background: transparent;
  opacity: 1;
}

.site-header:not(.is-scrolled):not(.solid) .nav-link {
  opacity: 0.88;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-phone {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-800);
  white-space: nowrap;
}

.site-header:not(.is-scrolled):not(.solid) .header-phone {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.home-hero {
  min-height: min(100vh, 920px);
  min-height: min(100dvh, 920px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--green-950);
}

.hero-media img,
.hero-media video,
.hero-kenburns {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  /* avoid subpixel jitter on some GPUs */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* hide still once video can play */
.hero-media:has(.hero-video[data-ready]) .hero-video-fallback {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* GPU-smooth cinematic drift — no frame jitter */
.hero-kenburns {
  transform-origin: 55% 40%;
  animation: kenburns 28s cubic-bezier(0.25, 0.1, 0.25, 1) infinite alternate;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@keyframes kenburns {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 26, 21, 0.55) 0%, rgba(18, 26, 21, 0.22) 40%, rgba(18, 26, 21, 0.88) 100%),
    linear-gradient(90deg, rgba(18, 26, 21, 0.5) 0%, transparent 58%);
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-kenburns {
    animation: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.hero-content .eyebrow {
  color: var(--peony-200);
}

.hero-content .eyebrow::before {
  background: var(--peony-200);
}

.hero h1 {
  color: var(--white);
  max-width: 14ch;
  margin: 1rem 0 1.25rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 640px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  min-height: 58vh;
  min-height: 58dvh;
  align-items: flex-end;
}

.page-hero .hero-content {
  padding-bottom: 3.5rem;
}

.page-hero h1 {
  max-width: 18ch;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-sm {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head > div {
  max-width: 640px;
}

.section-head h2 {
  margin-top: 0.65rem;
}

.section-dark {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.88);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-green {
  background: linear-gradient(180deg, var(--green-50), var(--cream));
}

.section-sand {
  background: var(--cream-dark);
}

/* ---------- Cards grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.card {
  background: var(--surface-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
  transition: border-color var(--transition);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: rgba(42, 61, 48, 0.22);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .card-media img {
  transform: scale(1.03);
}

.card-body {
  padding: 1.4rem 1.45rem 1.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.card-body h3 {
  font-size: 1.45rem;
}

.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-700);
}

.card-link svg {
  transition: transform var(--transition);
}

.card:hover .card-link svg {
  transform: translateX(4px);
}

/* Feature split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

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

.split-content .eyebrow {
  margin-bottom: 0.75rem;
}

.split-content h2 {
  margin-bottom: 1rem;
}

.split-content p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.split-content p + .btn,
.split-content ul + .btn {
  margin-top: 1rem;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--peony-500);
  flex-shrink: 0;
}

/* Stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.15rem;
  border: 1px solid var(--border);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--green-800);
  font-weight: 500;
  line-height: 1.1;
}

.stat-card span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Room cards */
.room-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--surface-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

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

.room-gallery {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.room-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.room-info {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.3rem 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  background: rgba(42, 61, 48, 0.12);
  color: var(--green-800);
  font-size: 0.8rem;
  font-weight: 600;
}

.room-info p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.room-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Gallery mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.85rem;
}

.mosaic figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.mosaic figure:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic figure:nth-child(4) {
  grid-column: span 2;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mosaic figure:hover img {
  transform: scale(1.05);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--surface-elevated);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars {
  color: #9a7b3c;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.review-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Map points / garden map */
.map-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.map-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.map-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.map-point {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0.8rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.map-point b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* Plant catalog */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.plant-card {
  background: var(--surface-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.plant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.plant-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--peony-100);
}

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

.plant-body {
  padding: 1rem 1.05rem 1.15rem;
}

.plant-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.plant-body p {
  font-size: 0.85rem;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.plant-price {
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--green-800);
  font-size: 1.05rem;
}

/* CTA banner */
.cta-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--white);
  isolation: isolate;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(18, 26, 21, 0.9), rgba(26, 42, 33, 0.78)),
    var(--cta-bg, url("../assets/images/garden-path.jpg")) center / cover;
  z-index: -1;
}

.cta-banner h2 {
  color: var(--white);
  margin: 0.5rem 0 0.85rem;
  max-width: 16ch;
}

.cta-banner p {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-card {
  background: var(--surface-elevated);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--border);
  box-shadow: none;
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: grid;
  gap: 0.2rem;
}

.contact-item span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.contact-item a,
.contact-item strong {
  font-size: 1.05rem;
  color: var(--green-900);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #efece5;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(79, 148, 102, 0.18);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.form-success {
  display: none;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 600;
}

.form-success.show {
  display: block;
}

/* How to get there */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.travel-card {
  background: var(--surface-elevated);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.travel-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--green-50);
  color: var(--green-800);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.travel-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.travel-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Amenities */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.amenity {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.amenity strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-900);
  margin-bottom: 0.25rem;
}

.amenity span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Price box */
.price-box {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(42, 61, 48, 0.1);
  border: 1px solid rgba(47, 92, 63, 0.14);
  margin: 1rem 0;
}

.price-box strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-800);
  font-weight: 500;
}

.price-box span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text strong {
  color: var(--white);
}

.footer-brand .logo-text span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.92rem;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col a {
  display: block;
  padding: 0.28rem 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating booking */
.float-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  display: flex;
  gap: 0.55rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 20, 0.65);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  width: min(460px, 100%);
  background: var(--surface-elevated);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.modal-panel h3 {
  margin-bottom: 0.4rem;
}

.modal-panel > p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}

/* Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .cards-grid,
  .reviews-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-band,
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .mosaic figure:nth-child(1),
  .mosaic figure:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

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

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(246, 244, 239, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.25rem;
  }

  .site-header:not(.is-scrolled):not(.solid) .nav-link {
    color: var(--ink);
  }

  .header-phone {
    display: none;
  }

  .split,
  .split.reverse,
  .room-card,
  .map-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .room-gallery {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .room-gallery img {
    position: relative;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

@media (max-width: 640px) {
  .cards-grid,
  .reviews-grid,
  .catalog-grid,
  .travel-grid,
  .stats-band,
  .amenities,
  .map-points,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-actions .btn {
    display: none;
  }

  .float-cta .btn span {
    display: none;
  }

  .hero-content {
    padding-bottom: 3.5rem;
  }
}
