/* ============================================
   HEYDAY Senior Living — Main Stylesheet
   Premium Luxury Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brochure brand palette — heyday-brochure.pdf */
  --color-brand-red: #ee3c23;
  --color-brand-red-dark: #c42f18;
  --color-brand-red-light: #f05a28;
  --color-brand-orange: #faab59;
  --color-brand-orange-light: #fcd099;
  --color-brand-orange-dark: #e8943a;
  --color-brand-blue: #a6c3e6;
  --color-brand-blue-light: #c5daf0;
  --color-brand-blue-dark: #7aa8d4;
  --color-brand-green: #049055;
  --color-brand-green-light: #0aad6a;
  --color-brand-green-dark: #037a47;
  --color-brand-sage: #b4dcb4;
  --color-brand-sage-light: #c2e2c2;
  --color-brand-sage-dark: #8fc98f;
  --color-brand-peach: #fad5a5;

  /* Semantic tokens mapped to brochure */
  --color-navy: #221f20;
  --color-navy-deep: #141414;
  --color-navy-light: #3d3a3b;
  --color-gold: #ee3c23;
  --color-gold-light: #faab59;
  --color-gold-dark: #c42f18;
  --color-cream: #f8f9f9;
  --color-cream-dark: #e6e4e3;
  --color-sage: #b4dcb4;
  --color-sage-light: #c2e2c2;
  --color-charcoal: #221f20;
  --color-white: #ffffff;
  --color-text: #221f20;
  --color-text-light: #4a4748;
  --color-text-muted: #7a7778;

  /* RGB channels for rgba() */
  --rgb-brand-red: 238, 60, 35;
  --rgb-brand-orange: 250, 171, 89;
  --rgb-brand-blue: 166, 195, 230;
  --rgb-brand-green: 4, 144, 85;
  --rgb-brand-sage: 180, 220, 180;
  --rgb-charcoal: 34, 31, 32;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-blur: 16px;
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-nav: 1320px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  font-family: var(--font-body);
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

main {
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow-x: clip;
}

section {
  max-width: 100%;
  overflow-x: clip;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  min-width: 0;
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--alt {
  background-color: var(--color-brand-blue-light);
}

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

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.section__title--light {
  color: var(--color-cream);
}

.section__desc {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Glass Card --- */
.glass-card {
  background: var(--glass-bg-light);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

.section--dark .glass-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--color-cream);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

.btn--full {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-brand-red) 0%, var(--color-brand-red-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(var(--rgb-brand-red), 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--rgb-brand-red), 0.45);
}

.btn--glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  color: var(--color-white);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.contact .btn--glass {
  color: var(--color-navy);
  background: rgba(var(--rgb-charcoal), 0.06);
  border-color: rgba(var(--rgb-charcoal), 0.12);
}

.contact .btn--glass:hover {
  background: rgba(var(--rgb-charcoal), 0.1);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid rgba(var(--rgb-charcoal), 0.2);
  box-shadow: none;
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
  background: rgba(var(--rgb-brand-red), 0.08);
  transform: translateY(-2px);
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy-deep);
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
  max-width: 100%;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
}

.preloader__logo {
  width: 80px;
  margin: 0 auto var(--space-md);
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader__bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto var(--space-sm);
}

.preloader__bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.preloader__percent {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.06em;
}

.preloader__text {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: var(--space-sm);
}

.preloader.is-complete .preloader__inner {
  animation: preloaderExit 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preloader__bar span {
  display: none;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  max-width: 100%;
  overflow-x: clip;
  transform: translateY(0);
  transition: background 0.45s var(--ease-out),
              box-shadow 0.45s var(--ease-out),
              border-color 0.45s var(--ease-out),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.header.header--hidden {
  transform: translateY(-105%);
}

.header.header--compact .nav__logo img {
  width: 42px;
  height: 42px;
}

.header.header--compact .nav__brand {
  font-size: 1.25rem;
}

.header--transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header--transparent.scrolled,
.header.menu-open {
  background: rgba(var(--rgb-charcoal), 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-nav);
  gap: var(--space-md);
  min-width: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1002;
  flex-shrink: 0;
}

.nav__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--color-cream);
  border-radius: 50%;
  padding: 4px;
  transition: transform var(--transition-base);
}

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

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white);
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 0.375rem 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-brand-orange);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-brand-orange);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
  margin-left: 0.25rem;
}

.nav__overlay {
  display: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1002;
}

.nav__toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease,
              background var(--transition-fast);
  border-radius: 2px;
}

.header.scrolled .nav__toggle-bar,
.header.menu-open .nav__toggle-bar {
  background: var(--color-white);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video,
.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__fallback {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero__fallback.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero__video.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(var(--header-height) + var(--space-lg));
  padding-bottom: calc(var(--space-2xl) + 60px);
}

.hero__content {
  text-align: left;
  max-width: 720px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-brand-orange);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}

.hero__title-accent {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: var(--color-brand-orange-light);
  margin-top: 0.15em;
}

.hero__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero__pillar {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.5rem 1.125rem;
  border: 1px solid rgba(var(--rgb-brand-red), 0.35);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base);
}

.hero__pillar:hover {
  border-color: var(--color-brand-orange);
  background: rgba(var(--rgb-brand-orange), 0.15);
  transform: translateY(-2px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hero__scroll:hover {
  color: var(--color-gold-light);
}

.hero__scroll-text {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero__scroll-wheel {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* --- About --- */
.about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-brand-sage-light) 0%, var(--color-brand-sage) 100%);
}

.about.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.about .container {
  max-width: var(--container-nav);
  padding-left: clamp(1rem, 2.5vw, 1.5rem);
  padding-right: clamp(1rem, 2.5vw, 1.5rem);
}

.about__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.about__shape--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -100px;
  background: rgba(var(--rgb-brand-red), 0.18);
}

.about__shape--2 {
  width: 320px;
  height: 320px;
  bottom: -80px;
  right: 10%;
  background: rgba(var(--rgb-brand-sage), 0.15);
}

.about__shape--3 {
  width: 260px;
  height: 260px;
  top: 40%;
  right: -60px;
  background: rgba(var(--rgb-charcoal), 0.06);
}

.about__shape--4 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 35%;
  background: rgba(var(--rgb-brand-red), 0.1);
  border-radius: 30% 70% 60% 40%;
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}

.about__visual {
  position: relative;
  width: 100%;
}

@media (min-width: 1101px) {
  .about__visual {
    position: sticky;
    top: calc(var(--header-height) + var(--space-sm));
  }
}

.about__image-frame--brand .about__image--brand {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  transform: none;
}

