/* ============================================================================
   PINKY'S PROPERTY MANAGEMENT — STYLE SYSTEM
   - Dark Theme: #0a0a0a / #111111 / #1a1a1a
   - Pink Accent: #ff69b4 (hover: #ff85c2)
   - Spring Green: #22c55e (hover: #16a34a)
   - Winter Blue: #3b82f6 (hover: #2563eb)
   - Fonts: Pacifico (logo script), Montserrat (headings), Nunito Sans (body)
   - Responsive & Mobile-friendly grid layouts
   ========================================================================== */

:root {
  --pink:       #ff69b4;
  --pink-hover: #ff85c2;
  --pink-deep:  #e84a9c;
  --bg:         #0a0a0a;
  --bg-card:    #111111;
  --bg-alt:     #1a1a1a;
  --bg-darker:  #050505;
  --border:     rgba(255,255,255,0.05);
  --border-hover: rgba(255,105,180,0.3);
  --text:       #ffffff;
  --text-dim:   #a3a3a3;
  --maxw:       1400px;
  --radius:     16px;

  --font-logo:  "Pacifico", cursive;
  --font-head:  "Montserrat", system-ui, sans-serif;
  --font-body:  "Nunito Sans", system-ui, sans-serif;
}

/* ---- Base Styles ---- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--pink-hover);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(60px, 8vw, 100px) 0;
}
.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-top: 12px;
}
.section-lead {
  color: var(--text-dim);
  max-width: 700px;
  margin: 16px auto 0;
  font-size: 1.1rem;
}
.eyebrow {
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---- Brand Logo script watermark lock ---- */
.watermark {
  position: relative;
}
.watermark::after {
  content: "Pinky's";
  font-family: var(--font-logo);
  color: rgba(255, 255, 255, 0.08);
  text-shadow: 2px 2px 0px rgba(232, 74, 156, 0.08);
  font-size: 2.2rem;
  position: absolute;
  bottom: 8px;
  right: 12px;
  pointer-events: none;
  z-index: 2;
  transform: rotate(-5deg);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background-color: var(--pink);
  color: #000;
}
.btn-primary:hover {
  background-color: var(--pink-hover);
  box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
}
.btn-ghost {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #fff;
}
.btn-green {
  background-color: #16a34a;
  color: #fff;
}
.btn-green:hover {
  background-color: #22c55e;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}
.btn-blue {
  background-color: #2563eb;
  color: #fff;
}
.btn-blue:hover {
  background-color: #3b82f6;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 0.95rem;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}
.btn-block {
  width: 100%;
}

/* ============================================================================
   UTILITY ANNOUNCEMENT BAR
   ========================================================================== */
.utility-bar {
  background-color: var(--bg-darker);
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-dim);
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.utility-phone {
  color: var(--pink);
  font-weight: 700;
}

/* ============================================================================
   NAVIGATION HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-script {
  font-family: var(--font-logo);
  color: var(--pink);
  font-size: 1.8rem;
  line-height: 1;
}
.brand-sub {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  line-height: 1.2;
}
.main-nav {
  display: none; /* Desktop only flex */
  gap: 24px;
}
.nav-link {
  color: var(--text-dim);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
}
.nav-link:hover {
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}
.nav-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: block; /* Shown on mobile */
}
.mobile-menu {
  display: none;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-dim);
}
.mobile-menu a:hover {
  color: #fff;
}

/* ============================================================================
   GEO-SWITCHER BAR
   ========================================================================== */
