/* themesmith:preview-overrides:start */
@import url('https://fonts.googleapis.com/css2?family=Cormorant%20Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;600;700&display=swap');
:root {
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
  --font-scale: 1;
}

html {
  font-size: calc(16px * var(--font-scale));
}
/* themesmith:preview-overrides:end */

/* themesmith:preview-overrides:start */
@import url('https://fonts.googleapis.com/css2?family=Cormorant%20Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;600;700&display=swap');
:root {
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
  --font-scale: 1;
}

html {
  font-size: calc(16px * var(--font-scale));
}
/* themesmith:preview-overrides:end */

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

:root {
  /* Colors - Base */
  --color-primary: #1F3A4D;
  --color-secondary: #3E6F8E;
  --color-accent: #C97A4B;
  --color-neutral-light: #F4F7F6;
  --color-neutral-dark: #1F2937;
  --color-background: #F4F7F6;
  --color-text: #1F2937;

  /* Colors - Variations (for sophistication) */
  --color-primary-light: rgba(31, 58, 77, 0.1);
  --color-primary-dark: #1F3A4D;
  --color-overlay-light: rgba(31, 58, 77, 0.05);
  --color-overlay-dark: rgba(31, 58, 77, 0.15);

  /* Typography - Fonts */
  --font-heading: DM Serif Display, var(--font-body), sans-serif;
  --font-body: Space Grotesk, 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 */
/* NAVIGATION SECTION STYLES */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-family: 'Space Grotesk', sans-serif;
  transition: padding 0.4s ease;
  padding: 1.5rem 0;
  isolation: isolate; /* Creates stacking context so backdrop z-index: -1 stays within nav */
}

/* Scroll State */
.navigation.is-scrolled {
  padding: 1rem 0;
}

.navigation.is-scrolled .navigation__backdrop {
  opacity: 0.95;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(31, 58, 77, 0.08);
}

/* Background Layer */
.navigation__backdrop {
  position: absolute;
  inset: 0;
  background-color: #F4F7F6;
  opacity: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(31, 58, 77, 0.08);
  transition: opacity 0.4s ease, background-color 0.4s ease;
  z-index: -1;
}

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

/* Brand / Logo */
.navigation__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: #1F3A4D;
  z-index: 1002; /* Above mobile menu */
  transition: color 0.3s ease;
}

.navigation__brand-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.navigation__brand-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #C97A4B;
  font-weight: 600;
  margin-top: 2px;
}

/* Desktop Nav */
.navigation__desktop {
  display: none;
}

@media (min-width: 1100px) {
  .navigation__desktop {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }
}

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

.navigation__link {
  text-decoration: none;
  color: #1F3A4D;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.navigation__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 4px;
  background-color: #C97A4B;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.navigation__link:hover {
  color: #C97A4B;
}

.navigation__link:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Actions Area */
.navigation__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1002;
}

/* CTA Button (Contact) */
.navigation__cta {
  display: none;
  padding: 0.75rem 1.5rem;
  background-color: #1F3A4D;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

@media (min-width: 1100px) {
  .navigation__cta {
    display: inline-block;
  }
}

.navigation__cta:hover {
  background-color: #C97A4B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 122, 75, 0.3);
}

/* Mobile Toggle */
.navigation__toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  z-index: 1002;
}

.navigation__toggle-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1F3A4D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: none;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .navigation__toggle-text {
    display: block;
  }
}

.navigation__hamburger {
  width: 24px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navigation__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1F3A4D;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease;
}

.navigation__toggle:hover .navigation__bar:first-child {
  transform: translateY(-1px);
}

.navigation__toggle:hover .navigation__bar:last-child {
  transform: translateY(1px);
}

/* Mobile Menu Overlay */
.navigation__mobile {
  position: fixed;
  inset: 0;
  background-color: #F4F7F6;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-clip-path: circle(0% at calc(100% - 3rem) 3rem);
  clip-path: circle(0% at calc(100% - 3rem) 3rem);
  transition: -webkit-clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1), clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.navigation__mobile.is-open {
  -webkit-clip-path: circle(150% at calc(100% - 3rem) 3rem);
  clip-path: circle(150% at calc(100% - 3rem) 3rem);
  pointer-events: all;
}

