/* ================================================================
   ANGELS AVENUE — style.css
   Theme: Luxury Sunset Retreat
   Aesthetic: Editorial luxury · Organic warmth · Premium hospitality
   ================================================================ */


/* ================================================================
   01. GOOGLE FONTS IMPORT
   Cormorant Garamond  — regal serif display
   Jost                — refined geometric body
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');


/* ================================================================
   02. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ================================================================ */
:root {
  /* Brand Palette */
  --sunset-gold:       #E5A94A;
  --sunset-gold-light: #F0C278;
  --sunset-gold-dark:  #C4862A;
  --terracotta:        #C96D45;
  --terracotta-light:  #E08B65;
  --terracotta-dark:   #A3512F;
  --forest-green:      #264A3E;
  --forest-green-light:#305F50;
  --forest-green-dark: #1A3329;
  --cream:             #F8F4ED;
  --cream-dark:        #EEE7D8;
  --charcoal:          #2D2D2D;
  --charcoal-light:    #3F3F3F;
  --charcoal-muted:    #666666;
  --white:             #FFFFFF;
  --black:             #0D0D0D;

  /* Semantic Aliases */
  --color-bg:          var(--cream);
  --color-bg-alt:      var(--cream-dark);
  --color-text:        var(--charcoal);
  --color-text-muted:  var(--charcoal-muted);
  --color-accent:      var(--sunset-gold);
  --color-accent-2:    var(--terracotta);
  --color-dark:        var(--forest-green);

  /* Typography */
  --font-display:      'Cormorant Garamond', Georgia, serif;
  --font-body:         'Jost', 'Segoe UI', sans-serif;

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   2rem;
  --text-3xl:   2.75rem;
  --text-4xl:   3.5rem;
  --text-5xl:   4.5rem;
  --text-hero:  clamp(3rem, 8vw, 6.5rem);

  --leading-tight:  1.15;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-relaxed:1.8;

  --tracking-tight:  -0.03em;
  --tracking-normal:  0em;
  --tracking-wide:   0.05em;
  --tracking-wider:  0.12em;
  --tracking-widest: 0.2em;

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;
  --section-y: clamp(5rem, 10vw, 8rem);

  /* Borders & Radii */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full:9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --shadow-xl:  0 30px 80px rgba(0,0,0,0.18);
  --shadow-gold:0 8px 30px rgba(229,169,74,0.25);
  --shadow-card:0 4px 24px rgba(38,74,62,0.10), 0 1px 4px rgba(0,0,0,0.06);

  /* Transitions */
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-luxury:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast:   150ms var(--ease-smooth);
  --transition-base:   300ms var(--ease-smooth);
  --transition-slow:   500ms var(--ease-luxury);

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 5vw, 3rem);
  --navbar-height: 80px;
}


/* ================================================================
   03. CSS RESET & BASE
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Selection styling */
::selection {
  background-color: var(--sunset-gold);
  color: var(--white);
}

/* Focus visible — accessibility */
:focus-visible {
  outline: 2px solid var(--sunset-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* ================================================================
   04. LAYOUT — CONTAINER
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-y);
}


/* ================================================================
   05. TYPOGRAPHY — GLOBAL
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--charcoal);
}

p {
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
}

em {
  font-style: italic;
}

blockquote {
  font-family: var(--font-display);
}


/* ================================================================
   06. SECTION HEADERS — REUSABLE
   ================================================================ */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--sunset-gold);
  margin-bottom: var(--space-4);
  position: relative;
  padding-inline: var(--space-5);
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background-color: var(--sunset-gold);
  opacity: 0.6;
}

.section-tag::before { right: 100%; margin-right: -var(--space-2); }
.section-tag::after  { left: 100%; margin-left: -var(--space-2); }

.section-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--space-5);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: var(--leading-relaxed);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sunset-gold), var(--terracotta));
  border-radius: var(--radius-full);
  margin-inline: auto;
  margin-bottom: var(--space-5);
}


/* ================================================================
   07. BUTTONS — GLOBAL
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast),
    border-color var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn:active {
  transform: scale(0.98);
}

/* Size variants */
.btn--small {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-5);
  height: 36px;
}

