/* ═══════════════════════════════════════════════════════════
   VINE DEVELOPMENT & CONSULTING – 3D Premium Design System
   with 360° Orbit Effect & White Background Sections
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --primary: #1a3a2a;
  --primary-light: #2d5a3f;
  --primary-dark: #0f2218;
  --accent: #c8a951;
  --accent-light: #e0c76a;
  --accent-glow: rgba(200,169,81,0.35);
  --dark: #0a0a0a;
  --gray-900: #1a1a1a;
  --gray-800: #2a2a2a;
  --gray-700: #3a3a3a;
  --gray-600: #666;
  --gray-400: #999;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.1);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.15);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.25);
  --shadow-3d: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(200,169,81,0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
  transition: opacity 1s var(--transition), visibility 1s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__logo {
  width: 120px; height: auto;
  animation: preloaderFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px var(--accent-glow));
}
@keyframes preloaderFloat {
  0%,100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-15px) rotateY(10deg); }
}
.preloader__text {
  font-family: 'Playfair Display', serif;
  color: var(--accent); font-size: 1.1rem; letter-spacing: 0.4em;
  text-transform: uppercase; text-align: center; line-height: 1.6;
}
.preloader__bar {
  width: 240px; height: 2px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.preloader__bar-fill {
  height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-light));
  animation: loadBar 2.2s ease-in-out forwards;
  box-shadow: 0 0 15px var(--accent-glow);
}
@keyframes loadBar { to { width: 100%; } }

/* ── 3D CANVAS BACKGROUND ── */
#bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed; width: 400px; height: 400px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(200,169,81,0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left 0.2s ease-out, top 0.2s ease-out;
  mix-blend-mode: screen;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow: 0 1px 0 rgba(200,169,81,0.1);
  padding: 0.8rem 3rem;
}
.nav__logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; z-index: 10;
}
.nav__logo-img {
  height: 96px; width: auto;
  filter: drop-shadow(0 0 10px rgba(200,169,81,0.2));
  transition: transform 0.5s var(--transition), height 0.5s var(--transition);
}
.nav.scrolled .nav__logo-img { height: 78px; }
.nav__logo:hover .nav__logo-img { transform: scale(1.08) rotateY(15deg); }
.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.04em;
  line-height: 1.3; white-space: nowrap;
}
.nav__links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav__link {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  text-decoration: none; position: relative; padding: 0.25rem 0;
  transition: color 0.3s;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width 0.4s var(--transition);
  box-shadow: 0 0 8px var(--accent-glow);
}
.nav__link:hover { color: var(--accent); }
.nav__link:hover::after { width: 100%; }
.nav__phone {
  font-size: 0.8rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem; border: 1px solid rgba(200,169,81,0.4);
  border-radius: 50px; transition: all 0.4s var(--transition);
  backdrop-filter: blur(10px);
}
.nav__phone:hover {
  background: var(--accent); color: var(--dark);
  box-shadow: 0 0 25px var(--accent-glow);
  transform: translateY(-2px);
}
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
  z-index: 10;
}
.nav__toggle span {
  width: 26px; height: 2px; background: var(--white);
  transition: all 0.3s; border-radius: 2px;
}

/* Mobile Nav */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: all 0.5s var(--transition);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--white); text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__phone { display: none; }
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav__logo-img { height: 64px; }
  .nav.scrolled .nav__logo-img { height: 56px; }
  .nav__logo-text { font-size: 1.05rem; }
}

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  overflow: hidden; display: flex; align-items: center;
  z-index: 2;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,26,18,0.85) 0%, rgba(26,58,42,0.75) 30%, rgba(13,31,21,0.8) 70%, rgba(10,10,10,0.9) 100%);
}
.hero__mesh {
  position: absolute; inset: 0; overflow: hidden; opacity: 0.15;
}
.hero__mesh-line {
  position: absolute; height: 1px; width: 200%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: meshSweep 12s linear infinite;
}
@keyframes meshSweep {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}
.hero__particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; opacity: 0;
  animation: floatParticle 10s ease-in-out infinite;
}
.particle--gold { background: var(--accent); width: 3px; height: 3px; }
.particle--green { background: var(--primary-light); width: 2px; height: 2px; }
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  15% { opacity: 0.7; }
  85% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero__3d-shapes { position: absolute; inset: 0; pointer-events: none; perspective: 1200px; }
