/* ===== EDGELINK SITE — SHARED STYLES ===== */
:root {
  /* Core purples */
  --purple-deep: #4A1B5C;
  --purple-mid: #5F249F;
  --purple-soft: #B47CD9;
  --purple-tint: #E5D4F0;
  --lavender-bg: #F8F4FB;
  --lavender-soft: #FBF8FD;

  /* Bold accents — more pop */
  --magenta: #E20074;
  --hot-pink: #FF4081;
  --pink-soft: #FFB4D9;
  --peach: #FF8C7A;
  --peach-soft: #FFD4CC;
  --gold: #FBBF24;
  --gold-soft: #FEF3C7;
  --teal: #14B8A6;

  /* Base */
  --plum: #2D0047;
  --ink: #1A0A2E;
  --gray-text: #6B5B7B;
  --white: #FFFFFF;
  --border: #EDE3F2;

  /* Gradients */
  --gradient-bold: linear-gradient(135deg, #E20074 0%, #5F249F 50%, #4A1B5C 100%);
  --gradient-warm: linear-gradient(135deg, #FF4081 0%, #E20074 50%, #5F249F 100%);
  --gradient-sunset: linear-gradient(135deg, #FBBF24 0%, #FF8C7A 40%, #E20074 100%);
  --gradient-cool: linear-gradient(135deg, #5F249F 0%, #B47CD9 100%);

  --shadow-sm: 0 2px 8px rgba(74, 27, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(74, 27, 92, 0.10);
  --shadow-lg: 0 20px 60px rgba(74, 27, 92, 0.14);
  --shadow-phone: 0 30px 80px rgba(74, 27, 92, 0.30);
  --shadow-glow: 0 0 40px rgba(226, 0, 116, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* ===== NAV ===== */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.logo-text {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600;
  color: var(--plum); letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple-mid); }
.nav-cta {
  background: var(--purple-mid); color: var(--white) !important;
  padding: 10px 22px; border-radius: 999px; transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--purple-deep); transform: translateY(-1px); box-shadow: var(--shadow-md);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.25s; border: none; cursor: pointer; font-family: inherit;
}
.btn-primary {
  background: var(--gradient-warm);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(226, 0, 116, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(226, 0, 116, 0.4);
  filter: brightness(1.05);
}
.btn-ghost {
  background: transparent; color: var(--plum); border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--purple-mid); color: var(--purple-mid); }
.btn-light { background: var(--white); color: var(--plum); }
.btn-light:hover {
  background: var(--lavender-bg); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ===== TYPOGRAPHY HELPERS ===== */
h1, h2, h3, h4 { color: var(--plum); letter-spacing: -0.02em; }
h1 em, h2 em { font-style: italic; color: var(--purple-mid); font-weight: 400; }
.section-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--purple-mid); margin-bottom: 16px;
}
h2.section-h {
  font-family: 'Fraunces', serif; font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 500; line-height: 1.1; margin-bottom: 24px; max-width: 720px;
}
.section-lead {
  font-size: 18px; color: var(--gray-text);
  max-width: 640px; margin-bottom: 64px; line-height: 1.65;
}

/* ===== SECTIONS ===== */
section { padding: 120px 40px; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }

/* ===== HERO ===== */
.hero {
  position: relative; padding: 160px 40px 120px;
  background: linear-gradient(135deg, var(--lavender-soft) 0%, var(--white) 50%, var(--lavender-bg) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 64, 129, 0.18) 0%, rgba(180, 124, 217, 0.3) 40%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(226, 0, 116, 0.18) 40%, transparent 70%);
  border-radius: 50%;
}
.hero-extra-blob {
  position: absolute; top: 30%; left: 40%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 140, 122, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--purple-mid);
  background: rgba(180, 124, 217, 0.12);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--magenta);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500; line-height: 1.05;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px; color: var(--gray-text);
  margin-bottom: 32px; max-width: 540px; line-height: 1.65;
}
.hero-stats {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px;
}
.hero-pill {
  background: var(--white); border: 1px solid var(--border);
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--plum);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.2s;
}
.hero-pill:nth-child(1) strong { color: var(--magenta); }
.hero-pill:nth-child(2) strong { color: var(--purple-mid); }
.hero-pill:nth-child(3) strong { color: var(--hot-pink); }
.hero-pill strong { font-weight: 700; margin-right: 4px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative; max-width: 480px; margin-left: auto;
  border-radius: 24px; overflow: hidden;
}
.hero-image-wrap img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-lg); }