.btn--medium {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  height: 48px;
}

.btn--large {
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-10);
  height: 58px;
}

.btn--book {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-8);
  height: 52px;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-md);
}

/* Style variants */
.btn--primary {
  background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--terracotta) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(229,169,74,0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--sunset-gold-light) 0%, var(--terracotta-light) 100%);
  box-shadow: 0 8px 28px rgba(229,169,74,0.45);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}

.btn--whatsapp:hover {
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transform: translateY(-2px);
}

.btn--instagram {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(221,42,123,0.3);
}

.btn--instagram:hover {
  box-shadow: 0 8px 28px rgba(221,42,123,0.45);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green);
}

.btn--outline:hover {
  background: var(--forest-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.1em;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}


/* ================================================================
   08. NAVBAR
   ================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-slow), box-shadow var(--transition-slow), backdrop-filter var(--transition-slow);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  padding-inline: var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;

  /* Glassmorphism */
  background: rgba(248, 244, 237, 0.72);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(229, 169, 74, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* Scrolled state — JS adds .scrolled to .site-header */
.site-header.scrolled .navbar {
  background: rgba(248, 244, 237, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--forest-green);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}

.logo-text::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--sunset-gold), var(--terracotta));
  border-radius: 2px;
  transition: width var(--transition-base);
  margin-top: 2px;
}

.logo-link:hover .logo-text::after {
  width: 100%;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: var(--tracking-wide);
  color: var(--charcoal);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  position: relative;
  transition: color var(--transition-base);
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sunset-gold), var(--terracotta));
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--forest-green);
}

.nav-link:hover::after {
  width: calc(100% - var(--space-8));
}

.nav-link--book {
  background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--terracotta) 100%);
  color: var(--white) !important;
  padding: var(--space-2) var(--space-6);
  font-size: var(--text-xs);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  border-radius: var(--radius-full);
  transition: box-shadow var(--transition-base), transform var(--transition-fast);
}

.nav-link--book::after { display: none; }

.nav-link--book:hover {
  box-shadow: 0 8px 24px rgba(229,169,74,0.5);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.nav-toggle:hover {
  background: rgba(38,74,62,0.08);
}

.hamburger-bar {
  display: block;
  height: 2px;
  background-color: var(--forest-green);
  border-radius: 2px;
  transition: width var(--transition-base), transform var(--transition-base), opacity var(--transition-base);
}

.hamburger-bar:nth-child(1) { width: 22px; }
.hamburger-bar:nth-child(2) { width: 18px; }
.hamburger-bar:nth-child(3) { width: 22px; }

.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}


/* ================================================================
   09. HERO SECTION
   ================================================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Background Image */
.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 14s var(--ease-luxury) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

/* Multi-layer dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(13,13,13,0.15)   0%,
      rgba(13,13,13,0.05)  30%,
      rgba(38,74,62,0.45)  70%,
      rgba(13,13,13,0.85) 100%
    ),
    linear-gradient(
      to right,
      rgba(201,109,69,0.15) 0%,
      transparent 60%
    );
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  animation: heroReveal 1.2s var(--ease-luxury) both;
  animation-delay: 0.3s;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--sunset-gold-light);
  background: rgba(229, 169, 74, 0.15);
  border: 1px solid rgba(229,169,74,0.35);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  animation: heroReveal 1.2s var(--ease-luxury) both;
  animation-delay: 0.1s;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
  animation: heroReveal 1.2s var(--ease-luxury) both;
  animation-delay: 0.25s;
}

.hero-heading-accent {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--sunset-gold-light), var(--terracotta-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(var(--text-base), 2vw, var(--text-md));
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: var(--leading-relaxed);
  max-width: 520px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  animation: heroReveal 1.2s var(--ease-luxury) both;
  animation-delay: 0.4s;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  animation: heroReveal 1.2s var(--ease-luxury) both;
  animation-delay: 0.55s;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  animation: heroReveal 1.2s var(--ease-luxury) both, scrollPulse 2.5s ease-in-out infinite;
  animation-delay: 1.2s, 2s;
  opacity: 0.75;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.75; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1;    }
}

.scroll-label {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.scroll-arrow {
  font-size: var(--text-md);
  color: var(--sunset-gold-light);
}


/* ================================================================
   10. ABOUT SECTION
   ================================================================ */
