/* ═══════════════════════════════════════════════════════
   JERSEY SHORE ACUPUNCTURE — Cinematic Wellness Experience
   Awwwards-Level Design System
   ═══════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
  /* Colors */
  --color-ivory: #F5F0E8;
  --color-ivory-light: #FAF7F2;
  --color-charcoal: #1A1A1A;
  --color-charcoal-light: #2D2D2D;
  --color-sage: #8B9D83;
  --color-sage-light: #A8B8A0;
  --color-sage-dark: #6B7D63;
  --color-gold: #C4A87C;
  --color-gold-light: #D4BC96;
  --color-warm-fog: rgba(196, 168, 124, 0.08);
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #5A5A5A;
  --color-text-tertiary: #8A8A8A;
  --color-text-inverse: #F5F0E8;
  --color-text-inverse-secondary: rgba(245, 240, 232, 0.7);
  --color-border: rgba(26, 26, 26, 0.08);
  --color-border-light: rgba(26, 26, 26, 0.04);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;
  --space-3xl: 16rem;

  /* Layout */
  --content-max: 1400px;
  --content-narrow: 900px;
  --content-wide: 1200px;
  --nav-height: 80px;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.3s;
  --duration-normal: 0.6s;
  --duration-slow: 1.2s;
  --duration-slower: 2s;

  /* Grain */
  --grain-opacity: 0.025;
}

/* ─── Dark mode variables (for sections with dark backgrounds) ─── */
[data-theme="dark"] {
  --color-ivory: #1A1A1A;
  --color-ivory-light: #2D2D2D;
  --color-charcoal: #F5F0E8;
  --color-charcoal-light: #E8E3DB;
  --color-text-primary: #F5F0E8;
  --color-text-secondary: rgba(245, 240, 232, 0.7);
  --color-text-tertiary: rgba(245, 240, 232, 0.5);
  --color-border: rgba(245, 240, 232, 0.08);
  --color-border-light: rgba(245, 240, 232, 0.04);
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-text-primary);
  background-color: var(--color-ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Smooth scrolling via Lenis (JS) */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* Selection */
::selection {
  background: var(--color-gold);
  color: var(--color-ivory);
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

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

/* Buttons */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-charcoal);
  color: var(--color-ivory);
  z-index: 10000;
  font-size: 0.875rem;
  border-radius: 0 0 8px 8px;
  transition: top var(--duration-fast) var(--ease-out-expo);
}

.skip-link:focus {
  top: 0;
}

/* ═══════════════════════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════════════════════ */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  background-repeat: repeat;
}

/* ═══════════════════════════════════════════════════════
   AMBIENT CURSOR
   ═══════════════════════════════════════════════════════ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--color-ivory);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 240, 232, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              border-color 0.3s;
}

.cursor-ring.hovering {
  width: 64px;
  height: 64px;
  border-color: rgba(245, 240, 232, 0.8);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-charcoal);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.preloader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.preloader-line {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--color-ivory);
  font-weight: 400;
  font-style: italic;
  opacity: 0;
  transform: translateY(30px);
}

.preloader-line:last-of-type {
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  font-style: normal;
  opacity: 0.6;
}

.preloader-bar {
  width: 0px;
  height: 1px;
  background: var(--color-gold);
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  z-index: 100;
  transition: background var(--duration-normal) var(--ease-out-expo),
              backdrop-filter var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 101;
}

.nav-logo-main {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
}

.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.5rem, 0.8vw, 0.625rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.nav-links {
  display: none;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.nav-link {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  position: relative;
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--color-text-primary);
}

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

.nav-cta {
  display: none;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-out-expo);
}

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

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-charcoal);
  transition: all var(--duration-normal) var(--ease-out-expo);
  transform-origin: center;
}

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

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

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--color-ivory);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-slow) var(--ease-out-expo);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  color: var(--color-text-primary);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-normal) var(--ease-out-expo),
              transform var(--duration-normal) var(--ease-out-expo),
              color var(--duration-fast) var(--ease-out-expo);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a:hover {
  color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 0.85vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-charcoal);
  color: var(--color-ivory);
  border: 1px solid var(--color-charcoal);
  padding: 1.125rem 2.5rem;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.15);
}

.btn--primary:hover {
  background: var(--color-charcoal-light);
  border-color: var(--color-charcoal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.15);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--primary .btn-arrow {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out-expo);
}

.btn--primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--ghost .btn-arrow {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out-expo);
}

.btn--ghost:hover .btn-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════
   SECTION DIVIDERS
   ═══════════════════════════════════════════════════════ */