/* ===== HERO PHONE MOCKUP (default when no image) ===== */
.phone-stage {
  position: relative; width: 100%; max-width: 480px;
  margin-left: auto; aspect-ratio: 1;
}
.phone {
  position: absolute; width: 280px; height: 580px;
  background: linear-gradient(145deg, #1a0a2e 0%, #2d0047 100%);
  border-radius: 48px; padding: 12px;
  box-shadow: var(--shadow-phone);
}
.phone-front {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  z-index: 3;
  animation: phoneFloat 6s ease-in-out infinite;
}
.phone-back {
  top: 45%; left: 65%;
  transform: translate(-50%, -50%) rotate(8deg) scale(0.85);
  z-index: 1; opacity: 0.85;
  animation: phoneFloatBack 7s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-4deg) translateY(-12px); }
}
@keyframes phoneFloatBack {
  0%, 100% { transform: translate(-50%, -50%) rotate(8deg) scale(0.85) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(8deg) scale(0.85) translateY(-8px); }
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #5F249F 0%, #4A1B5C 100%);
  border-radius: 38px; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 28px; background: #000; border-radius: 999px; z-index: 5;
}
.phone-content {
  flex: 1; padding: 56px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.phone-eyebrow-mini {
  color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.phone-headline {
  font-family: 'Fraunces', serif; color: white; font-size: 26px;
  font-weight: 500; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.phone-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; padding: 14px; color: white;
}
.phone-card-row {
  display: flex; justify-content: space-between; align-items: center;
}
.phone-card-label { font-size: 11px; opacity: 0.7; }
.phone-card-value { font-size: 13px; font-weight: 600; }
.phone-team-row {
  display: flex; align-items: center; gap: 10px;
}
.phone-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-soft), var(--magenta));
  flex-shrink: 0;
}
.phone-avatar-stack {
  display: flex; margin-left: 4px;
}
.phone-avatar-stack .phone-avatar {
  margin-left: -10px; border: 2px solid var(--purple-deep);
}
.phone-stat-bubble {
  position: absolute; background: white;
  padding: 14px 20px; border-radius: 16px;
  box-shadow: var(--shadow-lg); z-index: 4;
  border: 1px solid var(--border);
}
.bubble-top {
  top: 8%; right: 8%;
  animation: bubbleFloat1 5s ease-in-out infinite;
}
.bubble-bottom {
  bottom: 12%; left: 0;
  animation: bubbleFloat2 6s ease-in-out infinite;
}
@keyframes bubbleFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes bubbleFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.bubble-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--purple-mid); font-weight: 600; margin-bottom: 2px;
}
.bubble-value {
  font-family: 'Fraunces', serif; font-size: 18px;
  font-weight: 600; color: var(--plum);
}