.hero__shape {
  position: absolute; border: 1px solid rgba(200,169,81,0.15);
  border-radius: 8px;
  animation: shapeFloat 8s ease-in-out infinite;
}
.hero__shape--1 { width: 80px; height: 80px; top: 15%; right: 15%; animation-delay: 0s; transform: rotateX(25deg) rotateY(35deg); }
.hero__shape--2 { width: 120px; height: 120px; bottom: 20%; right: 25%; animation-delay: 2s; transform: rotateX(-15deg) rotateY(-25deg); border-radius: 50%; }
.hero__shape--3 { width: 60px; height: 60px; top: 35%; right: 8%; animation-delay: 4s; transform: rotateX(45deg) rotateY(20deg); }
.hero__shape--4 { width: 100px; height: 100px; bottom: 30%; left: 5%; animation-delay: 1s; transform: rotateX(-20deg) rotateY(40deg); border-radius: 50%; border-color: rgba(45,90,63,0.2); }
@keyframes shapeFloat {
  0%,100% { transform: translateY(0) rotateX(25deg) rotateY(35deg); }
  50% { transform: translateY(-25px) rotateX(35deg) rotateY(55deg); }
}

.hero__content {
  position: relative; z-index: 10; padding: 0 6rem;
  max-width: 950px;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 2rem; opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s 0.5s forwards;
}
.hero__tag-line { width: 40px; height: 1px; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s 0.8s forwards;
}
.hero__title span {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.6); max-width: 550px;
  margin-bottom: 3rem; line-height: 1.8;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s 1.1s forwards;
}
.hero__cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s 1.4s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero__scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  z-index: 10; animation: bounce 2.5s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(12px); } }

@media (max-width: 768px) {
  .hero__content { padding: 0 1.5rem; }
  .hero__title { font-size: 2.2rem; }
  .hero__subtitle { font-size: 0.95rem; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2.25rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 50px; text-decoration: none; cursor: pointer;
  transition: all 0.4s var(--transition);
  border: none; font-family: inherit; position: relative;
  overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.btn:hover::before { opacity: 1; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--dark);
  box-shadow: 0 8px 30px rgba(200,169,81,0.3);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 50px rgba(200,169,81,0.45);
}
.btn--outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200,169,81,0.15);
}
.btn--dark {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(26,58,42,0.3);
}
.btn--dark:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(26,58,42,0.45);
}

/* ── SECTIONS ── */
.section {
  padding: 8rem 2rem; position: relative; z-index: 2;
}
.section--dark { background: var(--dark); color: var(--white); }
.programs-section { background: linear-gradient(160deg, var(--primary-dark), var(--primary) 55%, var(--primary-light)); }
.section--primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.section--white { background: var(--white); color: var(--gray-900); }
.section--light { background: var(--gray-100); color: var(--gray-900); }
.section--gradient { background: linear-gradient(180deg, var(--dark) 0%, #0f1f17 50%, var(--dark) 100%); color: var(--white); }
.section__inner { max-width: 1200px; margin: 0 auto; }
.section__label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.5rem;
}
.section__label-line { width: 30px; height: 1px; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section__text {
  font-size: 1rem; font-weight: 300; line-height: 1.9;
  color: var(--gray-600); max-width: 650px;
}
.section--dark .section__text,
.section--primary .section__text,
.section--gradient .section__text { color: rgba(255,255,255,0.55); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: all 0.9s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--left { transform: translateX(-60px); }
.reveal--left.visible { transform: translateX(0); }
.reveal--right { transform: translateX(60px); }
.reveal--right.visible { transform: translateX(0); }
.reveal--scale { transform: scale(0.9); }
.reveal--scale.visible { transform: scale(1); }

/* ═══════════════════════════════════════
   WHO WE ARE SECTION (white bg)
   ═══════════════════════════════════════ */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.about__image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.6s var(--transition);
}
.about__image:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.about__image img {
  width: 100%; height: auto; display: block;
  transition: transform 0.8s var(--transition);
}
.about__image:hover img { transform: scale(1.03); }
.about__content { }
@media (max-width: 900px) {
  .about-section { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── WHAT WE DO ── */
.programs { text-align: center; }
.programs__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 4rem;
}
.program-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.6s var(--transition);
  position: relative; cursor: pointer;
  transform-style: preserve-3d; perspective: 800px;
}
.program-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow: var(--shadow-3d);
  border-color: rgba(200,169,81,0.3);
  background: #ffffff;
}
.program-card__image { height: 220px; overflow: hidden; position: relative; }
.program-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--transition);
  filter: brightness(0.8);
}
.program-card:hover .program-card__image img { transform: scale(1.1); filter: brightness(1); }
.program-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
}
.program-card__body { padding: 2rem; text-align: left; }
.program-card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.25rem;
  box-shadow: 0 8px 25px rgba(200,169,81,0.25);
  transition: transform 0.4s var(--transition-bounce);
}
.program-card:hover .program-card__icon { transform: scale(1.1) rotateZ(-5deg); }
.program-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 1rem; color: #000000;
}
.program-card__text {
  font-size: 0.88rem; color: rgba(0,0,0,0.65);
  line-height: 1.7; margin-bottom: 1.5rem;
}
.program-card__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; color: var(--accent);
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.08em; transition: gap 0.3s, color 0.3s;
}
.program-card__link:hover { gap: 0.85rem; color: var(--accent-light); }
@media (max-width: 900px) { .programs__grid { grid-template-columns: 1fr; max-width: 500px; margin: 4rem auto 0; } }

