/* Design System CSS Variables (Use These Exact Variables) */

:root {
  /* Colors - Base */
  --color-primary: #2C2825;
  --color-secondary: #8B7355;
  --color-accent: #C9A962;
  --color-neutral-light: #FAF8F5;
  --color-neutral-dark: #1F2937;
  --color-background: #FAF8F5;
  --color-text: #1F2937;

  /* Colors - Variations (for sophistication) */
  --color-primary-light: rgba(44, 40, 37, 0.1);
  --color-primary-dark: #2C2825;
  --color-overlay-light: rgba(44, 40, 37, 0.05);
  --color-overlay-dark: rgba(44, 40, 37, 0.15);

  /* Typography - Fonts */
  --font-heading: Cormorant Garamond, var(--font-body), sans-serif;
  --font-body: Libre Baskerville, sans-serif;

  /* Typography - Weights (use variety!) */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Typography - Letter Spacing */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;

  /* Typography - Line Height */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;

  /* Shadows - Layered for depth (use multiple!) */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.08);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

  /* Spacing Scale (for rhythm) */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 2rem;       /* 32px */
  --space-xl: 4rem;       /* 64px */
  --space-2xl: 6rem;      /* 96px */
  --space-3xl: 8rem;      /* 128px */

  /* Container */
  --container-width: 1400px;
  --container-padding: var(--space-lg);

  /* Border Radius (vary for visual interest) */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions (use appropriate timing) */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Z-index Scale (for layering) */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

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

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

/* Form Styles */
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}


/* navigation Section */
/* DESIGN SYSTEM VARIABLES */
:root {
  --primary: #2C2825;
  --secondary: #8B7355;
  --accent: #C9A962;
  --neutral-light: #FAF8F5;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Libre Baskerville", serif;
  --nav-height: 90px;
  --nav-height-scrolled: 70px;
  --easing: cubic-bezier(0.65, 0, 0.35, 1);
}

/* BASE NAVIGATION STYLES */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary);
  color: var(--neutral-light);
  transition: padding 0.5s var(--easing), background-color 0.5s ease;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navigation.is-scrolled {
  padding: 0.75rem 0;
  background-color: rgba(44, 40, 37, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.navigation__container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1002;
}

/* LOGO */
.navigation__logo {
  text-decoration: none;
  color: var(--neutral-light);
  position: relative;
  z-index: 1002;
  overflow: hidden;
}

.navigation__logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: block;
  transition: color 0.3s ease;
}

.navigation__logo:hover .navigation__logo-text {
  color: var(--accent);
}

/* DESKTOP MENU */
.navigation__desktop {
  display: none;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 992px) {
  .navigation__desktop {
    display: flex;
  }
}

.navigation__list {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation__link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 248, 245, 0.8);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.navigation__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--easing);
}

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

.navigation__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* CTA BUTTON */
.navigation__cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.4s ease;
}

.navigation__cta:hover {
  background-color: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* MOBILE TOGGLE */
.navigation__toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

@media (min-width: 992px) {
  .navigation__toggle {
    display: none;
  }
}

.navigation__burger {
  display: block;
  width: 30px;
  height: 14px;
  position: relative;
}

.navigation__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--neutral-light);
  position: absolute;
  left: 0;
  transition: all 0.4s var(--easing);
}

.navigation__burger-line:first-child {
  top: 0;
}

.navigation__burger-line:last-child {
  bottom: 0;
}

/* Burger Animation State */
.navigation__toggle[aria-expanded="true"] .navigation__burger-line:first-child {
  transform: translateY(6px) rotate(45deg);
  background-color: var(--accent);
}

.navigation__toggle[aria-expanded="true"] .navigation__burger-line:last-child {
  transform: translateY(-6px) rotate(-45deg);
  background-color: var(--accent);
}

/* MOBILE MENU OVERLAY */
.navigation__mobile {
  position: fixed;
  inset: 0;
  background-color: var(--primary);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--easing);
}

