/* =============================================
   V3 — DARK LUXURY
   Premium, animated, 3D-accelerated
   GSAP ScrollTrigger + Spline 3D + Three.js
   ============================================= */

:root {
  --bg: #0D0D0B;
  --bg-2: #141410;
  --bg-card: #1A1A16;
  --text: #F0EDE6;
  --text-muted: #8A877E;
  --text-dim: #5A5852;
  --gold: #C4A35A;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6F3A;
  --border: rgba(196,163,90,0.15);
  --border-strong: rgba(196,163,90,0.3);
  --shadow: 0 8px 48px rgba(0,0,0,0.5);
  --radius: 6px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--bg); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* === UTILS === */
.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label.centered { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.01em;
}

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

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 44ch;
  line-height: 1.7;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  padding: 15px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,163,90,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-dark);
  transition: opacity 0.2s, color 0.2s;
}

.btn-ghost:hover { color: var(--gold-light); opacity: 0.8; }

.btn-full { width: 100%; justify-content: center; }

/* === NAV === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,13,11,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.08em;
}

.logo-mark {
  font-size: 1.2rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}

.btn-nav:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-muted);
  border-radius: 1px;
}

/* === SPLINE CONTAINER === */
.spline-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.spline-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,11,0.3) 0%,
    rgba(13,13,11,0.5) 50%,
    rgba(13,13,11,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-text { max-width: 540px; }

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 1rem;
  color: rgba(240,237,230,0.6);
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.hero-stat {
  padding: 20px 24px;
  background: rgba(26,26,22,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.hs-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hs-plus {
  font-size: 1.2rem;
  color: var(--gold-light);
}

.hs-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* Hero parallax layer */
.hero-bg img {
  will-change: transform;
}

/* === CREDENTIALS === */
.credentials {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
  position: relative;
  z-index: 2;
}

.cred-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.cred-sep {
  width: 1px;
  height: 20px;
  background: var(--border-strong);
}

/* === APPROACH === */
.approach {
  background: var(--bg);
  padding: 120px 40px;
  position: relative;
  z-index: 2;
}

.approach-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.approach-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 50ch;
}

.approach-btn { margin-top: 28px; }

.approach-image {
  position: relative;
}

.approach-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.approach-caption {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.approach-caption h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.approach-caption p {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 2px;
}

/* === SERVICES === */
.services {
  background: var(--bg-2);
  padding: 120px 40px;
  position: relative;
  z-index: 2;
}

.services-inner { max-width: var(--max-w); margin: 0 auto; }

.services-header { margin-bottom: 64px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.svc-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.svc-card:hover::before { opacity: 1; }

.svc-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
}

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s, letter-spacing 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.svc-link:hover { color: var(--gold-light); letter-spacing: 0.1em; }

/* === PROCESS === */
.process {
  background: var(--bg);
  padding: 120px 40px;
  position: relative;
  z-index: 2;
}

.process-inner { max-width: 1000px; margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}

.proc-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.proc-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}

.proc-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.proc-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.proc-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
  margin-top: 20px;
}

/* === STORIES (SLIDER) === */
.stories {
  background: var(--bg-2);
  padding: 120px 40px;
  position: relative;
  z-index: 2;
}

.stories-inner { max-width: var(--max-w); margin: 0 auto; }

.stories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.stories-nav {
  display: flex;
  gap: 12px;
}

.story-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.story-btn:hover {
  background: rgba(196,163,90,0.1);
  border-color: var(--gold);
}

.stories-slider {
  position: relative;
  overflow: hidden;
}

.stories-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-card {
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 56px;
  display: none;
}

.story-card.active { display: block; }

.story-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 80ch;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.story-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-dark);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.story-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.story-loc {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 2px;
}

.story-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.sdot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* === JOURNAL === */
.journal {
  background: var(--bg);
  padding: 120px 40px;
  position: relative;
  z-index: 2;
}

.journal-inner { max-width: var(--max-w); margin: 0 auto; }

.journal-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.journal-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.j-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: block;
}

.j-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.j-featured .j-img-wrap {
  height: 240px;
  overflow: hidden;
}

.j-featured .j-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.j-card:hover .j-img-wrap img { transform: scale(1.05); }

.j-body { padding: 22px 24px; }

.j-featured .j-body { padding: 28px 32px; }

