:root {
  /* Verified 2026-08-28 from the real Just Start logo kit (Drive "Branding" folder),
     Deep Olive Forest + Moss Olive, sampled directly from the logo pixels. No gold in the
     official kit; --accent-on-dark is a computed light tint of Moss Olive for text on dark bg. */
  --primary: #50592B;       /* Moss Olive */
  --primary-dark: #252A17;  /* Deep Olive Forest */
  --cream: #F5F1E8;
  --accent-on-dark: #A8B47D;
  --ink: #252A17;
  --white: #FFFFFF;
  --muted: #6B7160;
  --radius: 14px;
  --radius-lg: 28px;
  --maxw: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
}
h1, h2, h3 { font-weight: 800; letter-spacing: -0.01em; line-height: 1.12; margin: 0 0 16px; }
h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(26px, 3.4vw, 36px); }
h3 { font-size: 20px; }
p { margin: 0 0 14px; }
.lead { font-size: 19px; color: var(--muted); max-width: 640px; }

/* header */
header.site-header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky; top: 0; z-index: 40;
}
.topbar {
  background: var(--primary-dark);
  color: var(--cream);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: inherit; text-decoration: none; font-weight: 600; }
.topbar a:hover, .topbar a:focus-visible { color: var(--accent-on-dark); text-decoration: underline; }
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; text-decoration: none; color: var(--primary-dark); }
.logo img { height: 30px; width: auto; display: block; }
.logo .logo-accent { color: var(--primary); }
nav.main-nav { display: flex; gap: 26px; align-items: center; }
nav.main-nav a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink); }
nav.main-nav a:hover { color: var(--primary); }
.nav-item { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  background: var(--white);
  border: 1px solid #E8E4D8;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(37, 42, 23, 0.14);
  padding: 8px;
  min-width: 250px;
  z-index: 30;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--cream); color: var(--primary); }
.nav-collapse { display: flex; align-items: center; gap: 34px; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid #E8E4D8;
    box-shadow: 0 16px 30px rgba(37, 42, 23, 0.14);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  .nav-collapse.open { display: flex; }
  nav.main-nav { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px; }
  nav.main-nav a { padding: 13px 0; border-bottom: 1px solid #F0EEE0; }
  .nav-item.has-dropdown .dropdown {
    display: block;
    position: static;
    margin-top: 0;
    padding: 0 0 8px 16px;
    border: none;
    box-shadow: none;
    min-width: 0;
  }
  .nav-item.has-dropdown .dropdown a { padding: 9px 0; font-size: 13.5px; font-weight: 500; color: var(--muted); border-bottom: none; }
  .nav-cta { padding: 16px 24px 22px; }
  .nav-cta .btn { width: 100%; text-align: center; }
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border-color: var(--cream); color: var(--white); }
.btn-outline.dark { border-color: var(--primary); color: var(--primary); }

/* hero */
.hero { background: var(--primary-dark); color: var(--white); padding: 90px 0 60px; }
.hero .eyebrow { color: var(--accent-on-dark); }
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--accent-on-dark); }
.hero p.lead { color: #D8DCC9; }
.hero-ctas { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-image img { width: 100%; height: 100%; max-height: 440px; object-fit: cover; border-radius: var(--radius-lg); display: block; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 320px; }
}

/* why-us */
.remove-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 700px) { .remove-grid { grid-template-columns: 1fr; } }
.remove-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.remove-card:hover, .remove-card:focus-visible {
  box-shadow: 0 16px 36px rgba(37, 42, 23, 0.16);
  transform: translateY(-3px);
}
.remove-photo { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; }
.remove-photo img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.remove-card:hover .remove-photo img { transform: scale(1.05); }
.remove-tag-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.remove-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.remove-card:hover .remove-bar, .remove-card:focus-visible .remove-bar {
  transform: scaleX(1);
}
.badge-just-start {
  display: inline-block;
  background: var(--cream);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 999px;
}
.remove-steps {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 11px;
  color: var(--muted);
  transition: color 0.45s ease 0.12s;
}
.remove-card:hover .remove-steps, .remove-card:focus-visible .remove-steps {
  color: var(--primary-dark);
}
.remove-card h3 { margin-bottom: 6px; }
.remove-card p { color: var(--muted); margin: 0; transition: color 0.45s ease 0.12s; }
.remove-card:hover p, .remove-card:focus-visible p { color: var(--ink); }
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: stretch; }
.why-image img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.why-cards { align-content: start; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-image img { min-height: 220px; }
}

/* generic content + photo split, used on About and similar pages */
.media-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.media-image img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; border-radius: var(--radius-lg); display: block; }
@media (max-width: 900px) {
  .media-grid { grid-template-columns: 1fr; }
  .media-image { order: -1; }
  .media-image img { min-height: 220px; }
}

