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

:root {
  /* Pastel Palette */
  --cream: #FEF6F0;
  --peach: #FAD2CF;
  --mint: #C9E4DE;
  --lavender: #DCD3E8;
  --yellow: #FFF1C9;
  --blue: #BDDBE8;
  --pink-light: #FFD1DC;

  /* Core */
  --black: #1a1a1a;
  --dark: #14191f;
  --white: #ffffff;
  --gray: #6b6b6b;

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* Borders */
  --border: 2px solid var(--black);
  --border-light: 1px solid rgba(26, 26, 26, 0.15);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);

  /* Transition */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--cream);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.body-lg {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.body-lg--light {
  color: rgba(255,255,255,0.8);
}

/* ===================================
   Top Announcement Bar
   =================================== */
.topbar {
  background: var(--lavender);
  border-bottom: var(--border);
  padding: 12px 0;
  position: relative;
  z-index: 1001;
}

.topbar.is-hidden {
  display: none;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.topbar-text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.topbar-text a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: opacity var(--duration);
}

.topbar-text a:hover {
  opacity: 0.7;
}

.topbar-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--black);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--duration);
  flex-shrink: 0;
}

.topbar-close:hover {
  background: rgba(0,0,0,0.08);
}

/* ===================================
   Header
   =================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: var(--border);
  transition: all var(--duration) var(--ease);
}

.header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  height: 72px;
  gap: var(--space-lg);
}

.header-logo {
  flex-shrink: 0;
  border-right: var(--border);
  padding-right: var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--black);
}

.header-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-list a {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  position: relative;
  padding: 4px 0;
  transition: opacity var(--duration);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: width var(--duration) var(--ease);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-list a:hover {
  opacity: 0.7;
}

.header-actions {
  flex-shrink: 0;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--duration);
  display: block;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration), visibility 0s var(--duration);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--duration), visibility 0s 0s;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
}

.mobile-nav-list li {
  margin-bottom: var(--space-md);
}

.mobile-nav-list a {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--black);
  transition: opacity var(--duration);
}

.mobile-nav-list a:hover {
  opacity: 0.6;
}

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

@media (max-width: 900px) {
  .header-nav,
  .header-actions {
    display: none;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===================================
   Buttons (Land Institute Style)
   =================================== */
.site-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  background: var(--black);
  color: var(--white);
  border: var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.site-btn:hover {
  background: var(--lavender);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--lavender);
  color: var(--black);
  border-radius: 50%;
  font-size: 14px;
  transition: all var(--duration) var(--ease);
}

.site-btn:hover .btn-arrow {
  background: var(--black);
  color: var(--white);
  transform: translateX(3px);
}

/* Outline variant */
.site-btn--outline {
  background: transparent;
  color: var(--black);
}

.site-btn--outline:hover {
  background: var(--peach);
}

/* Light variant (on dark bg) */
.site-btn--light {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
}

.site-btn--light:hover {
  background: var(--lavender);
  border-color: var(--lavender);
}

.site-btn--light .btn-arrow {
  background: var(--black);
  color: var(--white);
}

/* Logo image */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Hero image */
.hero-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: var(--border);
  border-radius: 8px;
  display: block;
}

/* About section image */
.about-img {
  width: 100%;
  margin-top: var(--space-md);
  border: var(--border);
  border-radius: 4px;
  object-fit: cover;
  max-height: 280px;
  display: block;
}

/* Feature card images */
.category-card-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-bottom: var(--border);
  display: block;
}

/* Slider slide images */
.slide-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

/* Small button */
.site-btn--sm {
  padding: 10px 18px;
  font-size: 13px;
}

/* ===================================
   Parallax Window Sections
   =================================== */
.parallax-window {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  border-bottom: var(--border);
  background: var(--parallax-bg) center/cover no-repeat;
  background-attachment: fixed;
}

/* iOS/mobile fallback - background-attachment: fixed doesn't work on mobile */
@supports (-webkit-touch-callout: none) {
  .parallax-window {
    background-attachment: scroll;
    background-size: cover;
  }
}

/* Inner frame — the "window" border */
.parallax-window::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  z-index: 1;
}

.parallax-caption {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 56px);
  color: var(--white);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .parallax-window {
    height: 50vh;
    min-height: 300px;
  }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  background: var(--cream);
  border-bottom: var(--border);
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-lg);
  }
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--lavender);
  border: var(--border);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  color: var(--black);
}

.hero-subtitle {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

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

.hero-image {
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--peach);
  border: var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===================================
   Sections - General
   =================================== */
.section {
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

@media (min-width: 768px) {
  .section-inner {
    padding: var(--space-2xl) var(--space-md);
  }
}

/* Section backgrounds */
.section--cream { background: var(--cream); }
.section--mint { background: var(--mint); }
.section--lavender { background: var(--lavender); }
.section--peach { background: var(--peach); }
.section--yellow { background: var(--yellow); }
.section--blue { background: var(--blue); }
.section--dark { background: var(--dark); }

/* Section header */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--lavender);
  border: var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: var(--space-sm);
}

