/* ===================================================================
   Amanthos Group — Corporate Website Stylesheet
   Design System: Neue Haas Grotesk Display Pro + Proxima Nova
   CI Colors: Primary #2a2c25 | Accent #9b4738
   =================================================================== */

/* ----- CSS Custom Properties ----- */
:root {
  --color-bg: #FAF8F5;
  --color-bg-alt: #F0EDEA;
  --color-surface: #FFFFFF;
  --color-primary: #2a2c25;
  --color-secondary: #5a5c55;
  --color-accent: #9b4738;
  --color-accent-hover: #843d30;
  --color-accent-light: rgba(155, 71, 56, 0.1);
  --color-text: #2a2c25;
  --color-text-muted: #5a5c55;
  --color-text-light: #6a6c65;
  --color-border: #E0DDD8;
  --color-border-light: #EDEBE8;

  --font-heading: 'Neue Haas Grotesk Display Pro', 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Proxima Nova', 'DM Sans', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1400px;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.10);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.3s;
}


/* ===================================================================
   1. Reset + Base Styles
   =================================================================== */

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--color-accent-hover);
}

[hidden] {
  display: none !important;
}


/* ===================================================================
   2. Portal Overlay — Immersive WebGL Intro
   =================================================================== */

.portal-active {
  overflow: hidden !important;
}

.portal-active .nav {
  opacity: 0;
  pointer-events: none;
}

.portal-active main {
  opacity: 0;
}

main {
  transition: opacity 0.8s ease 0.3s;
}

.portal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: #1a1c17;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-overlay.portal-exiting {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

#portal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portal-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  padding: 24px;
}

/* Staggered entrance: each child fades in separately */
.portal-content > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out-expo);
}

.portal-content.portal-content-visible > .portal-logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.portal-content.portal-content-visible > .portal-divider {
  opacity: 1;
  transform: translateY(0) scaleX(1);
  transition-delay: 0.4s;
}

.portal-content.portal-content-visible > .portal-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.portal-content.portal-content-visible > .portal-enter {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.0s;
}

.portal-logo {
  height: clamp(60px, 12vw, 110px);
  width: auto;
  max-width: 85vw;
  filter: drop-shadow(0 0 40px rgba(155, 71, 56, 0.25))
          drop-shadow(0 0 80px rgba(155, 71, 56, 0.1));
}

.portal-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  margin: 28px 0;
  transform: translateY(16px) scaleX(0);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out-expo) !important;
}

.portal-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.portal-enter {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 48px;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  animation: portalPulse 3s ease-in-out infinite 2s;
}

.portal-enter:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 30px rgba(155, 71, 56, 0.15);
  animation: none;
}

.portal-enter:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

@keyframes portalPulse {
  0%, 100% { border-color: rgba(255, 255, 255, 0.3); }
  50% { border-color: rgba(255, 255, 255, 0.55); box-shadow: 0 0 20px rgba(155, 71, 56, 0.12); }
}