/* ═══════════════════════════════════════════════════════
   360° ORBIT SECTION — MEET SHANNA CARKHUM
   ═══════════════════════════════════════════════════════ */
.shanna-section {
  background: linear-gradient(180deg, var(--dark) 0%, #0c1a12 50%, var(--dark) 100%);
  overflow: hidden; position: relative;
}
.shanna-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.shanna__header { text-align: center; margin-bottom: 4rem; }

/* ── Orbit Stage — scroll-driven 360° canvas orbit ── */
.orbit-section { margin-bottom: 5rem; }

/* The numbers auto-advance on a timer now, so the stage just sits in
   normal document flow — no scroll-driven height or sticky pinning
   needed anymore. */
.orbit-scroll-space {
  position: relative;
}

.orbit-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  user-select: none;
}

.orbit-ring-area {
  position: relative;
  width: min(440px, 78vw);
  height: min(440px, 78vw);
  margin: 0 auto;
}

/* HUD corners */
.orbit-hud {
  position: absolute; z-index: 20;
  display: flex; flex-direction: column;
  top: -64px;
}
.orbit-hud--tl { left: 0; }
.orbit-hud--tr { right: 0; align-items: flex-end; }
.orbit-hud__label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent); opacity: 0.7;
}
.orbit-hud__sub {
  font-size: 0.55rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 2px;
}
.orbit-hud__deg {
  font-family: 'Courier New', monospace;
  font-size: 1.8rem; font-weight: 700;
  color: var(--accent); line-height: 1;
  text-shadow: 0 0 20px var(--accent-glow);
}

/* SVG Orbit Ring */
.orbit-ring-wrap {
  position: absolute; inset: 20px;
  z-index: 5;
  pointer-events: none;
}
.orbit-ring-svg { width: 100%; height: 100%; }
.orbit-ring__bg {
  fill: none; stroke: rgba(200,169,81,0.08); stroke-width: 1.5;
}
.orbit-ring__progress {
  fill: none; stroke: var(--accent); stroke-width: 2;
  stroke-dasharray: 1634; stroke-dashoffset: 1634;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px var(--accent-glow));
  transition: stroke-dashoffset 0.1s linear;
}

/* Center photo — static; nodes orbit around it */
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46%; height: 46%;
  z-index: 10;
}
.orbit-photo-glow {
  position: absolute; inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,81,0.18) 0%, transparent 70%);
  animation: photoGlow 3s ease-in-out infinite alternate;
}
@keyframes photoGlow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}
.orbit-video {
  width: 100%; height: 100%;
  border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(200,169,81,0.4);
  box-shadow: 0 0 50px rgba(200,169,81,0.2), 0 0 100px rgba(200,169,81,0.08);
  background: #000;
  display: block;
}

