/* =============================================
   Graneé Cabin Rental — Landing Page Styles
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
  --color-navy: #050a18;
  --color-navy-light: #0f1d35;
  --color-navy-mid: #1a2d4d;
  --color-footer-bg: #030712;
  --color-white: #ffffff;
  --color-gray-50: #f8f9fb;
  --color-gray-100: #f1f3f6;
  --color-gray-200: #e5e8ed;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-800: #1f2937;
  --color-blue: #2563eb;
  --color-spec-blue: #5882fa;
  --color-blue-hover: #1d4ed8;
  --color-coral: #ff6b6b;
  --color-coral-hover: #ee5a5a;
  --color-whatsapp: #25d366;
  --color-telegram: #229ed9;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1200px;
  --container-wide: 1360px;
  --container-padding: clamp(1.25rem, 4vw, 2.5rem);
  --section-padding: clamp(4rem, 8vw, 6rem);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: clamp(5rem, 14vw, 6.5rem);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-800);
  background: var(--color-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container--wide {
  max-width: var(--container-wide);
}

.section-header--properties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  padding-bottom: 1.05rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid #404244;
}

.section-header--left {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-header__left {
  text-align: left;
}

.section-header__subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-gray-500);
line-height: 1.75;
  max-width: 27rem;
  justify-self: end;
  text-align: right;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0.75rem;
}

.section-label--light {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-navy);
}

.section-title--center {
  text-align: center;
}

.section-title--light {
  color: var(--color-white);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-header--with-line {
  position: relative;
  padding-bottom: 1.5rem;
}

.section-header--with-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 1px;
  background: var(--color-gray-200);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-blue);
  margin-top: 1.5rem;
}

.link-arrow::after {
  content: '→';
  transition: transform var(--transition);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Language Dropdown --- */
.lang-dropdown {
  position: relative;
}

.lang-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  font-family: var(--font-sans);
  transition: background var(--transition), opacity var(--transition);
}

.lang-dropdown__toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown__chevron {
  transition: transform var(--transition);
}

.lang-dropdown--open .lang-dropdown__chevron {
  transform: rotate(180deg);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 150px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 1003;
}

.lang-dropdown--open .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown__option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-gray-800);
  cursor: pointer;
  transition: background var(--transition);
}

.lang-dropdown__option:hover,
.lang-dropdown__option--active {
  background: var(--color-gray-50);
  color: var(--color-blue);
}

.lang-dropdown__option--active {
  font-weight: 600;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-blue-hover);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-md);
}

.btn--pill {
  border-radius: 999px;
  padding: 0.625rem 1.375rem;
  font-weight: 600;
}

.btn--coral {
  background: var(--color-coral);
  color: var(--color-white);
}

.btn--coral:hover {
  background: var(--color-coral-hover);
}

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

.btn--navy:hover {
  background: var(--color-navy-light);
}

.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.btn--icon:hover {
  background: var(--color-blue-hover);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #050a18;
  padding-bottom: clamp(5.5rem, 10vw, 7rem);
  overflow: visible;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 10, 24, 0.2) 0%,
    rgba(5, 10, 24, 0.05) 28%,
    transparent 45%,
    transparent 62%,
    rgba(255, 255, 255, 0.35) 78%,
    rgba(255, 255, 255, 0.82) 90%,
    var(--color-white) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: clamp(0.875rem, 2vw, 1.25rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  /* Same outer band as .container--wide; inner pad keeps logo near content edge */
  width: min(var(--container-wide), calc(100% - (2 * var(--container-padding))));
  max-width: var(--container-wide);
  padding: 0.625rem clamp(0.875rem, 2vw, 1.25rem);
  background: rgba(10, 25, 47, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(10, 25, 47, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 1002;
  flex-shrink: 0;
  line-height: 0;
}

.nav__logo img {
  display: block;
  height: clamp(36px, 5vw, 48px);
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.nav .lang-dropdown__chevron {
  display: none;
}

.nav__lang {
  display: none;
}

/* Hamburger toggle (CSS-only) */
.nav__toggle-input {
  display: none;
}

.nav__toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1002;
}

.nav__toggle-label span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero content */
.hero__content {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -40%);
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-padding);
  max-width: 780px;
  width: 100%;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.hero__title-line {
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.hero__title-line + .hero__title-line {
  margin-top: 0.35rem;
}

.hero__title-line--italic em {
  font-style: italic;
  font-family: inherit;
  font-weight: inherit;
}

.hero__subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin-inline: auto;
  text-shadow: 0 1px 12px rgba(5, 10, 24, 0.25);
}

/* --- Floating Contact Bar --- */
.contact-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 5;
  display: flex;
  align-items: stretch;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: min(920px, calc(100% - 2rem));
  overflow: hidden;
}