/* about: owners intro (dark hero-style section) */
.owners-hero { background: var(--primary-dark); color: var(--white); padding: 70px 0 60px; }
.owners-hero .eyebrow { color: var(--accent-on-dark); }
.owners-hero h1 { color: var(--white); margin-bottom: 22px; }
.owners-hero h1 .accent { color: var(--accent-on-dark); display: block; }
.owners-hero p { color: #D8DCC9; max-width: 520px; }
.owners-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.owners-image img { width: 100%; max-height: 600px; object-fit: cover; object-position: top center; border-radius: var(--radius-lg); display: block; }
.owner-badges { display: flex; flex-wrap: wrap; gap: 22px 0; margin-top: 30px; }
.owner-badge { display: flex; gap: 12px; align-items: flex-start; padding: 0 22px; border-left: 1px solid rgba(255,255,255,0.16); }
.owner-badge:first-child { padding-left: 0; border-left: none; }
.owner-badge svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--accent-on-dark); margin-top: 2px; }
.owner-badge strong { display: block; text-transform: uppercase; letter-spacing: 0.08em; font-size: 12.5px; color: var(--accent-on-dark); margin-bottom: 4px; }
.owner-badge span { font-size: 14px; color: #D8DCC9; }
@media (max-width: 900px) {
  .owners-grid { grid-template-columns: 1fr; }
  .owners-image { order: -1; }
  .owners-image img { max-height: 420px; }
}
@media (max-width: 560px) {
  .owner-badge { border-left: none; padding: 0; width: 100%; }
}

/* sections */
section { padding: 70px 0; }
.section-cream { background: var(--cream); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 900px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid #E8E4D8; border-radius: var(--radius);
  padding: 26px;
}
.card.on-cream { background: var(--white); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; }
.service-icon { display: block; height: 30px; width: auto; max-width: 100%; margin-bottom: 16px; object-fit: contain; object-position: left; }
.tag-soon { display: inline-block; background: #EEE; color: var(--muted); font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 4px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px;
  margin-bottom: 14px;
}

/* pricing table */
.pricing-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; }
.pricing-table th, .pricing-table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid #EEE; }
.pricing-table th { background: var(--primary); color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.pricing-table td.price { font-weight: 800; color: var(--primary-dark); font-size: 18px; }
.pricing-note { font-size: 14px; color: var(--muted); margin-top: 14px; }

/* faq */
.faq-item { border-bottom: 1px solid #E8E4D8; padding: 20px 0; }
.faq-item h3 { margin-bottom: 8px; font-size: 17px; }
.faq-item p { color: var(--muted); margin: 0; }

/* town list */
.town-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 800px) { .town-links { grid-template-columns: repeat(2, 1fr); } }
.town-links a { display: block; background: var(--white); border: 1px solid #E8E4D8; border-radius: 10px; padding: 12px 14px; text-decoration: none; font-weight: 600; font-size: 14px; }
.town-links a:hover { border-color: var(--primary); color: var(--primary); }
.tier-label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin: 26px 0 12px; }

/* final cta */
.final-cta { background: var(--primary); color: var(--white); text-align: center; padding: 70px 0; }
.final-cta h2 { color: var(--white); }
.final-cta .lead { color: #DCE3CE; margin: 0 auto 26px; }

/* footer */
footer.site-footer { background: var(--primary-dark); color: #C9CFB8; padding: 50px 0 30px; font-size: 14px; }
footer.site-footer h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-logo img { height: 26px; width: auto; display: block; }
.footer-logo-text { font-weight: 800; font-size: 17px; letter-spacing: -0.02em; color: var(--white); }
.footer-tagline { color: var(--accent-on-dark); font-size: 13px; font-style: italic; margin: 0 0 16px; }
footer.site-footer a { color: #C9CFB8; text-decoration: none; }
footer.site-footer a:hover { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #4A5638; padding-top: 20px; font-size: 12px; color: #9AA184; }

.notice-box { background: #FBF6E3; border: 1px solid #E9DBA0; border-radius: 10px; padding: 16px 18px; font-size: 14px; color: #6B5A0E; margin: 20px 0; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }

.intake-form { max-width: 640px; }
.intake-form label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 18px; }
.intake-form input, .intake-form select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  border: 1px solid #E8E4D8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
}
.intake-form input:focus, .intake-form select:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.form-actions { margin-top: 6px; }
.org-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 700px) { .org-grid { grid-template-columns: 1fr; } }
.org-card { display: flex; flex-direction: column; }
.org-note { font-size: 13px; color: var(--muted); font-style: italic; }
.org-card .btn { margin-top: auto; align-self: flex-start; }