.about-section {
  background-color: var(--cream);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

/* About Image */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--sunset-gold), var(--terracotta), var(--forest-green));
  z-index: -1;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

/* Badge overlay on image */
.about-image-badge {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: rgba(248,244,237,0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(229,169,74,0.25);
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--sunset-gold);
  line-height: 1;
}

.about-badge-text {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--forest-green);
}

/* About Content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.about-description {
  font-family: var(--font-display);
  font-size: clamp(var(--text-md), 2vw, var(--text-xl));
  font-weight: 400;
  color: var(--charcoal);
  line-height: var(--leading-relaxed);
  letter-spacing: 0.01em;
}

/* Features List */
.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.about-feature-item:hover {
  background: var(--cream-dark);
  border-color: rgba(229,169,74,0.2);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(229,169,74,0.12), rgba(201,109,69,0.08));
  border-radius: var(--radius-md);
  flex-shrink: 0;
  border: 1px solid rgba(229,169,74,0.2);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.feature-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--charcoal);
}

.feature-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-snug);
}

.about-cta {
  align-self: flex-start;
}


/* ================================================================
   11. GALLERY SECTION
   ================================================================ */
.gallery-section {
  background: var(--cream-dark);
}

/* Masonry layout using CSS columns */
.gallery-grid {
  columns: 4 240px;
  column-gap: var(--space-5);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Wide items span more visual weight (CSS columns auto-handles height) */
.gallery-item--wide {
  width: 100%;
}

/* Image */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.07);
}

/* Caption overlay */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8) var(--space-4) var(--space-4);
  background: linear-gradient(to top, rgba(13,13,13,0.75) 0%, transparent 100%);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: var(--tracking-wide);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   12. REVIEWS SECTION
   ================================================================ */
.reviews-section {
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(229,169,74,0.1);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(229,169,74,0.10);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.review-card:hover {
 transform: translateY(-8px);

  border-color: rgba(229,169,74,0.6);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.15),
    0 0 25px rgba(229,169,74,0.35),
    0 0 60px rgba(229,169,74,0.20);

  transition: all 0.4s ease;
}

/* Card Header */
.review-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--terracotta) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(229,169,74,0.3);
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer-name {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--charcoal);
}

.reviewer-location {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wide);
}

/* Star Rating */
.review-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star {
  font-size: 1rem;
}

.star--filled {
  color: var(--sunset-gold);
}

.star--half {
  color: var(--sunset-gold);
  opacity: 0.6;
}

.star--empty {
  color: var(--cream-dark);
}

.rating-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  margin-left: var(--space-2);
}

/* Review Text */
.review-text {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: var(--leading-relaxed);
  border-left: 3px solid var(--sunset-gold);
  padding-left: var(--space-4);
  margin: 0;
}

/* Review Footer */
.review-card-footer {
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(38,74,62,0.08);
}

.review-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}


/* ================================================================
   13. BOOKING SECTION
   ================================================================ */
.booking-section {
  background: linear-gradient(
    160deg,
    var(--forest-green-dark)  0%,
    var(--forest-green)       50%,
    var(--forest-green-light) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.booking-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(229,169,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.booking-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(201,109,69,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.booking-section .section-tag  { color: var(--sunset-gold-light); }
.booking-section .section-title { color: var(--white); }
.booking-section .section-subtitle { color: rgba(255,255,255,0.65); }

.booking-cards-grid {
  display: grid;
 grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}

.booking-card {
  background: rgba(248,244,237,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229,169,74,0.20);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-base);
}

.booking-card:hover {
  background: rgba(248,244,237,0.11);
  border-color: rgba(229,169,74,0.45);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-6px);
}

/* Featured card */
.booking-card--featured {
  background: rgba(229,169,74,0.10);
  border-color: rgba(229,169,74,0.45);
  box-shadow: 0 8px 40px rgba(229,169,74,0.18);
}

.booking-card--featured:hover {
  background: rgba(229,169,74,0.16);
  border-color: rgba(229,169,74,0.65);
}

.booking-card-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sunset-gold), var(--terracotta));
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-1) var(--space-5);
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(229,169,74,0.4);
}

