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

:root {
  /* Colors - Base */
  --color-primary: #556B2F;
  --color-secondary: #C4B5A0;
  --color-accent: #B87333;
  --color-neutral-light: #FDFCFA;
  --color-neutral-dark: #2A2E25;
  --color-background: #FDFCFA;
  --color-text: #2A2E25;

  /* Colors - Variations (for sophistication) */
  --color-primary-light: rgba(85, 107, 47, 0.1);
  --color-primary-dark: #556B2F;
  --color-overlay-light: rgba(85, 107, 47, 0.05);
  --color-overlay-dark: rgba(85, 107, 47, 0.15);

  /* Typography - Fonts */
  --font-heading: Cormorant Garamond, serif;
  --font-body: DM Sans, 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: 1200px;
  --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 */
/* REFINED BOLD NAVIGATION - CONFIDENT ELEGANCE */

:root {
  --nav-height: 80px;
  --announcement-height: 40px;
  --nav-z-index: 1000;
  --color-primary: #556B2F;
  --color-secondary: #C4B5A0;
  --color-accent: #B87333;
  --color-bg-nav: #FDFCFA;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --easing-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

.navigation {
  position: sticky;
  top: 0;
  z-index: var(--nav-z-index);
  width: 100%;
  font-family: var(--font-body);
  background-color: var(--color-bg-nav);
  transition: transform 0.4s var(--easing-smooth), box-shadow 0.4s ease;
}

.navigation.is-scrolled {
  box-shadow: 0 4px 20px rgba(42, 46, 37, 0.05);
}

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

/* ANNOUNCEMENT BAR */
.navigation__announcement {
  background-color: var(--color-primary);
  color: #fff;
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* MAIN CONTAINER */
.navigation__main {
  height: var(--nav-height);
}

.navigation__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* LOGO - CENTERPIECE */
.navigation__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s ease;
  justify-self: center;
}

.navigation__logo-suffix {
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent);
  font-size: 0.85em;
}

/* DESKTOP NAV - LEFT ALIGNED IN GRID */
.navigation__desktop-nav {
  justify-self: start;
}

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

.navigation__link {
  text-decoration: none;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* ELEGANT HOVER EFFECT */
.navigation__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width 0.4s var(--easing-smooth);
}

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

.navigation__link:hover::after {
  width: 100%;
}

/* ACTIONS - RIGHT ALIGNED */
.navigation__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navigation__action-btn {
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navigation__action-btn:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.navigation__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--color-accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
}

/* MOBILE TOGGLE */
.navigation__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1002;
  padding: 0;
}

.navigation__toggle-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  transition: transform 0.4s var(--easing-smooth), top 0.4s var(--easing-smooth), opacity 0.4s ease;
}

.navigation__toggle-line:first-child {
  top: 10px;
}

.navigation__toggle-line:last-child {
  top: 22px;
}

/* MOBILE MENU OVERLAY - THE "WOW" FACTOR */
.navigation__mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-primary);
  z-index: 1001;
  transform: translateY(-100%);
  transition: transform 0.6s var(--easing-smooth);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.navigation__mobile-menu.is-open {
  transform: translateY(0);
}

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

.navigation__mobile-item {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.navigation__mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #FDFCFA;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.6s var(--easing-smooth), color 0.3s ease;
  opacity: 0;
}

/* Staggered entrance animation for links */
.navigation__mobile-menu.is-open .navigation__mobile-link {
  transform: translateY(0);
  opacity: 1;
}

.navigation__mobile-menu.is-open .navigation__mobile-item:nth-child(1) .navigation__mobile-link { transition-delay: 0.1s; }
.navigation__mobile-menu.is-open .navigation__mobile-item:nth-child(2) .navigation__mobile-link { transition-delay: 0.2s; }
.navigation__mobile-menu.is-open .navigation__mobile-item:nth-child(3) .navigation__mobile-link { transition-delay: 0.3s; }
.navigation__mobile-menu.is-open .navigation__mobile-item:nth-child(4) .navigation__mobile-link { transition-delay: 0.4s; }

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

.navigation__mobile-footer {
  margin-top: 3rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  opacity: 0;
  transition: opacity 0.6s ease 0.5s;
}

.navigation__mobile-menu.is-open .navigation__mobile-footer {
  opacity: 1;
}

