/* ==========================================
   BERYL LEADS — Crystalline Mineral Aesthetic
   Hexagonal. Prismatic. Alive.
   ========================================== */

:root {
  --cave: #061a14;
  --cave-deep: #040f0c;
  --emerald: #1e6b5e;
  --emerald-glow: #3cbfa3;
  --aquamarine: #2d9d8a;
  --beryl-light: #7ecdc0;
  --heliodor: #c9a84c;
  --heliodor-bright: #e0c46e;
  --morganite: #c98b9c;
  --frost: #e0f2ec;
  --ice: #b8d4cc;
  --stone: #5a8a7e;
  --mist: #8ab5aa;
  --vein: rgba(61, 191, 163, 0.15);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

::selection {
  background: var(--emerald-glow);
  color: var(--cave-deep);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--frost);
  background: var(--cave-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

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

/* ==========================================
   HEXAGONAL CRYSTAL LATTICE CANVAS
   ========================================== */

#crystalCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ==========================================
   CAUSTIC LIGHT OVERLAY
   ========================================== */

.caustic-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(61, 191, 163, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 500px 350px at 80% 60%, rgba(201, 168, 76, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 400px 300px at 50% 80%, rgba(45, 157, 138, 0.07) 0%, transparent 50%);
  animation: causticShift 10s ease-in-out infinite alternate;
}

@keyframes causticShift {
  0% { opacity: 0.8; transform: scale(1) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.05) translate(-20px, 10px); }
  100% { opacity: 0.9; transform: scale(0.98) translate(15px, -15px); }
}

/* ==========================================
   FLOATING CRYSTAL SHARDS
   ========================================== */

.crystal-shard {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

.shard-1 {
  width: 80px; height: 92px;
  top: 15%; right: 12%;
  background: linear-gradient(135deg, rgba(61, 191, 163, 0.25), rgba(45, 157, 138, 0.1));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: shardFloat1 12s ease-in-out infinite, shardRotate 20s linear infinite;
  filter: blur(0.5px);
}

.shard-2 {
  width: 60px; height: 69px;
  bottom: 22%; left: 10%;
  background: linear-gradient(225deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: shardFloat2 15s ease-in-out infinite, shardRotate 25s linear infinite reverse;
}

.shard-3 {
  width: 45px; height: 52px;
  top: 55%; left: 38%;
  background: linear-gradient(45deg, rgba(61, 191, 163, 0.15), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: shardFloat3 10s ease-in-out infinite, shardRotate 18s linear infinite;
}

.shard-4 {
  width: 35px; height: 40px;
  top: 25%; left: 18%;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.18), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: shardFloat1 14s ease-in-out infinite, shardRotate 22s linear infinite reverse;
}

@keyframes shardFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-15px, 25px); }
}

@keyframes shardFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -18px); }
}

@keyframes shardFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10px, -10px) scale(1.08); }
}

@keyframes shardRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================
   PRISMATIC TEXT SHIMMER
   ========================================== */

.prismatic {
  background: linear-gradient(
    90deg,
    var(--heliodor),
    var(--emerald-glow),
    var(--heliodor-bright),
    var(--emerald-glow),
    var(--heliodor)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: prismaticShift 5s linear infinite;
}

@keyframes prismaticShift {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ==========================================
   HERO
   ========================================== */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  background: var(--cave);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--emerald-glow);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(61, 191, 163, 0.3);
  border-radius: 100px;
  background: rgba(61, 191, 163, 0.05);
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.8rem, 8.5vw, 6rem);
  color: var(--frost);
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--heliodor);
}

.hero-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-glow), var(--heliodor));
  margin: 0 auto 28px;
  position: relative;
  overflow: hidden;
}

.hero-rule::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--frost), transparent);
  animation: ruleShine 3s ease-in-out infinite;
}

@keyframes ruleShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.hero p {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--ice);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--heliodor), #b8953a);
  color: var(--cave-deep);
  padding: 18px 40px;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.35);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--stone);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: rgba(61, 191, 163, 0.2);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================
   VALUE PROPOSITION CARDS (replacing stats)
   ========================================== */