/* Platform Logo */
.booking-card-logo {
  height: 75px;
  display: flex;
  align-items: center;
}

.platform-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.booking-card:hover .platform-logo {
  opacity: 1;
}

/* Booking Card Body */
.booking-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.booking-platform-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--white);
  letter-spacing: var(--tracking-tight);
}

.booking-platform-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.60);
  line-height: var(--leading-relaxed);
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.booking-perk-item {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Direct Booking CTA */
.booking-direct-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(229,169,74,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.booking-direct-text {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.70);
  max-width: 480px;
}


/* ================================================================
   14. CONTACT SECTION
   ================================================================ */
.contact-section {
  background: var(--cream-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-address-block {
  font-style: normal;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(38,74,62,0.08);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-fast);
}

.contact-info-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(229,169,74,0.25);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(229,169,74,0.12), rgba(201,109,69,0.08));
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.contact-info-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--sunset-gold-dark);
}

.contact-info-value {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: var(--leading-snug);
}

.contact-link {
  color: var(--forest-green);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--terracotta);
}

.contact-social-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Map Placeholder */
.contact-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(38,74,62,0.1);
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(
    160deg,
    var(--forest-green-dark) 0%,
    var(--forest-green) 60%,
    var(--forest-green-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Decorative map-like grid */
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--space-8);
}

.map-pin-icon {
  font-size: 3rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  animation: mapPinBounce 2.5s ease-in-out infinite;
}

@keyframes mapPinBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.map-placeholder-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--white);
  line-height: var(--leading-tight);
}

.map-placeholder-subtext {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  letter-spacing: var(--tracking-wide);
}

.map-directions-btn {
  margin-top: var(--space-2);
  border-color: rgba(255,255,255,0.5);
  color: var(--white) !important;
}

.map-directions-btn:hover {
  background: var(--white) !important;
  color: var(--forest-green) !important;
  border-color: var(--white) !important;
}


/* ================================================================
   15. FOOTER
   ================================================================ */
.site-footer {
  background: linear-gradient(
    170deg,
    var(--charcoal)       0%,
    var(--charcoal-light) 50%,
    var(--charcoal)      100%
  );
  color: var(--white);
  padding-top: var(--space-20);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* Decorative top border */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--sunset-gold), var(--forest-green));
}

/* Subtle texture */
.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229,169,74,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--space-16);
  position: relative;
  z-index: 1;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.footer-logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 6px rgba(229,169,74,0.3));
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--white);
  letter-spacing: var(--tracking-tight);
}

.footer-tagline {
  font-size: var(--text-sm);
   color: rgba(255,255,255,0.85);
    line-height: 1.8;
  max-width: 280px;
}

.footer-social {
   display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
  width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);

    color: white;
    font-size: 1.3rem;

    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-5px);
    background: #E5A94A;
    color: #111;
    box-shadow: 0 10px 25px rgba(229,169,74,0.35);
}

/* Footer Nav */
.footer-nav-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--sunset-gold);
  margin-bottom: var(--space-5);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-base);
  display: inline-block;
  line-height: 1.4;
}

.footer-nav-link:hover {
  color: var(--sunset-gold-light);
  padding-left: var(--space-2);
}

/* Footer Contact */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-snug);
}

.footer-contact-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-link:hover {
  color: var(--sunset-gold-light);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.40);
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer-legal-link {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: var(--tracking-wide);
  transition: color var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--sunset-gold-light);
}


/* ================================================================
   16. SCROLL-TRIGGERED FADE IN ANIMATIONS
       (JS adds .is-visible class to .animate-on-scroll elements)
   ================================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease-luxury),
    transform 0.65s var(--ease-luxury);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children for grouped reveals */
.animate-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s var(--ease-luxury),
    transform 0.55s var(--ease-luxury);
}