.geo-bar {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.geo-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.geo-switcher-list {
  display: flex;
  gap: 12px;
}
.geo-btn {
  background: none;
  border: none;
  color: var(--pink);
  font-weight: 700;
  cursor: pointer;
}
.geo-btn:hover {
  text-decoration: underline;
}

/* ============================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.hero-bg-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}
.hero-spring-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, rgba(20, 61, 39, 0.95), rgba(10, 48, 28, 0.95));
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
  color: #86efac;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px;
  text-align: center;
  z-index: 10;
}
.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: 60px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 span {
  color: var(--pink);
}
.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-dim);
  max-width: 550px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 600px;
}
.hero-trust-badge {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}
.hero-trust-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
}

/* ============================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-value {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--pink);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================================
   PROBLEM SECTION
   ========================================================================== */
.problem-grid {
  display: grid;
  gap: 24px;
}
.problem-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.problem-type {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.1em;
}
.problem-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============================================================================
   SPRING SERVICES
   ========================================================================== */
.spring-services {
  background-color: var(--bg-card);
}
.spring-grid {
  display: grid;
  gap: 24px;
}
.spring-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s ease;
}
.spring-card:hover {
  border-color: rgba(34, 197, 9 green-500, 0.3); /* green border hover */
  border-color: rgba(34, 197, 94, 0.3);
}
.spring-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.spring-card h3 {
  font-size: 1.15rem;
  transition: color 0.25s ease;
}
.spring-card:hover h3 {
  color: #22c55e;
}
.spring-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
}
.spring-foot-info {
  margin-top: 48px;
  text-align: center;
}
.spring-foot-text {
  color: #22c55e;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.spring-foot-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ============================================================================
   SNOW REMOVAL SECTION
   ========================================================================== */
.snow-removal {
  position: relative;
  background-position: center;
  background-size: cover;
}
.snow-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.85);
  z-index: 1;
}
.snow-inner {
  position: relative;
  z-index: 5;
  max-width: 800px;
}
.snow-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0;
}
.snow-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.snow-bullet {
  color: #3b82f6;
  font-size: 1.2rem;
}
.snow-item-text {
  font-size: 0.95rem;
  color: #eaeaea;
}
.snow-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
}
.snow-stats {
  text-align: center;
}
.snow-stat-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}
.snow-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* ============================================================================
   SUCCESS STORY SECTION
   ========================================================================== */
.success-story {
  background-color: var(--bg-card);
}
.success-grid {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.success-desc {
  color: var(--text-dim);
  text-align: center;
  font-size: 1.05rem;
}
.success-points {
  display: grid;
  gap: 12px;
}
.success-point-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius);
}
.success-point-check {
  color: var(--pink);
  font-weight: 900;
}
.success-point-text {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.success-foot-tag {
  text-align: center;
  margin-top: 36px;
}
.success-foot-h3 {
  color: var(--pink);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ============================================================================
   VIDEO SECTION
   ========================================================================== */
.video-section {
  background-color: var(--bg);
}
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.video-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  aspect-ratio: 16/9;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 4px;
}
.video-badge-text {
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.video-caption {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 16px;
}

/* ============================================================================
   TEAM SECTION
   ========================================================================== */
.team-section {
  background-color: var(--bg);
}
.team-intro {
  margin-bottom: 48px;
}
.team-intro h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

/* Jake Spotlight Card */
.spotlight-card {
  border: 1px solid rgba(255, 105, 180, 0.2);
  background-color: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.spotlight-header {
  background-color: var(--pink);
  padding: 8px 24px;
}
.spotlight-header-text {
  color: #000;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.spotlight-media {
  display: grid;
  grid-template-columns: 1fr;
}
.spotlight-img-wrap {
  aspect-ratio: 3/4;
}
.spotlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-quote-overlay {
  position: relative;
  aspect-ratio: 3/4;
}
.spotlight-quote-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.spotlight-quote-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}
.spotlight-quote-motto {
  color: #fff;
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 600;
}
.spotlight-quote-lbl {
  color: var(--pink);
  font-size: 0.7rem;
  margin-top: 4px;
}
.spotlight-info {
  padding: 30px;
  display: flex;
  flex-col: column;
  justify-content: center;
}
.spotlight-name {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
}
.spotlight-title {
  color: var(--pink);
  font-weight: 700;
  font-size: 1.1rem;
}
.spotlight-unit {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-top: 4px;
  text-transform: uppercase;
}
.spotlight-motto-block {
  border-left: 4px solid var(--pink);
  padding-left: 16px;
  margin: 20px 0;
}
.spotlight-motto-txt {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 700;
}
.spotlight-bio {
  font-size: 0.95rem;
  color: var(--text-dim);
}
.spotlight-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.spotlight-tag {
  font-size: 0.7rem;
  border: 1px solid rgba(255, 105, 180, 0.3);
  color: var(--pink);
  padding: 4px 12px;
  border-radius: 99px;
}

/* Roster Cards */
.roster-section-title {
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.roster-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}
.roster-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.roster-card:hover {
  border-color: var(--border-hover);
}
.roster-media {
  position: relative;
  aspect-ratio: 3/4;
}
.roster-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.roster-card:hover .roster-media img {
  transform: scale(1.03);
}
.roster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.roster-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--pink);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.roster-details {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}
.roster-name {
  font-size: 1.25rem;
}
.roster-role {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 2px;
}
.roster-bio {
  padding: 20px;
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* Female Division Rows */
.divisions-header {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 48px;
  margin-bottom: 36px;
}
.divisions-header h3 {
  font-size: 1.5rem;
}
.divisions-header p {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.divisions-list {
  display: grid;
  gap: 36px;
}
.division-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.division-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--border);
}
.division-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.division-copy {
  border-left: 4px solid var(--pink);
  padding-left: 20px;
}
.division-name {
  font-size: 1.5rem;
}
.division-tagline {
  color: var(--pink);
  font-weight: 600;
  font-size: 1.05rem;
}
.division-subtitle {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-style: italic;
}
.division-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-top: 12px;
}