.section-divider,
.trust-divider,
.services-divider,
.testimonials-divider,
.contact-divider {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS (reusable pattern)
   ═══════════════════════════════════════════════════════ */
.section-eyebrow {
  display: block;
  font-size: clamp(0.625rem, 0.75vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.section-headline em {
  font-style: italic;
  color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-height) clamp(1.5rem, 4vw, 4rem) 4rem;
}

/* Atmospheric background layers */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-bg--warm {
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(196, 168, 124, 0.12) 0%, transparent 70%);
}

.hero-bg--sage {
  background: radial-gradient(ellipse 60% 50% at 30% 60%, rgba(139, 157, 131, 0.08) 0%, transparent 60%);
}

.hero-bg--fog {
  background: linear-gradient(
    180deg,
    rgba(245, 240, 232, 0) 0%,
    rgba(245, 240, 232, 0.15) 40%,
    rgba(245, 240, 232, 0.4) 100%
  );
}

/* Floating particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0;
}

/* Light rays */
.hero-light-rays {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: linear-gradient(
    135deg,
    rgba(196, 168, 124, 0.06) 0%,
    rgba(196, 168, 124, 0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
  transform: rotate(-15deg);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-eyebrow {
  margin-bottom: 2rem;
}

.hero-eyebrow .reveal-line {
  font-size: clamp(0.625rem, 0.75vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
  display: inline-block;
}

.hero-headline {
  margin-bottom: 2rem;
}

.headline-line {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-charcoal);
  opacity: 0;
  display: block;
}

.headline-line em {
  font-style: italic;
  color: var(--color-gold);
  position: relative;
}

.headline-line em::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.06em;
  background: var(--color-gold);
  opacity: 0.3;
}

.hero-subtext {
  margin-bottom: 3rem;
}

.hero-subtext p {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
}

.hero-subtext p em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-charcoal);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-charcoal);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

.scroll-text {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

/* ═══════════════════════════════════════════════════════
   PHILOSOPHY SECTION
   ═══════════════════════════════════════════════════════ */
.philosophy {
  padding: var(--space-xl) clamp(1.5rem, 4vw, 4rem) var(--space-lg);
  max-width: var(--content-max);
  margin: 0 auto;
}

.philosophy-quote {
  max-width: var(--content-narrow);
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
}

/* ═══════════════════════════════════════════════════════
   PRACTITIONERS SECTION
   ═══════════════════════════════════════════════════════ */
.practitioners {
  padding: 0 clamp(1.5rem, 4vw, 4rem) var(--space-lg);
  max-width: var(--content-max);
  margin: 0 auto;
}

.practitioners-content {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.practitioners-header {
  text-align: center;
  margin-bottom: 3rem;
}

.practitioners-eyebrow {
  display: block;
  font-size: clamp(0.625rem, 0.75vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.practitioners-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
}

.practitioners-headline em {
  font-style: italic;
  color: var(--color-gold);
}

.practitioners-image {
  margin-bottom: 3rem;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}

.practitioners-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--duration-slower) var(--ease-out-expo);
}

.practitioners-image:hover img {
  transform: scale(1.02);
}

.practitioners-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.practitioners-text p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.practitioners-text p:last-child {
  margin-bottom: 0;
}

/* Philosophy image */
.philosophy-image {
  margin-bottom: 3rem;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 21 / 9;
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--duration-slower) var(--ease-out-expo);
}

.philosophy-image:hover img {
  transform: scale(1.02);
}

/* ═══════════════════════════════════════════════════════
   GALLERY / CAROUSEL SECTION
   ═══════════════════════════════════════════════════════ */
.gallery {
  padding: var(--space-xl) 0 var(--space-lg);
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.gallery-eyebrow {
  display: block;
  font-size: clamp(0.625rem, 0.75vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.gallery-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.gallery-carousel-inner {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease-out-expo);
  cursor: grab;
  user-select: none;
}

.gallery-carousel-inner:active {
  cursor: grabbing;
}

.gallery-slide {
  flex: 0 0 calc(100% - 3rem);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-ivory-light);
}

@media (min-width: 768px) {
  .gallery-slide {
    flex: 0 0 calc(60% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .gallery-slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}

.gallery-slide:hover img {
  transform: scale(1.03);
}

.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 100%);
  color: var(--color-ivory);
}

.gallery-slide-caption > span:first-child {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-bottom: 0.25rem;
}

.gallery-slide-sub {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Carousel controls */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--duration-fast) var(--ease-out-expo);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.gallery-prev {
  left: clamp(0.75rem, 2vw, 1.5rem);
}

.gallery-next {
  right: clamp(0.75rem, 2vw, 1.5rem);
}

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: var(--color-ivory);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gallery-prev span,
.gallery-next span {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-charcoal);
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.gallery-prev:hover span,
.gallery-next:hover span {
  color: var(--color-ivory);
}

/* Carousel indicators */
.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.gallery-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out-expo);
  padding: 0;
}