.portal-fallback {
  background: linear-gradient(135deg, #1a1c17 0%, #2a2c25 100%);
}


/* ===================================================================
   2b. Page-wide Water Ripple Overlay
   =================================================================== */

.page-ripple {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.75;
  image-rendering: auto;
}


/* ===================================================================
   2c. Scroll Progress Bar
   =================================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #c4644f);
  z-index: 10001;
  width: 0;
  transition: width 0.05s linear;
  will-change: width;
}


/* ===================================================================
   3. Skip Link / Screen-reader Utilities
   =================================================================== */

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

.sr-only-focusable:focus,
.sr-only-focusable:focus-visible {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  outline: 3px solid var(--color-accent-hover);
  outline-offset: 2px;
}


/* ===================================================================
   4. Container
   =================================================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.container-narrow {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 24px;
}


/* ===================================================================
   5. Section
   =================================================================== */

.section {
  padding: 120px 0;
}

.section-alt {
  padding: 120px 0;
  background-color: var(--color-bg-alt);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 680px;
}

/* Section fade-in on scroll */
.section-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.section-fade.section-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===================================================================
   6. Buttons
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  padding: 16px 36px;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-white {
  background-color: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.btn-white:hover {
  background-color: var(--color-bg);
  border-color: var(--color-bg);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-xl { padding: 20px 48px; font-size: 0.9375rem; }
.btn-sm { padding: 10px 24px; font-size: 0.8125rem; }


/* ===================================================================
   7. Navigation
   =================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  background-color: transparent;
  transition: all var(--duration) var(--ease), opacity 0.8s ease;
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 60px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all var(--duration) var(--ease);
}

.nav.scrolled .nav-logo img {
  height: 52px;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  position: relative;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.nav-active::after {
  width: 100%;
}

.nav.scrolled .nav-links a {
  color: var(--color-text);
}

.nav.scrolled .nav-links a:hover {
  color: var(--color-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.nav.scrolled .hamburger span {
  background-color: var(--color-text);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Language Selector */
.lang-selector { position: relative; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.nav.scrolled .lang-toggle {
  color: var(--color-text);
  border-color: var(--color-border);
}

.lang-toggle:hover { border-color: rgba(255, 255, 255, 0.6); }
.nav.scrolled .lang-toggle:hover { border-color: var(--color-accent); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration) var(--ease);
  z-index: 100;
  overflow: hidden;
}

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

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--duration) var(--ease);
  text-align: left;
}

.lang-option:hover,
.lang-option:focus-visible {
  background-color: var(--color-accent-light);
}

.lang-option[aria-selected="true"] {
  color: var(--color-accent);
  font-weight: 600;
}


/* ===================================================================
   8. Hero
   =================================================================== */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0 60px 120px;
  text-align: left;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  max-width: 900px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}


/* ===================================================================
   8b. Text Reveal — Word-level animation
   =================================================================== */

.text-reveal-ready .text-reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}

.text-reveal-visible .text-reveal-word {
  opacity: 1;
  transform: translateY(0);
}


/* ===================================================================
   9. Divisions Grid — Interactive Cards
   =================================================================== */

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.division-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: 0;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.division-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.division-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--color-accent-light);
  border-radius: var(--radius);
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease-out-expo), background-color 0.3s;
}

.division-card:hover .division-icon {
  transform: scale(1.1) rotate(-3deg);
  background-color: rgba(155, 71, 56, 0.15);
}

.division-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.division-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.division-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.division-expand-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-out-expo), opacity 0.4s var(--ease), margin 0.4s var(--ease);
  margin-top: 0;
}

.division-expanded .division-expand-content {
  max-height: 300px;
  opacity: 1;
  margin-top: 20px;
}

.division-details {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
}

.division-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text);
  padding: 6px 0;
}

.division-details li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.division-expand-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  color: var(--color-accent);
  transition: transform 0.3s var(--ease);
}

.division-expanded .division-expand-hint {
  transform: rotate(45deg);
}


/* ===================================================================
   10. Stats Bar
   =================================================================== */

.stats-bar {
  background-color: var(--color-primary);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ===================================================================
   11. Hotel Showcase
   =================================================================== */

.hotel-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}

.hotel-showcase + .hotel-showcase {
  border-top: 1px solid var(--color-border-light);
}

/* Prize (child 4) & Mulin (child 6): info left, slider right */
.hotel-showcase .hotel-info { order: 1; }
.hotel-showcase .hotel-slider { order: 2; }

/* Chalet (child 5): slider left, info right */
.hotel-showcase:nth-child(5) {
  grid-template-columns: 1fr 1fr;
}
.hotel-showcase:nth-child(5) .hotel-slider { order: 1; }
.hotel-showcase:nth-child(5) .hotel-info { order: 2; }

.hotel-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.hotel-gallery-hero {
  border-radius: 0;
  overflow: hidden;
}

.hotel-gallery-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.hotel-gallery-hero:hover img {
  transform: scale(1.04);
}

.hotel-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.hotel-gallery-thumb {
  border-radius: 0;
  overflow: hidden;
}

.hotel-gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.hotel-gallery-thumb:hover img {
  transform: scale(1.06);
}

/* Hotel Image Slider */
.hotel-slider {
  position: relative;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.hotel-showcase .hotel-slider { order: 2; }
.hotel-showcase:nth-child(5) .hotel-slider { margin-left: 0; }
.hotel-showcase:not(:nth-child(5)) .hotel-slider { margin-left: auto; }

.hotel-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.hotel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.hotel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  max-height: 320px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-primary);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.slider-btn:hover {
  background: #fff;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.slider-dot.active {
  background: #fff;
}