.about__image-frame--brand:hover .about__image--brand {
  transform: none;
  box-shadow: none;
}

.about__image--brand img {
  width: 100%;
  height: auto;
  max-height: min(780px, 88vh);
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.about__image-frame--brand:hover .about__image--brand img {
  transform: none;
}

.about__image-frame {
  position: relative;
  width: 100%;
}

.about__image {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(var(--rgb-charcoal), 0.15);
  transform: translateZ(0);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.about__image-frame:hover .about__image {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 100px rgba(var(--rgb-charcoal), 0.22);
}

.about__image img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.about__image-frame:hover .about__image img {
  transform: scale(1.08);
}

.about__image-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.9s var(--ease-out);
}

.about__image-frame:hover .about__image-shine {
  transform: translateX(100%);
}

.about__image-accent {
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid rgba(var(--rgb-brand-red), 0.35);
  border-radius: var(--radius-xl);
  z-index: -1;
  transition: inset 0.5s var(--ease-out), border-color 0.5s ease;
}

.about__image-frame:hover .about__image-accent {
  inset: -18px -18px 18px 18px;
  border-color: rgba(var(--rgb-brand-red), 0.55);
}

.about__badge {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  min-width: 140px;
}

.about__badge-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.25rem;
}

.about__badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
}

.about__badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

.about__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--space-lg);
}

.about__header .section__eyebrow {
  display: block;
  margin-bottom: var(--space-sm);
}

.about__header .about__lead {
  margin-bottom: 0;
}

.about__content {
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.about__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.about__copy {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.about__copy p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-light);
  margin: 0 0 var(--space-md);
}

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

.about__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
  margin-bottom: var(--space-md);
}

.about__highlight {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.about__highlight:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(var(--rgb-brand-red), 0.2);
  transform: translateX(6px);
}

.about__highlight-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--rgb-brand-red), 0.15), rgba(var(--rgb-brand-red), 0.05));
  border: 1px solid rgba(var(--rgb-brand-red), 0.25);
  border-radius: var(--radius-sm);
  transition: background var(--transition-base), transform var(--transition-base);
}

.about__highlight:hover .about__highlight-icon {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: scale(1.05);
}

.about__highlight:hover .about__highlight-icon img {
  filter: brightness(0) invert(1);
}

.about__highlight-icon img {
  filter: invert(45%) sepia(25%) saturate(600%) hue-rotate(5deg);
  transition: filter var(--transition-base);
}

.about__highlight strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}

.about__highlight p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.about__highlight:last-child {
  grid-column: 1 / -1;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: 0;
}

/* --- Stats --- */
.lifestyle__stats.stats {
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.stats {
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.stats__parallax {
  position: absolute;
  inset: -30% 0;
  z-index: 0;
}

.stats__parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.stats__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(var(--rgb-charcoal), 0.92),
    rgba(var(--rgb-charcoal), 0.85)
  );
}

.stats__header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.stats__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.stats__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-cream);
  line-height: 1.2;
}

.stats__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-md);
}

.stats__item {
  position: relative;
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease,
              border-color 0.45s ease;
}

.stats__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transition: width 0.5s ease;
}

.stats__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.stats__item:hover::before {
  width: 80%;
}

.stats__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--rgb-brand-red), 0.12);
  border: 1px solid rgba(var(--rgb-brand-red), 0.25);
  border-radius: 50%;
  transition: transform 0.45s ease, background 0.45s ease;
}

.stats__icon img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.stats__item:hover .stats__icon {
  transform: scale(1.1);
  background: rgba(var(--rgb-brand-red), 0.22);
}

.stats__counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.125rem;
  min-height: 3.5rem;
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stats__suffix {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-gold);
}

.stats__label {
  margin-top: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* --- Lifestyle Experiences --- */
.lifestyle__experiences {
  background: linear-gradient(180deg, var(--color-brand-orange-light) 0%, var(--color-brand-peach) 50%, var(--color-brand-orange-light) 100%);
}

.lifestyle__list {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

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

.lifestyle-row__media,
.lifestyle-row__content {
  min-width: 0;
}

.lifestyle-row--reverse .lifestyle-row__media {
  order: 2;
}

.lifestyle-row--reverse .lifestyle-row__content {
  order: 1;
}

.lifestyle-row__figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(var(--rgb-charcoal), 0.12);
}

.lifestyle-row__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(var(--rgb-brand-red), 0.2);
  pointer-events: none;
  z-index: 2;
}

.lifestyle-row__figure picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.lifestyle-row__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.lifestyle-row__figure:hover img {
  transform: scale(1.05);
}

.lifestyle-row__content {
  padding: var(--space-sm) 0;
}

.lifestyle-row__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand-red-dark);
  margin-bottom: var(--space-sm);
  padding: 0.35rem 0.875rem;
  background: rgba(var(--rgb-brand-red), 0.1);
  border: 1px solid rgba(var(--rgb-brand-red), 0.25);
  border-radius: 100px;
}

.lifestyle-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.lifestyle-row__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-light);
  max-width: 520px;
}

.lifestyle-row--reverse .lifestyle-row__text {
  margin-left: auto;
}

.lifestyle-row--reverse .lifestyle-row__tag {
  display: inline-block;
}

