/* =========================================================
   Joyjourney — Casino Hotel · Queenstown, New Zealand
   Stylesheet
   ========================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  --forest: #18352F;
  --forest-deep: #122722;
  --graphite: #202522;
  --milk: #F4F1E9;
  --milk-dim: #E9E4D8;
  --stone: #C8BFAE;
  --gold: #B49A68;
  --gold-light: #D4C29A;
  --text-dark: #23282A;
  --text-muted: #5B6360;
  --white: #ffffff;

  --font-sans: "Inter", "Manrope", -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 18px rgba(18, 39, 34, 0.08);
  --shadow-md: 0 14px 40px rgba(18, 39, 34, 0.14);
  --shadow-lg: 0 28px 70px rgba(18, 39, 34, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.45s var(--ease);
  --header-h: 88px;
}

/* ---------- 2. Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--milk);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--forest-deep); }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: inherit;
}

h1 { font-size: clamp(40px, 6.4vw, 76px); }
h2 { font-size: clamp(30px, 4.4vw, 52px); }
h3 { font-size: clamp(22px, 2.6vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

p { color: inherit; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 22px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.kicker--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.kicker--center { justify-content: center; }

.lead {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.75;
  color: var(--text-muted);
}

.text-gold { color: var(--gold); }
.serif { font-family: var(--font-serif); }

/* ---------- 4. Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(70px, 9vw, 130px) 0; }
.section--dark { background: var(--forest-deep); color: var(--milk); }
.section--forest { background: var(--forest); color: var(--milk); }
.section--milk { background: var(--milk); color: var(--text-dark); }
.section--graphite { background: var(--graphite); color: var(--milk); }

.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.split--reverse .split__media { order: -1; }

@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: 0; }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--forest-deep);
}
.btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold:hover::before { transform: translateX(120%); }

.btn--outline {
  background: transparent;
  color: var(--milk);
  border: 1px solid rgba(244, 241, 233, 0.4);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(180, 154, 104, 0.08); }

.btn--dark {
  background: var(--forest-deep);
  color: var(--milk);
}
.btn--dark:hover { background: var(--forest); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--light {
  background: var(--milk);
  color: var(--forest-deep);
}
.btn--light:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--sm { padding: 12px 22px; font-size: 12px; }
.btn--block { width: 100%; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  transition: var(--transition);
}
.btn-link::after {
  content: "→";
  transition: transform 0.4s var(--ease);
}
.btn-link:hover { color: var(--gold-light); }
.btn-link:hover::after { transform: translateX(5px); }

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(18, 39, 34, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.22);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(180, 154, 104, 0.5);
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--milk);
  letter-spacing: 0.01em;
}
.brand__sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--stone);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(244, 241, 233, 0.82);
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover { color: var(--milk); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--milk); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--milk);
  transition: color 0.3s var(--ease);
}
.header-phone:hover { color: var(--gold); }
.header-phone svg { width: 16px; height: 16px; color: var(--gold); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  flex-shrink: 0;
}
.burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--milk);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .header-phone { display: none; }
  .header-actions .btn--gold { display: none; }
}

@media (max-width: 920px) {
  .nav { display: none; }
  .burger { display: block; }
}

/* ---------- 7. Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  height: 100svh;
  background: var(--forest-deep);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  padding: var(--header-h) 36px 40px;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--milk);
  font-size: 24px;
}
.mobile-menu__close:hover { color: var(--gold); }

.mobile-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 20px; }
.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--milk);
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 241, 233, 0.08);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
}
.mobile-menu.is-open .mobile-nav__link { opacity: 1; transform: translateX(0); }
.mobile-menu.is-open .mobile-nav__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-nav__link:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.is-open .mobile-nav__link:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.is-open .mobile-nav__link:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.is-open .mobile-nav__link:nth-child(5) { transition-delay: 0.34s; }
.mobile-nav__link:hover,
.mobile-nav__link[aria-current="page"] { color: var(--gold); }

.mobile-menu__foot { margin-top: auto; padding-top: 30px; }
.mobile-menu__phone {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--milk);
  margin-bottom: 16px;
}
.mobile-menu__phone:hover { color: var(--gold); }
.mobile-menu .btn { width: 100%; }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.menu-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(18, 39, 34, 0.92) 0%, rgba(18, 39, 34, 0.7) 38%, rgba(18, 39, 34, 0.25) 70%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(18, 39, 34, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(180, 154, 104, 0.35);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--milk);
  margin-bottom: 28px;
}
.hero__badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  flex-shrink: 0;
}
.hero__badge .dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}
.hero h1 { color: var(--milk); margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero__sub {
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.7;
  color: rgba(244, 241, 233, 0.85);
  max-width: 560px;
  margin-bottom: 38px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--milk);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.7;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* ---------- 9. Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 clamp(50px, 7vw, 90px);
  background: var(--forest-deep);
  color: var(--milk);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 39, 34, 0.82) 0%, rgba(18, 39, 34, 0.7) 100%);
}
.page-hero__content { position: relative; z-index: 2; max-width: 720px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-bottom: 22px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { color: var(--milk); margin-bottom: 18px; }
.page-hero__lead { font-size: clamp(16px, 1.7vw, 19px); color: rgba(244, 241, 233, 0.82); max-width: 560px; }

/* ---------- 10. Cards / Rooms ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1080px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .cards-grid,
  .cards-grid--2,
  .cards-grid--4 { grid-template-columns: 1fr; }
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.room-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.room-card:hover .room-card__media img { transform: scale(1.06); }
.room-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(18, 39, 34, 0.85);
  backdrop-filter: blur(6px);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}
.room-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.room-card__body h3 { margin-bottom: 8px; }
.room-card__desc { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; flex: 1; }
.room-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.room-card__features li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 10px;
  background: var(--milk-dim);
  border-radius: 100px;
}
.room-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--milk-dim);
}
.room-card__price { display: flex; flex-direction: column; }
.room-card__price .amount {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--forest);
}
.room-card__price .per { font-size: 12px; color: var(--text-muted); }

/* ---------- 11. Amenities / Icon cards ---------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .amenities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .amenities { grid-template-columns: 1fr; } }

.amenity {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.amenity:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.amenity__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--milk-dim);
  color: var(--gold);
}
.amenity__icon svg { width: 26px; height: 26px; }
.amenity h4 { margin-bottom: 8px; }
.amenity p { font-size: 14px; color: var(--text-muted); }

/* ---------- 12. Service cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--forest-deep);
  color: var(--gold);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 22px; }
.service-card p { font-size: 14px; color: var(--text-muted); }
.service-card__hours {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--milk-dim);
}

/* ---------- 13. Casino / Lounge section ---------- */
.casino-section { position: relative; overflow: hidden; }
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0;
}
.casino-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: rgba(244, 241, 233, 0.9);
}
.casino-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  background: radial-gradient(circle at center, var(--gold) 4px, transparent 5px);
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4 / 5; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(180, 154, 104, 0.12);
  border: 1px solid rgba(180, 154, 104, 0.3);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