.hotel-info { padding-top: 8px; }

.hotel-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.hotel-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.hotel-location svg { width: 16px; height: 16px; flex-shrink: 0; }

.hotel-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.hotel-features {
  list-style: none;
  margin-bottom: 24px;
}

.hotel-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text);
  padding: 6px 0;
}

.hotel-features li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: var(--color-accent-light);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%239b4738'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Image reveal animation */
.img-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease-out-expo);
}

.img-reveal img {
  transform: scale(1.2);
  transition: transform 1.4s var(--ease-out-expo) 0.2s;
}

.img-revealed {
  clip-path: inset(0 0 0 0);
}

.img-revealed img {
  transform: scale(1);
}


/* ===================================================================
   12. Lightbox
   =================================================================== */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background-color 0.4s var(--ease);
}

.lightbox-overlay.lightbox-active {
  background-color: rgba(0, 0, 0, 0.92);
  pointer-events: all;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.4s var(--ease);
}

.lightbox-active .lightbox-inner {
  transform: scale(1);
  opacity: 1;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  font-weight: 500;
}


/* ===================================================================
   12b. Deals Panel (integrated in Real Estate)
   =================================================================== */

.deals-panel {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.deals-panel-header {
  margin-bottom: 16px;
}

.deals-panel-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.deals-tab-btns {
  display: flex;
  gap: 8px;
}

.deals-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--color-border-light);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.deals-tab-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-primary);
}

.deals-tab-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(155, 71, 56, 0.25);
}

.deals-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 340px;
  overflow-y: auto;
}

.deals-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
  animation: dealFadeIn 0.3s ease both;
}

.deals-list li:last-child {
  border-bottom: none;
}

.deals-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  background: var(--color-accent);
  border-radius: 50%;
}

.deal-text {
  flex: 1;
  min-width: 0;
}

.deal-person {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.deal-person img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.deal-persons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

.deal-persons .deal-person {
  margin-left: 0;
}

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

/* ===================================================================
   13. Split Section
   =================================================================== */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-section.reversed { direction: rtl; }
.split-section.reversed > * { direction: ltr; }

.split-content .section-label { margin-bottom: 12px; }

.split-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.split-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.split-image {
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.split-image:hover img { transform: scale(1.04); }

.feature-list {
  list-style: none;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--color-text);
  padding: 8px 0;
  line-height: 1.6;
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}


/* ===================================================================
   14. Amanthos Living Section
   =================================================================== */

.living-section { background-color: var(--color-bg); }
.living-header { margin-bottom: 48px; }

/* Hero image */
.living-hero-image {
  overflow: hidden;
  margin-bottom: 48px;
}

.living-hero-image img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}

.living-hero-image:hover img { transform: scale(1.03); }

/* Location Cards */
.living-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.living-location-card {
  overflow: hidden;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-light);
  transition: all 0.4s var(--ease-out-expo);
}

.living-location-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.living-location-img {
  overflow: hidden;
}

.living-location-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.living-location-card:hover .living-location-img img {
  transform: scale(1.05);
}

.living-location-info {
  padding: 20px 24px;
}

.living-location-info h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
}

.living-room-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Gallery grid: large image left, two stacked right */
.living-gallery-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 8px;
}

.living-gallery-main {
  overflow: hidden;
}

.living-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.living-gallery-main:hover img { transform: scale(1.04); }

.living-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.living-gallery-side-img {
  overflow: hidden;
  flex: 1;
}

.living-gallery-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.living-gallery-side-img:hover img { transform: scale(1.06); }

.living-room-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.living-room-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.living-room-specs {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.living-spec { display: flex; flex-direction: column; }

.living-spec-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.living-spec-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}


/* ===================================================================
   15. Team Section
   =================================================================== */