.navigation__mobile-tagline {
  color: var(--color-secondary);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* OPEN STATE MODIFIERS FOR TOGGLE */
.navigation__toggle[aria-expanded="true"] .navigation__toggle-line {
  background-color: #FDFCFA;
}

.navigation__toggle[aria-expanded="true"] .navigation__toggle-line:first-child {
  transform: rotate(45deg);
  top: 16px;
}

.navigation__toggle[aria-expanded="true"] .navigation__toggle-line:last-child {
  transform: rotate(-45deg);
  top: 16px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .navigation__desktop-nav {
    display: none;
  }

  .navigation__container {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .navigation__toggle {
    display: block;
    justify-self: start;
  }
  
  .navigation__logo {
    justify-self: center;
    font-size: 1.5rem;
  }

  /* Hide account icon on mobile to save space, keep cart & search */
  .navigation__action-btn--account {
    display: none;
  }
}

@media (max-width: 480px) {
  .navigation__logo-suffix {
    display: none;
  }
  
  .navigation__mobile-link {
    font-size: 2.25rem;
  }
  
  .navigation__container {
    padding: 0 1.25rem;
  }
}

/* hero Section */
/* AWARD-WINNING HERO SECTION */
:root {
  --hero-bg: #556B2F; /* Deep Olive */
  --hero-text: #FDFCFA; /* Cream/White */
  --hero-accent: #B87333; /* Copper */
  --hero-secondary-text: #E5E7EB;
}

.hero {
  position: relative;
  background-color: var(--hero-bg);
  color: var(--hero-text);
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Subtle noise texture for depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  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)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero__background-decoration {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__container {
  width: 100%;
  max-width: var(--container-width, 1400px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: center;
}

/* LEFT CONTENT - Spans 7 columns on desktop */
.hero__content {
  grid-column: 1 / 8;
  padding-right: 2rem;
  position: relative;
  z-index: 10;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--hero-secondary-text);
  margin-bottom: 2rem;
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background-color: var(--hero-accent);
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero__title-italic {
  font-style: italic;
  font-weight: 400;
  color: #E8DCC8; /* Softer Gold/Cream */
}

.hero__title-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hero__title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.15em;
  left: 0;
  width: 100%;
  height: 0.3em;
  background-color: var(--hero-accent);
  opacity: 0.3;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s;
}

.is-visible .hero__title-highlight::after {
  transform: scaleX(1);
}

.hero__description {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.6;
  max-width: 540px;
  color: var(--hero-secondary-text);
  margin-bottom: 3rem;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero__button--primary {
  background-color: var(--hero-accent);
  color: #FFFFFF;
  border: 1px solid var(--hero-accent);
}

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

.hero__button--secondary {
  background-color: transparent;
  color: var(--hero-text);
  border: 1px solid rgba(255,255,255,0.3);
}

.hero__button--secondary:hover {
  border-color: var(--hero-text);
  background-color: rgba(255,255,255,0.05);
}

.hero__trust {
  display: flex;
  gap: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--hero-secondary-text);
  opacity: 0.8;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__trust-icon {
  color: var(--hero-accent);
}

/* RIGHT VISUAL - Spans 5 columns */
.hero__visual {
  grid-column: 8 / 13;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 0 0; /* Arch shape */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__visual:hover .hero__image-wrapper {
  transform: translateY(-10px);
}

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

.hero__visual:hover .hero__image {
  transform: scale(1.05);
}

/* Overlay to tint the image slightly to match brand */
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(85,107,47,0.2), rgba(85,107,47,0.4));
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__visual-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(184, 115, 51, 0.3); /* Thin copper border */
  border-radius: 200px 200px 0 0;
  z-index: -1;
  pointer-events: none;
}

.hero__photo-credit {
  text-align: right;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.hero__photo-credit a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.hero__photo-credit a:hover {
  color: white;
  text-decoration: underline;
}

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

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

/* Stagger delays */
.hero__eyebrow.is-visible { transition-delay: 0.1s; }
.hero__title.is-visible { transition-delay: 0.2s; }
.hero__description.is-visible { transition-delay: 0.3s; }
.hero__actions.is-visible { transition-delay: 0.4s; }
.hero__trust.is-visible { transition-delay: 0.5s; }
.hero__visual.is-visible { transition-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 3.5rem;
  }
  .hero__content {
    grid-column: 1 / 7;
  }
  .hero__visual {
    grid-column: 7 / 13;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
    align-items: flex-start;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero__content {
    grid-column: 1 / -1;
    padding-right: 0;
    order: 2; /* Visual below image on mobile for impact? Or above? Let's do above for CRO */
    order: 1;
    text-align: left;
  }
  
  .hero__title {
    font-size: 2.75rem;
  }
  
  .hero__description {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .hero__trust {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero__visual {
    grid-column: 1 / -1;
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero__image-wrapper {
    aspect-ratio: 4/5;
  }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  .hero__fade-in {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__title-highlight::after {
    transition: none !important;
  }
}

/* products Section */
/* AWARD-WINNING PRODUCTS SECTION - REFINED BOLD */

.products {
  position: relative;
  padding: 120px 0;
  background-color: #FDFCFA; /* Soft warm neutral base */
  color: #2A2E25;
  overflow: hidden;
}

.products__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header Typography */
.products__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.products__eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #556B2F; /* Primary Olive */
  margin-bottom: 24px;
  font-weight: 600;
}

.products__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 32px;
  font-weight: 500;
  color: #2A2E25;
  letter-spacing: -0.02em;
}

.products__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layout - STRICTLY 3 columns for 6 items */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  align-items: start;
}

/* Card Design - Editorial & Clean */
.products__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.products__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  z-index: 2;
}

.products__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f3f3f3;
}

.products__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.products__card:hover .products__image {
  transform: scale(1.05);
}

.products__details {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.products__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #2A2E25;
  line-height: 1.2;
}

.products__price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #556B2F; /* Primary Olive */
  margin-bottom: 8px;
}

.products__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Actions */
.products__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.products__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0;
}

.products__button--primary {
  background-color: #556B2F;
  color: #fff;
  border: 1px solid #556B2F;
}

.products__button--primary:hover {
  background-color: #445626;
  border-color: #445626;
}

.products__button--secondary {
  background-color: transparent;
  color: #2A2E25;
  border: 1px solid #D1D5DB;
}

.products__button--secondary:hover {
  border-color: #2A2E25;
  background-color: #2A2E25;
  color: #fff;
}

/* Footer & Credits */
.products__footer {
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 60px;
}

.products__social-proof {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #556B2F;
  margin-bottom: 32px;
}

.products__credits {
  font-size: 0.75rem;
  color: #999;
  max-width: 600px;
  margin: 0 auto;
}

.products__credit-text a {
  color: #777;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: color 0.2s;
}

.products__credit-text a:hover {
  color: #556B2F;
  border-color: #556B2F;
}

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

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

/* Stagger delays for grid items */
.products__card:nth-child(1) { transition-delay: 0.1s; }
.products__card:nth-child(2) { transition-delay: 0.2s; }
.products__card:nth-child(3) { transition-delay: 0.3s; }
.products__card:nth-child(4) { transition-delay: 0.4s; }
.products__card:nth-child(5) { transition-delay: 0.5s; }
.products__card:nth-child(6) { transition-delay: 0.6s; }

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products__title {
    font-size: 3.5rem;
  }
}

