/* ========================================
   СУВОРОВСКАЯ АКВА — Design System
   Old Money / Moritz-inspired luxury
   ======================================== */

/* --- CSS Variables --- */
:root {
  /* Colors */
  --navy: #003865;
  --navy-dark: #131E29;
  --navy-deep: #141B4D;
  --gold: #CEB888;
  --gold-dark: #AF8C62;
  --gold-light: #DED0B0;
  --cream: #FAFAF9;
  --gray-light: #E7E6E4;
  --gray: #838787;
  --gray-dark: #4A4D4E;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --overlay: rgba(0, 56, 101, 0.55);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant', serif;

  /* Spacing */
  --section-padding: 140px 0;
  --container-width: 1200px;
  --container-padding: 0 80px;

  /* Transitions */
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.7;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.05;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: 0.03em;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: 0.02em;
}

h4 {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

p {
  margin-bottom: 1.2em;
  color: var(--gray-dark);
}

p:last-child {
  margin-bottom: 0;
}

.text-gold {
  color: var(--gold-dark);
}

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

.subtitle {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-dark);
  max-width: 640px;
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Section --- */
.section {
  padding: var(--section-padding);
  position: relative;
}

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

.section--navy {
  background-color: var(--navy);
}

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

.section--navy p {
  color: rgba(255, 255, 255, 0.75);
}

.section--navy .subtitle {
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* --- Decorative divider (diamond) --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 60px 0;
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: var(--gold);
}

.divider__diamond {
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* --- Buttons (bordered + water wave fill on hover) --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: none;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease, border-color 0.5s ease;
  z-index: 1;
}

/* Water wave layer 1 — deeper gold, behind */
.btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-dark);
  z-index: -2;
  transform: translateY(104%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  clip-path: polygon(
    0% 16%, 4% 15%, 8% 14%, 12% 13%, 17% 13%, 22% 14%,
    28% 16%, 33% 18%, 39% 19%, 44% 19%, 50% 17%,
    56% 15%, 61% 14%, 67% 13%, 72% 13%, 78% 15%,
    83% 17%, 89% 19%, 94% 18%, 100% 16%,
    100% 100%, 0% 100%
  );
  animation: btnWave1 4s ease-in-out infinite;
}

/* Water wave layer 2 — lighter gold, front, wave edge ~12% lower */
.btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  z-index: -1;
  transform: translateY(106%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.08s;
  clip-path: polygon(
    0% 30%, 5% 31%, 10% 31%, 15% 30%, 20% 29%,
    26% 27%, 31% 26%, 37% 25%, 42% 25%, 48% 27%,
    53% 29%, 58% 30%, 64% 31%, 69% 31%, 75% 29%,
    80% 27%, 86% 26%, 91% 25%, 96% 26%, 100% 28%,
    100% 100%, 0% 100%
  );
  animation: btnWave2 3.5s ease-in-out infinite;
}

@keyframes btnWave1 {
  0%, 100% {
    clip-path: polygon(
      0% 16%, 4% 15%, 8% 14%, 12% 13%, 17% 13%, 22% 14%,
      28% 16%, 33% 18%, 39% 19%, 44% 19%, 50% 17%,
      56% 15%, 61% 14%, 67% 13%, 72% 13%, 78% 15%,
      83% 17%, 89% 19%, 94% 18%, 100% 16%,
      100% 100%, 0% 100%
    );
  }
  50% {
    clip-path: polygon(
      0% 19%, 4% 19%, 8% 18%, 12% 16%, 17% 15%, 22% 13%,
      28% 13%, 33% 14%, 39% 15%, 44% 17%, 50% 19%,
      56% 19%, 61% 18%, 67% 16%, 72% 15%, 78% 13%,
      83% 13%, 89% 14%, 94% 16%, 100% 19%,
      100% 100%, 0% 100%
    );
  }
}

@keyframes btnWave2 {
  0%, 100% {
    clip-path: polygon(
      0% 30%, 5% 31%, 10% 31%, 15% 30%, 20% 29%,
      26% 27%, 31% 26%, 37% 25%, 42% 25%, 48% 27%,
      53% 29%, 58% 30%, 64% 31%, 69% 31%, 75% 29%,
      80% 27%, 86% 26%, 91% 25%, 96% 26%, 100% 28%,
      100% 100%, 0% 100%
    );
  }
  50% {
    clip-path: polygon(
      0% 26%, 5% 25%, 10% 25%, 15% 27%, 20% 29%,
      26% 30%, 31% 31%, 37% 31%, 42% 29%, 48% 27%,
      53% 26%, 58% 25%, 64% 25%, 69% 27%, 75% 29%,
      80% 31%, 86% 31%, 91% 29%, 96% 27%, 100% 26%,
      100% 100%, 0% 100%
    );
  }
}

.btn:hover::before {
  transform: translateY(0);
}

.btn:hover::after {
  transform: translateY(0);
}

.btn:hover {
  color: var(--navy-dark);
  border-color: var(--gold);
}

/* --- Variants --- */

/* Primary — default on light bg */
.btn--primary {
  color: var(--navy);
}

/* Outline — same as primary on light bg */
.btn--outline {
  color: var(--navy);
}

/* Primary on dark backgrounds */
.hero .btn--primary,
.header .btn--primary,
.section--navy .btn--primary {
  color: var(--gold);
  border-color: var(--gold);
}

.hero .btn--primary:hover,
.header .btn--primary:hover,
.section--navy .btn--primary:hover {
  color: var(--navy-dark);
}