.value-prop {
  padding: 80px 0 100px;
  background: var(--cave-deep);
  position: relative;
  overflow: hidden;
}

.value-prop::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(61, 191, 163, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.value-prop-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.value-prop-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.value-prop-header h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  color: var(--frost);
  margin-bottom: 14px;
}

.value-prop-header p {
  color: var(--stone);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ==========================================
   FLOW STEPS — Boxless Typography
   ========================================== */

.strata {
  position: relative;
}

.strata-band {
  position: relative;
  padding: 64px 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 280px;
}

.strata-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.strata-mesh.mesh-1 {
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(61, 191, 163, 0.08) 0%, transparent 60%);
}

.strata-mesh.mesh-2 {
  background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.strata-mesh.mesh-3 {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(61, 191, 163, 0.06) 0%, transparent 60%);
}

.strata-watermark {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 25vw, 16rem);
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(61, 191, 163, 0.12);
  opacity: 0.6;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.strata-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.strata-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--frost);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.strata-content p {
  font-size: 1rem;
  color: var(--ice);
  line-height: 1.75;
}

.strata-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 191, 163, 0.2), rgba(201, 168, 76, 0.2), rgba(61, 191, 163, 0.2), transparent);
  position: relative;
  overflow: hidden;
}

.strata-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--emerald-glow), var(--heliodor), var(--emerald-glow), transparent);
  animation: dividerSweep 4s ease-in-out infinite;
}

@keyframes dividerSweep {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* ==========================================
   LEAD SECTION
   ========================================== */

.lead-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--cave-deep) 0%, #081812 100%);
  position: relative;
  overflow: hidden;
}

.lead-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 50% 0%, rgba(61, 191, 163, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.lead-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lead-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald-glow);
  margin-bottom: 20px;
  display: block;
}

.lead-section h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--frost);
}

.lead-desc {
  color: var(--ice);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

.lead-form {
  background: rgba(6, 26, 20, 0.7);
  padding: 48px 32px;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid rgba(61, 191, 163, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.lead-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-glow), var(--heliodor), var(--emerald-glow));
  background-size: 200% 100%;
  animation: borderShimmer 3s ease-in-out infinite;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid rgba(61, 191, 163, 0.15);
  border-radius: 3px;
  font-size: 16px;
  font-family: inherit;
  color: var(--frost);
  background: rgba(4, 15, 12, 0.5);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald-glow);
  box-shadow: 0 0 0 4px rgba(61, 191, 163, 0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--heliodor), #b8953a);
  color: var(--cave-deep);
  border: none;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.3);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--stone);
  margin-top: 20px;
  line-height: 1.5;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.page-hero {
  padding: 140px 24px 60px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cave);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald-glow);
  margin-bottom: 20px;
  display: block;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--frost);
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--ice);
  line-height: 1.8;
}

.about-body {
  padding: 72px 24px;
  max-width: 640px;
  margin: 0 auto;
}

.about-body p {
  font-size: 1.05rem;
  color: var(--ice);
  line-height: 1.9;
  margin-bottom: 22px;
}

.values {
  padding: 72px 24px;
  background: var(--cave-deep);
  position: relative;
}

.values::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(61, 191, 163, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.values-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.values h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 48px;
  text-align: center;
  color: var(--frost);
}

.value-card {
  background: rgba(6, 26, 20, 0.5);
  padding: 36px 28px;
  margin-bottom: 16px;
  border-radius: 4px;
  border: 1px solid rgba(61, 191, 163, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--emerald-glow), var(--heliodor));
  transition: height 0.6s var(--ease-out);
}

.value-card:hover::before {
  height: 100%;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(61, 191, 163, 0.06);
  border-color: rgba(61, 191, 163, 0.2);
}

.value-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--frost);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--ice);
  line-height: 1.7;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-section {
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}

