/*
 * Johnny Hart Web Design — Main Stylesheet
 * Mobile-first, security-conscious, performance-focused
 */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --dark:         #111111;
  --dark-2:       #1A1A1A;
  --dark-3:       #252525;
  --accent:       #E8622A;
  --accent-hover: #CF5624;
  --accent-light: rgba(232,98,42,0.10);
  --accent-glow:  rgba(232,98,42,0.35);
  --white:        #FFFFFF;
  --light:        #F8F6F3;
  --text:         #1A1A1A;
  --muted:        #6B7280;
  --subtle:       #9CA3AF;
  --border:       #E5E7EB;
  --success:      #10B981;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r-sm:  6px;
  --r:     12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --sh:    0 4px 20px rgba(0,0,0,0.07);
  --sh-lg: 0 20px 48px rgba(0,0,0,0.12);
  --sh-xl: 0 32px 80px rgba(0,0,0,0.18);
  --ease:  0.25s ease;
  --max:   1200px;
  --py:    clamp(4rem, 8vw, 7rem);
}

/* ===== TYPOGRAPHY ===== */
.display {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
}
h4 { font-size: 1.0625rem; font-weight: 700; line-height: 1.35; }
p { line-height: 1.72; }

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.68;
  color: var(--muted);
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.accent-text { color: var(--accent); }
.muted-text  { color: var(--muted); }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section         { padding: var(--py) 0; }
.section--dark   { background: var(--dark); color: var(--white); }
.section--light  { background: var(--light); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

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

.text-center { text-align: center; }
.flex-center  { display: flex; align-items: center; justify-content: center; }

/* spacing helpers */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9375rem 1.875rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
.btn--lg {
  padding: 1.125rem 2.375rem;
  font-size: 1.0625rem;
  border-radius: var(--r-lg);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.125rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-name {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.125rem;
}
.nav-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  border-radius: var(--r-sm);
  transition: all var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--accent); background: var(--accent-light); }
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--ease);
}
.header-phone:hover { color: var(--accent); }
.header-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-cta { display: none; }
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 38px; height: 38px;
  border: none; background: none; cursor: pointer;
  gap: 5px; padding: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
  margin: 0 auto;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) {
  .header-phone  { display: flex; }
  .header-cta    { display: inline-flex; }
}
@media (min-width: 1024px) {
  .nav-links  { display: flex; }
  .hamburger  { display: none; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 0; }
.mobile-menu a {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  padding: 0.625rem;
  transition: color var(--ease);
}
.mobile-menu a:hover { color: var(--accent); }
.mob-phone {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}
.mob-cta { margin-top: 1.25rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: calc(var(--py) + 5rem) 0 var(--py);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(232,98,42,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(232,98,42,0.09) 0%, transparent 45%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(232,98,42,0.12);
  border: 1px solid rgba(232,98,42,0.28);
  color: #FF8A5C;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.625rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.75); }
}
.hero h1 { margin-bottom: 1.375rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  font-weight: 500;
}
.trust-item svg { color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }

/* ===== PAGE HERO (interior) ===== */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: calc(var(--py) + 4.5rem) 0 var(--py);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(232,98,42,0.13) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .inner { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 0.75rem; }
.page-hero h1 { max-width: 720px; margin-bottom: 1rem; }
.page-hero .lead { max-width: 560px; color: rgba(255,255,255,0.64); }

/* ===== SECTION HEADER ===== */
.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow { margin-bottom: 0.625rem; }
.section-head h2 { margin-bottom: 0.875rem; }
.section-head p { color: var(--muted); font-size: 1.0625rem; }

/* ===== PROBLEM CARDS ===== */
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}
.problem-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.problem-card:hover::after { transform: scaleX(1); }
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.prob-icon {
  width: 50px; height: 50px;
  background: var(--accent-light);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.prob-icon svg { width: 24px; height: 24px; }
.problem-card h3 { margin-bottom: 0.625rem; font-size: 1.0625rem; }
.problem-card p { font-size: 0.9375rem; color: var(--muted); line-height: 1.7; }
.warn-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(232,98,42,0.08);
  color: var(--accent);
  padding: 0.3125rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* ===== PROCESS ===== */
.process-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  position: relative;
}
.process-step:not(:last-child) { border-bottom: 1px solid var(--border); }
.step-num {
  width: 56px; height: 56px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}
.step-body h3 { margin-bottom: 0.5rem; }
.step-body p { font-size: 0.9375rem; color: var(--muted); }

/* ===== CREDIBILITY ===== */
.cred-bar {
  background: var(--dark-2);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.cred-stat .num {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.cred-stat .lbl {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  font-weight: 500;
}
.cred-div { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }
.client-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--r);
}
.chip-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; }
.chip-text { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.85); }

