/*
Theme Name: Kangen Stuart
Theme URI: https://kangenwaterstuart.com
Author: Kangen Stuart
Author URI: https://kangenwaterstuart.com
Description: Premium alkaline water, Kangen water ionizers, whole-house filtration, and wellness solutions for Florida's Treasure Coast. Custom WordPress theme for Kangen Water Stuart.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kangen-stuart
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready
*/

/* ========== CSS VARIABLES ========== */
:root {
  --primary: #00B4D8;
  --primary-dark: #0096B7;
  --navy: #0A1628;
  --navy-2: #112240;
  --cyan: #00C9E8;
  --silver: #B9C2CC;
  --foreground: #1A2B3A;
  --muted: #64748B;
  --border: #E2E8F0;
  --secondary-bg: #F3F7FA;
  --accent-bg: #E0F7FA;
  --white: #FFFFFF;
  --shadow-soft: 0 10px 30px rgba(10,22,40,0.08);
  --shadow-card: 0 8px 24px rgba(10,22,40,0.10);
  --container-max: 1120px;
  --radius: 0.75rem;
  --waterline: linear-gradient(90deg, rgba(0,180,216,0), rgba(0,180,216,0.85), rgba(0,180,216,0));
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--foreground);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.2;
  color: var(--navy);
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

.section { padding: clamp(2.25rem, 4vw, 4rem) 0; }

.waterline {
  height: 1px;
  background: var(--waterline);
  width: 100%;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: var(--secondary-bg); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: #F0F0F0; color: var(--navy); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 3px rgba(10,22,40,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
}
@media (min-width: 768px) { .header-inner { height: 9rem; } }
.header-logo img { height: 5rem; width: auto; }
@media (min-width: 768px) { .header-logo img { height: 7rem; } }

/* Nav */
.main-nav { display: none; }
@media (min-width: 1024px) { .main-nav { display: flex; align-items: center; gap: 0.25rem; } }
.main-nav a, .main-nav .nav-dropdown-trigger {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a:hover, .main-nav .nav-dropdown-trigger:hover { color: var(--primary); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 16rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(10,22,40,0.12);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  z-index: 200;
  max-height: 70vh;
  overflow-y: auto;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
}
.nav-dropdown-menu a:hover { background: var(--accent-bg); }
.nav-dropdown-label {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}
@media (min-width: 768px) { .header-phone { display: flex; } }

/* Mobile menu */
.mobile-toggle { display: flex; padding: 0.5rem; background: none; border: none; cursor: pointer; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding-bottom: 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  border-radius: 0.5rem;
}
.mobile-nav a:hover { background: var(--accent-bg); }
.mobile-nav-label {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}

/* ========== HERO ========== */
.hero-gradient {
  background: radial-gradient(900px circle at 10% 0%, rgba(0,180,216,0.14), transparent 55%), radial-gradient(700px circle at 90% 10%, rgba(16,185,129,0.08), transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.hero-content { padding: 2rem 0; }
@media (min-width: 1024px) { .hero-content { padding: 4rem 0; } }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-bg);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }
.hero-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(10,22,40,0.12);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.hero-meta a { color: var(--muted); }
.hero-meta a:hover { color: var(--primary); }

/* ========== CARDS ========== */
.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}
.service-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.service-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--primary);
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
  margin-bottom: 0.75rem;
}
.service-card .card-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* City cards */
.city-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.city-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.city-card-image { height: 11rem; overflow: hidden; }
.city-card-image img { width: 100%; height: 100%; object-fit: cover; }
.city-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.city-card-county { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.25rem; }
.city-card-county svg { display: inline; vertical-align: middle; }
.city-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.city-card p { font-size: 0.75rem; color: var(--muted); flex: 1; margin-bottom: 0.5rem; }
.city-card .card-link { font-size: 0.75rem; font-weight: 500; color: var(--primary); }

/* ========== SECTION STYLES ========== */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 600; margin-bottom: 0.75rem; }
.section-header p { color: var(--muted); max-width: 42rem; margin: 0 auto; }

.bg-secondary { background: var(--secondary-bg); }
.bg-navy { background: var(--navy); color: var(--white); }