/* --- Facilities (sticky sidebar + unified page scroll) --- */
.facilities {
  position: relative;
  overflow-x: clip;
  background: linear-gradient(160deg, var(--color-brand-green-dark) 0%, var(--color-brand-green) 55%, #056b42 100%);
  padding-bottom: var(--space-3xl);
}

.facilities > .container > .section__header {
  margin-bottom: var(--space-lg);
}

.facilities > .container > .section__header .section__desc {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1100px) {
  .facilities__explorer.is-flow-mode {
    align-items: start;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
  }

  .facilities__aside {
    position: sticky;
    top: calc(var(--header-height) + var(--space-md));
    align-self: start;
    height: auto;
    overflow: visible;
  }

  .facilities__nav {
    flex: none;
  }

  .facilities__icon-list {
    flex: none;
    justify-content: flex-start;
    gap: 0.35rem;
  }

  .facilities__panels-viewport {
    overflow: visible;
    height: auto;
    min-height: 0;
    scroll-snap-type: none;
  }

  .facilities__panel .healthcare__sticky-wrap {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: stretch;
  }

  .facilities__panel .healthcare__visual {
    position: relative;
    top: auto;
    align-self: stretch;
    display: flex;
    height: auto;
  }

  .facilities__panel .healthcare__video-panel {
    flex: 1;
    width: 100%;
    min-height: 100%;
    display: block;
  }

  .facilities__panel .healthcare__video {
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .facilities__panel .lifestyle-row {
    grid-template-columns: 1fr 1fr;
  }

  .facilities__panel .lifestyle-row--reverse .lifestyle-row__media {
    order: 2;
  }

  .facilities__panel .lifestyle-row--reverse .lifestyle-row__content {
    order: 1;
  }
}

.facilities__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(var(--rgb-brand-orange), 0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 75%, rgba(var(--rgb-brand-blue), 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.facilities > .container > .section__header .section__title {
  color: var(--color-cream);
}

.facilities > .container > .section__header .section__desc {
  color: rgba(255, 255, 255, 0.82);
}

.facilities__explorer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: start;
}

.facilities__aside {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
  align-self: start;
  width: 100%;
  height: auto;
}

.facilities__nav {
  position: relative;
  top: auto;
  align-self: start;
  padding-right: 0;
}

.facilities__icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.facilities__icon-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 0.75rem 0.65rem;
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.facilities__icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.facilities__icon-btn.is-active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(var(--rgb-brand-orange), 0.45);
  box-shadow: none;
}

.facilities__icon-btn-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  transition: transform 0.35s ease,
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

.facilities__icon-btn-circle img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: transform 0.35s ease;
}

.facilities__icon-btn.is-active .facilities__icon-btn-circle {
  background: rgba(var(--rgb-brand-orange), 0.22);
  border-color: rgba(var(--rgb-brand-orange), 0.65);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transform: none;
}

.facilities__icon-btn.is-active .facilities__icon-btn-circle img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.facilities__icon-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.3;
  transition: color 0.35s ease;
}

.facilities__icon-btn.is-active .facilities__icon-label {
  color: var(--color-cream);
  font-weight: 700;
}

.facilities__panels-viewport {
  position: relative;
  min-width: 0;
  overflow: visible;
  height: auto;
}

.facilities__panels {
  position: relative;
  min-width: 0;
  padding: 0;
}

.facilities__explorer.is-flow-mode .facilities__panel {
  display: block;
  min-height: 0;
  height: auto;
  margin-bottom: var(--space-2xl);
  border-radius: 0;
  overflow: visible;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  opacity: 1;
  transform: none;
  box-sizing: border-box;
  box-shadow: none;
  border: none;
  scroll-margin-top: calc(var(--header-height) + var(--space-lg));
}

.facilities__explorer.is-flow-mode .facilities__panel.is-active {
  background: transparent;
}

.facilities__explorer.is-flow-mode .facilities__panel:last-child {
  margin-bottom: 0;
}

.facilities__panel {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) + var(--space-md));
  opacity: 1;
  transform: none;
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
  display: none;
}

.facilities__panel.is-active {
  display: block;
  opacity: 1;
  transform: none;
  box-shadow: none;
}

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

.facilities__panel.is-visible {
  opacity: 1;
  transform: none;
}

.facilities > .container > .section__header .section__eyebrow {
  color: var(--color-gold);
}

/* Embedded panel content — always visible (no scroll-hide inside panels) */
.facilities__panel .reveal,
.facilities__panel .reveal-left,
.facilities__panel .reveal-right,
.facilities__panel .reveal-scale {
  opacity: 1;
  transform: none;
}

.facilities__panel .image-reveal,
.facilities__panel .image-reveal--left,
.facilities__panel .image-reveal--right {
  clip-path: inset(0 0 0 0);
}

.facilities__panel .image-reveal img {
  transform: scale(1);
}

.facilities__panel .section__title {
  color: var(--color-navy);
}

.facilities__panel .section__desc,
.facilities__panel .healthcare__intro,
.facilities__panel .lifestyle-row__text {
  color: var(--color-text-light);
}

.facilities__panel .amenities-sub .section__title {
  color: var(--color-cream);
}

.facilities__panel .amenities-sub .section__desc {
  color: rgba(255, 255, 255, 0.82);
}

.facilities__nav.reveal-left,
.facilities__panels.reveal-right {
  opacity: 1;
  transform: none;
}

.facilities__explorer.is-flow-mode .facilities__panel .healthcare--embedded,
.facilities__explorer.is-flow-mode .facilities__panel .lifestyle--embedded,
.facilities__explorer.is-flow-mode .facilities__panel .amenities-sub {
  border-radius: var(--radius-xl);
}

.facilities__explorer.is-flow-mode .facilities__panel .amenities-sub--gallery {
  background: var(--color-white);
  padding-top: var(--space-xl);
}

.facilities__explorer.is-flow-mode .facilities__panel .amenities-sub {
  background: transparent;
  padding-top: var(--space-md);
}

.facilities__panel .amenities-sub {
  border-radius: var(--radius-xl);
  padding: var(--space-md) 0 var(--space-lg);
  overflow: visible;
}

.facilities__panel .amenities-sub .section__header {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.facilities__panel .amenities-sub-explorer {
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.facilities__panel .amenities__nav {
  position: relative;
  top: auto;
  padding-right: 0;
}

.facilities__panel .amenities__nav-track {
  display: none;
}

.facilities__panel .amenities__icon-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0 var(--space-md) 0.35rem;
  scrollbar-width: none;
}

.facilities__panel .amenities__icon-list::-webkit-scrollbar {
  display: none;
}

.facilities__panel .amenities__icon-btn {
  flex-direction: column;
  align-items: center;
  width: auto;
  min-width: 64px;
  padding: 0.35rem 0.25rem;
  text-align: center;
}

.facilities__panel .amenities__icon-label {
  font-size: 0.625rem;
}

.facilities__panel .amenities__panels {
  padding: 0 var(--space-md);
}

.facilities__panel .amenities-sub-explorer .amenities__panel {
  min-height: auto;
  margin-bottom: 0;
  display: none;
  opacity: 1;
  transform: none;
  overflow: visible;
}

.facilities__panel .amenities-sub-explorer .amenities__panel.is-active {
  display: block;
}

.facilities__explorer.is-flow-mode .facilities__panel .healthcare--embedded {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) 0 var(--space-2xl);
  overflow: visible;
}

.facilities__explorer.is-flow-mode .facilities__panel .healthcare--embedded .healthcare__shapes {
  display: none;
}

.facilities__panel .healthcare__sticky-wrap {
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.facilities__panel .healthcare__visual {
  position: relative;
  top: auto;
  align-self: stretch;
  display: flex;
}

.facilities__panel .healthcare__video-panel {
  flex: 1;
  width: 100%;
  min-height: 100%;
  height: 100%;
}

.facilities__panel .healthcare__body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.facilities__panel .healthcare__video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
}