.contact-details {
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(61, 191, 163, 0.1);
  transition: all 0.3s var(--ease-out);
}

.contact-item:hover {
  padding-left: 8px;
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(6, 26, 20, 0.5);
  border: 1px solid rgba(61, 191, 163, 0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  color: var(--emerald-glow);
  transition: all 0.3s var(--ease-out);
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, var(--emerald-glow), var(--heliodor));
  color: var(--cave-deep);
  border-color: transparent;
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--stone);
}

.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: var(--frost);
  transition: color 0.3s var(--ease-out);
}

.contact-item a:hover { color: var(--emerald-glow); }

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(6, 26, 20, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(61, 191, 163, 0.08);
  transition: background 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(6, 26, 20, 0.95);
  border-bottom-color: rgba(61, 191, 163, 0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--frost);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.nav-logo em {
  font-style: italic;
  color: var(--heliodor);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  transition: color 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--frost); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--emerald-glow);
  transition: width 0.5s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: none;
  background: linear-gradient(135deg, var(--heliodor), #b8953a);
  color: var(--cave-deep) !important;
  padding: 12px 28px;
  border-radius: 2px;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-out);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.nav-cta::after { display: none !important; }

.menu-toggle {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--frost);
  transition: all 0.4s var(--ease-out);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--cave);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--frost);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s var(--ease-out);
}

.mobile-nav.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active a:nth-child(1) { transition-delay: 0.06s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.12s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.18s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.24s; }

.mobile-nav .nav-cta-mobile {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--heliodor), #b8953a);
  color: var(--cave-deep);
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  padding: 56px 24px;
  background: var(--cave-deep);
  text-align: center;
  border-top: 1px solid rgba(61, 191, 163, 0.08);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 0%, rgba(61, 191, 163, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--frost);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.footer-logo em { color: var(--heliodor); }

.footer p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ice);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-out);
}

.footer-links a:hover { color: var(--heliodor); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--stone);
  position: relative;
  z-index: 1;
}

/* ==========================================
   TOAST
   ========================================== */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(6, 26, 20, 0.95);
  color: var(--frost);
  padding: 16px 32px;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: all 0.6s var(--ease-out);
  z-index: 2000;
  white-space: nowrap;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(61, 191, 163, 0.2);
  backdrop-filter: blur(10px);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================
   SCROLL REVEAL
   ========================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================
   MOBILE PARTICLES — Drifting atmosphere
   ========================================== */

.mobile-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.m-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.m-particle.gold {
  background: radial-gradient(circle, rgba(201,168,76,0.6), rgba(201,168,76,0) 70%);
  box-shadow: 0 0 8px rgba(201,168,76,0.3);
}

.m-particle.emerald {
  background: radial-gradient(circle, rgba(61,191,163,0.5), rgba(61,191,163,0) 70%);
  box-shadow: 0 0 8px rgba(61,191,163,0.25);
}

.m-particle.ice {
  background: radial-gradient(circle, rgba(184,212,204,0.35), rgba(184,212,204,0) 70%);
}

@keyframes mFloat1 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
  25%  { transform: translate(20px, -30vh) scale(1.2); opacity: 0.8; }
  50%  { transform: translate(-15px, -60vh) scale(0.9); opacity: 0.6; }
  75%  { transform: translate(25px, -85vh) scale(1.1); opacity: 0.4; }
  100% { transform: translate(0, -110vh) scale(1); opacity: 0; }
}

@keyframes mFloat2 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.4; }
  30%  { transform: translate(-25px, -35vh) scale(1.3); opacity: 0.7; }
  60%  { transform: translate(15px, -70vh) scale(0.8); opacity: 0.5; }
  100% { transform: translate(-10px, -110vh) scale(1); opacity: 0; }
}

@keyframes mFloat3 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
  20%  { transform: translate(15px, -25vh) scale(0.85); opacity: 0.9; }
  50%  { transform: translate(-20px, -55vh) scale(1.15); opacity: 0.7; }
  80%  { transform: translate(10px, -85vh) scale(1); opacity: 0.5; }
  100% { transform: translate(0, -110vh) scale(0.9); opacity: 0; }
}