.contact-bar__item {
  flex: 1;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 0.875rem;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 2.5vw, 1.5rem);
  transition: background var(--transition);
  border-right: 1px solid var(--color-gray-100);
  text-align: left;
}

.contact-bar__item:last-child {
  border-right: none;
}

.contact-bar__item:hover {
  background: var(--color-gray-50);
}

.contact-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-bar__icon--whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: var(--color-whatsapp);
}

.contact-bar__icon--telegram {
  background: rgba(34, 158, 217, 0.12);
  color: var(--color-telegram);
}

.contact-bar__icon--phone {
  background: var(--color-navy);
  color: var(--color-white);
}

.contact-bar__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.125rem;
}

.contact-bar__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  line-height: 1.3;
}

.contact-bar__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.3;
}

/* --- Side Sticky Bar --- */
.sticky-bar {
  position: fixed;
  right: clamp(0.75rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%) translateX(calc(100% + 2rem));
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem;
  background: var(--color-white);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.sticky-bar--visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  visibility: visible;
}

.sticky-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--color-white);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.sticky-bar__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.sticky-bar__btn--whatsapp {
  background: var(--color-whatsapp);
}

.sticky-bar__btn--telegram {
  background: var(--color-telegram);
}

.sticky-bar__btn--phone {
  background: var(--color-navy);
}

/* =============================================
   INTRO & STATS
   ============================================= */
.intro {
  padding: calc(var(--section-padding) + 4.5rem) 0 var(--section-padding);
  background: var(--color-white);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro__text {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-gray-500);
  line-height: 1.75;
  margin-top: 1.25rem;
}

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

.stat-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-card__value {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.1;
}

.stat-card__label {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  font-weight: 400;
}

.stat-card__stars {
  display: flex;
  gap: 2px;
  margin-top: 0.15rem;
}

/* =============================================
   AMENITIES
   ============================================= */
.amenities {
  padding: var(--section-padding) 0;
  background: var(--color-gray-50);
}

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

.amenity-card {
  background: var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform var(--transition), box-shadow var(--transition);
}

.amenity-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.amenity-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-blue);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.amenity-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.625rem;
}

.amenity-card__text {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1.65;
}

/* =============================================
   PROPERTIES
   ============================================= */
.properties {
  padding: var(--section-padding) 0 clamp(1.75rem, 4vw, 2.75rem);
  background: #ffffff;
}

.property {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
  margin-bottom: clamp(5rem, 10vw, 8rem);
}

.property:last-child {
  margin-bottom: 0;
}

/* Cabin Norway — set display when ready to launch (remove class + hidden from #cabin-norway) */
.property.property--hidden {
  display: none !important;
}

.property--band {
  margin-bottom: 0;
}

.property-band--gray {
  background: var(--color-gray-50);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  margin: clamp(2.5rem, 5vw, 4rem) 0;
}

.property--right {
  direction: rtl;
}

.property--right > * {
  direction: ltr;
}

.property__gallery {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.property__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-navy);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  box-shadow: var(--shadow-sm);
}

.property__gallery:hover .property__nav {
  opacity: 1;
}

.property__nav:hover {
  background: var(--color-white);
  transform: translateY(-50%) scale(1.05);
}

.property__nav--prev {
  left: 1rem;
}

.property__nav--next {
  right: 1rem;
}

.property__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
  background: linear-gradient(to top, rgba(5, 10, 24, 0.75), transparent);
}

.property__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.property__name {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0;
  flex-shrink: 0;
  line-height: 1;
}

.property__location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

.property__location-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.75);
}

.property__dots {
  position: static;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.property__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.property__dot:hover {
  transform: scale(1.15);
}

.property__dot--active {
  background: var(--color-white);
}

.property__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.property__desc {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-gray-500);
  line-height: 2;
  margin-bottom: 2rem;
}

.property__desc--clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property__desc--multiline {
  display: block;
  overflow: visible;
}

.property__specs {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.property__spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}

.property__spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-spec-blue);
  line-height: 0;
}

.property__spec-icon img {
  display: block;
  width: auto;
  height: 32px;
  max-width: 41px;
  object-fit: contain;
}