.navigation__mobile.is-open {
  clip-path: inset(0 0 0 0);
}

.navigation__mobile-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.navigation__mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.navigation__mobile-item {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s var(--easing);
}

.navigation__mobile.is-open .navigation__mobile-item {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays for Mobile Items */
.navigation__mobile.is-open .navigation__mobile-item:nth-child(1) { transition-delay: 0.3s; }
.navigation__mobile.is-open .navigation__mobile-item:nth-child(2) { transition-delay: 0.4s; }
.navigation__mobile.is-open .navigation__mobile-item:nth-child(3) { transition-delay: 0.5s; }
.navigation__mobile.is-open .navigation__mobile-item:nth-child(4) { transition-delay: 0.6s; }

.navigation__mobile-link {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--neutral-light);
  text-decoration: none;
  font-weight: 300;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navigation__mobile-link:hover {
  color: var(--accent);
  font-style: italic;
  transform: translateX(10px);
}

.navigation__mobile-link--highlight {
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 1rem;
  color: var(--accent);
}

.navigation__mobile-footer {
  position: absolute;
  bottom: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease 0.8s;
}

.navigation__mobile.is-open .navigation__mobile-footer {
  opacity: 0.5;
}

.navigation__mobile-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (prefers-reduced-motion: reduce) {
  .navigation,
  .navigation__mobile,
  .navigation__mobile-item,
  .navigation__link::after {
    transition: none !important;
    animation: none !important;
  }
}

/* hero Section */
/* HERO SECTION - REFINED BOLD AESTHETIC */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--primary, #2C2825);
  color: var(--neutral-light, #FAF8F5);
  overflow: hidden;
  padding: 120px 0 80px;
  isolation: isolate;
}

/* LAYOUT & BACKGROUNDS */
/* The split layout uses a background panel for the text area */
.hero__bg-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--primary, #2C2825);
  z-index: 0;
}

/* Asymmetric image placement */
.hero__image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  opacity: 0; /* JS reveals this */
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.5s ease-out;
}

/* Desktop: Image takes right 55% */
@media (min-width: 992px) {
  .hero__image-wrapper {
    width: 55%;
    left: auto;
  }
}

.hero.is-loaded .hero__image-wrapper {
  opacity: 1;
  transform: scale(1);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* Focus on the rings */
}

/* Elegant overlay for text legibility if image overlaps */
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44,40,37,0.8) 0%, rgba(44,40,37,0.2) 50%, rgba(44,40,37,0) 100%);
  z-index: 2;
}

@media (min-width: 992px) {
  .hero__image-overlay {
    background: linear-gradient(90deg, rgba(44,40,37,1) 0%, rgba(44,40,37,0) 20%);
  }
}

/* GRID SYSTEM */
.hero__grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 100%;
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

/* CONTENT STYLING */
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 65ch;
}

/* Eyebrow & Meta */
.hero__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero__eyebrow {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent, #C9A962);
}

.hero__separator {
  height: 1px;
  width: 60px;
  background-color: var(--accent, #C9A962);
  opacity: 0.6;
}

/* Dramatic Typography */
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw + 1rem, 5.5rem);
  line-height: 1.05;
  font-weight: 400;
  color: #FAF8F5;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--indent {
  margin-left: 0;
  color: #EAE5DD;
}

@media (min-width: 768px) {
  .hero__title-line--indent {
    margin-left: 2.5rem;
  }
}

.hero__title-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--accent, #C9A962);
}

.hero__description {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.8);
  margin-bottom: 3rem;
  max-width: 45ch;
}

/* ACTIONS */
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}