.gallery-indicator.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 0.8;
  color: var(--color-gold);
  opacity: 0.15;
  margin-bottom: -2rem;
  display: block;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.4;
  font-style: italic;
  color: var(--color-charcoal);
  margin-bottom: 2rem;
}

.quote-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.quote-attr {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  opacity: 0;
}

/* Philosophy pillars */
.philosophy-pillars {
  display: grid;
  gap: 2.5rem;
}

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  opacity: 0;
  transform: translateY(40px);
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--color-gold);
  opacity: 0.4;
  line-height: 1;
  padding-top: 0.25em;
}

.pillar-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.pillar-content p {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 600px;
}

/* ═══════════════════════════════════════════════════════
   TRUST / RESULTS SECTION
   ═══════════════════════════════════════════════════════ */
.trust {
  padding: var(--space-xl) clamp(1.5rem, 4vw, 4rem) var(--space-lg);
  max-width: var(--content-max);
  margin: 0 auto;
}

.trust-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.trust-eyebrow {
  display: block;
  font-size: clamp(0.625rem, 0.75vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.trust-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
}

/* Trust cards - asymmetric grid */
.trust-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.trust-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  opacity: 0;
  transform: translateY(60px);
}

.trust-card--wide {
  grid-column: 1;
  min-height: 400px;
}

.trust-card--tall {
  grid-column: 1;
  min-height: 450px;
}

.trust-card--normal {
  grid-column: 1;
  min-height: 350px;
}

.trust-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.trust-card--wide .trust-card-bg {
  background: linear-gradient(135deg, rgba(196, 168, 124, 0.08) 0%, rgba(139, 157, 131, 0.06) 100%);
}

.trust-card--tall .trust-card-bg {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.9) 100%);
}

.trust-card--normal .trust-card-bg {
  background: linear-gradient(135deg, rgba(139, 157, 131, 0.06) 0%, rgba(196, 168, 124, 0.04) 100%);
}

.trust-card-content {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 3rem);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trust-card--tall .trust-card-content {
  color: var(--color-ivory);
}