/* ===== STATS STRIP ===== */
.stats-strip {
  padding: 80px 40px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 64, 129, 0.04) 25%, rgba(95, 36, 159, 0.04) 50%, rgba(251, 191, 36, 0.04) 75%, transparent 100%);
  pointer-events: none;
}
.stats-grid {
  max-width: 1280px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.stat-num {
  font-family: 'Fraunces', serif; font-size: 56px; font-weight: 500;
  letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-warm);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-grid > div:nth-child(2) .stat-num { background: var(--gradient-cool); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stats-grid > div:nth-child(3) .stat-num { background: var(--gradient-sunset); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stats-grid > div:nth-child(4) .stat-num { background: linear-gradient(135deg, var(--teal) 0%, var(--purple-mid) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 14px; color: var(--gray-text); font-weight: 500; }

/* ===== ABOUT ===== */
.about { background: var(--lavender-soft); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image {
  position: relative; aspect-ratio: 4/5;
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-deep) 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-image-pattern {
  position: absolute; inset: 0; opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 30%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, var(--white) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
}
.about-quote {
  color: var(--white); text-align: center; padding: 40px;
  position: relative; z-index: 2;
}
.quote-mark {
  font-family: 'Fraunces', serif; font-size: 100px; line-height: 0.5;
  color: var(--purple-soft); margin-bottom: 32px;
}
.quote-text {
  font-family: 'Fraunces', serif; font-size: 26px; font-weight: 400;
  line-height: 1.3; letter-spacing: -0.01em;
}

/* ===== SERVICES / VALUES CARDS ===== */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
}
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 32px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-warm);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.cards-grid > .card:nth-child(2)::before { background: var(--gradient-sunset); }
.cards-grid > .card:nth-child(3)::before { background: var(--gradient-cool); }
.cards-grid > .card:nth-child(4)::before { background: linear-gradient(90deg, var(--teal), var(--purple-mid)); }
.card:hover {
  border-color: var(--purple-soft); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-tint), var(--lavender-bg));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.cards-grid > .card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, var(--peach-soft), var(--gold-soft));
}
.cards-grid > .card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, var(--pink-soft), var(--purple-tint));
}
.cards-grid > .card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, #CFFAFE, var(--purple-tint));
}
.card-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--purple-mid); margin-bottom: 12px;
}
.cards-grid > .card:nth-child(2) .card-eyebrow { color: var(--magenta); }
.cards-grid > .card:nth-child(3) .card-eyebrow { color: var(--hot-pink); }
.cards-grid > .card:nth-child(4) .card-eyebrow { color: var(--teal); }
.card h3 {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500;
  color: var(--plum); margin-bottom: 12px;
}
.card p { color: var(--gray-text); font-size: 15px; line-height: 1.6; }

/* ===== LOCATIONS ===== */
.locations-bg { background: var(--lavender-bg); }
.states-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 48px;
}
/* When state cards have stores listed, use a wider 3-col layout */
.states-row.with-stores {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.state-card {
  background: var(--white); border-radius: 16px;
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--border); transition: all 0.25s;
}
.state-card.has-stores {
  text-align: left;
  padding: 28px 28px 24px;
}
.state-card:hover {
  border-color: var(--purple-soft); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.state-abbr {
  font-family: 'Fraunces', serif; font-size: 36px;
  font-weight: 600; letter-spacing: -0.02em; line-height: 1;
  background: var(--gradient-warm);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.states-row > .state-card:nth-child(2) .state-abbr { background: var(--gradient-cool); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.states-row > .state-card:nth-child(3) .state-abbr { background: var(--gradient-sunset); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.states-row > .state-card:nth-child(4) .state-abbr { background: linear-gradient(135deg, var(--teal), var(--purple-mid)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.states-row > .state-card:nth-child(5) .state-abbr { background: linear-gradient(135deg, var(--hot-pink), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.state-name {
  font-size: 13px; color: var(--gray-text);
  margin-top: 8px; font-weight: 500;
}
.state-card.has-stores .state-header {
  display: flex; align-items: baseline; gap: 12px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.state-card.has-stores .state-abbr { font-size: 32px; }
.state-card.has-stores .state-name {
  margin-top: 0;
  font-size: 14px; color: var(--plum); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.state-card.has-stores .state-count {
  margin-left: auto;
  font-size: 11px; color: var(--purple-mid); font-weight: 600;
  background: var(--purple-tint);
  padding: 4px 10px; border-radius: 999px;
}
.store-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.store-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--plum);
}
.store-item::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--magenta);
  margin-top: 7px;
}
.store-name { font-weight: 500; }
.store-address {
  display: block; font-size: 12px;
  color: var(--gray-text); margin-top: 2px;
  font-weight: 400;
}
.store-empty {
  font-size: 13px; color: var(--gray-text);
  font-style: italic;
}

/* ===== CAREERS CALLOUT ===== */
.callout-section { padding: 120px 40px; background: var(--white); }
.callout-card {
  max-width: 1280px; margin: 0 auto;
  background: linear-gradient(135deg, var(--plum) 0%, var(--purple-deep) 60%, var(--purple-mid) 100%);
  border-radius: 32px; padding: 80px 64px;
  position: relative; overflow: hidden; color: var(--white);
}
.callout-card::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(226, 0, 116, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.callout-card::after {
  content: ''; position: absolute; bottom: -100px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(180, 124, 217, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.callout-content { position: relative; z-index: 2; max-width: 720px; }
.callout-eyebrow {
  color: var(--purple-soft); font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px;
}
.callout-card h2 {
  color: var(--white); margin-bottom: 20px;
  font-family: 'Fraunces', serif; font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 500; line-height: 1.1;
}
.callout-card h2 em { color: var(--purple-soft); font-style: italic; }
.callout-card p {
  font-size: 18px; color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px; max-width: 580px;
}

/* ===== CAREERS PAGE — GROWTH PATH ===== */
.growth-path {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 64px; position: relative;
}
.growth-step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 24px;
  position: relative; transition: all 0.3s;
}
.growth-step:hover {
  border-color: var(--purple-soft);
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.growth-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--purple-deep));
  color: white; font-family: 'Fraunces', serif; font-size: 18px;
  font-weight: 600; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(226, 0, 116, 0.25);
}
.growth-path > .growth-step:nth-child(2) .growth-step-num { background: linear-gradient(135deg, var(--hot-pink), var(--magenta)); box-shadow: 0 6px 20px rgba(255, 64, 129, 0.3); }
.growth-path > .growth-step:nth-child(3) .growth-step-num { background: linear-gradient(135deg, var(--peach), var(--hot-pink)); box-shadow: 0 6px 20px rgba(255, 140, 122, 0.3); }
.growth-path > .growth-step:nth-child(4) .growth-step-num { background: linear-gradient(135deg, var(--gold), var(--peach)); box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3); }
.growth-step h3 {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500;
  margin-bottom: 4px;
}
.growth-step-sub {
  font-size: 12px; color: var(--purple-mid); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.growth-step p { color: var(--gray-text); font-size: 14px; line-height: 1.6; }

/* ===== BENEFITS LIST ===== */
.benefits-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 48px;
  max-width: 860px;
}
.benefit-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.2s;
}
.benefit-item:hover {
  border-color: var(--purple-soft); transform: translateX(4px);
}
.benefit-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-tint), var(--purple-soft));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--purple-deep);
}
.benefit-text { font-size: 15px; font-weight: 500; color: var(--plum); }