.animate-stagger.is-visible > *:nth-child(1)  { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.animate-stagger.is-visible > *:nth-child(2)  { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.animate-stagger.is-visible > *:nth-child(3)  { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.animate-stagger.is-visible > *:nth-child(4)  { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.animate-stagger.is-visible > *:nth-child(5)  { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.animate-stagger.is-visible > *:nth-child(6)  { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
.animate-stagger.is-visible > *:nth-child(7)  { opacity: 1; transform: translateY(0); transition-delay: 0.47s; }
.animate-stagger.is-visible > *:nth-child(8)  { opacity: 1; transform: translateY(0); transition-delay: 0.54s; }
.animate-stagger.is-visible > *:nth-child(9)  { opacity: 1; transform: translateY(0); transition-delay: 0.61s; }
.animate-stagger.is-visible > *:nth-child(10) { opacity: 1; transform: translateY(0); transition-delay: 0.68s; }


/* ================================================================
   17. UTILITY CLASSES
   ================================================================ */
.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;
}

.text-center { text-align: center; }
.text-right  { text-align: right; }

.mt-auto { margin-top: auto; }


/* ================================================================
   18. RESPONSIVE — TABLET  (max 1024px)
   ================================================================ */
@media (max-width: 1024px) {

  /* Navbar */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(248,244,237,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-6) var(--container-pad) var(--space-8);
    gap: var(--space-2);
    border-bottom: 1px solid rgba(229,169,74,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);

    /* Hidden by default */
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity var(--transition-base),
      transform var(--transition-base);
  }

  /* JS adds .nav-open to .site-header */
  .site-header.nav-open .nav-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-item {
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .nav-link {
    display: block;
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
  }

  .nav-link::after { display: none; }

  .nav-link:hover {
    background: rgba(38,74,62,0.06);
  }

  .nav-item--cta {
    margin-top: var(--space-3);
  }

  .nav-link--book {
    text-align: center;
    display: block;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-sm);
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-image {
    aspect-ratio: 16 / 9;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .map-placeholder {
    aspect-ratio: 16 / 7;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10) var(--space-8);
  }

  .footer-brand {
    grid-column: span 2;
  }
}


/* ================================================================
   19. RESPONSIVE — MOBILE  (max 768px)
   ================================================================ */
@media (max-width: 768px) {

  :root {
    --navbar-height: 68px;
  }

  /* Hero */
  .hero-heading {
    letter-spacing: -0.03em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--large {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Gallery — 2 columns on mobile */
  .gallery-grid {
    columns: 2 140px;
    column-gap: var(--space-3);
  }

  .gallery-item {
    margin-bottom: var(--space-3);
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Booking */
  .booking-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Contact social buttons */
  .contact-social-buttons {
    flex-direction: column;
  }

  .contact-social-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
}


/* ================================================================
   20. RESPONSIVE — SMALL MOBILE  (max 480px)
   ================================================================ */
@media (max-width: 480px) {

  /* Typography scale down */
  .section-title {
    font-size: var(--text-2xl);
  }

  .hero-tagline {
    font-size: var(--text-base);
  }

  /* Gallery — single column */
  .gallery-grid {
    columns: 1;
  }

  /* Review card padding */
  .review-card {
    padding: var(--space-6);
  }

  /* Booking card padding */
  .booking-card {
    padding: var(--space-6);
  }

  /* Section padding */
  .section {
    padding-block: clamp(3rem, 8vw, 5rem);
  }

  /* About feature items */
  .about-feature-item {
    flex-direction: column;
    gap: var(--space-3);
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }
}


/* ================================================================
   21. PRINT STYLES
   ================================================================ */
@media print {

  .site-header,
  .hero-scroll-indicator,
  .nav-toggle,
  .btn,
  .contact-social-buttons,
  .footer-social {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .hero-section {
    height: auto;
    min-height: 0;
    padding: 2rem;
  }

  .hero-bg-image,
  .hero-overlay {
    display: none;
  }

  .hero-heading,
  .hero-tagline {
    color: black;
    text-shadow: none;
  }

  .booking-section {
    background: #f0f0f0;
  }

  .booking-platform-name,
  .booking-platform-desc,
  .booking-perk-item {
    color: black;
  }

  .site-footer {
    background: #222;
    color: white;
  }
}


/* ================================================================
   22. REDUCED MOTION — ACCESSIBILITY
   ================================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .animate-on-scroll,
  .animate-stagger > * {
    opacity: 1;
    transform: none;
  }
}