/* Accomplishment wheel — fixed nodes around the ring */
.orbit-wheel {
  position: absolute; inset: 0;
  z-index: 15;
  pointer-events: none;
}
.orbit-node {
  position: absolute;
  width: 34px; height: 34px;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--transition-bounce);
}
.orbit-node__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(10,10,10,0.85);
  border: 1.5px solid rgba(200,169,81,0.3);
  transition: all 0.4s var(--transition);
}
.orbit-node__num {
  position: relative; z-index: 2;
  font-family: 'Courier New', monospace;
  font-size: 0.65rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: color 0.4s var(--transition);
}
.orbit-node.active {
  transform: translate(-50%, -50%) scale(1.4);
}
.orbit-node.active .orbit-node__ring {
  background: var(--accent);
  border-color: var(--accent-light);
  box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(200,169,81,0.25);
}
.orbit-node.active .orbit-node__num {
  color: var(--dark);
}
.orbit-node.done .orbit-node__ring {
  border-color: rgba(200,169,81,0.55);
  background: rgba(200,169,81,0.12);
}
.orbit-node.done .orbit-node__num {
  color: var(--accent);
}
.orbit-node:hover .orbit-node__ring {
  border-color: var(--accent-light);
  box-shadow: 0 0 14px var(--accent-glow);
}

/* Single detail card — content swaps as each node activates */
.orbit-detail {
  position: relative;
  width: min(420px, 88vw);
  margin-top: 2.75rem;
  padding: 1.5rem 1.75rem;
  background: rgba(15,20,15,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200,169,81,0.22);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 20px rgba(200,169,81,0.08);
  text-align: left;
}
.orbit-detail__top {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 0.35rem;
}
.orbit-detail__idx {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
}
.orbit-detail__stat {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.orbit-detail__label {
  font-size: 0.9rem; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.orbit-detail__desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  line-height: 1.6; min-height: 2.6em;
}
.orbit-detail__dots {
  display: flex; gap: 6px; margin-top: 1.1rem;
}
.orbit-detail__dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s var(--transition);
}
.orbit-detail__dots span.active {
  background: var(--accent);
  width: 18px; border-radius: 3px;
  box-shadow: 0 0 8px var(--accent-glow);
}

/* Fade/slide transition each time the detail content changes */
.orbit-detail.swap .orbit-detail__stat,
.orbit-detail.swap .orbit-detail__label,
.orbit-detail.swap .orbit-detail__desc {
  animation: detailSwap 0.45s var(--transition);
}
@keyframes detailSwap {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Scroll Hint */
.orbit-hint {
  margin-top: 1.5rem;
  text-align: center;
  transition: opacity 0.5s var(--transition);
}
.orbit-hint span {
  font-size: 0.7rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

/* Orbit Stats Strip */
.orbit-stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(200,169,81,0.1);
  border-bottom: 1px solid rgba(200,169,81,0.1);
}
.orbit-stat { text-align: center; }
.orbit-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; display: block;
}
.orbit-stat__label {
  font-size: 0.7rem; font-weight: 500;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
  letter-spacing: 0.15em; margin-top: 0.5rem; display: block;
}

@media (max-width: 600px) {
  .orbit-stage { top: 76px; }
  .orbit-hud { top: -52px; }
  .orbit-hud__deg { font-size: 1.2rem; }
  .orbit-node { width: 28px; height: 28px; }
  .orbit-detail { padding: 1.25rem 1.4rem; }
  .orbit-detail__stat { font-size: 1.6rem; }
  .orbit-stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── SHANNA PROFILE GRID (below orbit) ── */
.shanna__grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 4rem;
  align-items: start; margin-top: 3rem;
}
.shanna__profile-card {
  position: sticky; top: 120px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.6s var(--transition);
  transform-style: preserve-3d;
}
.shanna__profile-card:hover {
  border-color: rgba(200,169,81,0.2);
  box-shadow: 0 30px 80px rgba(200,169,81,0.08);
  transform: translateY(-5px);
}
.shanna__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.3rem;
}
.shanna__role {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.5rem;
}
.shanna__contact-list {
  list-style: none; text-align: left;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
}
.shanna__contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0; font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.shanna__contact-item svg {
  width: 16px; height: 16px; flex-shrink: 0;
  fill: var(--accent); opacity: 0.7;
}
.shanna__contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.shanna__contact-item a:hover { color: var(--accent); }
.shanna__skills-bar {
  margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
}
.shanna__skills-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}
.skill-tag {
  display: inline-block; padding: 0.35rem 0.8rem;
  background: rgba(200,169,81,0.08); border: 1px solid rgba(200,169,81,0.15);
  border-radius: 20px; font-size: 0.72rem; color: rgba(255,255,255,0.6);
  margin: 0.2rem; transition: all 0.3s;
}
.skill-tag:hover { background: rgba(200,169,81,0.15); border-color: rgba(200,169,81,0.3); color: var(--accent); }