/* ===== APPLICATION PROCESS STEPS ===== */
.app-process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 64px;
}
.app-step {
  text-align: left; position: relative;
}
.app-step-num {
  font-family: 'Fraunces', serif; font-size: 72px;
  font-weight: 500; line-height: 1;
  background: var(--gradient-warm);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.app-process > .app-step:nth-child(2) .app-step-num { background: var(--gradient-sunset); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.app-process > .app-step:nth-child(3) .app-step-num { background: linear-gradient(135deg, var(--teal), var(--purple-mid)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.app-process > .app-step:nth-child(4) .app-step-num { background: var(--gradient-cool); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.app-step h3 {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500;
  margin-bottom: 8px;
}
.app-step p { color: var(--gray-text); font-size: 14px; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--lavender-soft); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
}
.testimonial {
  background: var(--white); border-radius: 20px;
  padding: 36px 32px; border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-soft);
}
.testimonial-photo {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--white);
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(74, 27, 92, 0.15);
}
.testimonial-photo-placeholder {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gradient-warm);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600;
  box-shadow: 0 4px 12px rgba(226, 0, 116, 0.25);
}
.testimonials-grid > .testimonial:nth-child(2) .testimonial-photo-placeholder { background: var(--gradient-sunset); box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3); }
.testimonials-grid > .testimonial:nth-child(3) .testimonial-photo-placeholder { background: linear-gradient(135deg, var(--teal), var(--purple-mid)); box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3); }
.testimonial-quote {
  font-family: 'Fraunces', serif; font-size: 18px;
  line-height: 1.5; color: var(--plum); margin-bottom: 24px;
  font-style: italic;
}
.testimonial-quote::before {
  content: '"'; font-size: 48px; line-height: 0;
  color: var(--purple-soft); margin-right: 4px;
  vertical-align: -16px;
}
.testimonial-name {
  font-weight: 600; color: var(--plum); font-size: 14px;
}
.testimonial-role {
  font-size: 12px; color: var(--magenta);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 4px;
  font-weight: 600;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--lavender-bg) 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; top: 20%; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 64, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-section::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(95, 36, 159, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; margin-top: 56px;
  align-items: start;
}
.contact-info {
  display: flex; flex-direction: column; gap: 20px;
}
.contact-info-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex; gap: 16px;
  align-items: flex-start;
  transition: all 0.2s;
}
.contact-info-item:hover {
  border-color: var(--purple-soft);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient-warm);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(226, 0, 116, 0.25);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: 11px; color: var(--purple-mid);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; margin-bottom: 4px;
}
.contact-info-value {
  color: var(--plum); font-weight: 500; font-size: 15px;
  text-decoration: none;
}
.contact-info-value:hover { color: var(--magenta); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.contact-form-field { margin-bottom: 16px; }
.contact-form-field label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--purple-mid); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.contact-form-field label .req { color: var(--magenta); }
.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 15px; font-family: inherit;
  background: var(--lavender-soft);
  color: var(--plum);
  transition: all 0.2s;
}
.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  background: white;
  box-shadow: 0 0 0 4px rgba(226, 0, 116, 0.1);
}
.contact-form-field textarea {
  min-height: 130px; resize: vertical; line-height: 1.5;
}
.contact-submit {
  width: 100%; padding: 16px 24px;
  border: none; border-radius: 999px;
  background: var(--gradient-warm);
  color: white; font-size: 15px; font-weight: 600;
  font-family: inherit;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(226, 0, 116, 0.25);
}
.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(226, 0, 116, 0.4);
  filter: brightness(1.05);
}
.contact-submit:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none;
}
.contact-status {
  margin-top: 16px; padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  display: none;
}
.contact-status.show { display: block; }
.contact-status.success {
  background: #DCFCE7; color: #15803D;
  border: 1px solid #86EFAC;
}
.contact-status.error {
  background: #FEE2E2; color: #B91C1C;
  border: 1px solid #FCA5A5;
}
.contact-notice {
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  color: #92400E;
  padding: 14px 18px; border-radius: 10px;
  font-size: 13px; line-height: 1.5;
  margin-bottom: 20px;
}