/* ---------- 14. Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; } }

.stat { text-align: center; padding: 24px; }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--stone);
}

/* ---------- 15. Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 920px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial__stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.testimonial__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  font-style: italic;
  flex: 1;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__author .name { font-weight: 600; font-size: 15px; color: var(--forest); }
.testimonial__author .meta { font-size: 13px; color: var(--text-muted); }

/* ---------- 16. Disclaimer ---------- */
.disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: rgba(180, 154, 104, 0.08);
  border: 1px solid rgba(180, 154, 104, 0.25);
}
.disclaimer__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-deep);
}
.disclaimer__icon svg { width: 20px; height: 20px; }
.disclaimer p { font-size: 15px; color: var(--text-muted); }
.disclaimer strong { color: var(--forest); }

.section--dark .disclaimer { background: rgba(180, 154, 104, 0.1); border-color: rgba(180, 154, 104, 0.3); }
.section--dark .disclaimer p { color: rgba(244, 241, 233, 0.8); }
.section--dark .disclaimer strong { color: var(--gold-light); }

/* ---------- 17. CTA Band ---------- */
.cta-band {
  position: relative;
  padding: clamp(80px, 11vw, 150px) 0;
  text-align: center;
  overflow: hidden;
  color: var(--milk);
}
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.cta-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 39, 34, 0.78) 0%, rgba(18, 39, 34, 0.88) 100%);
}
.cta-band__content { position: relative; z-index: 2; max-width: 680px; margin-inline: auto; }
.cta-band h2 { color: var(--milk); margin-bottom: 22px; }
.cta-band p { font-size: clamp(16px, 1.7vw, 19px); color: rgba(244, 241, 233, 0.85); margin-bottom: 36px; }
.cta-band__cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- 18. Forms ---------- */
.booking-form,
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--stone);
}
.form-field label .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(244, 241, 233, 0.18);
  background: rgba(244, 241, 233, 0.05);
  color: var(--milk);
  font-size: 15px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(244, 241, 233, 0.4); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(244, 241, 233, 0.08);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B49A68' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 42px; }
.form-field select option { background: var(--forest-deep); color: var(--milk); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #d97070; }
.form-error {
  font-size: 12px;
  color: #e08080;
  display: none;
}
.form-field.has-error .form-error { display: block; }

.form-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: rgba(244, 241, 233, 0.55);
  margin-top: 4px;
}
.form-note a { color: var(--gold); text-decoration: underline; }

.form-submit { grid-column: 1 / -1; margin-top: 8px; }