@media (max-width: 640px) {
  .products__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .products__title {
    font-size: 2.75rem;
  }
  
  .products__actions {
    grid-template-columns: 1fr;
  }
}

/* features Section */
/* AWARD-WINNING FEATURES SECTION */
.features {
  position: relative;
  padding: 120px 0;
  background-color: #FDFCFA; /* Soft neutral background */
  overflow: hidden;
}

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

/* HEADER */
.features__header {
  max-width: 800px;
  margin-bottom: 5rem;
}

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

.features__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #556B2F; /* Primary Olive */
  max-width: 60ch;
}

/* LAYOUT GRID - Asymmetric Split */
.features__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 900px) {
  .features__layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* SPOTLIGHT COLUMN (LEFT) */
.features__spotlight {
  position: relative;
}

.features__image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  background-color: #E5E7EB;
}

.features__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Abstracting the rubik's cube to look like architectural geometry */
  filter: grayscale(100%) sepia(20%) contrast(1.1);
  mix-blend-mode: multiply;
  opacity: 0.9;
  transition: transform 0.7s ease;
}

.features__spotlight:hover .features__image {
  transform: scale(1.05);
}

/* METRIC BADGE - Floating overlap */
.features__metric {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #556B2F; /* Primary Olive */
  color: #FFFFFF;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 180px;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
  box-shadow: 0 20px 40px rgba(85, 107, 47, 0.2);
}

.features__metric-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 0.25rem;
}

.features__metric-unit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.features__metric-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  opacity: 0.8;
}

.features__spotlight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.features__icon {
  font-size: 1.5rem;
}

.features__spotlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #2A2E25;
  margin: 0;
}