/* ===== NEWS / ANNOUNCEMENTS ===== */
.news-section { background: var(--white); position: relative; overflow: hidden; }
.news-section::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
  position: relative;
}
.news-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: all 0.3s;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-soft);
}
.news-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--gradient-cool);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-img-placeholder {
  width: 100%; height: 100%;
  background: var(--gradient-warm);
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.news-grid > .news-card:nth-child(2) .news-img-placeholder { background: var(--gradient-sunset); }
.news-grid > .news-card:nth-child(3) .news-img-placeholder { background: linear-gradient(135deg, var(--teal), var(--purple-mid)); }
.news-img-placeholder svg { width: 60px; height: 60px; opacity: 0.85; }
.news-body {
  padding: 24px 28px 28px;
  flex: 1; display: flex; flex-direction: column;
}
.news-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.news-category {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--magenta);
  background: rgba(226, 0, 116, 0.08);
  padding: 4px 10px; border-radius: 999px;
}
.news-date {
  font-size: 12px; color: var(--gray-text); font-weight: 500;
}
.news-title {
  font-family: 'Fraunces', serif; font-size: 20px;
  font-weight: 500; color: var(--plum);
  line-height: 1.3; margin-bottom: 12px;
}
.news-summary {
  color: var(--gray-text); font-size: 14px;
  line-height: 1.6; margin-bottom: 16px;
  flex: 1;
}
.news-read-more {
  color: var(--magenta); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 4px;
}

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 56px;
  max-width: 880px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
}
.faq-item[open] {
  border-color: var(--purple-soft);
  box-shadow: var(--shadow-md);
  background: var(--lavender-soft);
}
.faq-item summary {
  padding: 22px 28px;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--plum);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gradient-warm);
  position: relative;
  transition: transform 0.25s;
}
.faq-item summary::before {
  content: '+';
  position: absolute; right: 36px;
  color: white; font-size: 20px;
  font-weight: 600; line-height: 32px;
  z-index: 2;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 28px 24px;
  color: var(--gray-text); font-size: 15px;
  line-height: 1.7;
}