.hero__button--primary {
  background-color: var(--neutral-light, #FAF8F5);
  color: var(--primary, #2C2825);
  padding: 1.1rem 2.2rem;
  border-radius: 2px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero__button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.2);
  background-color: var(--accent, #C9A962);
  color: #fff;
}

.hero__button--text {
  color: #FAF8F5;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  gap: 0.75rem;
}

.hero__button--text:hover {
  border-bottom-color: var(--accent, #C9A962);
  color: var(--accent, #C9A962);
}

.hero__arrow {
  transition: transform 0.3s ease;
}

.hero__button--text:hover .hero__arrow {
  transform: translateX(5px);
}

/* FOOTER ELEMENTS */
.hero__footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  width: 100%;
  max-width: 500px;
}

.hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__trust-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent, #C9A962);
}

.hero__trust-text {
  font-size: 0.75rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 245, 0.6);
}

.hero__urgency {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.5);
  font-style: italic;
  border-left: 1px solid rgba(250, 248, 245, 0.1);
  padding-left: 1.5rem;
}

/* ANIMATIONS */
.hero__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

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

/* Staggered delays */
.hero__fade-in:nth-child(1) { transition-delay: 100ms; }
.hero__fade-in:nth-child(2) { transition-delay: 200ms; }
.hero__fade-in:nth-child(3) { transition-delay: 400ms; }
.hero__fade-in:nth-child(4) { transition-delay: 600ms; }
.hero__fade-in:nth-child(5) { transition-delay: 800ms; }

/* CREDIT */
.hero__credit {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 5;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  pointer-events: auto;
  mix-blend-mode: difference;
}
.hero__credit a {
  color: inherit;
  text-decoration: underline;
}

/* SCROLL INDICATOR */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent, #C9A962) 0%, rgba(201, 169, 98, 0) 100%);
  animation: scrollPulse 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollPulse {
  0% { transform-origin: 0 0; transform: scaleY(0); }
  50% { transform-origin: 0 0; transform: scaleY(1); }
  51% { transform-origin: 0 100%; transform: scaleY(1); }
  100% { transform-origin: 0 100%; transform: scaleY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__fade-in,
  .hero__image-wrapper,
  .hero__scroll-line {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* features Section */
/* AWARD-WINNING FEATURES SECTION - TIMELESS HERITAGE STYLE */

/* Section Container */
.features {
  position: relative;
  padding: 140px 0;
  background-color: #FAF8F5; /* Warm neutral ivory */
  color: #2C2825;
  overflow: hidden;
}

.features__container {
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
}

/* Asymmetric Grid Layout */
.features__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .features__layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 6rem;
    align-items: start;
  }
}

/* --- VISUAL SIDE (LEFT) --- */
.features__visual {
  position: relative;
}

.features__image-frame {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

/* Decorative border offset */
.features__image-frame::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 0;
  bottom: 0;
  border: 1px solid #C9A962; /* Gold accent */
  z-index: -1;
  opacity: 0.6;
  transition: transform 0.6s ease;
}

.features__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-color: #e5e5e5;
}

.features__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.features:hover .features__image {
  transform: scale(1.03);
}

/* Metric Badge */
.features__metric {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: #2C2825;
  color: #FAF8F5;
  padding: 2rem;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(44, 40, 37, 0.15);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.features__metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 300;
  color: #C9A962;
  margin-bottom: 0.5rem;
}

.features__metric-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  opacity: 0.9;
}

.features__photo-credit {
  font-size: 0.7rem;
  color: #8B7355;
  margin-top: 1rem;
  opacity: 0.7;
}

.features__photo-credit a {
  color: inherit;
  text-decoration: underline;
}

/* --- CONTENT SIDE (RIGHT) --- */
.features__content {
  position: relative;
  padding-top: 1rem;
}

/* Typography */
.features__header {
  margin-bottom: 3.5rem;
}

.features__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #2C2825;
}

.features__title-italic {
  font-style: italic;
  color: #8B7355;
}

.features__divider {
  width: 60px;
  height: 1px;
  background-color: #C9A962;
  margin-bottom: 2rem;
}

.features__subheadline {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4B5563;
  max-width: 600px;
}

/* Highlight Block */
.features__highlight {
  margin-bottom: 3rem;
}

.features__highlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #2C2825;
}

.features__highlight-desc {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #6B7280;
}