/* Split layout */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) { .split-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.split-grid img { border-radius: 1rem; box-shadow: 0 20px 60px rgba(10,22,40,0.12); }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.feature-list li svg { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }

/* CTA Banner */
.cta-banner {
  background: var(--navy);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--white);
}
@media (min-width: 768px) { .cta-banner { padding: 3rem; } }
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 1.875rem); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* ========== FOOTER ========== */
.site-footer {
  background: linear-gradient(180deg, var(--navy) 0%, rgba(10,22,40,0.94) 35%, var(--navy) 100%);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}
@media (min-width: 768px) { .site-footer { padding: 4rem 0 1.5rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.footer-logo img { height: 3.5rem; width: auto; margin-bottom: 1rem; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 1rem; }
.footer-contact { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-contact p { margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--primary); }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom-left { display: flex; align-items: center; gap: 0.75rem; }
.footer-bottom-left img { height: 2rem; width: auto; opacity: 0.6; }
.footer-bottom-left p, .footer-bottom-right { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ========== PAGE HERO ========== */
.page-hero {
  background: radial-gradient(900px circle at 10% 0%, rgba(0,180,216,0.14), transparent 55%), radial-gradient(700px circle at 90% 10%, rgba(16,185,129,0.08), transparent 60%);
  padding: clamp(2.25rem, 4vw, 4rem) 0;
}
.breadcrumb { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 0.5rem; }
.page-hero h1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.page-hero p { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 48rem; }
@media (min-width: 768px) { .page-hero p { font-size: 1.125rem; } }

/* ========== CONTENT LAYOUT ========== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .content-grid { grid-template-columns: 2fr 1fr; gap: 3rem; } }

.sticky-sidebar { position: sticky; top: 6rem; }
.sidebar-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--white);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.sidebar-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.sidebar-card .subtitle { font-size: 0.75rem; color: var(--muted); margin-bottom: 1rem; }

/* ========== FORMS ========== */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.25rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.15);
}
.form-textarea { resize: vertical; min-height: 5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-success {
  text-align: center;
  padding: 2rem;
}
.form-success svg { color: #22C55E; margin: 0 auto 0.75rem; }
.form-error { color: #EF4444; font-size: 0.75rem; margin-top: 0.25rem; }

/* ========== LOCATION PAGE ========== */
.location-hero-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(10,22,40,0.12);
}
@media (min-width: 768px) { .location-hero-image img { height: 20rem; } }
@media (min-width: 1024px) { .location-hero-image img { height: 24rem; } }
.landmark-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin: 0.25rem;
}
.landmark-badge svg { color: var(--primary); }
.nearby-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--accent-bg);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin: 0.25rem;
  transition: all 0.2s;
}
.nearby-link:hover { background: var(--primary); color: var(--white); }

/* ========== BLOG ========== */
.blog-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.blog-card-image { height: 12rem; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background: var(--accent-bg);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.blog-date { font-size: 0.75rem; color: var(--muted); }
.blog-card h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-card:hover h2 { color: var(--primary); }
.blog-card p { font-size: 0.875rem; color: var(--muted); flex: 1; margin-bottom: 0.75rem; }

/* Blog post content */
.blog-content h2 { font-size: 1.25rem; margin: 2rem 0 1rem; }
@media (min-width: 768px) { .blog-content h2 { font-size: 1.5rem; } }
.blog-content p { color: var(--muted); margin-bottom: 1rem; line-height: 1.8; }
.blog-content ul { margin: 1rem 0; padding-left: 0; list-style: none; }
.blog-content ul li {
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
}
.blog-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.blog-content strong { color: var(--foreground); }

/* ========== ADMIN ========== */
.admin-header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 0;
}
.admin-tabs {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0 1.5rem;
}
.admin-tab {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.admin-tab.active { border-bottom-color: var(--primary); color: var(--primary); }
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.stat-card .stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.stat-card .stat-value { font-size: 1.5rem; font-weight: 600; color: var(--navy); }

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.font-semibold { font-weight: 600; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.p-6 { padding: 1.5rem; }
.rounded-2xl { border-radius: 1rem; }
.shadow-lg { box-shadow: 0 20px 60px rgba(10,22,40,0.12); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.hidden { display: none; }
@media (min-width: 640px) { .sm-inline { display: inline; } }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease-out forwards; }
@media (prefers-reduced-motion: reduce) {
  .animate-in { animation: none; opacity: 1; transform: none; }
  .service-card:hover, .btn:hover { transform: none; }
}
