/* ============================================
   HALI LYNEA EVENTS — Main Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-cream: #FAF9F5;
  --color-linen: #F4F3EE;
  --color-charcoal: #2D2017;
  --color-brown: #533932;
  --color-sage: #858957;
  --color-dark: #2C1F17;
  --color-black: #1A1A1A;
  --color-white: #FFFFFF;
  --color-overlay: rgba(44, 31, 23, 0.45);
  --color-overlay-light: rgba(244, 243, 238, 0.92);
  --color-border: rgba(83, 57, 50, 0.15);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-charcoal);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0.02em;
}

p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-brown);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 20px;
  display: block;
}

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--color-brown);
  margin: 30px 0;
  opacity: 0.3;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--color-black);
  background: transparent;
  color: var(--color-black);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--color-cream);
}

.btn-primary {
  background: var(--color-black);
  color: var(--color-cream);
}

.btn-primary::before {
  background: var(--color-brown);
}

.btn-primary:hover {
  border-color: var(--color-brown);
  color: var(--color-cream);
}

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

.btn-light::before {
  background: var(--color-cream);
}

.btn-light:hover {
  color: var(--color-dark);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 249, 245, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cream);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--color-charcoal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream);
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: var(--transition);
}

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

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--color-cream);
  color: var(--color-cream);
  transition: var(--transition);
}

.navbar.scrolled .nav-cta {
  border-color: var(--color-charcoal);
  color: var(--color-charcoal);
}

.nav-cta:hover {
  background: var(--color-charcoal);
  color: var(--color-cream);
  border-color: var(--color-charcoal);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 1.5px;
  background: var(--color-cream);
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--color-charcoal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5.3px);
  background: var(--color-charcoal);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5.3px);
  background: var(--color-charcoal);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: var(--transition-slow);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.mobile-nav.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active a:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active a:nth-child(7) { transition-delay: 0.4s; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, #3d2b1f 50%, #4a3728 100%);
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 31, 23, 0.3), rgba(44, 31, 23, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content .section-label {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.hero h1 {
  color: var(--color-cream);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(250, 249, 245, 0.85);
  margin-bottom: 45px;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(250, 249, 245, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(250, 249, 245, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   INTRO / BRAND STATEMENT
   ============================================ */
.intro {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image {
  position: relative;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
}

.intro-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-border);
  z-index: -1;
}

.intro-text h2 {
  margin-bottom: 30px;
}

.intro-text p {
  margin-bottom: 20px;
}

.intro-text .btn {
  margin-top: 20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--color-linen);
}

.about .container {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center top;
}

.about-text h2 {
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 18px;
}

.about-text .signature {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--color-charcoal);
  margin-top: 30px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.services-header {
  max-width: 600px;
  margin: 0 auto 80px;
  text-align: center;
}

.services-header h2 {
  margin-bottom: 20px;
}

.services-header p {
  text-align: center;
}

/* Service Blocks — M Kaye style vertical layout */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.service-block:last-of-type {
  margin-bottom: 0;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-block-image {
  overflow: hidden;
}

.service-block-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-block-image:hover img {
  transform: scale(1.03);
}

.service-block-content {
  padding: 20px 0;
}

.service-block-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.service-block-content > p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-brown);
  margin-bottom: 30px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.service-list li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-brown);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid rgba(83, 57, 50, 0.08);
}

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

.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-sage);
  font-size: 1.2rem;
  line-height: 1.6;
}

.service-block .btn {
  font-size: 0.65rem;
  padding: 14px 32px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: var(--section-padding);
  background: var(--color-linen);
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.gallery-header h2 {
  margin-bottom: 20px;
}

/* Gallery Flywheel — Infinite Scroll */
.gallery-flywheel {
  overflow: hidden;
  position: relative;
}

.gallery-flywheel:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-track {
  display: flex;
  animation: flywheel-scroll 60s linear infinite;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

@keyframes flywheel-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.gallery-slide {
  min-width: 420px;
  height: 450px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  padding: 0 8px;
  box-sizing: border-box;
  flex-shrink: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.gallery-slide img,
.gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.gallery-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  bottom: 0;
  background: rgba(44, 31, 23, 0);
  transition: var(--transition);
  pointer-events: none;
}

.gallery-slide:hover img,
.gallery-slide:hover video {
  transform: scale(1.05) translateZ(0);
}

.gallery-slide:hover::after {
  background: rgba(44, 31, 23, 0.15);
}

/* Gallery Mobile Slideshow — hidden on desktop */
.gallery-mobile {
  display: none;
}

/* Gallery Video — plays on hover */
.gallery-video {
  position: relative;
  cursor: pointer;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: var(--color-cream);
  cursor: pointer;
  z-index: 2001;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 200;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews {
  padding: var(--section-padding);
  background: var(--color-dark);
  color: var(--color-cream);
  text-align: center;
  overflow: hidden;
}

.reviews-header {
  max-width: 600px;
  margin: 0 auto 15px;
}

.reviews-header .section-label {
  color: var(--color-sage);
}

.reviews-header h2 {
  color: var(--color-cream);
  margin-bottom: 10px;
}

.reviews-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 50px;
}

.reviews-stars svg {
  width: 20px;
  height: 20px;
  fill: #D4A853;
}

.reviews-stars span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(250, 249, 245, 0.6);
  margin-left: 8px;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  animation: fadeIn 0.6s ease;
}

.testimonial-slide.active {
  display: flex;
}

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

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.9;
  color: var(--color-cream);
  margin-bottom: 35px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-sage);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
  line-height: 1;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 249, 245, 0.8);
  margin-bottom: 5px;
}

.testimonial-source {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--color-sage);
  text-transform: uppercase;
}

.testimonial-source a {
  color: var(--color-sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonial-source a:hover {
  color: var(--color-cream);
}

/* Carousel Nav */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(250, 249, 245, 0.2);
  background: none;
  color: var(--color-cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  border-color: var(--color-sage);
  background: rgba(133, 137, 87, 0.15);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.carousel-counter {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(250, 249, 245, 0.5);
  min-width: 60px;
  text-align: center;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 280px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250, 249, 245, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-sage);
  transform: scale(1.3);
}

/* The Knot Badge */
.knot-badge {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.knot-badge a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 249, 245, 0.5);
  border: 1px solid rgba(250, 249, 245, 0.15);
  padding: 10px 22px;
  transition: var(--transition);
}

.knot-badge a:hover {
  border-color: var(--color-sage);
  color: var(--color-cream);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, #3d2b1f 100%);
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 31, 23, 0.55);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--color-cream);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(250, 249, 245, 0.75);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto 40px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.faq-header h2 {
  margin-bottom: 20px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 25px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
}

.faq-question h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.faq-question .faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--color-brown);
  transition: var(--transition);
}

.faq-toggle::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 1px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-top: 18px;
  font-size: 0.9rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  padding: 80px 0 40px;
  color: rgba(250, 249, 245, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 249, 245, 0.08);
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  color: rgba(250, 249, 245, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 25px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(250, 249, 245, 0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-cream);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(250, 249, 245, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-sage);
  background: rgba(133, 137, 87, 0.15);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(250, 249, 245, 0.6);
}

.footer-bottom {
  padding-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(250, 249, 245, 0.3);
}

.footer-bottom a {
  color: rgba(250, 249, 245, 0.3);
}

.footer-bottom a:hover {
  color: rgba(250, 249, 245, 0.6);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