.section-eyebrow--light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.section-heading {
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 700px;
}

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

/* ===================================
   Editorial Block (About)
   =================================== */
.editorial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 768px) {
  .editorial-block {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.editorial-left .section-heading {
  margin-top: var(--space-sm);
}

.highlight-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  line-height: 1.4;
  color: var(--black);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: var(--border);
}

/* ===================================
   Icon Content Grid (Mission)
   =================================== */
.icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .icon-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.icon-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255,255,255,0.5);
  border: var(--border);
  border-radius: 4px;
  transition: all var(--duration) var(--ease);
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.icon-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.icon-card-content h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.icon-card-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===================================
   Category Cards (Features)
   =================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  transition: all var(--duration) var(--ease);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-card-image {
  position: relative;
  overflow: hidden;
}

.card-image-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--peach);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.category-card-body {
  padding: var(--space-md);
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--lavender);
  border: 1px solid var(--black);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: var(--space-xs);
}

.category-card-body h3 {
  font-size: 22px;
  margin-bottom: var(--space-xs);
}

.category-card-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===================================
   Slider (Additional Features)
   =================================== */
.slider {
  position: relative;
  overflow: hidden;
  border: var(--border);
  border-radius: 4px;
  background: var(--white);
}

.slider-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

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

.slide-image {
  border-right: var(--border);
}

@media (max-width: 768px) {
  .slide-image {
    border-right: none;
    border-bottom: var(--border);
  }
}

.slide-image .card-image-placeholder {
  aspect-ratio: auto;
  min-height: 300px;
  height: 100%;
  background: var(--slide-accent, var(--peach));
  border-bottom: none;
}

.slide-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-number {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  border: var(--border);
  border-radius: 100px;
  padding: 4px 16px;
  display: inline-block;
  width: fit-content;
  margin-bottom: var(--space-md);
}

.slide-title {
  font-size: clamp(24px, 2.5vw, 36px);
  margin-bottom: var(--space-sm);
}

.slide-text {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-top: var(--border);
  background: var(--cream);
}

.slider-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all var(--duration) var(--ease);
}

.slider-btn:hover {
  background: var(--lavender);
  transform: scale(1.1);
}

.slider-counter {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  min-width: 50px;
  text-align: center;
}

/* ===================================
   CTA Block (Impact / Dark Section)
   =================================== */
.cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-block .section-heading {
  max-width: none;
  margin-bottom: var(--space-md);
}

.cta-block .body-lg {
  margin-bottom: var(--space-lg);
}

/* ===================================
   Contact Section
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

.info-item h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.info-item p {
  font-size: 16px;
  color: var(--gray);
}

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

.social-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--duration);
}

.social-link:hover {
  opacity: 0.6;
}

/* Contact Form */
.contact-form-col h3 {
  font-size: 28px;
  margin-bottom: var(--space-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  color: var(--black);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 16px;
  border: var(--border);
  border-radius: 0;
  background: var(--white);
  transition: border-color var(--duration), box-shadow var(--duration);
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px var(--lavender);
}

.form-group input[type="file"] {
  padding: 10px 16px;
  cursor: pointer;
}

/* Newsletter Block */
.newsletter-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--mint);
  border: var(--border);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .newsletter-block {
    flex-direction: column;
    text-align: center;
  }
}

.newsletter-content h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.newsletter-content p {
  font-size: 15px;
  color: var(--gray);
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.newsletter-form input {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 20px;
  border: var(--border);
  border-right: none;
  border-radius: 0;
  background: var(--white);
  min-width: 260px;
}

@media (max-width: 600px) {
  .newsletter-form input {
    min-width: 160px;
  }
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px var(--black);
}

.newsletter-form .site-btn {
  border-radius: 0;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--dark);
  color: var(--white);
  border-top: 3px solid var(--black);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 280px;
}

.footer-nav-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  color: rgba(255,255,255,0.5);
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: var(--space-xs);
}

.footer-nav a {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  transition: color var(--duration);
  position: relative;
  padding-left: 0;
}

.footer-nav a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  background: var(--lavender);
  border-radius: 50%;
  margin-right: 0;
  transition: all var(--duration) var(--ease);
  vertical-align: middle;
}

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