/* ==========================================
   PULSE GLOW — Breathing CTA aura
   ========================================== */

.hero-cta {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2); }
  50% { box-shadow: 0 4px 30px rgba(201, 168, 76, 0.35), 0 0 60px rgba(201, 168, 76, 0.08); }
}

/* ==========================================
   SHIMMER REVEAL — Light sweep on scroll
   ========================================== */

.shimmer-reveal {
  position: relative;
  overflow: hidden;
}

.shimmer-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.04) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  pointer-events: none;
}

.shimmer-reveal.visible::after {
  animation: shimmerSweep 1.2s ease-out forwards;
}

@keyframes shimmerSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ==========================================
   TOUCH RIPPLE — Tap feedback
   ========================================== */

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(61, 191, 163, 0.25);
  transform: scale(0);
  animation: rippleExpand 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleExpand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ==========================================
   STAGGER REVEAL — Children fade in sequence
   ========================================== */

.stagger-children .stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger-children.visible .stagger-item:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible .stagger-item:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible .stagger-item:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.visible .stagger-item:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.visible .stagger-item:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.visible .stagger-item:nth-child(6) { transition-delay: 0.40s; }

.stagger-children.visible .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   HERO TITLE — Smooth word reveal
   ========================================== */

.hero-title {
  font-size: clamp(2.8rem, 8.5vw, 6rem);
  color: var(--frost);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  will-change: opacity, transform;
}

.hero-title.animate .hero-word {
  opacity: 1;
  transform: translateY(0);
}

/* Prismatic block animates as one unit */
.hero-title em.prismatic {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}

.hero-title.animate em.prismatic {
  opacity: 1;
  transform: translateY(0);
}

/* Cascade other hero elements after title finishes */
.hero-inner > .reveal:nth-child(1) { transition-delay: 0s; }
.hero-inner > .reveal:nth-child(2) { transition-delay: 0.5s; }
.hero-inner > .reveal:nth-child(3) { transition-delay: 0.75s; }
.hero-inner > .reveal:nth-child(4) { transition-delay: 0.95s; }
.hero-inner > .reveal:nth-child(5) { transition-delay: 1.15s; }

/* ==========================================
   FLOAT LABEL — Hero label subtle float
   ========================================== */

.hero-label {
  animation: labelFloat 4s ease-in-out infinite;
}

@keyframes labelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ==========================================
   DESKTOP ENHANCEMENTS
   ========================================== */

@media (min-width: 768px) {
  .nav-inner {
    height: 76px;
    padding: 0 40px;
  }

  .nav-logo { font-size: 1.55rem; }

  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .hero { padding: 120px 40px 100px; }

  .value-prop { padding: 100px 40px 120px; }
  .strata-band {
    padding: 80px 48px;
    min-height: 320px;
  }
  .strata-watermark {
    font-size: clamp(10rem, 18vw, 18rem);
    left: 48px;
  }
  .strata-content {
    margin-left: auto;
    margin-right: 48px;
    text-align: right;
  }
  .strata-band:nth-child(3) .strata-content {
    margin-left: 48px;
    margin-right: auto;
    text-align: left;
  }

  .lead-section { padding: 120px 40px; }
  .lead-form { padding: 56px 48px; }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .page-hero { padding: 180px 40px 80px; }

  .about-body { padding: 88px 40px; }

  .values { padding: 88px 40px; }

  .contact-section { padding: 88px 40px; }

  .footer { padding: 64px 40px; }
}

@media (min-width: 1024px) {
  .nav-inner { padding: 0 48px; }
  .hero { padding: 140px 48px 120px; }
  .value-prop { padding: 120px 48px 140px; }
  .strata-band { padding: 100px 64px; min-height: 360px; }
  .lead-section { padding: 140px 48px; }
}