.facilities__panel .healthcare--embedded .container,
.facilities__panel .lifestyle--embedded .container {
  max-width: 100%;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.facilities__panel .healthcare--embedded,
.facilities__panel .lifestyle--embedded {
  padding-top: 0;
}

.facilities__panel .healthcare--embedded {
  border-radius: var(--radius-xl);
  background: var(--color-white);
  padding-bottom: var(--space-xl);
}

.facilities__panel .lifestyle--embedded {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding-bottom: var(--space-xl);
}

.facilities__panel .lifestyle--embedded .lifestyle__experiences {
  background: transparent;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.facilities__panel .amenities-sub {
  margin: 0;
}

/* Amenities image gallery (Facilities panel) */
.amenities-sub--gallery {
  background: transparent;
  padding: var(--space-xl) 0 var(--space-2xl);
  overflow: visible;
}

.facilities__panel .amenities-sub--gallery {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.amenities-sub--gallery .section__title {
  color: var(--color-navy);
}

.amenities-sub--gallery .section__eyebrow {
  color: var(--color-brand-red);
}

.amenities-gallery {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  padding: 0;
}

.amenities-gallery__item {
  min-width: 0;
}

.amenities-gallery__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-cream);
  box-shadow: 0 12px 32px rgba(var(--rgb-charcoal), 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.amenities-gallery__figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(var(--rgb-charcoal), 0.14);
}

.amenities-gallery__figure picture,
.amenities-gallery__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.amenities-gallery__caption {
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: center;
  background: var(--color-white);
  border-top: 1px solid rgba(var(--rgb-charcoal), 0.08);
}

@keyframes facilityPaneIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.healthcare--embedded,
.lifestyle--embedded {
  padding-top: var(--space-xl);
}

.healthcare--embedded .healthcare__header {
  margin-bottom: var(--space-xl);
}

.amenities-sub {
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0 var(--space-2xl);
  background: linear-gradient(160deg, var(--color-brand-green-dark) 0%, var(--color-brand-green) 55%, #056b42 100%);
}

.amenities-sub .section__title {
  color: var(--color-cream);
}

.amenities-sub .section__desc {
  color: rgba(255, 255, 255, 0.82);
}

/* --- Amenities Explorer --- */
.amenities {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-brand-green-dark) 0%, var(--color-brand-green) 55%, #056b42 100%);
}

.amenities .section__title {
  color: var(--color-cream);
}

.amenities .section__desc {
  color: rgba(255, 255, 255, 0.82);
}

.amenities__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(var(--rgb-brand-orange), 0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 75%, rgba(var(--rgb-brand-blue), 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.amenities__explorer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.amenities__nav {
  position: sticky;
  top: calc(var(--header-height) + var(--space-md));
  align-self: start;
  padding-right: var(--space-sm);
}

.amenities__nav-track {
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  overflow: hidden;
}

.amenities__progress-fill {
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--color-brand-orange), var(--color-brand-red));
  border-radius: 2px;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.amenities__icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.amenities__icon-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 0.55rem 0.65rem 0.55rem 0;
  border: none;
  background: transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: background 0.35s ease, transform 0.35s ease;
}

.amenities__icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.amenities__icon-btn.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.amenities__icon-btn-circle {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

.amenities__icon-btn-circle img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: transform 0.35s ease;
}

.amenities__icon-btn.is-active .amenities__icon-btn-circle {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(var(--rgb-brand-orange), 0.65);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transform: scale(1.06);
}

.amenities__icon-btn.is-active .amenities__icon-btn-circle img {
  filter: none;
  opacity: 1;
}

.amenities__icon-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.3;
  transition: color 0.35s ease;
}

.amenities__icon-btn.is-active .amenities__icon-label {
  color: var(--color-cream);
}

.amenities__panels {
  position: relative;
  min-width: 0;
}

.amenities__panel {
  min-height: clamp(300px, 58vh, 480px);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0.42;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.45s ease,
              box-shadow 0.45s ease;
}

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

.amenities__panel.is-visible {
  opacity: 0.72;
  transform: translateY(0);
}

.amenities__panel.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(var(--rgb-brand-orange), 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.16);
}

.amenities__panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.facilities__tour-btn {
  margin-top: var(--space-lg);
}

.amenities__panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.amenities__panel-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.amenities__panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-orange);
  box-shadow: 0 0 0 3px rgba(var(--rgb-brand-orange), 0.25);
}

.amenities__explorer.is-ready .amenities__panel.is-active .amenities__panel-list li {
  animation: amenityPointIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.amenities__explorer.is-ready .amenities__panel.is-active .amenities__panel-list li:nth-child(1) { animation-delay: 0.05s; }
.amenities__explorer.is-ready .amenities__panel.is-active .amenities__panel-list li:nth-child(2) { animation-delay: 0.12s; }
.amenities__explorer.is-ready .amenities__panel.is-active .amenities__panel-list li:nth-child(3) { animation-delay: 0.19s; }
.amenities__explorer.is-ready .amenities__panel.is-active .amenities__panel-list li:nth-child(4) { animation-delay: 0.26s; }

@keyframes amenityPointIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- Healthcare --- */
.healthcare {
  position: relative;
  overflow: clip;
}

.healthcare__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.healthcare__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}

.healthcare__shape--1 {
  width: 360px;
  height: 360px;
  top: -80px;
  right: -60px;
  background: rgba(var(--rgb-brand-green), 0.2);
}

.healthcare__shape--2 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  left: 20%;
  background: rgba(var(--rgb-brand-sage), 0.12);
}

.healthcare__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--space-xl);
}

.healthcare__header .section__eyebrow {
  display: block;
}

.healthcare__header .section__title {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.healthcare__intro {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-light);
  margin: 0;
}

.healthcare__sticky-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.healthcare__visual {
  position: sticky;
  top: calc(var(--header-height) + var(--space-md));
  align-self: start;
}

.healthcare__video-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(var(--rgb-charcoal), 0.14);
  background: var(--color-navy-deep);
  min-height: clamp(520px, calc(100dvh - var(--header-height) - var(--space-2xl)), 820px);
}

.healthcare__video {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, calc(100dvh - var(--header-height) - var(--space-2xl)), 820px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  display: block;
}

.healthcare__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--rgb-charcoal), 0.15) 0%,
    transparent 35%,
    transparent 55%,
    rgba(var(--rgb-charcoal), 0.45) 100%
  );
  pointer-events: none;
}

.healthcare__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  z-index: 2;
}

.healthcare__badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-brand-red-dark);
  line-height: 1;
}