.navigation__mobile-inner {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

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

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

.navigation__mobile-link {
  display: inline-block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: #1F3A4D;
  text-decoration: none;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.navigation__mobile-link:hover {
  color: #C97A4B;
}

.navigation__mobile-footer {
  margin-top: 3rem;
  font-family: 'Space Grotesk', sans-serif;
  color: #3E6F8E;
}

.navigation__mobile-address {
  margin: 0 0 0.5rem;
}

.navigation__mobile-phone {
  color: #1F3A4D;
  text-decoration: none;
  font-weight: 600;
}

/* Active State for Mobile Toggle */
.navigation__toggle[aria-expanded="true"] .navigation__bar:first-child {
  transform: translateY(6px) rotate(45deg);
  background-color: #1F3A4D;
}

.navigation__toggle[aria-expanded="true"] .navigation__bar:last-child {
  transform: translateY(-6px) rotate(-45deg);
  background-color: #1F3A4D;
}

@media (max-width: 480px) {
  .navigation__mobile-link {
    font-size: 2rem;
  }
  .navigation__list {
    gap: 1rem;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .navigation,
  .navigation__backdrop,
  .navigation__mobile,
  .navigation__bar,
  .navigation__link::after {
    transition: none !important;
    animation: none !important;
  }
}

/* hero Section */
/* AWARD-WINNING HERO SECTION */
:root {
  --hero-bg: #1F3A4D;
  --hero-text: #F4F7F6;
  --hero-accent: #C97A4B;
  --hero-secondary: #3E6F8E;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* Abstract River Flow Background */
.hero__bg-flow {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 90% 10%, rgba(201, 122, 75, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(62, 111, 142, 0.15) 0%, transparent 40%);
  z-index: 0;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
}

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

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
  }
}

/* Typography & Content */
.hero__eyebrow {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hero-accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #fff;
}

.hero__title-line {
  display: block;
}

/* Indent the second line for editorial feel */
.hero__title-line--accent {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-left: 0;
}

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

.hero__description {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(244, 247, 246, 0.8);
  max-width: 540px;
  margin-bottom: 3rem;
}

/* Actions / Buttons */
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

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

.hero__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
}

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

.hero__button--primary:hover {
  background-color: #b0663a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.hero__button--secondary:hover {
  border-color: #fff;
  background-color: rgba(255,255,255,0.05);
}

/* Social Proof */
.hero__proof {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 450px;
}

.hero__proof-accent {
  width: 2px;
  height: 3.5rem;
  background-color: var(--hero-accent);
  flex-shrink: 0;
}

.hero__proof-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(244, 247, 246, 0.85);
  font-style: italic;
}

/* Visual Image Area */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero__image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 500px;
  border-radius: 120px 120px 8px 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
  .hero__image-frame {
    aspect-ratio: 3/4;
  }
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out-expo);
}

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

/* Subtle Copper Overlay on Image */
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(201, 122, 75, 0.2));
  z-index: 1;
  pointer-events: none;
}

.hero__credits {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
  width: 100%;
  max-width: 500px;
}

.hero__credits a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.hero__credits a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ANIMATION CLASSES */
.hero__fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

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

/* Stagger Delays */
.hero__fade-in:nth-child(1) { transition-delay: 100ms; } /* Eyebrow */
.hero__title .hero__fade-in:nth-child(1) { transition-delay: 200ms; } /* Title 1 */
.hero__title .hero__fade-in:nth-child(2) { transition-delay: 300ms; } /* Title 2 */
.hero__description.hero__fade-in { transition-delay: 400ms; } /* Desc */
.hero__actions.hero__fade-in { transition-delay: 500ms; } /* Buttons */
.hero__proof.hero__fade-in { transition-delay: 600ms; } /* Proof */
.hero__image-frame.hero__fade-in { transition-delay: 400ms; } /* Image */

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

/* features Section */
/* FEATURES SECTION - Riverlight Modern Style */
.features {
  position: relative;
  padding: 120px 0;
  background-color: #F4F7F6; /* Neutral mist background */
  color: #1F3A4D; /* Primary deep blue */
  overflow: hidden;
}

/* Subtle background decoration - removed to prevent visual interference with text */

.features__container {
  position: relative;
  z-index: 1;
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 24px);
}

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

.features__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1F3A4D;
}

.features__subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #3E6F8E; /* Secondary blue */
  max-width: 60ch;
  margin: 0 auto;
}