.features__spotlight-desc {
  font-family: 'DM Sans', sans-serif;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.features__callout {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #B87333; /* Accent Copper */
  color: #B87333;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.features__credits {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #9CA3AF;
}
.features__credits a {
  color: inherit;
  text-decoration: underline;
}

/* INFO COLUMN (RIGHT) */
.features__info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding-top: 1rem;
}

.features__list {
  list-style: none;
  padding: 0;
  margin: 0 0 4rem 0;
}

.features__item {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(42, 46, 37, 0.1);
  transition: border-color 0.3s ease;
}

.features__item:last-child {
  border-bottom: 1px solid rgba(42, 46, 37, 0.1);
}

.features__item:hover {
  border-color: #B87333;
}

.features__item-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #B87333; /* Accent Copper */
  font-style: italic;
  min-width: 2rem;
}

.features__item-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  color: #2A2E25;
  font-weight: 400;
  margin: 0;
}

/* Closing & CTA */
.features__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  line-height: 1.4;
  color: #2A2E25;
  margin: 0 0 3rem 0;
  border-left: 2px solid #556B2F;
  padding-left: 2rem;
  font-style: italic;
}

.features__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2A2E25;
  text-decoration: none;
  border-bottom: 1px solid #2A2E25;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}

.features__cta:hover {
  color: #B87333;
  border-color: #B87333;
  gap: 1.5rem;
}

/* ANIMATIONS */
.features__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

/* about-preview Section */
/* AWARD-WINNING ABOUT PREVIEW SECTION */
.about-preview {
  position: relative;
  padding: 120px 0;
  background-color: #F3F4F6;
  overflow: hidden;
  color: #2A2E25;
}

.about-preview__container {
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 24px);
}

/* --- HEADER --- */
.about-preview__header {
  margin-bottom: 80px;
  max-width: 900px;
}

.about-preview__eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B87333; /* Accent */
  margin-bottom: 24px;
  font-weight: 600;
}

.about-preview__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 300;
  color: #2A2E25;
  letter-spacing: -0.02em;
}

/* --- MAIN LAYOUT --- */
.about-preview__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-bottom: 100px;
}

@media (min-width: 992px) {
  .about-preview__layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

/* --- PROSE & CONTENT --- */
.about-preview__prose p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 24px;
}

.about-preview__prose p:first-of-type {
  font-size: 1.25rem;
  color: #2A2E25;
  font-weight: 400;
}

/* --- VALUES LIST --- */
.about-preview__values {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(184, 115, 51, 0.3); /* Soft accent border */
}

.about-preview__values-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  margin-bottom: 32px;
  color: #2A2E25;
}

.about-preview__values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-preview__value-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  align-items: baseline;
}

.about-preview__value-marker {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: #B87333;
  font-weight: 700;
  border-bottom: 2px solid #B87333;
  padding-bottom: 4px;
  display: inline-block;
}

.about-preview__value-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #2A2E25;
}

.about-preview__value-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

/* --- CTA --- */
.about-preview__action {
  margin-top: 60px;
}

.about-preview__cta {
  display: inline-block;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #2A2E25;
  padding-bottom: 4px;
  border-bottom: 1px solid #2A2E25;
  transition: all 0.3s ease;
}

.about-preview__cta:hover {
  color: #B87333;
  border-color: #B87333;
  transform: translateX(5px);
}

/* --- VISUAL & QUOTE --- */
.about-preview__visual {
  position: relative;
  z-index: 1;
}

.about-preview__figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.about-preview__visual:hover .about-preview__image {
  transform: scale(1.03);
}

.about-preview__caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 8px 12px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}

.about-preview__photo-credit {
  font-size: 0.7rem;
  margin: 0;
  color: #2A2E25;
}

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

.about-preview__quote {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background-color: #556B2F; /* Primary Olive */
  color: #FDFCFA;
  padding: 40px;
  max-width: 360px;
  z-index: 2;
  box-shadow: 0 15px 30px rgba(85, 107, 47, 0.2);
}

@media (max-width: 991px) {
  .about-preview__quote {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -60px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.about-preview__quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-preview__quote cite {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #C4B5A0; /* Secondary */
}

/* --- STATS GRID --- */
.about-preview__stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  background: #FFFFFF;
  padding: 60px;
  border: 1px solid #E5E7EB;
}

@media (min-width: 600px) {
  .about-preview__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-preview__stats {
    grid-template-columns: repeat(4, 1fr);
    border-left: 4px solid #B87333;
  }
}

.about-preview__stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-preview__stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1;
  color: #556B2F;
  font-weight: 600;
}

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

/* --- ANIMATIONS --- */
.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);
}

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

