:root {
  --navy: #14263f;
  --navy-dark: #0c1929;
  --orange: #e8792a;
  --orange-dark: #c9631c;
  --cream: #f5efe0;
  --ink: #1c1c1c;
  --muted: #5a5f66;
  --border: #e2e2e2;
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-brand img { height: 56px; width: auto; }

.nav-brand span {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  font-weight: 700 !important;
  border-bottom: none !important;
}

.nav-cta:hover { background: var(--orange-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 780px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-cta { margin: 1rem 1.5rem; text-align: center; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
}

.hero .wrap {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.hero-copy { flex: 1.2; }
.hero-image { flex: 1; text-align: center; }
.hero-image img { max-height: 340px; margin: 0 auto; }

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero .catchphrase {
  font-size: 1.15rem;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.hero p.lead {
  font-size: 1.05rem;
  color: #d7dce3;
  margin-bottom: 1.75rem;
  max-width: 46ch;
}

.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.1s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

@media (max-width: 780px) {
  .hero .wrap { flex-direction: column-reverse; text-align: center; }
  .hero h1 { font-size: 2rem; }
  .hero p.lead { max-width: none; }
  .btn-row { justify-content: center; }
}

/* Sections */
section { padding: 3.5rem 0; }
section.alt { background: #faf8f4; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head .eyebrow { display: block; }
.section-head h2 { font-size: 2rem; color: var(--navy); margin-bottom: 0.75rem; }
.section-head p { color: var(--muted); }

/* Category cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 780px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  background: #fff;
}

.card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.card p { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }

.card a.link { color: var(--orange-dark); font-weight: 700; font-size: 0.9rem; }

/* Service list */
.service-group { margin-bottom: 2.5rem; }
.service-group h3 {
  color: var(--navy);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}

@media (max-width: 600px) {
  .service-items { grid-template-columns: 1fr; }
}

.service-item h4 { font-size: 1rem; color: var(--ink); margin-bottom: 0.25rem; }
.service-item p { color: var(--muted); font-size: 0.9rem; }

/* Callout / banner */
.callout {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.callout h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.callout p { color: #d7dce3; }

/* Why us list */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
}

@media (max-width: 780px) { .why-grid { grid-template-columns: 1fr; } }

.why-item { display: flex; gap: 1rem; }
.why-item .mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h4 { color: var(--navy); margin-bottom: 0.3rem; }
.why-item p { color: var(--muted); font-size: 0.95rem; }

/* Areas served */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.area-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

/* Forms */
form.contact-form {
  display: grid;
  gap: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}

.hp-field { position: absolute; left: -9999px; }

/* Placeholder notices for real business info */
.todo-note {
  background: #fff4e5;
  border: 1px dashed var(--orange);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: #7a4a12;
  margin-bottom: 1.25rem;
}

/* Footer */
footer.site-footer {
  background: var(--navy-dark);
  color: #cfd4db;
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 { color: #fff; margin-bottom: 0.9rem; font-size: 0.95rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--orange); }

.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer-brand img { height: 44px; }
.footer-brand span { color: #fff; font-weight: 700; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  text-align: center;
  color: #8b93a0;
}

/* Page hero (non-home pages) */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 2.75rem 0;
  text-align: center;
}
.page-hero h1 { font-size: 2.2rem; margin-bottom: 0.6rem; }
.page-hero p { color: #d7dce3; max-width: 600px; margin: 0 auto; }

/* Bio / photo */
.bio-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 780px) { .bio-layout { flex-direction: column; } }

.bio-photo { flex: 0 0 320px; }
.bio-photo img { border-radius: 10px; border: 1px solid var(--border); }

.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 2px dashed var(--orange);
  border-radius: 10px;
  background: #fff4e5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #7a4a12;
  font-size: 0.9rem;
  padding: 1.5rem;
}

.bio-copy { flex: 1; }
.bio-copy p { color: var(--muted); margin-bottom: 1.1rem; }
.bio-copy h3 { color: var(--navy); margin-bottom: 0.4rem; margin-top: 1.5rem; }
.bio-copy h3:first-child { margin-top: 0; }

/* Plan cards */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 780px) { .plan-grid { grid-template-columns: 1fr; } }

.plan-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
}
.plan-card.featured { border-color: var(--orange); position: relative; }
.plan-card .badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.plan-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.plan-price { font-size: 1.9rem; font-weight: 700; color: var(--navy); margin: 0.25rem 0 0.75rem; }
.plan-price span { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.plan-card ul { margin: 1rem 0; padding-left: 1.2rem; color: var(--muted); }
.plan-card li { margin-bottom: 0.4rem; }