/* Feature List */
.features__list {
  list-style: none;
  padding: 0;
  margin: 0 0 3.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid rgba(139, 115, 85, 0.2);
  padding-top: 2rem;
}

.features__list-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.features__bullet {
  width: 6px;
  height: 6px;
  background-color: #C9A962;
  transform: rotate(45deg);
  flex-shrink: 0;
  position: relative;
  top: -2px;
}

.features__list-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #2C2825;
  font-weight: 500;
  line-height: 1.4;
}

/* Footer & CTA */
.features__closing-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  color: #8B7355;
  margin-bottom: 2rem;
  max-width: 500px;
}

.features__cta {
  display: inline-block;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #2C2825;
  text-decoration: none;
  border-bottom: 1px solid #C9A962;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.features__cta:hover {
  color: #C9A962;
  padding-bottom: 0px;
  border-bottom: 1px solid transparent;
}

/* --- ANIMATIONS --- */
.features__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Stagger delays manually without nth-child for cleaner control */
.features__content .features__fade-in:nth-child(1) { transition-delay: 0.1s; }
.features__content .features__fade-in:nth-child(2) { transition-delay: 0.2s; }
.features__content .features__fade-in:nth-child(3) { transition-delay: 0.3s; }
.features__content .features__fade-in:nth-child(4) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .features__fade-in {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* about-preview Section */
/* SECTION: About Preview - Pattern: Asymmetric Magazine Spread */
.about-preview {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
  background-color: var(--primary);
  color: var(--neutral-light);
}

/* VISUAL LAYER (Background) */
.about-preview__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-preview__image-wrapper {
  width: 100%;
  height: 100%;
}

.about-preview__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

/* Smooth zoom effect on hover */
.about-preview:hover .about-preview__bg-image {
  transform: scale(1);
}

.about-preview__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44, 40, 37, 0.9) 0%, rgba(44, 40, 37, 0.6) 50%, rgba(44, 40, 37, 0.4) 100%);
  z-index: 1;
}

/* LAYOUT LAYER */
.about-preview__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT COLUMN: Quote */
.about-preview__left {
  padding-right: 2rem;
}

.about-preview__quote-wrapper {
  position: relative;
}

.about-preview__quote-wrapper::before {
  content: '"';
  position: absolute;
  top: -4rem;
  left: -2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  pointer-events: none;
}

.about-preview__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  font-style: italic;
  color: var(--neutral-light);
  margin-bottom: 2rem;
  font-weight: 300;
}

.about-preview__author-name {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.about-preview__author-role {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.875rem;
  color: rgba(250, 248, 245, 0.7);
  font-style: italic;
}

/* RIGHT COLUMN: Content Card */
.about-preview__right {
  position: relative;
}

.about-preview__card {
  background: var(--neutral-light, #FAF8F5);
  padding: 4rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: var(--primary);
  /* Subtle overlapping effect */
  margin-right: -4rem;
  border-left: 4px solid var(--secondary);
}

.about-preview__eyebrow {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.about-preview__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 2rem;
}

.about-preview__text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 1.5rem;
}

.about-preview__text:last-of-type {
  margin-bottom: 3rem;
}

/* STATS GRID - STRICTLY 3 COLS */
.about-preview__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 40, 37, 0.1);
}

.about-preview__stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-preview__stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-preview__stat-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #6B7280;
}

/* BUTTON */
.about-preview__button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary);
  color: var(--neutral-light);
  text-decoration: none;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
}

.about-preview__button:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}

/* ATTRIBUTION */
.about-preview__credits {
  position: absolute;
  bottom: 1rem;
  left: 2rem;
  z-index: 3;
}