/* Grid Layout - STRICT 3 Column Requirement */
.features__grid {
  display: grid;
  /* MANDATORY: Explicit 3 columns for known item count */
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 8rem;
}

/* Feature Item Styling */
.features__item {
  position: relative;
  padding: 2rem 0;
  border-top: 1px solid rgba(31, 58, 77, 0.1);
  transition: border-color 0.4s ease;
}

.features__item:hover {
  border-color: #C97A4B; /* Accent Copper */
}

.features__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
}

.features__icon {
  width: 32px;
  height: 32px;
  color: #C97A4B;
  opacity: 0.8;
}

.features__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3E6F8E;
  letter-spacing: 0.05em;
}

.features__item-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #1F3A4D;
}

.features__item-desc {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #4B5563;
}

/* Highlight Block (Split Layout) */
.features__highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: #fff;
  padding: 4rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px -10px rgba(31, 58, 77, 0.05);
  position: relative;
  overflow: hidden;
}

/* Decorative copper accent line */
.features__highlight::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #C97A4B;
}

.features__highlight-content {
  order: 1; /* Text first on desktop visually if desired, or image first. Let's do Text Left, Image Right */
  padding-right: 2rem;
  position: relative;
}

.features__highlight-image-wrapper {
  order: 2;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}

.features__highlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.features__highlight:hover .features__highlight-image {
  transform: scale(1.03);
}

.features__highlight-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C97A4B;
  margin-bottom: 1rem;
}

.features__highlight-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #1F3A4D;
}

.features__highlight-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 2.5rem;
}

.features__button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #1F3A4D;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #1F3A4D;
  transition: all 0.3s ease;
}

.features__button:hover {
  background-color: transparent;
  color: #1F3A4D;
}

.features__image-credit {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0,0,0,0.4);
  padding: 2px 6px;
  border-radius: 2px;
  pointer-events: none; /* Let clicks pass through if needed */
}

.features__image-credit a {
  color: #fff;
  text-decoration: underline;
  pointer-events: auto;
}

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

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

/* Stagger delays */
.features__item:nth-child(2) { transition-delay: 150ms; }
.features__item:nth-child(3) { transition-delay: 300ms; }

