/* ============================================
   Shoal Rentals — Style Tokens & Components
   Elevated Coastal Palette
   ============================================ */

/* --- Font Loading is in HTML <head> --- */

/* --- Design Tokens --- */
:root {
  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* 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;

  /* Fonts */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* --- Light Mode (Default) --- */
:root,
[data-theme='light'] {
  --color-bg: #f5f0e8;
  --color-surface: #faf7f2;
  --color-surface-2: #fff;
  --color-surface-offset: #ede8de;
  --color-surface-offset-2: #e5dfd4;
  --color-surface-dynamic: #ddd7cb;
  --color-divider: #d4cec2;
  --color-border: #c9c3b7;

  --color-text: #1a2e3f;
  --color-text-muted: #5a6e7a;
  --color-text-faint: #97a5ad;
  --color-text-inverse: #f5f0e8;

  --color-primary: #5b9ea6;
  --color-primary-hover: #4a8891;
  --color-primary-active: #3a717a;
  --color-primary-highlight: #d4e8eb;

  --color-cta: #e87461;
  --color-cta-hover: #d4624f;
  --color-cta-active: #bf5342;

  --shadow-sm: 0 1px 2px rgba(26, 46, 63, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 46, 63, 0.08);
  --shadow-lg: 0 12px 32px rgba(26, 46, 63, 0.12);
}

/* --- Dark Mode --- */
[data-theme='dark'] {
  --color-bg: #0f1a22;
  --color-surface: #152029;
  --color-surface-2: #1a2733;
  --color-surface-offset: #0c1720;
  --color-surface-offset-2: #162230;
  --color-surface-dynamic: #1e3040;
  --color-divider: #243544;
  --color-border: #2d4050;

  --color-text: #d8dfe4;
  --color-text-muted: #8a9daa;
  --color-text-faint: #4e6474;
  --color-text-inverse: #0f1a22;

  --color-primary: #6fb8c2;
  --color-primary-hover: #8ac9d1;
  --color-primary-active: #a2d6dd;
  --color-primary-highlight: #1e3540;

  --color-cta: #f08b7a;
  --color-cta-hover: #f5a090;
  --color-cta-active: #f7b3a6;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0f1a22;
    --color-surface: #152029;
    --color-surface-2: #1a2733;
    --color-surface-offset: #0c1720;
    --color-surface-offset-2: #162230;
    --color-surface-dynamic: #1e3040;
    --color-divider: #243544;
    --color-border: #2d4050;
    --color-text: #d8dfe4;
    --color-text-muted: #8a9daa;
    --color-text-faint: #4e6474;
    --color-text-inverse: #0f1a22;
    --color-primary: #6fb8c2;
    --color-primary-hover: #8ac9d1;
    --color-primary-active: #a2d6dd;
    --color-primary-highlight: #1e3540;
    --color-cta: #f08b7a;
    --color-cta-hover: #f5a090;
    --color-cta-active: #f7b3a6;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.45);
  }
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

body {
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary-hover);
}

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-8);
  }
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-cta);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-cta:hover {
  background: var(--color-cta-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-cta:active {
  background: var(--color-cta-active);
  transform: translateY(0);
}

/* ============================================
   HEADER / NAV
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease;
  border-bottom: 1px solid transparent;
}

[data-theme='dark'] .header {
  background: rgba(15, 26, 34, 0.92);
}

[data-theme='dark'] .header__logo-img {
  filter: brightness(0) invert(1);
}

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

.header--scrolled {
  border-bottom-color: var(--color-divider);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-4);
}

@media (min-width: 768px) {
  .header__inner {
    padding: var(--space-3) var(--space-8);
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.header__logo svg {
  width: 40px;
  height: 40px;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav-desktop a:hover {
  color: var(--color-text);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-desktop a:hover::after {
  width: 100%;
}

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

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  background: transparent;
}
.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text);
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 400;
}
.mobile-nav a:hover {
  color: var(--color-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 20, 28, 0.85) 0%,
    rgba(15, 20, 28, 0.4) 40%,
    rgba(15, 20, 28, 0.15) 70%,
    rgba(15, 20, 28, 0.05) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-16) var(--space-4) var(--space-12);
  width: 100%;
}

@media (min-width: 768px) {
  .hero__content {
    padding: var(--space-24) var(--space-8) var(--space-16);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: var(--space-6);
  max-width: 500px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero__stat {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero__stat-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
}

.hero__cta {
  display: inline-flex;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(8px); }
  60% { transform: translateX(-50%) translateY(4px); }
}

/* ============================================
   PROPERTY OVERVIEW
   ============================================ */

.overview {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.overview__grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .overview__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
  }
}

.overview__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.overview__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.overview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.overview__text p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.overview__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

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

.feature-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.feature-item__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.3;
  padding-top: var(--space-2);
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-surface-offset);
}

.gallery__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: var(--space-3);
  }
}

@media (min-width: 1024px) {
  .gallery__grid {
    grid-auto-rows: 220px;
  }
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery__item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6) var(--space-3) var(--space-3);
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  font-size: var(--text-xs);
  color: #fff;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__item-label {
  opacity: 1;
}

/* Featured item (first) spans larger */
@media (min-width: 768px) {
  .gallery__item--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__caption {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
}
.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
}
.lightbox__nav:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox__nav--prev {
  left: var(--space-4);
}
.lightbox__nav--next {
  right: var(--space-4);
}

/* ============================================
   AMENITIES
   ============================================ */

.amenities {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.amenities__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.amenities__categories {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .amenities__categories {
    grid-template-columns: 1fr 1fr;
  }
}

.amenity-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.amenity-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.amenity-card__title-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.amenity-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.amenity-card__list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.amenity-card__list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

/* ============================================
   LOCATION
   ============================================ */

.location {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-surface-offset);
}

.location__grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .location__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.location__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location__info h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.location__nearby {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.location__nearby li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.location__nearby li strong {
  color: var(--color-text);
  font-weight: 600;
}

.location__nearby li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.location__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   BOOK NOW
   ============================================ */

.booking {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.booking__inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.booking__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-weight: 400;
}

.booking__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  margin-inline: auto;
}

.booking__widget-placeholder {
  background: var(--color-surface);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-6);
  margin-bottom: var(--space-8);
  color: var(--color-text-faint);
  font-size: var(--text-sm);
}

.booking__also {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.booking__otas {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.booking__ota-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.booking__ota-link:first-child {
  background: #FF5A5F;
}
.booking__ota-link:last-child {
  background: #3B5998;
}
.booking__ota-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  color: #fff;
}

.booking__contact {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.booking__contact a {
  color: var(--color-primary);
  font-weight: 500;
}

/* ============================================
   HOUSE RULES
   ============================================ */

.rules {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-surface-offset);
}

.rules__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.rules__grid {
  display: grid;
  gap: var(--space-4);
  max-width: 800px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .rules__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.rule-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
}

.rule-item__text {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.5;
}
.rule-item__text strong {
  display: block;
  margin-bottom: 2px;
}
.rule-item__text span {
  color: var(--color-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #1a2e3f;
  color: #f5f0e8;
  padding: var(--space-12) 0 var(--space-6);
}

.footer__inner {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

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

.footer__brand svg {
  width: 36px;
  height: 36px;
}

.footer__brand-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  list-style: none;
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.75);
  text-decoration: none;
}
.footer__links a:hover {
  color: rgba(245, 240, 232, 1);
}

.footer__logo-img {
  filter: brightness(0) invert(1);
}

.footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.75);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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