.photo-credits {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.photo-credits a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.photo-credits a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ANIMATION CLASSES */
.about-preview__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.about-preview__right .about-preview__fade-in {
  transition-delay: 0.2s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-preview__card {
    margin-right: 0;
    padding: 3rem;
  }
  
  .about-preview__grid {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .about-preview {
    padding: 80px 0;
    height: auto;
    min-height: auto;
  }

  .about-preview__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-preview__left {
    padding-right: 0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .about-preview__quote-wrapper::before {
    left: 50%;
    transform: translateX(-50%);
    top: -3rem;
  }
  
  .about-preview__card {
    border-left: none;
    border-top: 4px solid var(--secondary);
  }
}

@media (max-width: 600px) {
  .about-preview__card {
    padding: 2rem;
  }
  
  .about-preview__title {
    font-size: 2.5rem;
  }
  
  .about-preview__stats {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about-preview__stat-item {
    align-items: center;
  }
  
  .about-preview__button {
    display: block;
    text-align: center;
    width: 100%;
  }
}

/* testimonials Section */
/* AWARD-WINNING TESTIMONIALS SECTION */
/* Design: Dark Luxury, Featured Highlight + Grid */

.testimonials {
  position: relative;
  background-color: var(--primary, #2C2825);
  color: var(--neutrals-50, #FAF8F5);
  padding: 120px 0;
  overflow: hidden;
}

.testimonials__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Header --- */
.testimonials__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.testimonials__eyebrow {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, #C9A962);
  margin-bottom: 1.5rem;
}

.testimonials__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 300;
  color: #fff;
}

.testimonials__subtitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.7);
}

/* --- Featured Section (The "Hook") --- */
.testimonials__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
}

.testimonials__featured-visual {
  height: 100%;
  min-height: 500px;
  position: relative;
}

.testimonials__image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.testimonials__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.testimonials__featured:hover .testimonials__image {
  transform: scale(1.03);
}

.testimonials__featured-content {
  padding: 4rem;
  padding-left: 0;
  position: relative;
}

.testimonials__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--accent, #C9A962);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.testimonials__featured-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 2.5rem;
  position: relative;
  color: #fff;
}

.testimonials__author-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent, #C9A962);
}

.testimonials__author-role {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.875rem;
  color: rgba(250, 248, 245, 0.6);
  margin-top: 0.25rem;
}

/* --- Grid Section (The "Proof") --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 4rem;
}

.testimonials__card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.4s ease;
}

.testimonials__card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 169, 98, 0.2);
  transform: translateY(-5px);
}

.testimonials__card-stars {
  color: var(--accent, #C9A962);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.testimonials__card-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(250, 248, 245, 0.85);
}

/* --- Photo Credits --- */
.photo-credits {
  margin-top: 4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
}

.photo-credits a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.photo-credits a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Animations --- */
.testimonials__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Stagger delays handled in CSS for performance */
.testimonials__featured.testimonials__fade-in { transition-delay: 100ms; }
.testimonials__card:nth-child(1) { transition-delay: 200ms; }
.testimonials__card:nth-child(2) { transition-delay: 300ms; }
.testimonials__card:nth-child(3) { transition-delay: 400ms; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .testimonials__featured {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .testimonials__featured-visual {
    height: 400px;
    min-height: auto;
  }

  .testimonials__featured-content {
    padding: 3rem;
  }
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials__card {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 80px 0;
  }

  .testimonials__featured-quote {
    font-size: 1.5rem;
  }
  
  .testimonials__featured-content {
    padding: 2rem;
  }
}

/* cta Section */
/* SECTION: CTA (Atelier Frame Layout) */
.cta {
  position: relative;
  background-color: #2C2825; /* Primary Dark */
  color: #FAF8F5; /* Neutral Light */
  padding: 140px 0;
  overflow: hidden;
  isolation: isolate;
}

/* Background Ambience */
.cta__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.cta__texture {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, rgba(44, 40, 37, 0) 70%);
  border-radius: 50%;
}

/* Container & Frame Architecture */
.cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.cta__frame {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
}