/* Light form variant (contact page on light bg) */
.form--light .form-field label { color: var(--text-muted); }
.form--light .form-field input,
.form--light .form-field select,
.form--light .form-field textarea {
  border-color: var(--milk-dim);
  background: var(--white);
  color: var(--text-dark);
}
.form--light .form-field input::placeholder,
.form--light .form-field textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form--light .form-field input:focus,
.form--light .form-field select:focus,
.form--light .form-field textarea:focus { border-color: var(--gold); background: var(--white); }
.form--light .form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B49A68' stroke-width='1.5'/%3E%3C/svg%3E"); }
.form--light .form-field select option { background: var(--white); color: var(--text-dark); }
.form--light .form-note { color: var(--text-muted); }
.form--light .form-error { color: #c05050; }

@media (max-width: 620px) {
  .booking-form,
  .contact-form { grid-template-columns: 1fr; }
}

/* ---------- 19. Contact Grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; }
.contact-item__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--milk-dim);
  color: var(--gold);
}
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item h4 { font-size: 16px; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--text-muted); }
.contact-item a:hover { color: var(--gold); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
  border: 1px solid var(--milk-dim);
}
.map-frame iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ---------- 20. Legal pages ---------- */
.legal-content {
  max-width: 820px;
  margin-inline: auto;
}
.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--milk-dim);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.legal-updated::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.legal-content h2 { font-size: clamp(24px, 3vw, 34px); margin: 42px 0 18px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 20px; margin: 28px 0 12px; }
.legal-content p { margin-bottom: 16px; color: var(--text-muted); }
.legal-content ul { margin: 14px 0 22px; padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
.legal-content ul li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content strong { color: var(--text-dark); }

/* ---------- 21. Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--milk);
  padding-top: clamp(60px, 8vw, 100px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(244, 241, 233, 0.1);
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(244, 241, 233, 0.65); margin-bottom: 22px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244, 241, 233, 0.08);
  color: var(--milk);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--forest-deep); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col p { font-size: 14px; color: rgba(244, 241, 233, 0.65); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }

.footer-legal {
  padding: 30px 0;
  border-bottom: 1px solid rgba(244, 241, 233, 0.1);
  font-size: 13px;
  color: rgba(244, 241, 233, 0.5);
  line-height: 1.8;
}
.footer-legal strong { color: var(--stone); }

.footer-disclaimer {
  padding: 24px 0;
  border-bottom: 1px solid rgba(244, 241, 233, 0.1);
  font-size: 13px;
  color: rgba(244, 241, 233, 0.55);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-disclaimer svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 13px;
  color: rgba(244, 241, 233, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------- 22. Popup (success) ---------- */
.hm-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.hm-popup.is-open { opacity: 1; visibility: visible; }
.hm-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 39, 34, 0.7);
  backdrop-filter: blur(6px);
}
.hm-popup__card {
  position: relative;
  background: var(--milk);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.5s var(--ease);
}
.hm-popup.is-open .hm-popup__card { transform: translateY(0) scale(1); }
.hm-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 22px;
  transition: var(--transition);
}
.hm-popup__close:hover { background: var(--milk-dim); color: var(--forest); }
.hm-popup__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-deep);
}
.hm-popup__icon svg { width: 30px; height: 30px; }
.hm-popup__card h3 { font-size: 26px; margin-bottom: 12px; color: var(--forest); }
.hm-popup__card p { color: var(--text-muted); margin-bottom: 26px; }

/* ---------- 23. Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 460px;
  z-index: 1150;
  background: var(--forest-deep);
  color: var(--milk);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(180, 154, 104, 0.25);
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s var(--ease);
}
.cookie-banner.is-show { opacity: 1; transform: translateY(0); visibility: visible; }
.cookie-banner h4 { font-size: 18px; margin-bottom: 8px; color: var(--milk); }
.cookie-banner p { font-size: 13px; color: rgba(244, 241, 233, 0.65); margin-bottom: 18px; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 10px; }
.cookie-banner__btns .btn { flex: 1; padding: 12px 18px; font-size: 12px; }
.cookie-banner__confirm {
  font-size: 13px;
  color: var(--gold);
  text-align: center;
  padding: 8px 0;
  display: none;
}
.cookie-banner.is-confirmed .cookie-banner__confirm { display: block; }
.cookie-banner.is-confirmed .cookie-banner__btns,
.cookie-banner.is-confirmed h4,
.cookie-banner.is-confirmed p { display: none; }

@media (max-width: 620px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* ---------- 24. Reveal animations ---------- */
.reveal,
.reveal--left,
.reveal--right,
.reveal--zoom {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal { transform: translateY(40px); }
.reveal--left { transform: translateX(-50px); }
.reveal--right { transform: translateX(50px); }
.reveal--zoom { transform: scale(0.92); }

.reveal.is-visible,
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--zoom.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- 25. Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  z-index: 2000;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--forest-deep);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 20px; }

/* ---------- 26. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--zoom { opacity: 1; transform: none; }
  .hero__badge .dot::after,
  .hero__scroll-line::after { animation: none; }
}

/* ---------- 27. Misc utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