/* testimonials Section */
/* AWARD-WINNING TESTIMONIALS SECTION */
.testimonials {
  position: relative;
  background-color: var(--primary, #556B2F);
  color: #FDFCFA;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle grain texture overlay for premium feel */
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  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)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.testimonials__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
}

/* Header Styling */
.testimonials__header {
  max-width: 800px;
  margin-bottom: 4rem;
}

.testimonials__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.testimonials__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 500px;
  font-weight: 300;
}

/* Carousel Layout */
.testimonials__carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonials__track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -ms-overflow-style: none; /* Hide scrollbar IE */
  scroll-behavior: smooth;
  width: 100%;
  padding-right: var(--container-padding, 2rem);
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

/* Navigation Buttons */
.testimonials__nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(253, 252, 250, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #FDFCFA;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 1rem;
}

.testimonials__nav:hover {
  background: #FDFCFA;
  color: var(--primary, #556B2F);
  border-color: #FDFCFA;
}

.testimonials__nav--prev {
  margin-left: 0;
  margin-right: 2rem;
}

.testimonials__nav--next {
  margin-left: 2rem;
  margin-right: 0;
}

@media (max-width: 768px) {
  .testimonials__nav {
    display: none;
  }
}

/* Card Styling */
.testimonials__card {
  flex: 0 0 min(90vw, 400px);
  scroll-snap-align: start;
  background: rgba(253, 252, 250, 0.03);
  border: 1px solid rgba(253, 252, 250, 0.1);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.testimonials__card:hover {
  background: rgba(253, 252, 250, 0.06);
  transform: translateY(-5px);
}

/* Featured Card Variation */
.testimonials__card--featured {
  flex: 0 0 min(90vw, 600px);
  background: #FDFCFA;
  color: var(--primary, #556B2F);
  border: none;
}

.testimonials__card--featured:hover {
  background: #FDFCFA;
  transform: translateY(-5px);
}

.testimonials__badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent, #B87333);
  margin-bottom: 2rem;
}

.testimonials__stars {
  color: var(--accent, #B87333);
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
}

/* Typography within cards */
.testimonials__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 2rem;
  font-weight: 400;
}

.testimonials__quote--sm {
  font-size: 1.35rem;
  line-height: 1.4;
  opacity: 0.95;
}

/* Featured Results Grid */
.testimonials__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(85, 107, 47, 0.1);
}

.testimonials__result-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent, #B87333);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.testimonials__result-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(85, 107, 47, 0.8);
}

/* Author Info */
.testimonials__author {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonials__author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  font-style: normal;
}

.testimonials__author-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  opacity: 0.7;
}

.testimonials__metric {
  margin-top: 1rem;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent, #B87333);
}