/* Responsive Design */
@media (max-width: 1024px) {
  .features__highlight {
    padding: 3rem;
    gap: 2rem;
  }
  
  .features__highlight-title {
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .features__highlight {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .features__highlight-content {
    order: 2;
    padding-right: 0;
  }
  
  .features__highlight-image-wrapper {
    order: 1;
    aspect-ratio: 16/9;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .features__grid {
    /* Tablet: 2 columns */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .features__item:nth-child(3) {
    grid-column: span 2; /* Center last item or span full width */
  }

  .features__title {
    font-size: 2.25rem;
  }
}

@media (max-width: 640px) {
  .features__grid {
    /* Mobile: 1 column */
    grid-template-columns: 1fr;
  }
  
  .features__item:nth-child(3) {
    grid-column: span 1;
  }

  .features__highlight {
    padding: 1.5rem;
  }

  .features__highlight-title {
    font-size: 1.75rem;
  }
  
  .features {
    padding: 80px 0;
  }
}

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

/* about-preview Section */
/* SECTION: About Preview - Editorial Layout */
.about-preview {
  position: relative;
  padding: 120px 0;
  background-color: var(--neutral-light, #F4F7F6);
  overflow: hidden;
}

/* Background texture/shape for visual interest */
.about-preview::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 58, 77, 0.03) 0%, rgba(201, 122, 75, 0.05) 100%);
  z-index: 0;
}

.about-preview__container {
  position: relative;
  z-index: 1;
  max-width: 1400px; /* Wider container for editorial feel */
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

/* --- VISUAL COLUMN --- */
.about-preview__visual {
  position: relative;
  display: flex;
  flex-direction: column;
}

.about-preview__image-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 40px rgba(31, 58, 77, 0.1);
}

.about-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.about-preview__credit {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.about-preview__credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Floating Quote Card - Overlaps Image */
.about-preview__quote-card {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 85%;
  background-color: var(--primary, #1F3A4D);
  color: #fff;
  padding: 2.5rem;
  border-radius: 2px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--accent, #C97A4B);
}

.about-preview__quote-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #fff;
}

.about-preview__quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.about-preview__author-line {
  width: 30px;
  height: 1px;
  background-color: var(--accent, #C97A4B);
}

/* --- CONTENT COLUMN --- */
.about-preview__content {
  padding-left: 2rem;
  position: relative;
}

.about-preview__eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent, #C97A4B);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-preview__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--primary, #1F3A4D);
  margin-bottom: 2rem;
}

.about-preview__title--accent {
  color: var(--secondary, #3E6F8E);
  font-style: italic;
}

.about-preview__story {
  column-count: 2;
  column-gap: 3rem;
  margin-bottom: 3rem;
}

.about-preview__paragraph {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--neutral-dark, #4B5563);
  margin-bottom: 1rem;
}

.about-preview__paragraph:last-child {
  margin-bottom: 0;
}

/* Stats Grid */
.about-preview__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 58, 77, 0.1);
  margin-bottom: 3rem;
}

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

.about-preview__stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--accent, #C97A4B);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-preview__stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary, #1F3A4D);
  letter-spacing: 0.02em;
}

/* CTA */
.about-preview__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary, #1F3A4D);
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--accent, #C97A4B);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.about-preview__cta:hover {
  color: var(--accent, #C97A4B);
  border-color: var(--primary, #1F3A4D);
}

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

.about-preview__cta:hover .about-preview__cta-icon {
  transform: translateX(5px);
}

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

/* Stagger delays */
.about-preview__header.about-preview__fade-in { transition-delay: 0.1s; }
.about-preview__story.about-preview__fade-in { transition-delay: 0.2s; }
.about-preview__stats.about-preview__fade-in { transition-delay: 0.3s; }
.about-preview__actions.about-preview__fade-in { transition-delay: 0.4s; }
.about-preview__quote-card.about-preview__fade-in { transition-delay: 0.5s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about-preview__container {
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }
  
  .about-preview__title {
    font-size: 2.5rem;
  }
  
  .about-preview__story {
    column-count: 1;
  }
}

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

  .about-preview__visual {
    order: 2;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
  }

  .about-preview__content {
    order: 1;
    padding-left: 0;
  }

  .about-preview__quote-card {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: -2rem;
    transform: translateY(0);
  }
}

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

  .about-preview__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-preview__stat-item {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  
  .about-preview__stat-value {
    margin-bottom: 0;
    min-width: 80px;
  }

  .about-preview__title {
    font-size: 2rem;
  }
}

/* testimonials Section */
/* TESTIMONIALS SECTION - Dark, Intimate, Elegant */
.testimonials {
  position: relative;
  background-color: var(--primary, #1F3A4D);
  color: var(--neutrals-100, #F4F7F6);
  padding: 120px 0;
  overflow: hidden;
}

/* Subtle copper accent gradient in background */
.testimonials::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(201, 122, 75, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.testimonials__container {
  position: relative;
  z-index: 1;
  max-width: var(--container-width, 1400px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
}

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

.testimonials__eyebrow {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent, #C97A4B);
  margin-bottom: 1rem;
  font-weight: 500;
}

.testimonials__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}

.testimonials__subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  color: rgba(244, 247, 246, 0.8);
  line-height: 1.6;
}

/* Grid Layout - STRICT 3-Column */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* Card Base Styles */
.testimonials__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonials__card-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 3rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
}

.testimonials__card:hover .testimonials__card-inner {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 122, 75, 0.3);
  transform: translateY(-5px);
}

/* FEATURED CARD (First Item) - Visual Heavy */
.testimonials__card--featured {
  grid-column: span 1;
}

.testimonials__image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  background-color: #000;
}

.testimonials__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  z-index: 1;
}

.testimonials__card--featured:hover .testimonials__image {
  transform: scale(1.05);
}

.testimonials__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31, 58, 77, 0.3), rgba(31, 58, 77, 0.95));
  z-index: 2;
}

.testimonials__featured-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.testimonials__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--accent, #C97A4B);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  z-index: 10;
}

/* Quotes */
.testimonials__quote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
}

