/* The Geek Gods — one-page site styles */
/* Mike's motif: dark teal/navy (#102030) with gold/amber (#f0d090)
   Erin's motif: purple/violet (#5020c0) with teal (#00b0b0) */

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

:root {
  /* Mike's palette (site-wide) */
  --navy: #102030;
  --navy-dark: #081018;
  --teal: #205060;
  --teal-dark: #103040;
  --teal-light: #307080;
  --gold: #f0d090;
  --gold-bright: #f0e0a0;
  --gold-dark: #c0a060;
  --cream: #e0e0d0;
  --light: #f0f0e0;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #555;
  /* Erin's palette */
  --purple: #5020c0;
  --purple-dark: #3a1888;
  --purple-light: #8060d0;
  --erin-teal: #00b0b0;
  --erin-teal-dark: #008080;
  --lavender: #c0b0e0;
  --erin-light: #f5f0fa;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--light);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO — Mike's card design as background */
.hero {
  position: relative;
  color: var(--cream);
  text-align: center;
  padding: 72px 24px 64px;
  border-bottom: 3px solid var(--gold-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(8,16,24,0.85) 0%, rgba(16,32,48,0.7) 40%, rgba(16,48,64,0.6) 100%);
  padding: 72px 24px 64px;
  margin: -72px -24px -64px;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.brand {
  font-size: 3rem;
  letter-spacing: -1px;
  margin-bottom: 8px;
  color: var(--gold-bright);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.tagline {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.area { font-size: 1.05rem; color: var(--cream); margin-bottom: 24px; }
.hero-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.phone a {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-decoration: none;
  border: 2px solid var(--gold-dark);
  border-radius: 8px;
  padding: 12px 24px;
  transition: background 0.2s, color 0.2s;
}
.phone a:hover { background: var(--gold); color: var(--navy-dark); }

/* QUICK NAV */
.quicknav {
  background: var(--navy-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--teal);
}
.quicknav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.quicknav a:hover { background: var(--teal); color: var(--gold-bright); }

/* SECTIONS */
.section { padding: 56px 0; }
.section-alt { background: #e8e8d8; }

.section h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}
.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.lead a { color: var(--teal-dark); font-weight: 600; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service {
  background: var(--white);
  border: 1px solid #d0d0c0;
  border-radius: 10px;
  padding: 24px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(16, 32, 48, 0.12);
}
.service h3 { color: var(--teal-dark); font-size: 1.1rem; margin-bottom: 10px; }
.service p { color: var(--muted); font-size: 0.97rem; }

/* FIXED-PRICE CARDS */
.fixed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.fixed-card {
  background: var(--white);
  border: 2px solid var(--gold-dark);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.fixed-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(192, 160, 96, 0.2);
}
.fixed-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 8px;
  line-height: 1.1;
}
.price-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.fixed-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.fixed-card p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 14px;
  text-align: left;
}
.fixed-detail {
  font-size: 0.9rem !important;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 14px;
}

/* CORD CUTTING — APPOINTMENT GRID */
.appointment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.appointment-card {
  background: var(--white);
  border: 1px solid #d0d0c0;
  border-radius: 10px;
  padding: 28px;
  position: relative;
}
.appt-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.appointment-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 16px;
  margin-top: 8px;
}
.appointment-card ul { padding-left: 20px; }
.appointment-card li {
  margin-bottom: 12px;
  font-size: 0.97rem;
  color: var(--muted);
}

/* CALLOUT */
.callout {
  background: #f5f0d8;
  border-left: 5px solid var(--gold-dark);
  border-radius: 8px;
  padding: 24px;
  margin-top: 12px;
}
.callout p { color: var(--muted); }
.callout a { color: var(--teal-dark); font-weight: 600; }

/* PRICING */
.pricing-card {
  max-width: 680px;
  margin: 0 auto 36px;
  background: var(--white);
  border: 2px solid var(--gold-dark);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.pricing-card p { margin-bottom: 16px; font-size: 1.05rem; }
.pricing-card .fineprint { font-size: 0.85rem; color: var(--muted); margin-top: 20px; }
.pricing-card .fineprint a { color: var(--teal-dark); font-weight: 600; }

.pricing-philosophy {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-left: 5px solid var(--navy);
  border-radius: 8px;
  padding: 28px;
}
.pricing-philosophy h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.pricing-philosophy p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 14px;
}

/* PERSON SECTIONS — Mike (dark teal/navy + gold) */
.mike-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--teal-dark) 100%);
  color: var(--cream);
  border-top: 3px solid var(--gold-dark);
  border-bottom: 3px solid var(--gold-dark);
}
.mike-section h2 {
  color: var(--gold-bright);
  text-align: left;
}
.mike-section h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin: 20px 0 10px;
}
.mike-section p {
  color: var(--cream);
  margin-bottom: 14px;
}
.mike-section a {
  color: var(--gold-bright);
  font-weight: 700;
  text-decoration: none;
}
.mike-section a:hover { text-decoration: underline; }
.mike-section .person-schedule li {
  color: var(--cream);
  border-bottom: 1px solid rgba(240, 208, 144, 0.2);
}
.mike-section .person-schedule li:last-child { border-bottom: none; }