.healthcare__badge-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.healthcare__video-trigger {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  color: var(--color-navy);
  border: none;
  font-family: inherit;
  z-index: 2;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.healthcare__video-trigger:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.healthcare__video-trigger svg {
  color: var(--color-brand-red);
}

.healthcare__video-trigger span {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.healthcare__body {
  min-width: 0;
  padding-bottom: var(--space-sm);
}

.healthcare__cta {
  margin-top: var(--space-md);
}

.healthcare__timeline {
  position: relative;
  margin-bottom: var(--space-lg);
  padding-left: 2px;
}

.healthcare__timeline-track {
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(var(--rgb-charcoal), 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.healthcare__timeline-progress {
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--color-brand-red), var(--color-brand-green));
  border-radius: 2px;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.healthcare__timeline-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.healthcare__timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.healthcare__timeline-dot {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border: 2px solid rgba(var(--rgb-brand-red), 0.4);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.healthcare__timeline-dot img {
  filter: invert(45%) sepia(30%) saturate(600%) hue-rotate(5deg);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.healthcare__timeline-item.is-visible .healthcare__timeline-dot {
  background: linear-gradient(145deg, var(--color-brand-red-light), var(--color-brand-red));
  border-color: var(--color-brand-red);
  box-shadow: 0 4px 16px rgba(var(--rgb-brand-red), 0.35);
  animation: timelineDotPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.healthcare__timeline-item.is-visible .healthcare__timeline-dot img {
  filter: brightness(0) invert(1);
}

.healthcare__timeline-item:hover .healthcare__timeline-dot {
  transform: scale(1.12);
}

.healthcare__timeline-body {
  padding: 0.25rem 0 var(--space-sm);
  border-bottom: 1px solid rgba(var(--rgb-charcoal), 0.06);
  transition: transform 0.4s ease;
}

.healthcare__timeline-item:last-child .healthcare__timeline-body {
  border-bottom: none;
}

.healthcare__timeline-item:hover .healthcare__timeline-body {
  transform: translateX(6px);
}

.healthcare__timeline-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.healthcare__timeline-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0;
}

/* --- Living Options --- */
.living-options {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
}

.living-options__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(var(--rgb-brand-red), 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(var(--rgb-brand-sage), 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.living-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.living-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(var(--rgb-charcoal), 0.06);
  box-shadow: 0 8px 32px rgba(var(--rgb-charcoal), 0.06);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
}

.living-card:hover {
  transform: translateY(-12px);
  border-color: rgba(var(--rgb-brand-red), 0.35);
  box-shadow: 0 28px 60px rgba(var(--rgb-charcoal), 0.14);
}

.living-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

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

.living-card:hover .living-card__image img {
  transform: scale(1.1);
}

.living-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--rgb-charcoal), 0.55) 0%, transparent 55%);
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.living-card:hover .living-card__image-overlay {
  opacity: 0.85;
}

.living-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-lg);
}

.living-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
  transition: color 0.3s ease;
}

.living-card:hover .living-card__title {
  color: var(--color-gold-dark);
}

.living-card__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  flex: 1;
}

.living-card__features {
  list-style: none;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.living-card__features li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}

.living-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.living-card:hover .living-card__features li::before {
  transform: scale(1.3);
}

.living-card__btn {
  align-self: flex-start;
  margin-top: auto;
}

.living-card:hover .living-card__btn {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
  background: rgba(var(--rgb-brand-red), 0.08);
}

/* --- Pricing --- */
.pricing {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
}

.pricing__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(var(--rgb-brand-red), 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(var(--rgb-brand-sage), 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-table-wrap {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--rgb-charcoal), 0.06);
  box-shadow: 0 8px 32px rgba(var(--rgb-charcoal), 0.06);
  overflow: hidden;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead {
  background: var(--color-navy);
}

.pricing-table th {
  padding: 1.25rem 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.pricing-table td {
  padding: 1.375rem 2rem;
  font-size: 1rem;
  color: var(--color-text);
  border-bottom: 1px solid rgba(var(--rgb-charcoal), 0.08);
  vertical-align: middle;
  text-align: center;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr {
  transition: background var(--transition-base);
}

.pricing-table tbody tr:hover {
  background: rgba(var(--rgb-brand-red), 0.04);
}

.pricing-table td:first-child {
  font-weight: 600;
  color: var(--color-navy);
}

.pricing-table td:nth-child(2) {
  font-weight: 400;
  color: var(--color-text);
}

.pricing-table td:last-child {
  width: 11rem;
}

.pricing-table .btn {
  min-width: 7.5rem;
  margin: 0 auto;
}

.floor-plans .btn--outline {
  color: var(--color-navy);
  background: transparent;
  border: 1.5px solid rgba(var(--rgb-charcoal), 0.18);
  box-shadow: none;
}

.floor-plans .btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
  background: rgba(var(--rgb-brand-red), 0.08);
  transform: translateY(-2px);
}

/* --- Floor Plans --- */
.floor-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.floor-plan-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 14px;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 24px rgba(var(--rgb-charcoal), 0.1);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.floor-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(var(--rgb-charcoal), 0.14);
}

.floor-plan-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.floor-plan-card__image--drawing {
  aspect-ratio: 4 / 3;
  background: #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.floor-plan-card__image--drawing img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-md);
  opacity: 0.3;
}

.floor-plan-card__body--compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  background: var(--color-white);
}

.floor-plan-card__body--compact .floor-plan-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: var(--space-md);
  width: 100%;
}

.floor-plan-card__body--compact .floor-plan-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-navy-deep);
  margin: 0;
  line-height: 1.2;
}

.floor-plan-card__body--compact .floor-plan-card__area {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-light);
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.floor-plan-card__view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-brand-red) 0%, var(--color-brand-red-dark) 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(var(--rgb-brand-red), 0.35);
}

.floor-plan-card__view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--rgb-brand-red), 0.45);
}

.floor-plan-card__view-btn:active {
  transform: translateY(0);
}

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

.floor-plan-card:hover .floor-plan-card__image img {
  transform: scale(1.08);
}

.floor-plan-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--rgb-charcoal), 0.45);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.floor-plan-card:hover .floor-plan-card__overlay {
  opacity: 1;
}

.floor-plan-card__preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy-deep);
  background: var(--color-gold-light);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transform: translateY(12px);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease;
}

.floor-plan-card:hover .floor-plan-card__preview-btn {
  transform: translateY(0);
}

.floor-plan-card__preview-btn:hover {
  background: var(--color-gold);
}

.floor-plan-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-lg);
}

.floor-plan-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.floor-plan-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.25;
  transition: color 0.3s ease;
}

.floor-plan-card:hover .floor-plan-card__title {
  color: var(--color-gold-dark);
}