.testimonials__quote--featured {
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.testimonials__icon {
  color: var(--accent, #C97A4B);
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

/* Author Section */
.testimonials__divider {
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: auto;
  margin-bottom: 1.5rem;
}

.testimonials__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonials__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1rem;
  color: #fff;
}

.testimonials__role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  color: var(--accent, #C97A4B);
}

.testimonials__author--featured .testimonials__role {
  color: rgba(255, 255, 255, 0.8);
}

.photo-credits {
  position: absolute;
  bottom: -1.5rem;
  right: 0;
  font-size: 0.7rem;
  opacity: 0.5;
  z-index: 10;
  color: rgba(255,255,255,0.7);
}
.photo-credits a {
  color: inherit;
  text-decoration: underline;
}

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

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

.testimonials__fade-in:nth-child(2) {
  transition-delay: 0.2s;
}

.testimonials__fade-in:nth-child(3) {
  transition-delay: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Make featured card span full width on tablet */
  .testimonials__card--featured {
    grid-column: span 2;
  }
  
  .testimonials__image-wrapper {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 2rem;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .testimonials__grid::-webkit-scrollbar {
    display: none;
  }
  
  .testimonials__card {
    flex: 0 0 85%; /* Show part of next card */
    scroll-snap-align: center;
    width: 85%;
  }
  
  .testimonials__card--featured {
    /* Reset grid behavior for flex layout */
    grid-column: auto;
    width: 85%;
  }
  
  .testimonials__title {
    font-size: 2rem;
  }
}

/* cta Section */
/* SECTION: CTA - Immersive Atmosphere with Editorial Framing */
.cta {
  position: relative;
  padding: 140px 0;
  color: #fff;
  overflow: hidden;
  /* Dark theme base to prevent flash of white */
  background-color: var(--primary, #1F3A4D);
}

/* Full-bleed background handling */
.cta__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%; /* Focus on the lamp */
}

.cta__overlay {
  position: absolute;
  inset: 0;
  /* Gradient map: Dark River Blue to deeply distinct opacity */
  background: linear-gradient(
    to bottom,
    rgba(31, 58, 77, 0.92),
    rgba(31, 58, 77, 0.85) 60%,
    rgba(31, 58, 77, 0.95)
  );
}

/* Layout Wrapper */
.cta__wrapper {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Decorative Copper Frame - The "Artisan" Touch */
.cta__border-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 122, 75, 0.3); /* Copper accent */
  /* FIX: Use positive z-index to avoid hiding behind background context */
  z-index: 1;
  pointer-events: none;
  transform: translate(12px, 12px);
  transition: transform 0.6s ease;
}

/* Interactive movement on hover */
.cta__wrapper:hover .cta__border-frame {
  transform: translate(6px, 6px);
}

.cta__content {
  position: relative;
  /* FIX: Establish proper stacking context */
  z-index: 2;
  text-align: center;
  background: rgba(31, 58, 77, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 40px;
  /* Subtle shadow lifting it off the bg */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Typography */
.cta__eyebrow {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent, #C97A4B);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}

.cta__subheading {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 400;
  font-style: italic;
}

.cta__description {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

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

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 220px;
}

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

.cta__button--primary:hover {
  background-color: #b06538;
  border-color: #b06538;
  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);
}

/* Urgency Text */
.cta__urgency {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta__urgency-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent, #C97A4B);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 122, 75, 0.2);
  animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 122, 75, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(201, 122, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 122, 75, 0); }
}

/* Trust Grid - REQUIRED: Explicit Columns */
.cta__trust-grid {
  display: grid;
  /* ⚠️ MANDATORY: 4 items = 4 explicit columns */
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: left;
}

.cta__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.cta__check {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid var(--accent, #C97A4B);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.cta__check::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid var(--accent, #C97A4B);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cta__trust-text {
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.cta__attribution {
  position: relative;
  z-index: 2;
  text-align: right;
  opacity: 0.6;
  margin-top: 1rem;
}

/* Animation Base Classes (BEM Prefixed) */
.cta__fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Staggered Delays */
.cta__header .cta__fade-in:nth-child(1) { transition-delay: 100ms; }
.cta__header .cta__fade-in:nth-child(2) { transition-delay: 200ms; }
.cta__header .cta__fade-in:nth-child(3) { transition-delay: 300ms; }
.cta__description.cta__fade-in { transition-delay: 400ms; }
.cta__actions.cta__fade-in { transition-delay: 500ms; }
.cta__urgency.cta__fade-in { transition-delay: 600ms; }
.cta__trust-grid.cta__fade-in { transition-delay: 700ms; }

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

@media (max-width: 600px) {
  .cta__wrapper {
    padding: 40px 24px;
  }
  
  .cta__content {
    padding: 40px 24px;
  }

  .cta__title {
    font-size: 2.25rem;
  }
  
  .cta__trust-grid {
    /* Mobile: 1 column */
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta__trust-item {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
  
  .cta__button {
    width: 100%;
  }
}

/* footer Section */
/* FOOTER SECTION - Riverlight Modern */
.footer {
  position: relative;
  background-color: var(--primary, #1F3A4D);
  color: #F4F7F6;
  padding: 120px 0 60px;
  overflow: hidden;
  isolation: isolate;
}

/* Full-width Watermark Decoration */
.footer__watermark {
  position: absolute;
  bottom: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(8rem, 25vw, 30rem);
  line-height: 1;
  color: #F4F7F6;
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

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

/* Asymmetric Grid Layout */
.footer__grid {
  display: grid;
  /* Brand (2fr) | Nav 1 (1fr) | Nav 2 (1fr) | Info (1.5fr) */
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

/* Brand Column */
.footer__brand-col {
  padding-right: 2rem;
}

.footer__logo {
  display: inline-block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.footer__description {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(244, 247, 246, 0.7);
  margin-bottom: 2rem;
  max-width: 32ch;
}

/* Social Icons */
.footer__socials {
  display: flex;
  gap: 1.5rem;
}

.footer__social-link {
  color: #F4F7F6;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  opacity: 1;
  color: var(--accent, #C97A4B);
  transform: translateY(-3px);
}

/* Navigation Columns */
.footer__heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent, #C97A4B);
  margin-bottom: 1.5rem;
}

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

.footer__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  color: rgba(244, 247, 246, 0.8);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent, #C97A4B);
  transition: width 0.3s ease;
}

.footer__link:hover {
  color: #fff;
}

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

/* Info Column */
.footer__address {
  font-family: 'Space Grotesk', sans-serif;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(244, 247, 246, 0.8);
  margin-bottom: 1.5rem;
  display: block;
}

.footer__address-line {
  display: block;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer__contact-link {
  color: #fff;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.footer__contact-link:hover {
  color: var(--accent, #C97A4B);
}

.footer__hours {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: rgba(244, 247, 246, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__hours-label {
  font-weight: 700;
  color: var(--accent, #C97A4B);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Divider */
.footer__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.05) 100%);
  margin-bottom: 2rem;
}

/* Bottom Bar */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  color: rgba(244, 247, 246, 0.5);
}

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

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

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .footer__brand-col {
    grid-column: span 2;
    padding-right: 0;
    margin-bottom: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .footer {
    padding: 80px 0 40px;
  }

  .footer__grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .footer__brand-col,
  .footer__nav-col,
  .footer__info-col {
    width: 100%;
  }
  
  .footer__watermark {
    font-size: 25vw;
    bottom: 5%;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .footer__legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============================================================
   FULL-BLEED CINEMATIC HERO OVERRIDE (homepage only)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero__bg-flow { display: none; }
/* Remove positioning from container/grid so .hero__visual can escape to .hero */
.hero__container {
  position: static !important;
  z-index: auto !important;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero__grid {
  display: block !important;
  position: static !important;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}
.hero__visual {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
}
.hero__image-frame {
  position: absolute !important;
  inset: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
  max-width: none !important;
  aspect-ratio: auto !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
}
.hero__image-frame::before,
.hero__image-frame::after,
.hero__image-overlay { display: none !important; }
.hero__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  position: absolute !important;
  inset: 0 !important;
}
.hero__credits {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 5;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.hero__credits a { color: rgba(255,255,255,0.5); }
/* Dark gradient overlay for text readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(31,58,77,0.88) 0%, rgba(31,58,77,0.6) 45%, rgba(31,58,77,0.15) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero::after {
    background: linear-gradient(to bottom, rgba(31,58,77,0.5) 0%, rgba(31,58,77,0.85) 100%);
  }
}
.hero__text-wrapper { color: #fff; }
.hero__eyebrow { color: #C97A4B; }
.hero__title { color: #fff; }
.hero__title-line--accent { color: #C97A4B; }
.hero__description { color: rgba(255,255,255,0.85); }
.hero__button--primary { background: #C97A4B; color: #fff; }
.hero__button--secondary { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero__button--secondary:hover { background: rgba(255,255,255,0.1); }
.hero__proof-text { color: rgba(255,255,255,0.7); }
.hero__proof-accent { background: #C97A4B; }