/* Shanna Content Side */
.shanna__content { }
.shanna__bio {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  line-height: 1.9; margin-bottom: 3rem;
  max-width: 700px;
}
.shanna__bio strong { color: var(--white); font-weight: 600; }

/* Highlights Grid */
.shanna__highlights {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-bottom: 3rem;
}
.highlight-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all 0.5s var(--transition);
  position: relative; overflow: hidden;
}
.highlight-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--accent);
  opacity: 0; transition: opacity 0.4s;
}
.highlight-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(200,169,81,0.15);
  transform: translateX(5px);
}
.highlight-card:hover::before { opacity: 1; }
.highlight-card__icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.home-details .highlight-card__icon { font-size: 3rem; margin-bottom: 1rem; }
.highlight-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.5rem;
}
.highlight-card__text {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* Rollover tooltip for home-detail icons (e.g. bed/bath/garage/sqft cards) */
.highlight-card[data-tooltip] { cursor: help; overflow: visible; }
.highlight-card[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%; bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  background: var(--gray-900, #111);
  color: #fff;
  font-size: 0.78rem; font-weight: 500;
  line-height: 1.4; white-space: nowrap;
  padding: 0.6rem 0.9rem; border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 20;
}
.highlight-card[data-tooltip]:hover::after {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* Feature list — Medical District pre-sales section */
.feature-list {
  list-style: none; margin: 2rem auto 0; padding: 0;
  max-width: 640px; text-align: left; display: flex;
  flex-direction: column; gap: 1.25rem;
}
.feature-list__item {
  display: flex; align-items: flex-start; gap: 0.9rem;
}
.feature-list__icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700; margin-top: 0.15rem;
  box-shadow: 0 6px 16px rgba(200,169,81,0.3);
}
.feature-list__body { color: var(--gray-600); line-height: 1.7; }
.feature-list__body strong { color: var(--gray-900); }
.feature-list__body a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.feature-list__body a:hover { color: var(--primary-light, var(--primary)); }

/* Experience Timeline */
.shanna__timeline { margin-bottom: 3rem; }
.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.timeline-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(200,169,81,0.3), transparent);
}
.timeline-item {
  position: relative; padding-left: 2rem; padding-bottom: 2rem;
  border-left: 1px solid rgba(200,169,81,0.15);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -5px; top: 4px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent-glow);
}
.timeline-item__date {
  font-size: 0.72rem; font-weight: 600; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem;
}
.timeline-item__role {
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.15rem;
}
.timeline-item__company {
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.timeline-item__desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* Education */
.shanna__education { margin-bottom: 3rem; }
.edu-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius); padding: 1.25rem;
  margin-bottom: 0.75rem;
  transition: all 0.4s var(--transition);
}
.edu-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(200,169,81,0.12);
  transform: translateX(5px);
}
.edu-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.edu-card__degree { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.edu-card__school { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.edu-card__year { font-size: 0.7rem; color: var(--accent); font-weight: 600; letter-spacing: 0.08em; }

@media (max-width: 900px) {
  .shanna__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .shanna__profile-card { position: relative; top: 0; max-width: 400px; margin: 0 auto; }
  .shanna__highlights { grid-template-columns: 1fr; }
}

/* ── BLOG COMING SOON ── */
.blog-soon {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.blog-soon__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(26,58,42,0.08); color: var(--primary);
  padding: 0.5rem 1.25rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 1.5rem;
  border: 1px solid rgba(26,58,42,0.2);
}
.blog-soon__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  animation: blogPulse 1.6s ease-in-out infinite;
}
@keyframes blogPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(26,58,42,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(26,58,42,0); }
}
.blog-soon__topics {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem; margin: 2rem 0;
}
.blog-soon__topic {
  font-family: 'Inter', sans-serif;
  background: var(--white); color: var(--gray-900);
  border: 1.5px solid rgba(26,58,42,0.18);
  padding: 0.65rem 1.25rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: all 0.3s var(--transition);
}
.blog-soon__topic:hover {
  border-color: var(--primary); transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26,58,42,0.12);
}
.blog-soon__topic.is-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent; color: var(--white);
  box-shadow: 0 6px 16px rgba(26,58,42,0.22);
}
.blog-soon__form {
  display: flex; gap: 0.75rem; justify-content: center;
  flex-wrap: wrap; margin-top: 1rem;
}
.blog-soon__form input {
  flex: 1 1 260px; max-width: 320px;
  padding: 0.95rem 1.25rem; border-radius: var(--radius);
  border: 1.5px solid rgba(26,58,42,0.18);
  background: var(--white); color: var(--gray-900);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color 0.3s;
}
.blog-soon__form input:focus {
  outline: none; border-color: var(--primary);
}
.blog-soon__hint {
  margin-top: 1rem; font-size: 0.82rem;
  color: var(--gray-600); transition: color 0.3s;
}
.blog-soon__hint.is-success { color: var(--primary); font-weight: 600; }
.blog-soon__hint.is-error { color: #b3261e; font-weight: 600; }
@media (max-width: 600px) {
  .blog-soon__form { flex-direction: column; align-items: stretch; }
  .blog-soon__form input { max-width: none; }
}

/* ── FOR SALE GRAPHIC (Medical District pre-sales) ── */
.for-sale {
  max-width: 620px;
  margin: 2.5rem auto 0;
}
.for-sale img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.for-sale__cta-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--gray-900);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 2rem 0 1.5rem;
}