.trust-card-label {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.trust-card-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.trust-card--tall .trust-card-headline {
  color: var(--color-ivory);
}

.trust-card-headline em {
  font-style: italic;
  color: var(--color-gold);
}

.trust-card--tall .trust-card-headline em {
  color: var(--color-gold-light);
}

.trust-card-text {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 640px;
}

.trust-card--tall .trust-card-text {
  color: var(--color-text-inverse-secondary);
}

.trust-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.15;
}

.trust-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Impact statement */
.trust-statement {
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.statement-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4em;
}

.statement-word {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--color-charcoal);
  opacity: 0.15;
  transition: opacity var(--duration-normal) var(--ease-out-expo);
}

.statement-word.active {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   SERVICES SECTION — Card Stack Layout
   ═══════════════════════════════════════════════════════ */
.services {
  position: relative;
  width: 100%;
  margin: 0;
  padding: var(--space-lg) 0 var(--space-lg);
  overflow: visible;
}

.services-header {
  position: relative;
  text-align: center;
  padding: 0 0 4rem;
  max-width: 680px;
  margin: 0 auto;
}

.services-eyebrow {
  display: block;
  font-size: clamp(0.625rem, 0.75vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.services-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.services-headline em {
  font-style: italic;
  color: var(--color-gold);
}

.services-subtext {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Services card stack */
.services-list {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.service-item {
  position: sticky;
  top: 10vh;
  background: var(--color-ivory-light);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: clamp(5rem, 10vw, 7rem) clamp(2.5rem, 5vw, 4rem);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.04);
  will-change: transform, opacity;
  transform-origin: center center;
  transition: transform 0.15s ease-out, box-shadow 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
}

.service-item:last-child {
  margin-bottom: 0;
}

/* Hover state for top/visible cards */
.service-item:hover {
  border-color: rgba(196, 168, 124, 0.3);
  box-shadow: 0 8px 32px rgba(196, 168, 124, 0.08);
}

.service-item-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-number {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-gold);
  opacity: 0.5;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.service-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 600px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.service-tags span {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-out-expo);
}

.service-tags span:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════
   HUMAN CONNECTION SECTION
   ═══════════════════════════════════════════════════════ */
.connection {
  position: relative;
  padding: var(--space-xl) clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
}

.connection-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--color-ivory) 0%,
    rgba(196, 168, 124, 0.04) 40%,
    rgba(139, 157, 131, 0.03) 60%,
    var(--color-ivory) 100%
  );
  pointer-events: none;
}

.connection-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
  padding-bottom: 2rem;
}

.connection-eyebrow {
  display: block;
  font-size: clamp(0.625rem, 0.75vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.connection-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
  margin-bottom: 2.5rem;
}

.connection-headline em {
  font-style: italic;
  color: var(--color-gold);
}

/* Floating quote fragments */
.connection-fragments {
  margin-bottom: 2.5rem;
}

.fragment {
  max-width: 600px;
  margin: 0 auto;
}

.fragment p {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--color-text-tertiary);
  margin-bottom: 1.5rem;
}

.fragment blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-charcoal);
  margin: 2rem 0;
  padding: 0;
  border: none;
}

.fragment blockquote em {
  color: var(--color-gold);
}

/* Values */
.connection-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

.value {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.value:hover {
  transform: translateY(-2px);
}

.value-label {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.375rem);
  font-weight: 400;
  color: var(--color-charcoal);
  font-style: italic;
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.value:hover .value-label {
  color: var(--color-gold);
}

.value-line {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity var(--duration-fast) var(--ease-out-expo);
}

.value:hover .value-line {
  opacity: 0.8;
}

.connection-cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--space-xl) 0 var(--space-lg);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.testimonials-eyebrow {
  display: block;
  font-size: clamp(0.625rem, 0.75vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.testimonials-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
}

/* Testimonials layout */
.testimonials-track-wrapper {
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-ivory-light);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3.5rem);
  opacity: 0;
  transform: translateY(40px);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.testimonial-quote {
  margin-bottom: 2rem;
}