.property__spec-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-spec-blue);
  line-height: 1.2;
  white-space: nowrap;
}

.property__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
}

.property__reserve-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: 1rem;
}

.property__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn--view-more {
  flex: 1;
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  background: #0A192F;
  color: var(--color-white);
  text-align: center;
  justify-content: center;
}

.btn--view-more:hover {
  background: #112240;
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--coming-soon {
  cursor: default;
  pointer-events: none;
  opacity: 0.92;
}

.btn--coming-soon:hover {
  background: #0A192F;
  transform: none;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 var(--section-padding);
  background: var(--color-gray-50);
}

.testimonials .section-header,
.testimonials .section-header__left {
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(17, 34, 64, 0.8) 6.17%, rgba(10, 25, 47, 0.9) 93.83%);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 280px;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
}

.testimonial-card__platform {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__platform img {
  display: block;
  height: 28px;
  width: auto;
}

.testimonial-card__quote {
  flex: 1;
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.testimonial-card__cabin {
  display: contents;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3B82F6;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  line-height: 1.2;
}

/* =============================================
   EXPERIENCE
   ============================================= */
.experience {
  position: relative;
  isolation: isolate;
  padding: var(--section-padding) 0;
  background-color: var(--color-navy);
  background-image:
    radial-gradient(ellipse 70% 55% at 12% 45%, rgba(37, 99, 235, 0.14) 0%, transparent 68%),
    radial-gradient(ellipse 45% 35% at 88% 18%, rgba(37, 99, 235, 0.1) 0%, transparent 62%);
}

.experience__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.experience__content .section-title {
  margin-bottom: 1.25rem;
}

.experience__text {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.experience__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.experience__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.experience__list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  flex-shrink: 0;
}

.experience__gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  min-height: clamp(400px, 40vw, 520px);
  height: clamp(400px, 40vw, 520px);
  overflow: hidden;
}

.experience__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 14px;
}

.experience__gallery img:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
  border-radius: 16px;
  object-position: center top;
}

.experience__gallery img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  object-position: center center;
}

.experience__gallery img:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
  object-position: center center;
}

.experience__gallery img:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
  object-position: center center;
}

.experience__gallery img:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
  object-position: center center;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-footer-bg);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  align-items: start;
}

.footer__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.875rem;
}

.footer__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.75rem;
  max-width: 420px;
}

.footer__contact-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 440px;
}

.footer__contact-btn {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--color-white);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.footer__contact-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.footer__contact-btn--whatsapp {
  border-color: rgba(37, 211, 102, 0.45);
}

.footer__contact-btn--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.7);
}

.footer__contact-btn--telegram {
  border-color: rgba(34, 158, 217, 0.45);
}

.footer__contact-btn--telegram:hover {
  border-color: rgba(34, 158, 217, 0.7);
}

.footer__contact-btn--call {
  grid-column: 1 / -1;
  border-color: rgba(148, 163, 184, 0.4);
}

.footer__contact-btn--call:hover {
  border-color: rgba(148, 163, 184, 0.65);
}

.footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer__contact-icon--phone {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.footer__contact-icon--telegram {
  background: rgba(34, 158, 217, 0.18);
  color: var(--color-telegram);
}

.footer__contact-icon--whatsapp {
  background: rgba(37, 211, 102, 0.18);
  color: var(--color-whatsapp);
}

.footer__contact-btn__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.footer__contact-btn__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.2;
}

.footer__contact-btn__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
}

.footer__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 1.25rem;
}

.footer__links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__links-col li,
.footer__links-col a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
  line-height: 1.5;
}

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

.footer__address-link {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.footer__address-line1 {
  color: #3b82f6;
}

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

.footer__address-link:hover .footer__address-line1 {
  color: #60a5fa;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  min-width: 0;
}

.footer__logo {
  display: block;
  height: 42px;
  width: auto;
  flex-shrink: 0;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

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

/* --- Privacy Terms Page --- */
.privacy-page {
  background: var(--color-white);
  min-height: 100vh;
}

.privacy-page .nav {
  background: rgba(10, 25, 47, 0.92);
}

.privacy-page .footer {
  margin-top: auto;
}

.privacy-page .footer__bottom {
  border-top: none;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  justify-content: center;
}

.privacy-doc {
  padding: clamp(7rem, 12vw, 8.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.privacy-doc__inner {
  max-width: 760px;
}

.privacy-doc__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.privacy-doc__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.15;
  margin: 0;
}

.privacy-doc__updated {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.privacy-doc__intro {
  padding-bottom: 0.5rem;
}

.privacy-doc__intro p {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--color-gray-600);
  margin: 0 0 1rem;
}

.privacy-doc__section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-gray-200);
}

.privacy-doc__section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.375rem);
  font-weight: 500;
  color: var(--color-navy);
  margin: 0 0 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.privacy-doc__section p {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--color-gray-600);
  margin: 0 0 0.85rem;
}