.floor-plan-card__area {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  padding: 0.35rem 0.75rem;
  background: rgba(var(--rgb-brand-red), 0.12);
  border: 1px solid rgba(var(--rgb-brand-red), 0.25);
  border-radius: 100px;
  white-space: nowrap;
}

.floor-plan-card__specs {
  list-style: none;
  margin-bottom: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.floor-plan-card__specs li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.floor-plan-card__specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
}

.floor-plan-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* --- Floor Plan Modal --- */
.floor-plan-modal {
  position: fixed;
  inset: 0;
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.floor-plan-modal[hidden] {
  display: none;
}

.floor-plan-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--rgb-charcoal), 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floor-plan-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  animation: floorPlanModalIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.floor-plan-modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  line-height: 1;
  transition: color 0.3s ease, background 0.3s ease;
}

.floor-plan-modal__close:hover {
  color: var(--color-gold-dark);
  background: var(--color-white);
}

.floor-plan-modal__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.floor-plan-modal__figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  background: #f7f8fa;
}

.floor-plan-modal__img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  display: block;
  padding: var(--space-md);
}

.floor-plan-modal__details {
  padding: var(--space-xl) var(--space-lg);
}

.floor-plan-modal__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.floor-plan-modal__area {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-lg);
}

.floor-plan-modal__specs-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.floor-plan-modal__specs {
  list-style: none;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.floor-plan-modal__specs li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.55;
}

.floor-plan-modal__specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* --- Gallery Masonry --- */
.gallery {
  position: relative;
  overflow: hidden;
}

.gallery__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(var(--rgb-brand-red), 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(var(--rgb-brand-sage), 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.gallery .section__desc {
  color: rgba(255, 255, 255, 0.65);
}

.gallery-filters {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.gallery-filter {
  padding: 0.625rem 1.375rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.gallery-filter:hover {
  color: var(--color-gold-light);
  border-color: rgba(var(--rgb-brand-red), 0.4);
  background: rgba(var(--rgb-brand-red), 0.1);
}

.gallery-filter.is-active {
  color: var(--color-navy-deep);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(var(--rgb-brand-red), 0.3);
}

.gallery-masonry {
  position: relative;
  z-index: 1;
  column-count: 3;
  column-gap: var(--space-md);
  transition: opacity 0.3s ease;
}

.gallery-masonry.is-filtering {
  opacity: 0;
}

.gallery-masonry__item {
  position: relative;
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease,
              border-color 0.45s ease;
}

.gallery-masonry__item:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.gallery-masonry__item:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--rgb-brand-red), 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gallery-masonry__item img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-masonry__item--tall img {
  aspect-ratio: 3 / 4;
}

.gallery-masonry__item:hover img {
  transform: scale(1.12);
}

.gallery-masonry__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: linear-gradient(to top, rgba(var(--rgb-charcoal), 0.75) 0%, rgba(var(--rgb-charcoal), 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.gallery-masonry__item:hover .gallery-masonry__overlay {
  opacity: 1;
}

.gallery-masonry__zoom {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--color-white);
  transform: scale(0.8);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-masonry__item:hover .gallery-masonry__zoom {
  transform: scale(1);
}

.gallery-masonry__caption {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  right: var(--space-sm);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  transform: translateY(12px);
  transition: transform 0.45s ease;
}

.gallery-masonry__item:hover .gallery-masonry__caption {
  transform: translateY(0);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--rgb-charcoal), 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  max-width: 1100px;
}

.lightbox__figure {
  flex: 1;
  margin: 0;
  text-align: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: lightboxFadeIn 0.4s ease;
}

.lightbox__caption {
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 0.06em;
}

.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 2.25rem;
  color: var(--color-white);
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.lightbox__close:hover {
  opacity: 1;
  color: var(--color-gold);
}

.lightbox__nav {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-white);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.lightbox__nav:hover:not(:disabled) {
  background: rgba(var(--rgb-brand-red), 0.25);
  border-color: var(--color-gold);
  transform: scale(1.08);
}

.lightbox__nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

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

.testimonials__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(var(--rgb-brand-red), 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(var(--rgb-brand-sage), 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.testimonials__desc {
  color: rgba(255, 255, 255, 0.72);
}

.testimonials__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.testimonials__filter {
  padding: 0.625rem 1.375rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonials__filter:hover {
  color: var(--color-gold-light);
  border-color: rgba(var(--rgb-brand-red), 0.4);
  background: rgba(var(--rgb-brand-red), 0.1);
}

.testimonials__filter.is-active {
  color: var(--color-navy-deep);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border-color: var(--color-gold);
  box-shadow: 0 4px 24px rgba(var(--rgb-brand-red), 0.35);
}

.testimonials__slider {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  min-height: 320px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.65s;
  pointer-events: none;
}

.testimonial-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.testimonial-card.is-filtered-out {
  display: none;
}

.testimonial-card__layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.testimonial-card__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.testimonial-card__photo-wrap {
  position: relative;
  width: clamp(96px, 14vw, 128px);
  height: clamp(96px, 14vw, 128px);
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
  box-shadow: 0 8px 32px rgba(var(--rgb-brand-red), 0.25);
}

.testimonial-card__photo-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(var(--rgb-brand-red), 0.2);
  pointer-events: none;
}

.testimonial-card__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--color-navy-deep);
}

.testimonial-card__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.testimonial-card__badge--resident {
  color: var(--color-sage);
  background: rgba(var(--rgb-brand-sage), 0.2);
  border: 1px solid rgba(var(--rgb-brand-sage), 0.35);
}

.testimonial-card__badge--family {
  color: var(--color-gold-light);
  background: rgba(var(--rgb-brand-red), 0.15);
  border: 1px solid rgba(var(--rgb-brand-red), 0.35);
}

.testimonial-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-width: 0;
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--color-gold);
}

.testimonial-card__star {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 2px rgba(var(--rgb-brand-red), 0.4));
}

.testimonial-card.active .testimonial-card__star {
  animation: starPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.testimonial-card.active .testimonial-card__star:nth-child(1) { animation-delay: 0.05s; }
.testimonial-card.active .testimonial-card__star:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card.active .testimonial-card__star:nth-child(3) { animation-delay: 0.15s; }
.testimonial-card.active .testimonial-card__star:nth-child(4) { animation-delay: 0.2s; }
.testimonial-card.active .testimonial-card__star:nth-child(5) { animation-delay: 0.25s; }

.testimonial-card__quote {
  margin: 0;
}

.testimonial-card__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.2vw, 1.4375rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.testimonial-card__quote p::before {
  content: '\201C';
  color: var(--color-gold);
  font-size: 1.4em;
  line-height: 0;
  margin-right: 0.15em;
  vertical-align: -0.15em;
}

.footer {
  background: var(--color-navy-deep);
  padding: 48px 0;
  text-align: center;
  
  color: var(--color-cream);
}
.footer__logo { margin: 0 auto 16px; opacity: 1; }
.footer__rera {
  font-size: 0.8125rem;
  color: var(--cyan);
  margin-bottom: 16px;
}
.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}
.footer__privacy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}
.footer__privacy:hover { color: var(--color-gold-light); }

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  font-style: normal;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.04em;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonials__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonials__arrow:hover {
  color: var(--color-navy-deep);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(var(--rgb-brand-red), 0.35);
  transform: scale(1.05);
}