.testimonial-quote .quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.2;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-charcoal);
}

.testimonial-quote p em {
  color: var(--color-gold);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.testimonial-condition {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.testimonials-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════ */
.contact {
  position: relative;
  padding: var(--space-xl) clamp(1.5rem, 4vw, 4rem) 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--color-ivory) 0%,
    var(--color-ivory) 88%,
    var(--color-charcoal) 100%
  );
}



.contact-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
}

.contact-header {
  margin-bottom: 2.5rem;
}

.contact-eyebrow {
  display: block;
  font-size: clamp(0.625rem, 0.75vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.contact-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
}

.contact-headline em {
  font-style: italic;
  color: var(--color-gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.info-value {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--color-charcoal);
}

.info-link {
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.info-link:hover {
  color: var(--color-gold);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(196, 168, 124, 0.06) 0%, rgba(139, 157, 131, 0.04) 100%);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  transition: border-color var(--duration-fast) var(--ease-out-expo),
              box-shadow var(--duration-fast) var(--ease-out-expo);
}

.contact-map:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(196, 168, 124, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: none;
  display: block;
}

.map-label {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 400;
  color: var(--color-text-secondary);
}

.map-icon {
  font-size: 2rem;
  color: var(--color-gold);
}

.contact-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding: 1rem 0;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--color-charcoal);
  padding: 2.5rem clamp(1.5rem, 4vw, 4rem) 1.5rem;
}

.footer-content {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.footer-top {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.footer-top:hover {
  color: var(--color-gold);
}

.footer-top-text {
  font-size: clamp(0.75rem, 0.85vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-inverse-secondary);
}

.footer-top-arrow {
  font-size: 1.25rem;
  color: var(--color-gold);
  transition: transform var(--duration-fast) var(--ease-out-expo);
}

.footer-top:hover .footer-top-arrow {
  transform: translateY(-4px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.footer-brand-main {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-ivory);
}

.footer-brand-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.5rem, 0.7vw, 0.625rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-inverse-secondary);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-inverse-secondary);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATION UTILITIES
   ═══════════════════════════════════════════════════════ */
[data-reveal] {
  will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (768px+)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .nav-hamburger {
    display: none;
  }

  .trust-cards {
    grid-template-columns: 1fr 1fr;
  }

  .trust-card--wide {
    grid-column: 1 / -1;
  }

  .trust-card--tall {
    grid-column: 1;
  }

  .trust-card--normal {
    grid-column: 2;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .philosophy-pillars {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-item {
    padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem);
    min-height: 60vh;
    margin-bottom: 2.5rem;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .connection-values {
    gap: 3rem 5rem;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP (1024px+)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .trust-cards {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
  }

  .trust-card--wide {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .trust-card--tall {
    grid-column: 1;
    grid-row: 2;
  }

  .trust-card--normal {
    grid-column: 2;
    grid-row: 2;
  }

  .philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .pillar {
    opacity: 1;
    transform: none;
  }

  .service-item {
    padding: clamp(4rem, 8vw, 6rem) clamp(3rem, 5vw, 4rem);
    min-height: 60vh;
    margin-bottom: 2.5rem;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP (1400px+)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 1400px) {
  .hero-content {
    max-width: 1000px;
  }

  .service-item {
    padding: clamp(5rem, 10vw, 7rem) clamp(3.5rem, 5vw, 4.5rem);
    min-height: 60vh;
  }
}

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .grain-overlay {
    animation: none;
  }

  .scroll-line::after {
    animation: none;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════ */
@media print {
  .grain-overlay,
  .cursor-dot,
  .cursor-ring,
  .preloader,
  .hero-particles,
  .hero-light-rays,
  .hero-scroll-cue,
  .nav,
  .mobile-menu {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .philosophy,
  .trust,
  .services,
  .connection,
  .testimonials,
  .contact {
    padding: 2rem 0;
    page-break-inside: avoid;
  }
}