.privacy-doc__section p:last-child {
  margin-bottom: 0;
}

.privacy-doc__section ul {
  margin: 0.35rem 0 0.85rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.privacy-doc__section li {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--color-gray-600);
  margin-bottom: 0.4rem;
}

.privacy-doc__section li:last-child {
  margin-bottom: 0;
}

.privacy-doc__contact {
  margin-top: 0.65rem;
}

.privacy-doc__contact strong {
  display: block;
  color: var(--color-navy);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.privacy-doc__contact a {
  color: var(--color-blue);
}

.privacy-doc__contact a:hover {
  text-decoration: underline;
}

/* =============================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

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

  .footer__cta {
    grid-column: span 2;
  }
}

/* =============================================
   RESPONSIVE — Mobile Nav (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
  .nav {
    left: 0.75rem;
    right: 0.75rem;
    transform: none;
    width: auto;
    max-width: none;
    padding: 0.5rem 0.875rem;
    border-radius: 999px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 25, 47, 0.92);
    overflow: visible;
    transition: inset 0.25s ease, border-radius 0.25s ease, background 0.25s ease, padding 0.25s ease;
  }

  /* Expand the whole nav into a full-page menu when open */
  .nav:has(.nav__toggle-input:checked) {
    inset: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-width: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0.75rem 1rem;
    align-content: start;
    background: #050a18;
    z-index: 2000;
  }

  .nav__logo {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 1003;
  }

  .nav__logo img {
    height: 32px;
  }

  .nav__toggle-label {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    position: relative;
    z-index: 1003;
  }

  .nav__actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    transform: none;
    position: relative;
    z-index: 1003;
  }

  .nav__toggle-input:checked ~ .nav__links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__links {
    grid-column: 1 / -1;
    grid-row: 2;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(1.1rem, 3.5vh, 1.75rem);
    padding: 5.5rem 1.5rem 2.5rem;
    margin: 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 1001;
  }

  .nav:has(.nav__toggle-input:checked) .nav__links {
    position: absolute;
  }

  .nav__links li {
    width: 100%;
    text-align: center;
    flex-shrink: 0;
  }

  .nav__links a {
    display: inline-block;
    font-size: clamp(1.125rem, 4.5vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0.4rem 0.75rem;
  }

  .nav__toggle-input:checked + .nav__toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle-input:checked + .nav__toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle-input:checked + .nav__toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body:has(.nav__toggle-input:checked) {
    overflow: hidden;
  }

  .intro__grid,
  .property,
  .experience__grid {
    grid-template-columns: 1fr;
  }

  .experience__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
    min-height: 0;
  }

  .experience__gallery img:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 5;
    max-height: 460px;
  }

  .experience__gallery img:nth-child(2) {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .experience__gallery img:nth-child(3) {
    grid-column: 2;
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }

  .experience__gallery img:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .experience__gallery img:nth-child(5) {
    grid-column: 2;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .intro__content {
    text-align: center;
  }

  .intro__content .link-arrow {
    justify-content: center;
  }

  .stats-grid {
    max-width: 420px;
    margin-inline: auto;
  }

  .section-header--properties {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-header__subtitle {
    justify-self: start;
    text-align: left;
    max-width: none;
  }

  .property--right {
    direction: ltr;
  }

  .property__gallery {
    order: -1;
  }
}

/* =============================================
   RESPONSIVE — Mobile (≤ 640px)
   ============================================= */
@media (max-width: 640px) {
  .nav__actions .btn--primary {
    display: none;
  }

  .hero {
    --hero-image-height: clamp(16.5rem, 70vw, 20rem);
    --contact-bar-overhang: 4.25rem;
    min-height: calc(var(--hero-image-height) + var(--contact-bar-overhang));
    padding-bottom: 0;
    background: var(--color-white);
    background-image: none;
    overflow: visible;
  }

  .hero__video {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: var(--hero-image-height);
    object-position: center top;
  }

  .hero::after {
    content: none;
  }

  .hero::before {
    height: var(--hero-image-height);
    bottom: auto;
    background: linear-gradient(
      to bottom,
      rgba(5, 10, 24, 0.42) 0%,
      rgba(5, 10, 24, 0.14) 22%,
      transparent 50%,
      transparent 82%,
      rgba(255, 255, 255, 0.28) 93%,
      var(--color-white) 100%
    );
  }

  .hero__content {
    top: 48%;
    left: 50%;
    transform: translate(-50%, -45%);
    padding: 0 1.25rem;
    width: 100%;
    max-width: none;
  }

  .hero__title {
    font-size: clamp(1.375rem, 5.8vw, 1.75rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
  }

  .hero__title-line {
    width: fit-content;
    max-width: none;
  }

  .hero__title-line + .hero__title-line {
    margin-top: 0.08rem;
  }

  .hero__subtitle {
    max-width: min(15rem, calc(100vw - 2.5rem));
    margin-inline: auto;
    margin-top: 0;
    font-size: clamp(0.5625rem, 2.4vw, 0.6875rem);
    line-height: 1.45;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  }

  .contact-bar {
    top: var(--hero-image-height);
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -44%);
    flex-direction: column;
    width: min(200px, calc(100% - 4rem));
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .contact-bar__item {
    grid-template-columns: 30px 1fr;
    border-right: none;
    border-bottom: 1px solid var(--color-gray-100);
    padding: 0.5rem 0.7rem;
    gap: 0.5rem;
    min-height: 0;
  }

  .contact-bar__item:last-child {
    border-bottom: none;
  }

  .contact-bar__icon {
    width: 30px;
    height: 30px;
  }

  .contact-bar__icon svg {
    width: 15px;
    height: 15px;
  }

  .contact-bar__icon--whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
  }

  .contact-bar__icon--telegram {
    background: var(--color-telegram);
    color: var(--color-white);
  }

  .contact-bar__label {
    font-size: 0.46875rem;
    line-height: 1.2;
    letter-spacing: 0.09em;
  }

  .contact-bar__name {
    font-size: 0.71875rem;
    line-height: 1.2;
  }

  .contact-bar__text {
    gap: 0.1rem;
  }

  .intro {
    padding-top: var(--section-padding);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
    max-width: 400px;
    margin-inline: auto;
  }

  .stat-card {
    padding: 1.125rem 1rem;
    text-align: center;
    align-items: center;
  }

  .stat-card__value {
    font-size: 1.625rem;
  }

  .stat-card__label {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .stat-card__stars {
    justify-content: center;
  }

  .stat-card__stars svg {
    width: 13px;
    height: 13px;
  }

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

  .property__actions {
    flex-direction: row;
    align-items: stretch;
  }

  .property__actions .btn--view-more {
    flex: 1;
    min-width: 0;
  }

  .sticky-bar {
    right: 0.625rem;
    padding: 0.625rem;
    gap: 0.5rem;
  }

  .sticky-bar__btn {
    width: 42px;
    height: 42px;
  }

  .sticky-bar__btn svg {
    width: 20px;
    height: 20px;
  }

  .experience__gallery {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

  .experience__gallery img:nth-child(1) {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .experience__gallery img:nth-child(2),
  .experience__gallery img:nth-child(3),
  .experience__gallery img:nth-child(4),
  .experience__gallery img:nth-child(5) {
    grid-column: 1;
    aspect-ratio: 16 / 10;
  }

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

  .footer__cta {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-left {
    flex-direction: column;
    justify-content: center;
  }

  .footer__contact-btns {
    max-width: none;
  }
}

/* =============================================
   RESPONSIVE — Small Mobile (≤ 400px)
   ============================================= */
@media (max-width: 400px) {
  .hero {
    --hero-image-height: clamp(15.5rem, 68vw, 18.5rem);
  }

  .contact-bar {
    width: min(192px, calc(100% - 3.5rem));
  }

  .contact-bar__item {
    padding: 0.45rem 0.6rem;
  }

  .hero__title {
    font-size: clamp(1.25rem, 5.4vw, 1.5rem);
  }

  .hero__subtitle {
    max-width: min(14rem, calc(100vw - 2.25rem));
    font-size: clamp(0.53125rem, 2.3vw, 0.625rem);
  }

  .stats-grid {
    max-width: 360px;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem 0.75rem;
  }

  .stat-card__value {
    font-size: 1.5rem;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