/* ── COUNTERS ── */
.counters {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-top: 4rem;
}
.counter {
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  transition: all 0.5s var(--transition);
}
.counter:hover {
  background: #ffffff;
  border-color: rgba(200,169,81,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.counter__number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.counter__label {
  font-size: 0.75rem; font-weight: 700;
  color: #000000; text-transform: uppercase;
  letter-spacing: 0.15em; margin-top: 0.75rem;
}
@media (max-width: 768px) { .counters { grid-template-columns: repeat(2, 1fr); } }

/* ── QUOTE ── */
.quote-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center; padding: 7rem 2rem;
  position: relative; overflow: hidden; z-index: 2;
}
.quote-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,81,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.quote { max-width: 800px; margin: 0 auto; }
.quote__mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem; color: var(--accent); line-height: 1;
  margin-bottom: -1.5rem; opacity: 0.4;
}
.quote__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 500; font-style: italic;
  color: var(--white); line-height: 1.7;
  margin-bottom: 2rem;
}
.quote__author {
  font-size: 0.82rem; font-weight: 600;
  color: var(--accent); letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--dark); z-index: 2; position: relative;
}
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact__item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact__item-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: all 0.4s var(--transition);
}
.contact__item:hover .contact__item-icon {
  transform: scale(1.1) rotateZ(-5deg);
  box-shadow: 0 8px 25px rgba(26,58,42,0.4);
}
.contact__item-label {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 0.25rem;
}
.contact__item-value { font-size: 1rem; font-weight: 500; color: var(--white); }
.contact__item-value a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
.contact__item-value a:hover { color: var(--accent-light); }