.team-countries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.team-country-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.team-grid-country {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card picture {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.4s var(--ease), transform 0.5s var(--ease-out-expo);
}

.team-card:hover picture {
  box-shadow: 0 8px 32px rgba(155, 71, 56, 0.25);
  transform: scale(1.08);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.6s var(--ease-out-expo);
}

.team-card:hover img {
  filter: grayscale(0%) contrast(1);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.team-focus {
  font-size: 0.6875rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}

.team-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  transition: all var(--duration) var(--ease);
  margin-top: 4px;
}

.team-email:hover {
  background-color: var(--color-accent);
  color: #fff;
}

.team-email svg {
  width: 16px;
  height: 16px;
}

.team-social {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  transition: all var(--duration) var(--ease);
}

.team-social a:hover {
  background-color: var(--color-accent);
  color: #fff;
}


/* ===================================================================
   16. Video / Celebration Section
   =================================================================== */

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 56px auto 0;
  padding-bottom: min(405px, 56.25%);
  height: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ===================================================================
   17. Newsletter Section
   =================================================================== */

.newsletter-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-form-wrapper { margin-top: 32px; }

.newsletter-form {
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
}

.newsletter-input-group {
  margin-bottom: 16px;
}

.newsletter-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(155, 71, 56, 0.1);
}

.newsletter-input::placeholder {
  color: var(--color-text-light);
  opacity: 0.6;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.newsletter-checkbox {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
  flex-shrink: 0;
  cursor: pointer;
}

.newsletter-consent-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.newsletter-submit {
  width: 100%;
}

.newsletter-success {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #2d6a4f;
  background-color: #d8f3dc;
  border-radius: var(--radius-sm);
  text-align: center;
}

.newsletter-error {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #9b4738;
  background-color: rgba(155, 71, 56, 0.1);
  border-radius: var(--radius-sm);
  text-align: center;
}



/* ===================================================================
   18. Footer Logos
   =================================================================== */

.footer-logo {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 4px;
  filter: brightness(0) invert(1);
}


/* ===================================================================
   19. Partners Grid
   =================================================================== */

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

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: 0;
  padding: 32px;
  min-height: 110px;
  transition: all 0.4s var(--ease-out-expo);
}

.partner-logo:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
}

.partner-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--duration) var(--ease);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


/* ===================================================================
   20. Footer
   =================================================================== */

.footer {
  background-color: #1a1c17;
  color: rgba(255, 255, 255, 0.8);
  padding: 100px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand img { height: 36px; width: auto; }

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--duration) var(--ease);
}

.footer-links a:hover { color: #fff; }

.footer-contact p,
.footer-contact a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
  background-color: var(--color-accent);
  color: #fff;
}

.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--duration) var(--ease);
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.8); }


/* ===================================================================
   21. Cookie Banner
   =================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-inner p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-accent);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--duration) var(--ease);
}

.cookie-accept:hover { background-color: var(--color-accent-hover); }

.cookie-accept:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.cookie-link {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-link:hover { color: var(--color-accent); }


/* ===================================================================
   22. Stagger Reveal Animation
   =================================================================== */

[data-stagger] {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}

[data-stagger].stagger-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ===================================================================
   23. Animations — [data-animate] fade-in
   =================================================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }


/* ===================================================================
   24. Focus-visible
   =================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}


/* ===================================================================
   25. content-visibility
   =================================================================== */

#about,
#celebration,
#hotels,
#real-estate,
#serviced-apartments,
#team,
#partners,
#newsletter,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}


/* ===================================================================
   26. Reduced Motion
   =================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate],
  [data-stagger] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .text-reveal-ready .text-reveal-word {
    opacity: 1;
    transform: none;
  }

  .img-reveal {
    clip-path: none;
  }

  .img-reveal img {
    transform: none;
  }

  .section-fade {
    opacity: 1;
    transform: none;
  }

  .hotel-gallery-hero:hover img,
  .hotel-gallery-thumb:hover img,
  .split-image:hover img,
  .living-showcase-image:hover img,
  .living-room-image:hover img {
    transform: none;
  }

  .portal-overlay {
    transition: none;
  }

  .portal-content {
    opacity: 1;
    transform: none;
  }

  .page-ripple {
    display: none !important;
  }

  .team-card img {
    filter: none;
  }
}


/* ===================================================================
   27. Responsive — 1024px
   =================================================================== */