.testimonials__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  max-width: 280px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonials__dot:hover {
  background: rgba(var(--rgb-brand-red), 0.6);
}

.testimonials__dot.active {
  background: var(--color-gold);
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(var(--rgb-brand-red), 0.5);
}

/* --- Location Advantages --- */
.location-advantages {
  background: linear-gradient(180deg, var(--color-brand-orange) 0%, var(--color-brand-orange-light) 100%);
  position: relative;
  overflow: hidden;
}

.location-advantages::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(var(--rgb-brand-red), 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.location-advantages__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, var(--space-lg));
  align-items: stretch;
}

.location-advantages__map {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(var(--rgb-brand-red), 0.2);
  display: flex;
  flex-direction: column;
}

.location-advantages__map iframe {
  width: 100%;
  flex: 1;
  min-height: 420px;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.5s ease;
}

.location-advantages__map:hover iframe {
  filter: grayscale(0%) contrast(1.05);
}

.location-advantages__map-pin {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  z-index: 2;
  pointer-events: none;
}

.location-advantages__map-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(var(--rgb-brand-red), 0.35);
  box-shadow: 0 4px 20px rgba(var(--rgb-charcoal), 0.12);
}

.location-advantages__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.location-advantages__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  flex: 1;
}

.dist-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--rgb-brand-red), 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(var(--rgb-charcoal), 0.06);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease,
              border-color 0.45s ease;
}

.dist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--rgb-brand-red), 0.45);
  box-shadow: 0 16px 40px rgba(var(--rgb-charcoal), 0.12);
}

.dist-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--rgb-brand-red), 0.15), rgba(var(--rgb-brand-red), 0.05));
  border: 1px solid rgba(var(--rgb-brand-red), 0.25);
  border-radius: var(--radius-md);
  color: var(--color-gold-dark);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.45s ease;
}

.dist-card:hover .dist-card__icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(var(--rgb-brand-red), 0.25), rgba(var(--rgb-brand-red), 0.1));
}

.dist-card__icon img {
  width: 28px;
  height: 28px;
}

.dist-card__body {
  flex: 1;
  min-width: 0;
}

.dist-card__category {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.25rem;
}

.dist-card__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.dist-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.dist-card__distance {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  line-height: 1;
}

.dist-card__time {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  padding: 0.2rem 0.625rem;
  background: rgba(var(--rgb-charcoal), 0.05);
  border-radius: 100px;
}

.location-advantages__attractions {
  margin-top: var(--space-lg);
  width: 100%;
}

.location-advantages__attractions-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(var(--rgb-brand-red), 0.25);
  text-align: left;
}

.location-advantages__attractions-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--space-sm);
}

.attraction-card {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(var(--rgb-charcoal), 0.08);
  border-radius: var(--radius-md);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease,
              background 0.4s ease;
}

.attraction-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--rgb-brand-red), 0.35);
  background: rgba(255, 255, 255, 0.85);
}

.attraction-card__distance {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 0.35rem;
}

.attraction-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.attraction-card__desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

.location-advantages__visit {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(var(--rgb-brand-red), 0.2);
}

.location-advantages__visit-item {
  flex: 1 1 220px;
  min-width: 0;
  padding: var(--space-md);
}

.location-advantages__visit-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.375rem;
}

.location-advantages__visit-item span {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
  font-style: normal;
}

.location-advantages__visit .btn {
  align-self: center;
  flex-shrink: 0;
}

/* --- FAQ Accordion --- */
.faq__accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--rgb-brand-red), 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(var(--rgb-charcoal), 0.04);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.faq-item:hover {
  border-color: rgba(var(--rgb-brand-red), 0.32);
  box-shadow: 0 6px 28px rgba(var(--rgb-charcoal), 0.08);
}

.faq-item.is-open {
  border-color: rgba(var(--rgb-brand-red), 0.45);
  box-shadow: 0 8px 32px rgba(var(--rgb-charcoal), 0.1);
}

.faq-item__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: var(--color-navy);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.35s ease;
}

.faq-item__trigger:hover {
  color: var(--color-gold-dark);
}

.faq-item.is-open .faq-item__trigger {
  color: var(--color-navy);
}

.faq-item__question {
  flex: 1;
  min-width: 0;
  padding-right: var(--space-sm);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  background: rgba(var(--rgb-brand-red), 0.1);
  border: 1px solid rgba(var(--rgb-brand-red), 0.22);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.35s ease,
              color 0.35s ease,
              border-color 0.35s ease;
}

.faq-item__trigger:hover .faq-item__icon {
  background: rgba(var(--rgb-brand-red), 0.18);
  border-color: rgba(var(--rgb-brand-red), 0.4);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-navy-deep);
  border-color: var(--color-gold);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__panel-inner p {
  margin: 0;
  padding: 0 1.5rem 1.375rem;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text-light);
}

.faq-item__panel-inner p strong {
  color: var(--color-navy);
  font-weight: 600;
}

.faq-item.is-open .faq-item__panel-inner p {
  animation: faqContentIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.faq__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  text-align: center;
  border-top: 1px solid rgba(var(--rgb-brand-red), 0.2);
}

.faq__cta p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  margin: 0;
}

/* --- Contact / Enquiry --- */
.contact {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__aside {
  display: flex;
  flex-direction: column;
}

.contact__details-card {
  padding: var(--space-lg);
}

.contact__details-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(var(--rgb-brand-red), 0.25);
}

.contact__details-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact__details-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact__details-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  background: rgba(var(--rgb-brand-red), 0.12);
  border: 1px solid rgba(var(--rgb-brand-red), 0.25);
  border-radius: var(--radius-md);
}

.contact__details-item strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.25rem;
}