/* Light & Gold — for navy backgrounds */
.btn--outline-light,
.btn--outline-gold {
  color: var(--gold);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover,
.btn--outline-gold:hover {
  color: var(--navy-dark);
  border-color: var(--gold);
}

/* --- Sizes --- */
.btn--sm {
  padding: 10px 24px;
  font-size: 0.7rem;
}

.btn--lg {
  padding: 16px 44px;
  font-size: 0.85rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.card__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__body {
  padding: 32px;
}

.card__tag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.card__text {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
}

.card__price span {
  font-size: 0.85rem;
  color: var(--gray);
  font-family: var(--font-body);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: 32px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.grid--asymmetric {
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.grid--asymmetric-reverse {
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.header--scrolled {
  background: var(--navy);
  padding: 16px 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1001;
}

.header__logo svg,
.header__logo-icon {
  height: 36px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.header__logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  font-weight: 400;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

.header__nav a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 1001;
}

.header__lang {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.header__lang:hover {
  color: var(--white);
}

/* --- Mega-dropdown (compact screens) --- */

/* On wide screens (>1400px): show all 7 links, hide dropdown */
.header__nav-more {
  display: none;
}

.header__nav-primary {
  display: none;
}

.header__nav-wide {
  display: inline;
}

/* On compact screens (1200-1400px): show 3 links + dropdown, hide wide links */
@media (max-width: 1400px) and (min-width: 768px) {
  .header__nav-wide {
    display: none !important;
  }

  .header__nav-primary {
    display: inline !important;
  }

  .header__nav-more {
    display: inline-block;
    position: static;
  }

  .header__nav-more-trigger {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    transition: color 0.3s ease;
  }

  .header__nav-more-trigger:hover {
    color: var(--white);
  }

  .header__nav-more-trigger svg {
    transition: transform 0.3s ease;
  }

  .header__nav-more:hover .header__nav-more-trigger svg {
    transform: rotate(180deg);
  }

  /* Dropdown panel — full width, relative to .header */
  .header__nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    z-index: 1002;
  }

  /* Invisible hover bridge between trigger and dropdown */
  .header__nav-dropdown::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
  }

  .header__nav-more:hover .header__nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__nav-dropdown-inner {
    background: var(--navy-dark);
    border-top: 1px solid rgba(206, 184, 136, 0.1);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  }

  .header__nav-dropdown-col {
    padding: 32px 40px;
  }

  .header__nav-dropdown-col:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header__nav-dropdown-heading {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.7;
  }

  .header__nav-dropdown-col a {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    padding: 10px 0;
    transition: color 0.3s ease;
  }

  .header__nav-dropdown-col a::after {
    display: none;
  }

  .header__nav-dropdown-col a:hover {
    color: var(--gold);
  }

  /* Accent block — subtle, same style */
  .header__nav-dropdown-accent {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(206, 184, 136, 0.04);
  }

  .header__nav-dropdown-accent-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 400;
  }

  .header__nav-dropdown-accent-text {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .header__nav-dropdown-accent .btn {
    font-size: 0.62rem;
    padding: 9px 18px;
    align-self: flex-start;
  }
}

/* Mobile menu toggle */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.header__burger span {
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-deep) 100%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 40px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero__description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Hero (inner pages) --- */
.hero--inner {
  height: 50vh;
  min-height: 400px;
}

/* --- Feature icons --- */
.feature {
  text-align: center;
  padding: 40px 24px;
}

.feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold-dark);
  stroke-width: 1;
  fill: none;
}

.feature__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.feature__text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* --- Split section (image + text) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}

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

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.split__content h2 {
  margin-bottom: 1.5rem;
}

.split__content p {
  margin-bottom: 2rem;
}

/* --- Big number section --- */
.big-number {
  text-align: center;
  padding: 160px 0;
}

.big-number__value {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.big-number__label {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 2rem;
}

.big-number__text {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--gray-dark);
}

/* --- Testimonials --- */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial {
  min-width: 100%;
  text-align: center;
  padding: 0 80px;
}

.testimonial__text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial__author {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}

.testimonials__dot--active {
  background: var(--gold);
}

/* --- Contact / Map --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info__item {
  margin-bottom: 2rem;
}

.contact-info__label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-info__value {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.6;
}

.contact-info__value a:hover {
  color: var(--gold-dark);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__logo svg {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer__description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Room detail card --- */
.room-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition);
}

.room-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.room-card__image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}

.room-card__body {
  padding: 36px;
}

.room-card__category {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.room-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.room-card__meta {
  display: flex;
  gap: 24px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.room-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-card__text {
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.room-card__amenity {
  font-size: 0.75rem;
  padding: 6px 14px;
  border: 1px solid var(--gray-light);
  color: var(--gray-dark);
  letter-spacing: 0.05em;
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
}

.room-card__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
}

.room-card__price small {
  font-size: 0.8rem;
  color: var(--gray);
  font-family: var(--font-body);
}

/* --- Wellness program cards --- */
.program-card {
  border: 1px solid var(--gray-light);
  padding: 40px;
  transition: var(--transition);
}

.program-card:hover {
  border-color: var(--gold);
}

.program-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
}

.program-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.program-card__text {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.program-card__price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-dark);
}

/* --- Filter tabs --- */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 28px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  font-family: var(--font-body);
}

.filter-tab:hover,
.filter-tab--active {
  color: var(--navy);
  border-color: var(--navy);
}

/* --- Parallax section --- */
.section--parallax {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 0;
  right: 0;
  z-index: 0;
  will-change: transform;
  overflow: hidden;
}

.parallax-bg--source {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-deep) 100%);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
}

/* --- Media Placeholders (video/slider indicators) --- */
.media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.media-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
  opacity: 0.5;
}

.media-placeholder__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.media-placeholder__dots {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.media-placeholder__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.media-placeholder__dots span:first-child {
  background: rgba(255, 255, 255, 0.5);
}

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