/* Trust Badges */
.testimonials__trust {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 252, 250, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(253, 252, 250, 0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.testimonials__trust-divider {
  color: var(--accent, #B87333);
  opacity: 0.5;
}

/* CTA */
.testimonials__cta-wrapper {
  margin-top: 4rem;
  text-align: center;
}

.testimonials__cta {
  display: inline-block;
  color: #FDFCFA;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--accent, #B87333);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.testimonials__cta:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }
  
  .testimonials__results {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials__track {
    scroll-padding-left: var(--container-padding, 2rem);
  }
  
  .testimonials__trust {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .testimonials__trust-divider {
    display: none;
  }
}


/* cta Section */
/* CRITICAL: Section-prefixed BEM classes only */

/* Main Section Container */
.cta {
  position: relative;
  background-color: var(--primary-color, #556B2F);
  color: #FDFCFA;
  overflow: hidden;
  padding: 120px 0;
  /* Design System integration */
  --accent-color: #B87333;
  --text-light: #FDFCFA;
  --text-muted: rgba(253, 252, 250, 0.7);
}

/* Full-bleed Background Elements */
.cta__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta__pattern {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

/* Inner Content Container */
.cta__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Editorial Frame Layout */
.cta__frame {
  position: relative;
  border: 1px solid rgba(253, 252, 250, 0.15);
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.cta__frame::before,
.cta__frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--accent-color);
  border-style: solid;
  transition: all 0.6s ease;
}

.cta__frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.cta__frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.cta__frame:hover::before,
.cta__frame:hover::after {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

/* Typography & Content */
.cta__content {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-color);
  font-weight: 500;
}

.cta__eyebrow-line {
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
  opacity: 0.6;
}

.cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text-light);
}

.cta__title-italic {
  font-style: italic;
  color: var(--accent-color);
}

.cta__description {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 1rem;
}

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

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.cta__button--primary {
  background-color: var(--accent-color);
  color: #fff;
  border: 1px solid var(--accent-color);
}

.cta__button--primary:hover {
  background-color: #fff;
  color: var(--primary-color, #556B2F);
  border-color: #fff;
  transform: translateY(-2px);
}

.cta__button--secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cta__button--secondary:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Trust Signals */
.cta__trust {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.cta__trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta__trust-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta__check {
  color: var(--accent-color);
  font-size: 1rem;
}

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

.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; }
.cta__fade-in:nth-child(5) { transition-delay: 500ms; }

/* Responsive Design */
@media (max-width: 768px) {
  .cta__frame {
    padding: 4rem 1.5rem;
  }
  
  .cta__title {
    font-size: 2.75rem;
  }
  
  .cta__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta__button {
    width: 100%;
  }
  
  .cta__trust-list {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cta__eyebrow-line {
    width: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta__fade-in,
  .cta__button,
  .cta__frame::before,
  .cta__frame::after {
    transition: none !important;
    animation: none !important;
  }
}

/* about Section */
/* AWARD-WINNING EDITORIAL LAYOUT */
.about {
  position: relative;
  padding: 120px 0;
  background-color: #FDFCFA;
  color: #2A2E25;
  overflow: hidden;
}

.about__container {
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 24px);
}

/* HEADER TYPOGRAPHY */
.about__header {
  margin-bottom: 80px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about__eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B87333; /* Accent */
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #2A2E25;
  margin: 0;
}

/* SPLIT LAYOUT WITH STICKY SIDE */
.about__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
}

@media (min-width: 992px) {
  .about__layout {
    grid-template-columns: 5fr 7fr;
    gap: 100px;
    align-items: start;
  }
}

/* STICKY VISUAL */
.about__visual {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .about__visual {
    position: sticky;
    top: 40px;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
  }
}

.about__image-wrapper {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

@media (min-width: 992px) {
  .about__image-wrapper {
    flex: 1;
    height: auto;
  }
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) sepia(10%) contrast(1.05);
  transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.about__visual:hover .about__image {
  transform: scale(1.03);
}

.about__caption {
  margin-top: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: #6B7280;
  text-align: right;
}

/* NARRATIVE CONTENT */
.about__content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding-bottom: 60px;
}

/* CHAPTER STYLING */
.about__chapter-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #B87333;
  margin-bottom: 2rem;
  border-top: 1px solid #E5E7EB;
  padding-top: 2rem;
  display: inline-block;
}

.about__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.3;
  color: #2A2E25;
  margin-bottom: 2rem;
  font-weight: 500;
}

.about__text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 1.5rem;
}

/* MISSION QUOTE */
.about__mission {
  background-color: #556B2F;
  padding: 60px;
  border-radius: 2px;
  color: #FDFCFA;
  position: relative;
  margin: 2rem 0;
  box-shadow: 0 20px 40px rgba(85, 107, 47, 0.15);
}

.about__mission blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.3;
  margin: 0;
  font-style: italic;
  text-align: center;
}

/* VALUES GRID */
.about__values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .about__values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about__value-card {
  padding: 2rem;
  background-color: #F3F4F6;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.about__value-card:hover {
  background-color: #ffffff;
  border-left-color: #B87333;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about__value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #2A2E25;
  margin-bottom: 1rem;
}

.about__value-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}

/* METRICS */
.about__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.about__metric {
  text-align: center;
}

.about__metric-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #556B2F;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about__metric-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6B7280;
}

/* FOUNDER BLOCK */
.about__founder {
  margin-top: 2rem;
}

.about__founder-content {
  border-left: 4px solid #B87333;
  padding-left: 2rem;
}

.about__founder-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #2A2E25;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.about__founder-content cite {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #556B2F;
  font-style: normal;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about__cta-link {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: #2A2E25;
  text-decoration: none;
  border-bottom: 1px solid #B87333;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.about__cta-link:hover {
  color: #B87333;
  border-bottom-color: transparent;
}

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

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

/* PHOTO CREDITS LINK */
.photo-credits a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s;
}