.contact__details-item span,
.contact__details-item a {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.contact__details-item a:hover {
  color: var(--color-gold-dark);
}

.contact__brochure-btn {
  width: 100%;
  text-align: center;
}

.contact__form {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(var(--rgb-brand-red), 0.22);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.contact__form-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.float-field {
  position: relative;
  margin-bottom: var(--space-md);
}

.float-field input,
.float-field textarea {
  width: 100%;
  padding: 1.375rem 1rem 0.625rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(var(--rgb-charcoal), 0.12);
  border-radius: var(--radius-md);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.float-field input {
  height: 3.625rem;
}

.float-field textarea {
  resize: vertical;
  min-height: 128px;
  padding-top: 1.625rem;
  line-height: 1.6;
}

.float-field label {
  position: absolute;
  left: 1rem;
  top: 1.125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.25s ease,
              top 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.float-field__optional {
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.float-field--textarea label {
  top: 1.25rem;
}

.float-field input:focus,
.float-field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(var(--rgb-brand-red), 0.15);
}

.float-field input:focus + label,
.float-field input:not(:placeholder-shown) + label,
.float-field textarea:focus + label,
.float-field textarea:not(:placeholder-shown) + label {
  top: 0.5rem;
  transform: scale(0.82);
  color: var(--color-gold-dark);
  letter-spacing: 0.04em;
}

.float-field--textarea input:focus + label,
.float-field--textarea textarea:focus + label,
.float-field--textarea textarea:not(:placeholder-shown) + label {
  top: 0.625rem;
}

.float-field.is-invalid input,
.float-field.is-invalid textarea {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.float-field.is-invalid label {
  color: #c0392b;
}

.float-field__error {
  display: block;
  min-height: 1.25rem;
  margin-top: 0.375rem;
  padding-left: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #c0392b;
  line-height: 1.4;
}

.enquiry-form__submit {
  margin-top: var(--space-sm);
}

.enquiry-form__status {
  margin-bottom: var(--space-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-navy);
  background: rgba(var(--rgb-brand-red), 0.08);
  border: 1px solid rgba(var(--rgb-brand-red), 0.2);
  border-radius: var(--radius-md);
}

.enquiry-form__status.is-error {
  color: #9b1c1c;
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.25);
}

.enquiry-form__status[hidden] {
  display: none;
}

/* --- Thank You Page --- */
.thankyou-page {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  min-height: 100vh;
}

.header--solid {
  background: rgba(var(--rgb-charcoal), 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.thankyou {
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-2xl);
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.thankyou__card {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  border: 1px solid rgba(var(--rgb-brand-red), 0.22);
}

.thankyou__icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}

.thankyou__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.thankyou__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.thankyou__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.thankyou__meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.footer--minimal {
  padding: var(--space-lg) 0;
  background: transparent;
}

.footer__minimal-text {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* --- Enquiry Popup Modal --- */
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 3150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.enquiry-modal[hidden] {
  display: none;
}

.enquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--rgb-charcoal), 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.enquiry-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-cream);
  border: 1px solid rgba(var(--rgb-brand-red), 0.3);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  animation: floorPlanModalIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.enquiry-modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}

.enquiry-modal__close:hover {
  color: var(--color-navy);
  background: rgba(var(--rgb-charcoal), 0.06);
}

.enquiry-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.enquiry-modal__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.enquiry-modal__form .float-field:last-of-type {
  margin-bottom: var(--space-md);
}

/* --- Success Modal --- */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.success-modal[hidden] {
  display: none;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--rgb-charcoal), 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.success-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  background: var(--color-cream);
  border: 1px solid rgba(var(--rgb-brand-red), 0.3);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  animation: floorPlanModalIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.success-modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}

.success-modal__close:hover {
  color: var(--color-navy);
  background: rgba(var(--rgb-charcoal), 0.06);
}

.success-modal__icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-gold);
  animation: scaleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.success-modal__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.success-modal__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.success-modal__btn {
  min-width: 200px;
}

/* --- Footer --- */
.footer {
  position: relative;
  overflow-x: clip;
  max-width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #0c121e 0%, var(--color-navy-deep) 40%, #080c14 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-brand-red), var(--color-brand-orange), var(--color-brand-red), transparent);
}

.footer__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.footer__glow--1 {
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(var(--rgb-brand-red), 0.08);
}

.footer__glow--2 {
  bottom: -30%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: rgba(var(--rgb-brand-sage), 0.1);
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-xl);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  transition: opacity 0.35s ease;
}

.footer__logo:hover {
  opacity: 0.88;
}

.footer__logo img {
  background: var(--color-cream);
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 4px 20px rgba(var(--rgb-brand-red), 0.25);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-white);
}

.footer__tagline-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 300px;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: var(--space-lg);
}

.footer__social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.footer__social-link:hover {
  color: var(--color-navy-deep);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(var(--rgb-brand-red), 0.35);
}

.footer__brochure {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(var(--rgb-brand-red), 0.25);
  position: relative;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
}

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

.footer__links a {
  display: inline-block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
}

.footer__links a:hover {
  color: var(--color-gold-light);
  padding-left: 0.375rem;
}

.footer__contact {
  font-style: normal;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  background: rgba(var(--rgb-brand-red), 0.1);
  border: 1px solid rgba(var(--rgb-brand-red), 0.2);
  border-radius: var(--radius-sm);
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.3s ease;
}

.footer__contact-item a:hover {
  color: var(--color-gold-light);
}

.footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer__back-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: color 0.3s ease, gap 0.3s ease;
}

.footer__back-top:hover {
  color: var(--color-gold-light);
  gap: 0.625rem;
}

.footer__back-top svg {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__back-top:hover svg {
  transform: translateY(-3px);
}

/* --- Modal --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 900px;
  z-index: 1;
}

.modal__content video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: var(--color-white);
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal__close:hover {
  color: var(--color-gold);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 999;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-navy-deep);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(var(--rgb-brand-red), 0.45);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              opacity 0.4s ease;
}

.back-to-top__arrow {
  position: relative;
  z-index: 1;
}

.back-to-top__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(var(--rgb-brand-red), 0.5);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(var(--rgb-brand-red), 0.55);
}

.back-to-top:hover .back-to-top__ring {
  opacity: 1;
  transform: scale(1.08);
}

.back-to-top[hidden] {
  display: none;
}

/* --- Mobile Quick Action Bar --- */
.mobile-action-bar {
  display: none;
}

.mobile-action-bar__defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.mobile-action-bar__item {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.75rem;
  padding: 0.625rem 0.5rem;
  border: none;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.mobile-action-bar__item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-action-bar__item:hover,
.mobile-action-bar__item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.mobile-action-bar__item:active {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-action-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
}

.mobile-action-bar__icon--whatsapp {
  color: transparent;
}

.mobile-action-bar__label {
  white-space: nowrap;
}

.mobile-action-bar__label--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.1;
  white-space: normal;
}