.footer-nav a:hover::before {
  width: 6px;
  height: 6px;
  margin-right: 8px;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===================================
   Additional Features - Cloud Background
   =================================== */
.af-section {
  position: relative;
}

.af-clouds {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Make section-inner and slider sit above clouds */
.af-section .section-inner {
  position: relative;
  z-index: 1;
}

/* Base cloud shape */
.af-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 100px;
  filter: blur(2px);
}

.af-cloud::before,
.af-cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

/* Cloud 1 — large, top row */
.af-cloud--1 {
  width: 260px; height: 70px;
  top: 8%;
}
.af-cloud--1::before {
  width: 120px; height: 100px;
  top: -50px; left: 40px;
}
.af-cloud--1::after {
  width: 90px; height: 70px;
  top: -35px; left: 120px;
}

/* Cloud 2 — medium, top row */
.af-cloud--2 {
  width: 180px; height: 50px;
  top: 14%;
}
.af-cloud--2::before {
  width: 85px; height: 70px;
  top: -36px; left: 28px;
}
.af-cloud--2::after {
  width: 65px; height: 52px;
  top: -24px; left: 86px;
}

/* Cloud 3 — small, mid-top */
.af-cloud--3 {
  width: 130px; height: 38px;
  top: 28%;
}
.af-cloud--3::before {
  width: 60px; height: 50px;
  top: -26px; left: 18px;
}
.af-cloud--3::after {
  width: 48px; height: 38px;
  top: -16px; left: 60px;
}

/* Cloud 4 — large, middle */
.af-cloud--4 {
  width: 300px; height: 80px;
  top: 42%;
}
.af-cloud--4::before {
  width: 140px; height: 115px;
  top: -58px; left: 50px;
}
.af-cloud--4::after {
  width: 100px; height: 80px;
  top: -40px; left: 150px;
}

/* Cloud 5 — medium, lower-mid */
.af-cloud--5 {
  width: 200px; height: 55px;
  top: 58%;
}
.af-cloud--5::before {
  width: 95px; height: 78px;
  top: -40px; left: 32px;
}
.af-cloud--5::after {
  width: 72px; height: 58px;
  top: -28px; left: 100px;
}

/* Cloud 6 — small, lower */
.af-cloud--6 {
  width: 150px; height: 42px;
  top: 70%;
}
.af-cloud--6::before {
  width: 70px; height: 58px;
  top: -30px; left: 22px;
}
.af-cloud--6::after {
  width: 54px; height: 44px;
  top: -20px; left: 70px;
}

/* Cloud 7 — large, near bottom */
.af-cloud--7 {
  width: 240px; height: 65px;
  top: 80%;
}
.af-cloud--7::before {
  width: 110px; height: 88px;
  top: -44px; left: 36px;
}
.af-cloud--7::after {
  width: 85px; height: 68px;
  top: -30px; left: 120px;
}

/* Cloud 8 — small, bottom */
.af-cloud--8 {
  width: 120px; height: 34px;
  top: 90%;
}
.af-cloud--8::before {
  width: 55px; height: 46px;
  top: -24px; left: 14px;
}
.af-cloud--8::after {
  width: 44px; height: 34px;
  top: -14px; left: 54px;
}

/* Drift animation — right to left and left to right */
@keyframes cloudDriftRight {
  from { transform: translateX(-140%); }
  to   { transform: translateX(110vw); }
}

@keyframes cloudDriftLeft {
  from { transform: translateX(110vw); }
  to   { transform: translateX(-140%); }
}

.af-cloud--1 { animation: cloudDriftRight 38s linear infinite; }
.af-cloud--2 { animation: cloudDriftLeft  30s linear infinite; animation-delay: -6s; }
.af-cloud--3 { animation: cloudDriftRight 44s linear infinite; animation-delay: -18s; }
.af-cloud--4 { animation: cloudDriftLeft  26s linear infinite; animation-delay: -3s; }
.af-cloud--5 { animation: cloudDriftRight 35s linear infinite; animation-delay: -24s; }
.af-cloud--6 { animation: cloudDriftLeft  42s linear infinite; animation-delay: -11s; }
.af-cloud--7 { animation: cloudDriftRight 32s linear infinite; animation-delay: -29s; }
.af-cloud--8 { animation: cloudDriftLeft  48s linear infinite; animation-delay: -15s; }

/* ===================================
   Scroll Animations
   =================================== */

/* Sections fade in on scroll */
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Stagger children */
.icon-card,
.category-card,
.editorial-left,
.editorial-right,
.contact-info,
.contact-form-col {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.section.is-visible .icon-card,
.section.is-visible .category-card,
.section.is-visible .editorial-left,
.section.is-visible .editorial-right,
.section.is-visible .contact-info,
.section.is-visible .contact-form-col {
  opacity: 1;
  transform: translateY(0);
}

.section.is-visible .icon-card:nth-child(1),
.section.is-visible .category-card:nth-child(1),
.section.is-visible .editorial-left { transition-delay: 0.1s; }

.section.is-visible .icon-card:nth-child(2),
.section.is-visible .category-card:nth-child(2),
.section.is-visible .editorial-right { transition-delay: 0.2s; }

.section.is-visible .icon-card:nth-child(3),
.section.is-visible .category-card:nth-child(3) { transition-delay: 0.3s; }

.section.is-visible .icon-card:nth-child(4) { transition-delay: 0.4s; }

.section.is-visible .contact-info { transition-delay: 0.1s; }
.section.is-visible .contact-form-col { transition-delay: 0.25s; }

/* Hero doesn't use scroll reveal - it's always visible */
.hero {
  opacity: 1;
  transform: none;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--black);
  z-index: 10000;
  transition: width 0.1s linear;
}