.photo-credits a:hover {
  color: #2A2E25;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .about__title {
    font-size: 3rem;
  }
  
  .about__lead {
    font-size: 1.5rem;
  }
  
  .about__mission {
    padding: 40px 24px;
  }
  
  .about__metrics {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* faq Section */
/* AWARD-WINNING FAQ SECTION */
.faq {
  padding: 120px 0;
  background-color: #FDFCFA; /* Soft neutral background */
  color: #2A2E25;
  position: relative;
}

.faq__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

/* STICKY HEADER COLUMN */
.faq__header {
  position: sticky;
  top: 120px;
  max-width: 480px;
}

.faq__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 300;
  color: #556B2F;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.faq__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* SUPPORT BOX */
.faq__support {
  padding: 2rem;
  background-color: #F3F4F6;
  border-left: 2px solid #B87333;
  border-radius: 0 4px 4px 0;
}

.faq__support-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #2A2E25;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.faq__cta {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #556B2F;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.faq__cta::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.faq__cta:hover::after {
  transform: scaleX(0);
  transform-origin: left;
}

/* ACCORDION LIST */
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(42, 46, 37, 0.1);
}

.faq__item {
  border-bottom: 1px solid rgba(42, 46, 37, 0.1);
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq__trigger:hover .faq__question {
  color: #556B2F;
}

.faq__question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #2A2E25;
  padding-right: 2rem;
  transition: color 0.3s ease;
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #B87333;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq__trigger[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  color: #556B2F;
}

.faq__trigger[aria-expanded="true"] .faq__question {
  color: #556B2F;
}

/* ANSWER ANIMATION */
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease;
  opacity: 0;
}

.faq__trigger[aria-expanded="true"] + .faq__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer-inner p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6B7280;
  padding-bottom: 2.5rem;
  max-width: 90%;
}

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

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

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

/* RESPONSIVE */
@media (max-width: 1024px) {
  .faq__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq__header {
    position: relative;
    top: 0;
    max-width: 100%;
  }
  
  .faq__title {
    font-size: 3rem;
  }
}

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

  .faq__container {
    padding: 0 24px;
  }

  .faq__title {
    font-size: 2.5rem;
  }

  .faq__trigger {
    padding: 1.5rem 0;
  }

  .faq__question {
    font-size: 1.35rem;
  }

  .faq__answer-inner p {
    padding-bottom: 1.5rem;
  }
}

/* contact Section */
/* AWARD-WINNING CONTACT SECTION */
.contact {
  position: relative;
  padding: 120px 0;
  background-color: #F3F4F6;
  overflow: hidden;
}

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

/* Grid Layout */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  box-shadow: 0 40px 100px -20px rgba(42, 46, 37, 0.15);
}

@media (min-width: 992px) {
  .contact__grid {
    grid-template-columns: 4fr 5fr;
  }
}

/* Left Panel - Context */
.contact__info-panel {
  background-color: #556B2F; /* Brand Primary */
  color: #FDFCFA;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .contact__info-panel {
    padding: 80px 60px;
  }
}

.contact__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .contact__title {
    font-size: 4.5rem;
  }
}

.contact__description {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 4rem;
  max-width: 400px;
  font-weight: 300;
}

.contact__methods {
  margin-top: auto;
  display: grid;
  gap: 2.5rem;
}

.contact__method-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C4B5A0; /* Secondary */
  margin-bottom: 0.75rem;
}

.contact__method-link,
.contact__method-text {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: #FDFCFA;
  text-decoration: none;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}

.contact__method-link:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact__method-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

.contact__promise {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 252, 250, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__promise-icon {
  width: 8px;
  height: 8px;
  background-color: #B87333; /* Accent */
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.contact__promise-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.8;
  font-style: italic;
}

/* Right Panel - Form */
.contact__form-panel {
  background-color: #FDFCFA;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .contact__form-panel {
    padding: 80px 60px;
  }
}

.contact__form-header {
  margin-bottom: 3rem;
}

.contact__form-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  color: #2A2E25;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.contact__form-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}

.contact__input-wrapper {
  position: relative;
}

.contact__label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #556B2F;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact__input,
.contact__textarea,
.contact__select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #C4B5A0;
  padding: 1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #2A2E25;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  border-radius: 0;
  appearance: none;
}

.contact__select {
  cursor: pointer;
  padding-right: 2rem;
}

.contact__select-wrapper {
  position: relative;
}

/* Custom select arrow */
.contact__select-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #556B2F;
  pointer-events: none;
}

.contact__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__input:focus,
.contact__textarea:focus,
.contact__select:focus {
  outline: none;
  border-bottom-color: #556B2F;
  background-color: rgba(85, 107, 47, 0.03);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: #C4B5A0;
  font-size: 1.25rem;
  font-style: italic;
  opacity: 0.7;
}