@media (max-width: 1024px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-logo img { height: 52px; }
  .nav.scrolled .nav-logo img { height: 44px; }
  .nav-links { gap: 24px; }

  .section, .section-alt { padding: 88px 0; }
  .hero { padding: 0 32px 80px; }

  .divisions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .divisions-grid .division-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .hotel-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hotel-showcase:nth-child(5) {
    grid-template-columns: 1fr 1fr;
  }

  .split-section { gap: 48px; }
  .living-locations { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .living-room-preview { gap: 32px; }
  .living-gallery-grid { grid-template-columns: 1fr 1fr; }

  .team-countries {
    gap: 32px;
  }
  .team-grid-country {
    gap: 16px;
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
  }

  .footer-social { grid-column: 1 / -1; }
}


/* ===================================================================
   28. Responsive — 768px (Mobile)
   =================================================================== */


@media (max-width: 768px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--color-primary);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
    padding: 24px;
  }

  .nav-links.open a {
    font-size: 1.25rem;
    color: #fff;
  }

  .nav-logo img { height: 48px; }
  .nav.scrolled .nav-logo img { height: 40px; }

  .hero {
    min-height: 90vh;
    min-height: 90dvh;
    padding: 0 20px 60px;
  }

  .hero h1 { font-size: clamp(1.875rem, 7vw, 2.75rem); }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .section, .section-alt { padding: 56px 0; }
  .stats-bar { padding: 40px 0; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .divisions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .divisions-grid .division-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .division-card { padding: 32px 24px; }

  .hotel-showcase,
  .hotel-showcase:nth-child(5) { grid-template-columns: 1fr; gap: 24px; }

  .hotel-showcase .hotel-info,
  .hotel-showcase .hotel-slider,
  .hotel-showcase:nth-child(5) .hotel-info,
  .hotel-showcase:nth-child(5) .hotel-slider {
    order: unset;
  }

  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .split-section.reversed { direction: ltr; }
  .split-image { order: -1; }

  .deals-panel { padding: 24px; }

  .living-locations { grid-template-columns: 1fr; gap: 16px; }
  .living-room-preview { grid-template-columns: 1fr; gap: 24px; }
  .living-gallery-grid { grid-template-columns: 1fr; }
  .living-room-specs { flex-wrap: wrap; gap: 20px; }

  .team-countries {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .team-grid-country {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .team-card picture { width: 120px; height: 120px; }

  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .portal-enter { padding: 12px 36px; }
}


/* ===================================================================
   29. Responsive — 480px (Small mobile)
   =================================================================== */

@media (max-width: 480px) {
  .container, .container-narrow { padding-inline: 16px; }
  .nav { padding: 14px 16px; }
  .nav.scrolled { padding: 10px 16px; }
  .section, .section-alt { padding: 44px 0; }

  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }

  .hero {
    min-height: 80vh;
    min-height: 80dvh;
    padding: 80px 16px 48px;
  }

  .division-card { padding: 28px 20px; }
  .hotel-gallery-thumbs { gap: 8px; }
  .split-section { gap: 24px; }

  .living-showcase-overlay { padding: 20px; }

  .team-grid-country {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .team-card picture { width: 80px; height: 80px; }
  .team-card h3 { font-size: 0.75rem; }
  .team-role { font-size: 0.6875rem; }
  .team-email { font-size: 0.625rem; }

  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .partner-logo { padding: 16px; min-height: 80px; }

  .footer { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }

  .cookie-banner-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }

  .portal-subtitle { letter-spacing: 0.12em; }
}


/* ===================================================================
   30. Print Styles
   =================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body { font-size: 12pt; line-height: 1.5; }

  a, a:visited { text-decoration: underline; }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  h1, h2, h3, h4 {
    page-break-after: avoid;
    orphans: 3;
    widows: 3;
  }

  p { orphans: 3; widows: 3; }

  .nav,
  .hamburger,
  .cookie-banner,
  .hero-actions,
  .footer-social,
  .lang-selector,
  .scroll-progress,
  .portal-overlay,
  .page-ripple {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 24px 0;
  }

  .hero::before { display: none; }
  .hero h1 { color: #000 !important; font-size: 24pt; }
  .hero-sub { color: #333 !important; }
  .section, .section-alt { padding: 24px 0; }

  .hotel-showcase,
  .split-section,
  .divisions-grid,
  .partners-grid,
  .team-grid,
  .footer-grid {
    display: block;
  }

  .hotel-showcase > *,
  .split-section > *,
  .divisions-grid > *,
  .partners-grid > *,
  .team-grid > *,
  .footer-grid > * {
    margin-bottom: 16px;
  }

  .footer { padding: 24px 0; }
}