/* ===== JOBS / OPEN POSITIONS ===== */
.jobs-section { background: var(--white); position: relative; overflow: hidden; }
.jobs-section::before {
  content: ''; position: absolute; top: 10%; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(226, 0, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.jobs-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 0 0 32px 0;
}
.jobs-filter-btn {
  padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white); color: var(--plum);
  font-size: 13px; font-weight: 600;
  font-family: inherit; cursor: pointer;
  transition: all 0.2s;
}
.jobs-filter-btn:hover { border-color: var(--purple-soft); color: var(--purple-mid); }
.jobs-filter-btn.active {
  background: var(--gradient-warm);
  color: white; border-color: transparent;
  box-shadow: 0 4px 12px rgba(226, 0, 116, 0.25);
}
.jobs-filter-count {
  font-size: 11px; margin-left: 6px;
  opacity: 0.75; font-weight: 500;
}
.jobs-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.job-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  transition: all 0.25s;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-warm);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.job-card:hover {
  border-color: var(--purple-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.job-card:hover::before { transform: scaleX(1); }
.job-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; margin-bottom: 16px;
}
.job-state-badge {
  flex-shrink: 0;
  font-family: 'Fraunces', serif; font-size: 22px;
  font-weight: 600; line-height: 1;
  background: var(--gradient-warm);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 6px 12px;
  border: 2px solid var(--purple-tint);
  border-radius: 10px;
}
.job-title {
  font-family: 'Fraunces', serif; font-size: 20px;
  font-weight: 500; color: var(--plum);
  line-height: 1.25; margin-bottom: 4px;
}
.job-store {
  font-size: 13px; color: var(--magenta);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.job-meta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.job-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray-text);
}
.job-meta svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--purple-mid);
}
.job-meta strong { color: var(--plum); font-weight: 600; }
.job-summary {
  color: var(--gray-text); font-size: 14px;
  line-height: 1.6; margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-actions {
  display: flex; gap: 10px; align-items: center;
  margin-top: auto;
}
.job-apply-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 999px;
  background: var(--gradient-warm); color: white;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(226, 0, 116, 0.2);
  transition: all 0.2s;
  flex: 1;
  text-align: center;
  justify-content: center;
}
.job-apply-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(226, 0, 116, 0.35);
  filter: brightness(1.05);
}
.job-details-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 16px; border-radius: 999px;
  background: transparent; color: var(--plum);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.job-details-btn:hover {
  border-color: var(--purple-mid);
  color: var(--purple-mid);
}
.jobs-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 60px 24px;
  background: var(--lavender-soft);
  border-radius: 16px;
  color: var(--gray-text);
  font-size: 15px;
  border: 1px dashed var(--border);
}
.jobs-empty strong { color: var(--plum); display: block; margin-bottom: 8px; font-size: 18px; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }

/* Honor user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--lavender-soft);
  padding: 80px 40px 32px; border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; padding-bottom: 56px; border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  color: var(--gray-text); font-size: 14px; line-height: 1.7; max-width: 320px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex; gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple-mid); transition: all 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--gradient-warm); color: white; border-color: transparent;
  transform: translateY(-2px); box-shadow: 0 6px 16px rgba(226, 0, 116, 0.3);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600;
  color: var(--plum); margin-bottom: 20px;
}
.footer-col a {
  display: block; color: var(--gray-text); text-decoration: none;
  font-size: 14px; margin-bottom: 12px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--purple-mid); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--gray-text); font-size: 13px;
}

/* ===== UTILITY ===== */
.hidden { display: none !important; }
.loading {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; color: var(--gray-text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { padding: 120px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .phone-stage { max-width: 320px; margin: 0 auto; }
  .phone { width: 220px; height: 460px; }
  .stats-strip { padding: 60px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  section { padding: 80px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .cards-grid, .cards-grid.cols-4 { grid-template-columns: 1fr; }
  .states-row { grid-template-columns: repeat(2, 1fr); }
  .states-row.with-stores { grid-template-columns: 1fr; }
  .growth-path { grid-template-columns: 1fr; }
  .app-process { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .benefits-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px 24px; }
  .contact-form-row { grid-template-columns: 1fr; gap: 0; }
  .news-grid { grid-template-columns: 1fr; gap: 20px; }
  .jobs-list { grid-template-columns: 1fr; }
  .jobs-filter { gap: 6px; }
  .jobs-filter-btn { padding: 6px 12px; font-size: 12px; }
  .job-card { padding: 22px; }
  .faq-item summary { padding: 18px 22px; font-size: 16px; }
  .faq-item summary::before { right: 28px; }
  .faq-answer { padding: 0 22px 20px; }
  .callout-section { padding: 80px 24px; }
  .callout-card { padding: 56px 32px; }
  footer { padding: 60px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