.contact__error-message {
  display: none;
  color: #B87333;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.contact__input-wrapper.has-error .contact__input {
  border-bottom-color: #B87333;
}

.contact__input-wrapper.has-error .contact__error-message {
  display: block;
}

.contact__button {
  margin-top: 2rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: #2A2E25;
  color: #FDFCFA;
  border: 1px solid #2A2E25;
  padding: 1.25rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact__button:hover {
  background-color: transparent;
  color: #2A2E25;
}

.contact__button-icon {
  transition: transform 0.3s ease;
}

.contact__button:hover .contact__button-icon {
  transform: translate(4px, -4px);
}

.contact__success-message {
  display: none;
  padding: 1rem;
  background-color: rgba(85, 107, 47, 0.1);
  color: #556B2F;
  font-family: 'DM Sans', sans-serif;
  border-left: 3px solid #556B2F;
  margin-top: 1rem;
}

.contact__success-message.is-visible {
  display: block;
  animation: slideDown 0.4s ease-out;
}

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

/* Animations */
.contact__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);
}

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

.contact__form-panel.contact__fade-in {
  transition-delay: 0.2s;
}

/* footer Section */
/* REFINED BOLD - Footer Section */
.footer {
  background-color: #2A2E25; /* Deep Neutral/Olive Tone */
  color: #FDFCFA; /* Warm White */
  padding: 100px 0 0 0;
  position: relative;
  overflow: hidden;
}

.footer__container {
  width: 100%;
  max-width: var(--container-width, 1400px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
  display: flex;
  flex-direction: column;
}

/* --- Top Section: Newsletter --- */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__newsletter {
  max-width: 600px;
}

.footer__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #C4B5A0; /* Secondary/Beige */
}

.footer__subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  color: rgba(253, 252, 250, 0.7);
  margin-bottom: 2rem;
  font-weight: 300;
}

.footer__form {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.footer__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(196, 181, 160, 0.3);
  transition: border-color 0.3s ease;
}

.footer__input-wrapper:focus-within {
  border-color: #B87333; /* Accent Copper */
}

.footer__input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #FDFCFA;
  outline: none;
}

.footer__input::placeholder {
  color: rgba(253, 252, 250, 0.4);
}

.footer__submit {
  background: transparent;
  border: none;
  color: #C4B5A0;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__submit:hover {
  color: #B87333;
  transform: translateX(4px);
}

.footer__form-message {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #556B2F; /* Green success text, readable? maybe need lighter */
  color: #8F9E75; /* Lighter olive for visibility on dark bg */
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.footer__form.is-success .footer__form-message {
  opacity: 1;
  transform: translateY(0);
}

/* --- Divider --- */
.footer__divider {
  height: 1px;
  width: 100%;
  background-color: rgba(253, 252, 250, 0.1);
  margin-bottom: 60px;
}

/* --- Middle Section: Grid --- */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 80px;
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer__column--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer__column-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #B87333; /* Accent */
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: #FDFCFA;
  display: block;
  margin-bottom: 1rem;
}

.footer__description {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(253, 252, 250, 0.7);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 2rem;
}

.footer__socials {
  display: flex;
  gap: 1.5rem;
}

.footer__social-link {
  color: #C4B5A0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__social-link:hover {
  color: #B87333;
  transform: translateY(-2px);
}

.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #FDFCFA;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(253, 252, 250, 0.7);
}

.footer__link:hover {
  color: #C4B5A0;
}

.footer__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: #B87333;
  transition: width 0.3s ease;
}

.footer__link:hover::after {
  width: 100%;
}

.footer__link--highlight {
  color: #C4B5A0;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
}

/* --- Bottom Section --- */
.footer__bottom {
  display: flex;
  flex-direction: column;
}

.footer__meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(253, 252, 250, 0.4);
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: #FDFCFA;
}

/* The Massive Typography Statement */
.footer__big-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14vw;
  line-height: 0.8;
  text-align: center;
  color: rgba(85, 107, 47, 0.3); /* Primary color, very subtle */
  user-select: none;
  pointer-events: none;
  margin-bottom: -2vw; /* Slight overlap with bottom */
  letter-spacing: -0.04em;
  font-weight: 600;
  white-space: nowrap;
}

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

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

/* Stagger delays */
.footer__fade-in:nth-child(1) { transition-delay: 0ms; }
.footer__fade-in:nth-child(2) { transition-delay: 100ms; }
.footer__fade-in:nth-child(3) { transition-delay: 200ms; }
.footer__fade-in:nth-child(4) { transition-delay: 300ms; }