/* Team Recognition & Collage Grid */
.recognition-header {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 24px;
}
.recognition-header span {
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.recognition-header h3 {
  font-size: 1.5rem;
}
.collage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.collage-full {
  width: 100%;
}
.collage-full img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.collage-relative {
  position: relative;
  width: 100%;
}
.collage-relative img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.collage-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 16px;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.collage-overlay-tag {
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.collage-overlay-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.collage-split-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.collage-split-3 .img-item {
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.collage-split-3 .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collage-split-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.collage-split-2 .img-item {
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.collage-split-2 .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
  background-color: var(--bg-card);
}
.quotes-grid {
  display: grid;
  gap: 24px;
}
.quote-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s ease;
}
.quote-card:hover {
  border-color: var(--border-hover);
}
.quote-stars {
  color: var(--pink);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.quote-text {
  font-size: 0.95rem;
  color: #eaeaea;
  font-style: italic;
  margin-bottom: 16px;
}
.quote-author {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.quote-author-name {
  font-size: 0.85rem;
  font-weight: 700;
}
.quote-author-loc {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ============================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contact-left {
  display: flex;
  flex-direction: column;
}
.contact-checklist {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.contact-check-item span {
  color: var(--pink);
}
.contact-info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-detail-lbl {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-detail-val {
  font-size: 0.95rem;
  font-weight: 700;
}

/* ============================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta {
  background: linear-gradient(to bottom, var(--bg), #1a0a10);
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}
.final-cta h2 span {
  color: var(--pink);
}
.final-cta p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 16px auto 32px;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.final-cta-motto {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 600;
  margin-top: 36px;
}

/* ============================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  font-family: var(--font-logo);
  color: var(--pink);
  font-size: 1.8rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 10px;
  max-width: 300px;
}
.footer-brand .footer-motto {
  color: var(--pink);
  font-style: italic;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 12px;
}
.footer-col h4 {
  font-size: 0.75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
}
.footer-links a {
  color: var(--text-dim);
}
.footer-links a:hover {
  color: var(--pink);
}
.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.85rem;
}
.footer-loc {
  display: flex;
  flex-direction: column;
}
.footer-loc-name {
  font-weight: 700;
  color: #fff;
}
.footer-loc-name span {
  color: var(--pink);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  margin-left: 6px;
}
.footer-loc-addr {
  color: var(--text-dim);
  margin-top: 2px;
}
.footer-loc-phone {
  color: var(--pink);
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer-trust-list {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (min-width: 640px) {
  .hero-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .spring-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .snow-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .success-points {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spotlight-info {
    order: 2;
  }
  .spotlight-media {
    order: 1;
    grid-template-columns: 1fr;
  }
  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collage-grid {
    grid-template-columns: 1fr;
  }
  .quotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  .main-nav {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .spring-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .snow-features {
    grid-template-columns: repeat(3, 1fr);
  }
  .roster-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .division-row {
    grid-template-columns: 1fr 1fr;
  }
  .division-row:nth-child(even) .division-media {
    order: 2;
  }
  .division-row:nth-child(even) .division-copy {
    order: 1;
  }
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

/* ============================================================================
   TAILWIND UTILITY COMPATIBILITY LAYER
   ========================================================================== */

/* Layout & Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.bottom-3 { bottom: 0.75rem; }
.left-3 { left: 0.75rem; }
.right-3 { right: 0.75rem; }
.-left-2 { left: -0.5rem; }
.-top-4 { top: -1rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-h-\[500px\] { max-height: 500px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Display & Flex/Grid */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.inline-block { display: inline-block; }
.items-center { align-items: center; }
.gap-3 { gap: 0.75rem; }
.grid { display: grid; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.aspect-square { aspect-ratio: 1 / 1; }

/* Spacing (Margins & Paddings) */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.pt-10 { padding-top: 2.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }

/* Typography */
.font-head, .font-\[\'Montserrat\'\] { font-family: var(--font-head); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-700 { font-weight: 700; }
.font-800 { font-weight: 800; }
.font-900 { font-weight: 900; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.text-center { text-align: center; }

/* Font Sizes */
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-6xl { font-size: 3.75rem; }

/* Colors & Backgrounds */
.text-white { color: #ffffff; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-\[\#ff69b4\] { color: #ff69b4; }
.text-\[\#ff69b4\]\/10 { color: rgba(255, 105, 180, 0.1); }
.text-red-500 { color: #ef4444; }
.text-blue-400 { color: #60a5fa; }

.bg-\[\#0a0a0a\] { background-color: #0a0a0a; }
.bg-\[\#111\] { background-color: #111111; }
.bg-\[\#1a1a1a\] { background-color: #1a1a1a; }
.bg-\[\#ff69b4\] { background-color: var(--pink); }
.bg-\[\#ff69b4\]\/10 { background-color: rgba(255, 105, 180, 0.1); }
.bg-black\/75 { background-color: rgba(0, 0, 0, 0.75); }

/* Borders & Rounding */
.border { border: 1px solid transparent; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Transitions & Animations */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.opacity-0 { opacity: 0; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.05\] { line-height: 1.05; }

/* Gradients */
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-black\/80 {
  --tw-gradient-from: rgba(0, 0, 0, 0.8);
  --tw-gradient-to: rgba(0, 0, 0, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-transparent {
  --tw-gradient-to: rgba(0, 0, 0, 0);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0), var(--tw-gradient-to);
}
.to-transparent {
  --tw-gradient-to: transparent;
}

/* Hovers & Interactive States */
.hover\:border-\[\#ff69b4\]\/30:hover { border-color: rgba(255, 105, 180, 0.3); }
.hover\:text-\[\#ff69b4\]:hover { color: #ff69b4; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:underline:hover { text-decoration: underline; }

/* Group Hover System */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-110 { transform: scale(1.10); }

/* Responsive utility helpers */
@media (min-width: 640px) {
  .sm\:text-3xl { font-size: 1.875rem; }
  .sm\:text-4xl { font-size: 2.25rem; }
  .sm\:text-5xl { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .lg\:text-6xl { font-size: 3.75rem; }
}

/* Extra grid and padding utilities */
.col-span-full { grid-column: 1 / -1; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