.j-tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.j-tag.blue { color: #6B9BD2; }
.j-tag.gold { color: var(--gold); }

.j-featured h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
}

.j-card:not(.j-featured) h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 8px;
}

.j-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.j-featured .j-body p { display: block; }
.j-card:not(.j-featured) .j-body p { display: none; }

.j-meta {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 12px;
}

.j-card:not(.j-featured) .j-meta { display: none; }

.j-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.j-card:not(.j-featured) {
  padding: 0;
  border-radius: var(--radius);
}

.j-card:not(.j-featured) .j-body { padding: 16px 18px; }

/* === TESTIMONIALS === */
.testimonials {
  background: var(--bg-2);
  padding: 120px 40px;
  position: relative;
  z-index: 2;
}

.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s;
}

.test-card:hover { transform: translateY(-3px); }

.test-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.test-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
}

.test-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* === AI CTA === */
.ai-cta {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding: 120px 40px;
  position: relative;
  z-index: 2;
  text-align: center;
}

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

.ai-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
}

.ai-cta .section-title { margin-bottom: 16px; }

.ai-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.ai-cta .btn-primary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.ai-cta .btn-primary:hover {
  background: rgba(196,163,90,0.1);
  box-shadow: 0 8px 28px rgba(196,163,90,0.15);
}

/* === CONTACT === */
.contact {
  background: var(--bg);
  padding: 120px 40px;
  position: relative;
  z-index: 2;
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 44ch;
  margin: 16px 0 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cd-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.cd-val { font-size: 0.9rem; color: var(--text); }

.contact-social {
  display: flex;
  gap: 14px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.contact-social a:hover {
  border-color: var(--gold);
  background: rgba(196,163,90,0.08);
}

/* === FORM === */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--text);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A877E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,163,90,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group textarea { resize: vertical; min-height: 88px; }

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 12px;
  text-align: center;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  background: rgba(196,163,90,0.06);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--gold);
}

/* === FOOTER === */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 40px 28px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-brand .logo { color: var(--gold); margin-bottom: 14px; }

.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 38ch;
}

.footer-address {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom p { font-size: 0.72rem; color: var(--text-dim); }

.footer-disclaimer { font-size: 0.66rem !important; line-height: 1.5; max-width: 80ch; }

/* === CHAT WIDGET === */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  font-family: var(--font-body);
}

.chat-launcher {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(196,163,90,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.chat-launcher:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(196,163,90,0.5);
}

.chat-window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 358px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 510px;
  backdrop-filter: blur(16px);
}

.chat-window.open { display: flex; }

.chat-header {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  color: var(--text);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 500;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-msg { font-size: 0.86rem; line-height: 1.6; }

.chat-msg.bot p:first-child { font-weight: 500; margin-bottom: 8px; }

.chat-msg ul {
  padding-left: 16px;
  margin: 8px 0;
  color: var(--text-muted);
}

.chat-msg ul li { margin-bottom: 4px; }

.chat-msg.user {
  background: rgba(196,163,90,0.12);
  color: var(--text);
  padding: 11px 15px;
  border-radius: 12px 12px 4px 12px;
  align-self: flex-end;
  max-width: 85%;
  border: 1px solid var(--border);
}

.chat-msg.bot { align-self: flex-start; max-width: 90%; }

.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--border);
}

.chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s;
}

.chat-input:focus { outline: none; border-color: var(--gold); }

.chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.chat-send:hover { background: var(--gold-light); }

/* === SCROLL ANIMATIONS === */
.gsap-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gsap-reveal.visible {
  opacity: 1;
  transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; padding: 100px 24px 80px; }
  .hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .approach-inner { grid-template-columns: 1fr; }
  .approach-image { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .proc-connector { display: none; }
  .stories-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .journal-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .chat-window { width: calc(100vw - 56px); right: 0; }
}

@media (max-width: 640px) {
  .hero { min-height: auto; }
  .hero-content { padding: 90px 20px 60px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .services { padding: 80px 20px; }
  .approach, .process, .stories, .journal, .testimonials, .ai-cta, .contact { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .story-card { padding: 32px 24px; }
  .footer { padding: 48px 20px 24px; }
  .footer-nav { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13,13,11,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .cred-inner { flex-direction: column; gap: 14px; }
  .cred-sep { display: none; }
  .contact-form { padding: 24px; }
  .nav-inner { padding: 0 24px; }
}