/* PERSON SECTIONS — Erin (purple + teal) */
.erin-section {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--erin-teal-dark) 100%);
  color: #e0d8f0;
  border-top: 3px solid var(--erin-teal);
  border-bottom: 3px solid var(--erin-teal);
}
.erin-section h2 {
  color: var(--erin-teal);
  text-align: left;
}
.erin-section h3 {
  color: #00d0d0;
  font-size: 1.15rem;
  margin: 20px 0 10px;
}
.erin-section p {
  color: #e0d8f0;
  margin-bottom: 14px;
}
.erin-section a {
  color: #00d0d0;
  font-weight: 700;
  text-decoration: none;
}
.erin-section a:hover { text-decoration: underline; }
.erin-section .person-schedule li {
  color: #e0d8f0;
  border-bottom: 1px solid rgba(0, 208, 208, 0.2);
}
.erin-section .person-schedule li:last-child { border-bottom: none; }

/* PERSON GRID (shared layout) */
.person-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: start;
}
.erin-grid {
  grid-template-columns: 1.5fr 1fr;
}
.person-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.person-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.person-info {
  padding: 8px 0;
}
.person-schedule {
  list-style: none;
  padding: 0;
}
.person-schedule li {
  padding: 10px 0;
  font-size: 0.97rem;
}

/* DISCLOSURE */
.disclosure {
  background: var(--navy-dark);
  color: #a0b0b8;
  padding: 32px 0;
  font-size: 0.85rem;
  border-top: 1px solid var(--teal);
}
.disclosure h3 { color: var(--gold); font-size: 0.95rem; margin-bottom: 10px; }
.disclosure p { max-width: 760px; margin: 0 auto; line-height: 1.5; }

/* FOOTER */
footer {
  background: #050a10;
  color: #5a6a7a;
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
}
footer .footnote { margin-top: 6px; font-size: 0.8rem; color: #4a5a6a; }

/* MOBILE */
@media (max-width: 700px) {
  .person-grid, .erin-grid {
    grid-template-columns: 1fr;
  }
  .person-card { order: -1; }
}
@media (max-width: 600px) {
  .brand { font-size: 2.2rem; }
  .tagline { font-size: 1.15rem; }
  .phone a { font-size: 1.1rem; padding: 10px 18px; }
  .hero-phones { flex-direction: column; gap: 10px; }
  .section h2 { font-size: 1.6rem; }
  .quicknav { position: static; }
  .quicknav a { font-size: 0.85rem; padding: 5px 10px; }
  .fixed-price { font-size: 1.8rem; }
}