/* ===== PRICING ===== */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { border-color: var(--accent); box-shadow: var(--sh-lg); }
.pricing-card::before {
  content: 'Custom Quote';
  position: absolute;
  top: 1.75rem; right: -2rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 2.5rem;
  transform: rotate(45deg);
}
.price-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.price-amount {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin: 0.875rem 0;
}
.price-dollar { font-size: 1.5rem; font-weight: 700; color: var(--muted); margin-top: 0.625rem; }
.price-number { font-size: 4.5rem; font-weight: 900; letter-spacing: -0.05em; color: var(--text); line-height: 1; }
.price-note { font-size: 0.9375rem; color: var(--muted); align-self: flex-end; margin-bottom: 0.25rem; }
.price-includes {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}
.check-icon {
  width: 20px; height: 20px;
  background: rgba(16,185,129,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--success);
}
.check-icon svg { width: 11px; height: 11px; }
.price-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.price-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}
.price-guarantee svg { width: 15px; height: 15px; color: var(--success); flex-shrink: 0; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark);
  color: var(--white);
  padding: var(--py) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(232,98,42,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.65); font-size: 1.0625rem; margin-bottom: 2.5rem; }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--accent);
}
.svc-num {
  font-size: 2.75rem;
  font-weight: 900;
  color: rgba(0,0,0,0.06);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.for-who {
  display: inline-flex;
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
  letter-spacing: 0.03em;
}
.service-card h3 { margin-bottom: 0.625rem; }
.service-card p { color: var(--muted); font-size: 0.9375rem; line-height: 1.72; }
.svc-quote {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(0,0,0,0.38);
  border-left: 3px solid var(--accent);
  padding-left: 0.875rem;
  margin-top: 1.25rem;
}

/* ===== CASE STUDY ===== */
.case-study {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--ease);
}
.case-study:hover { box-shadow: var(--sh-xl); }
.cs-header {
  background: var(--dark);
  color: var(--white);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cs-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(232,98,42,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.cs-header .inner { position: relative; z-index: 1; }
.cs-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,98,42,0.18);
  border: 1px solid rgba(232,98,42,0.3);
  color: #FF8A5C;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cs-header h2 { margin-bottom: 0.75rem; }
.cs-header p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.cs-body { padding: 3rem; }
.cs-story { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.cs-story:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.story-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.375rem;
}
.cs-story h3 { font-size: 1.125rem; margin-bottom: 0.625rem; }
.cs-story p { color: var(--muted); font-size: 0.9375rem; line-height: 1.78; }
.cs-placeholder {
  background: var(--light);
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
}
.cs-placeholder h3 { color: var(--text); }

/* ===== FAQ ===== */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.5rem 2rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  cursor: pointer; text-align: left;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  transition: background var(--ease);
}
.faq-q:hover { background: var(--light); }
.faq-q.open  { background: var(--light); color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--ease);
}
.faq-q.open .faq-icon { background: var(--accent); transform: rotate(45deg); }
.faq-icon svg { width: 11px; height: 11px; color: var(--muted); }
.faq-q.open .faq-icon svg { color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-a.open { max-height: 500px; }
.faq-a-inner { padding: 0 2rem 1.75rem; color: var(--muted); font-size: 0.9375rem; line-height: 1.78; }
.faq-a-inner strong { color: var(--text); }

/* ===== CONTACT FORM ===== */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.form-group label .req { color: var(--accent); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,98,42,0.1);
}
.form-control::placeholder { color: var(--subtle); }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea.form-control { resize: vertical; min-height: 110px; }
/* Honeypot — hidden from humans, trap for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}
.form-actions { display: flex; flex-direction: column; gap: 0.875rem; }
.sec-note {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.sec-note svg { width: 14px; height: 14px; color: var(--success); flex-shrink: 0; }
.form-success { display: none; text-align: center; padding: 3rem 1.5rem; }
.form-success.show { display: block; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(16,185,129,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--success);
}
.success-icon svg { width: 32px; height: 32px; }

/* ===== ABOUT ===== */
.about-photo {
  background: var(--light);
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
}
.photo-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  color: var(--muted); text-align: center; padding: 2rem;
}
.photo-placeholder svg { width: 72px; height: 72px; opacity: 0.3; }
.photo-placeholder span { font-size: 0.875rem; font-weight: 500; }
.value-list { display: flex; flex-direction: column; gap: 1.5rem; }
.value-row { display: flex; gap: 1rem; align-items: flex-start; }
.val-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.val-icon svg { width: 20px; height: 20px; }
.val-content h4 { margin-bottom: 0.25rem; }
.val-content p { font-size: 0.9375rem; color: var(--muted); }

/* ===== CONTACT INFO ===== */
.c-info { display: flex; flex-direction: column; gap: 1.5rem; }
.c-info-row { display: flex; gap: 1rem; align-items: flex-start; }
.c-info-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.c-info-icon svg { width: 20px; height: 20px; }
.c-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.c-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 2px;
}
.c-info-value a:hover { color: var(--accent); }
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.58);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; }
}
.footer-logo { color: var(--white); display: block; margin-bottom: 1rem; }
.footer-desc { font-size: 0.9375rem; line-height: 1.68; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.soc-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--ease);
}
.soc-link:hover { background: var(--accent); color: var(--white); }
.soc-link svg { width: 16px; height: 16px; }
.footer-col-head {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.9375rem; transition: color var(--ease); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}
.ssl-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
}
.ssl-badge svg { width: 12px; height: 12px; color: var(--success); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.65s ease; }
.fade-in.visible { opacity: 1; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.38s; }
.d5 { transition-delay: 0.48s; }

/* ===== MISC ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.prose p, .prose li {
  color: var(--muted); font-size: 0.9375rem;
  line-height: 1.82; margin-bottom: 0.75rem;
}
.prose ul { padding-left: 1.375rem; list-style: disc; margin-bottom: 1rem; }
.prose a { color: var(--accent); text-decoration: underline; }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