.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl); padding: 3rem;
  backdrop-filter: blur(10px);
  transition: all 0.5s var(--transition);
}
.contact-form:hover {
  border-color: rgba(200,169,81,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.5); margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.9rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; font-family: inherit; font-size: 0.92rem;
  transition: all 0.3s; background: rgba(255,255,255,0.03);
  color: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,169,81,0.1);
  background: rgba(255,255,255,0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c8a951'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center; background-size: 1.1em;
  padding-right: 2.75rem;
}
.form-group select option {
  background: var(--dark); color: var(--white);
}
.form-submit {
  width: 100%; padding: 1.1rem; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--dark); border: none; border-radius: 12px; cursor: pointer;
  transition: all 0.4s var(--transition); font-family: inherit;
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(200,169,81,0.3);
}
.form-submit:disabled { opacity: 0.7; cursor: default; transform: none; }
.form-group--hidden {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden; margin: 0;
}
.form-status {
  margin-top: 1rem; font-size: 0.85rem; text-align: center;
  min-height: 1.2em; color: rgba(255,255,255,0.6);
}
.form-status.is-success { color: var(--accent); font-weight: 600; }
.form-status.is-error { color: #e0665a; font-weight: 600; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; gap: 3rem; } }

/* ── FOOTER ── */
.footer {
  background: #050505; color: rgba(255,255,255,0.4);
  padding: 5rem 2rem 2rem; z-index: 2; position: relative;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer__brand-logo {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.footer__brand-logo img { height: 44px; filter: drop-shadow(0 0 8px rgba(200,169,81,0.15)); }
.footer__brand-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.05em;
}
.footer__brand-text {
  font-size: 0.85rem; line-height: 1.7;
  color: rgba(255,255,255,0.3); margin-bottom: 1.5rem;
}
.footer__col-title {
  font-size: 0.7rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.2em; margin-bottom: 1.5rem;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.75rem; }
.footer__links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: all 0.3s;
  position: relative;
}
.footer__links a:hover { color: var(--accent); transform: translateX(4px); display: inline-block; }
.footer__bottom {
  max-width: 1200px; margin: 4rem auto 0;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── CHATBOT ── */
.chatbot { position: fixed; bottom: 2rem; right: 2rem; z-index: 9000; }
.chatbot__toggle {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  box-shadow: 0 8px 30px rgba(26,58,42,0.5);
  transition: all 0.4s var(--transition); position: relative;
}
.chatbot__toggle:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(26,58,42,0.6); }
.chatbot__toggle-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--primary);
  animation: chatPulse 2s ease-in-out infinite;
}
@keyframes chatPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.4); opacity: 0; } }
.chatbot__window {
  position: absolute; bottom: 80px; right: 0;
  width: 380px; max-height: 520px;
  background: var(--dark); border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(20px) scale(0.95);
  pointer-events: none; transition: all 0.4s var(--transition);
}
.chatbot__window.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.chatbot__header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 1.5rem; color: var(--white);
  display: flex; align-items: center; justify-content: space-between;
}
.chatbot__header-info { display: flex; align-items: center; gap: 0.75rem; }
.chatbot__header-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--dark); font-weight: 800;
}
.chatbot__header-name { font-weight: 700; font-size: 0.9rem; }
.chatbot__header-status { font-size: 0.7rem; opacity: 0.7; }
.chatbot__header-close {
  background: none; border: none; color: var(--white);
  font-size: 1.5rem; cursor: pointer; opacity: 0.7;
  transition: opacity 0.3s;
}
.chatbot__header-close:hover { opacity: 1; }
.chatbot__messages {
  flex: 1; overflow-y: auto; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.chatbot__msg {
  max-width: 85%; padding: 0.85rem 1.1rem;
  border-radius: 14px; font-size: 0.85rem; line-height: 1.5;
}
.chatbot__msg--bot {
  background: rgba(255,255,255,0.06); color: var(--white);
  border-bottom-left-radius: 4px; align-self: flex-start;
}
.chatbot__msg--user {
  background: var(--primary); color: var(--white);
  border-bottom-right-radius: 4px; align-self: flex-end;
}
.chatbot__msg--quick {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  align-self: flex-start;
}
.chatbot__quick-btn {
  padding: 0.5rem 1rem; border-radius: 20px;
  background: rgba(200,169,81,0.1); border: 1px solid rgba(200,169,81,0.2);
  color: var(--accent); font-size: 0.75rem; cursor: pointer;
  transition: all 0.3s; font-family: inherit;
}
.chatbot__quick-btn:hover {
  background: rgba(200,169,81,0.2); border-color: var(--accent);
}
.chatbot__input {
  display: flex; gap: 0.5rem; padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.chatbot__input input {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  padding: 0.6rem 1rem; color: var(--white); font-size: 0.85rem;
  font-family: inherit;
}
.chatbot__input input:focus { outline: none; border-color: var(--accent); }
.chatbot__input input::placeholder { color: rgba(255,255,255,0.2); }
.chatbot__input button {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); border: none; color: var(--dark);
  font-size: 1rem; cursor: pointer; transition: all 0.3s;
}
.chatbot__input button:hover { transform: scale(1.1); }