/* The Gold Border Lines - Animated Draw Effect */
.cta__border-line {
  position: absolute;
  background-color: rgba(201, 169, 98, 0.4); /* Accent dimmed */
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta__border-line--top {
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  transform-origin: center;
  transform: scaleX(0);
}

.cta__border-line--bottom {
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  transform-origin: center;
  transform: scaleX(0);
}

.cta__border-line--left {
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 1px;
  transform-origin: center;
  transform: scaleY(0);
}

.cta__border-line--right {
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  transform-origin: center;
  transform: scaleY(0);
}

/* Trigger border animation when in view */
.cta.is-visible .cta__border-line {
  transform: scale(1);
}

.cta__inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Typography */
.cta__header {
  margin-bottom: 2rem;
}

.cta__eyebrow {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A962; /* Accent */
  margin-bottom: 1.5rem;
}

.cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 300;
  color: #FAF8F5;
}

.cta__title-italic {
  font-style: italic;
  font-weight: 400;
  color: #C9A962;
}

.cta__description {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

/* Actions */
.cta__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.4s ease;
  min-width: 220px;
}

/* Primary: Gold Background */
.cta__button--primary {
  background-color: #C9A962;
  color: #2C2825;
  border: 1px solid #C9A962;
}

.cta__button--primary:hover {
  background-color: #b0914d;
  border-color: #b0914d;
  transform: translateY(-2px);
}

/* Secondary: Outline */
.cta__button--secondary {
  background-color: transparent;
  color: #FAF8F5;
  border: 1px solid rgba(250, 248, 245, 0.3);
}

.cta__button--secondary:hover {
  border-color: #C9A962;
  color: #C9A962;
  transform: translateY(-2px);
}

/* Trust Signals Grid */
.cta__trust-wrapper {
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  padding-top: 2.5rem;
}

.cta__trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Explicit 4 columns */
  gap: 1.5rem;
}

.cta__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(250, 248, 245, 0.8);
}

.cta__trust-icon {
  color: #C9A962;
  font-size: 1rem;
}

.cta__trust-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* Animations */
.cta__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.cta__fade-in:nth-child(1) { transition-delay: 100ms; }
.cta__fade-in:nth-child(2) { transition-delay: 200ms; }
.cta__fade-in:nth-child(3) { transition-delay: 300ms; }
.cta__fade-in:nth-child(4) { transition-delay: 400ms; }

/* Responsive */
@media (max-width: 992px) {
  .cta__trust-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 on tablet */
    gap: 2rem;
  }
  
  .cta__border-line--left,
  .cta__border-line--right {
    display: none; /* Remove side borders on smaller screens for cleaner look */
  }
  
  .cta__border-line--top,
  .cta__border-line--bottom {
    left: 0;
    right: 0;
  }
}

@media (max-width: 640px) {
  .cta__title {
    font-size: 2.5rem;
  }
  
  .cta__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta__button {
    width: 100%;
  }
  
  .cta__trust-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
  }
  
  .cta {
    padding: 100px 0;
  }
}

/* footer Section */
/* =============================
   FOOTER — Timeless Heritage
============================= */
.footer {
  position: relative;
  padding: 120px 0 60px;
  background-color: #2C2825;
  color: #FAF8F5;
  overflow: hidden;
}

.footer__background {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 40% at 80% 0%, rgba(201,169,98,0.12), transparent 70%);
  pointer-events: none;
}

.footer__container {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.footer__brand-description {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #F3F4F6;
  max-width: 32ch;
}

.footer__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #C9A962;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list-item + .footer__list-item {
  margin-top: 0.75rem;
}

.footer__link {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  color: #FAF8F5;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: #C9A962;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer__link:hover {
  color: #C9A962;
}

.footer__link:hover::after {
  transform: scaleX(1);
}

.footer__contact-item {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  color: #F3F4F6;
  margin-bottom: 0.5rem;
}

.footer__contact-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #C9A962;
  text-decoration: none;
}

.footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer__social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #FAF8F5;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer__social:hover {
  background-color: #C9A962;
  color: #2C2825;
  border-color: #C9A962;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
}

.footer__copyright {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.75rem;
  color: #F3F4F6;
}

/* Fade-in Animation */
.footer__fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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