/* AI Owen Sound - live styles (static, no build)
   Palette: deep pine + soft sand + copper (not NMC teal/navy)
   Craft: Bentonville-class local operator; wide 20-item AI automation menu */
:root {
  --pine: #1B4332;
  --pine-dark: #0D2818;
  --pine-mid: #2D6A4F;
  --sand: #F5F0E8;
  --sand-deep: #EDE6DA;
  --copper: #C45C26;
  --copper-dark: #A34A1E;
  --copper-light: #F5E0D4;
  --ink: #1C1917;
  --ink-soft: #44403C;
  --muted: #78716C;
  --bg: #FFFEFB;
  --bg-alt: #F5F0E8;
  --border: #E7E0D5;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(28, 25, 23, 0.08);
  --max: 1100px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-offset: 3.6rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.05rem;
}
img { max-width: 100%; height: auto; }
a { color: var(--pine-mid); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--copper); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 2px;
}


.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  flex-wrap: wrap;
}
.brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand span { color: var(--pine); }

.header-phone {
  margin: 0 0.75rem 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--pine);
  text-decoration: none;
  white-space: nowrap;
}
#site-nav { margin-left: auto; }
.header-phone:hover { color: var(--copper); }
.phone-link { color: inherit; text-decoration: none; }
.phone-link:hover { color: var(--copper); }
.footer-phone {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--sand) !important;
  text-decoration: none;
}
.footer-phone:hover { color: var(--copper-light) !important; }
.aside-phone { margin-top: 0.5rem !important; font-size: 1rem; color: var(--ink) !important; }
.aside-phone a { font-weight: 800; color: var(--pine); text-decoration: none; font-size: 1.25rem; }
.aside-phone a:hover { color: var(--copper); }
.aside-phone-lg { margin-bottom: 1rem !important; }
.contact-phone-hero {
  margin: 1rem 0 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
}
.contact-phone-hero a {
  color: var(--pine);
  text-decoration: none;
}
.contact-phone-hero a:hover { color: var(--copper); }
.form-honesty {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 768px) {
  .header-phone {
    order: 3;
    flex-basis: 100%;
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
  }
}

.nav-toggle {
  display: none;
  background: var(--pine);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 560;
  font-size: 0.95rem;
}
.nav-list a:hover,
.nav-list a[aria-current="page"] { color: var(--pine); }
.nav-cta {
  background: var(--copper) !important;
  color: #fff !important;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  text-decoration: none !important;
}
.nav-cta:hover { background: var(--copper-dark) !important; }

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  #site-nav { margin-left: 0; width: 100%; order: 4; }
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 1rem 0.85rem;
    gap: 0;
    box-shadow: var(--shadow);
    width: 100%;
  }
  .nav-list.is-open { display: flex; }
  .nav-list li { border-bottom: 1px solid var(--border); }
  .nav-list li:last-child { border-bottom: none; }
  .nav-list a { display: block; padding: 0.75rem 0; }
  .nav-cta { margin-top: 0.35rem; text-align: center; }
}

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

.hero {
  background: linear-gradient(165deg, var(--sand) 0%, var(--bg) 55%, #FFFEFB 100%);
  padding: 3.25rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}
.eyebrow {
  display: inline-block;
  background: var(--copper-light);
  color: var(--copper-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.hero .lede {
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 38rem;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.hero-card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
}
.hero-menu-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.hero-menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.hero-menu-list li:last-child { border-bottom: none; }
.hero-menu-list a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
}
.hero-menu-list a:hover { color: var(--copper); }
.hero-menu-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--pine);
  font-weight: 800;
  font-size: 0.8rem;
}
.hero-card-link {
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.hero-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}
.hero-card li { margin-bottom: 0.45rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-row-center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.2rem;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}
.btn-primary { background: var(--pine); color: #fff; }
.btn-primary:hover { background: var(--pine-dark); color: #fff; }
.btn-secondary {
  background: #fff;
  color: var(--pine);
  border-color: var(--pine-mid);
}
.btn-secondary:hover { background: var(--sand); color: var(--pine-dark); }
.btn-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section { padding: 3rem 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}
.section .intro {
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 0 1.75rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* Home menu map - five clear groups */
.menu-map {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .menu-map { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .menu-map { grid-template-columns: repeat(5, 1fr); }
}
.menu-map-card {
  display: grid;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem;
  text-decoration: none;
  color: inherit;
  border-top: 3px solid var(--pine-mid);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.menu-map-card:hover {
  border-color: var(--copper);
  border-top-color: var(--copper);
  box-shadow: var(--shadow);
  color: inherit;
}
.menu-map-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--copper-light);
  color: var(--copper-dark);
  font-weight: 800;
  font-size: 0.85rem;
}
.menu-map-card h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink);
}
.menu-map-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.trust-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-list li {
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--copper);
  color: var(--ink-soft);
}
.trust-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-size: 1.02rem;
}
.prose .trust-list { margin-top: 1rem; }
.prose .trust-list strong { display: inline; margin-bottom: 0; }

.service-area-strip {
  background: var(--pine);
  color: #E8F5E9;
  padding: 2.25rem 0;
  text-align: center;
}
.service-area-strip h2 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}
.service-area-strip > .wrap > p {
  margin: 0 0 1rem;
  opacity: 0.92;
}
.town-chips {
  list-style: none;
  margin: 0 auto 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 48rem;
}
.town-chips li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 650;
  font-size: 0.92rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.strip-note {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

.prose-narrow {
  max-width: 40rem;
}
.prose-narrow p { color: var(--ink-soft); margin: 0; }

.cta-band {
  background: linear-gradient(135deg, var(--pine-dark), var(--pine));
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}
.cta-band h2 { margin: 0 0 0.5rem; color: #fff; }
.cta-band p { margin: 0 0 1.25rem; opacity: 0.95; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary {
  background: var(--copper);
  color: #fff;
}
.cta-band .btn-primary:hover { background: var(--copper-dark); color: #fff; }

.site-footer {
  background: var(--pine-dark);
  color: #D8D2C8;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer a { color: var(--sand); text-decoration: none; }
.site-footer a:hover { color: var(--copper-light); }
.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-brand { font-weight: 800; color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-brand span { color: #B7E4C7; }
.footer-note { color: #A8A29E; margin: 0.35rem 0 0; max-width: 28rem; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #1B4332;
  color: #A8A29E;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
}

/* Services jump nav + compact cards */
.services-jump {
  position: sticky;
  top: var(--header-offset);
  z-index: 30;
  background: rgba(255, 254, 251, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.services-jump-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.25rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  overflow-x: auto;
}
.services-jump a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
}
.services-jump a:hover {
  color: var(--pine);
  border-color: var(--pine-mid);
  background: var(--sand);
}

.offer-stack { display: grid; gap: 1.1rem; }
.offer-stack-compact {
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .offer-stack-compact {
    grid-template-columns: repeat(2, 1fr);
  }
}
.offer-card {
  display: grid;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: 0 1px 0 rgba(28, 25, 23, 0.03);
  border-left: 4px solid var(--pine-mid);
}
.offer-card-compact {
  padding: 1rem 1.15rem;
  gap: 0.25rem;
}
.offer-card-compact p {
  font-size: 0.95rem;
  line-height: 1.45;
}
.offer-card h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
}
.offer-card p { margin: 0; color: var(--ink-soft); }
.offer-card .tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--copper-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.offer-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.contact-cta-block { max-width: 42rem; }
.contact-cta-block p { color: var(--ink-soft); }

.prose { max-width: 42rem; }
.prose p { color: var(--ink-soft); }
.prose h2 { margin-top: 2rem; }

.contact-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .contact-layout { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form-card-compact .form-group { margin-bottom: 0.9rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-weight: 650;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}
.req-mark {
  color: var(--copper-dark);
  font-weight: 600;
  font-size: 0.82rem;
}
.opt-mark {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.82rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-hint { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }
.form-success {
  display: none;
  background: var(--copper-light);
  border: 1px solid var(--copper);
  color: var(--copper-dark);
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-weight: 600;
}
.form-success.is-visible { display: block; }
.aside-note {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.aside-note h2 { margin-top: 0; font-size: 1.15rem; }
.aside-note p { color: var(--ink-soft); margin: 0 0 0.75rem; }
.aside-soft { font-size: 0.92rem; color: var(--muted) !important; }

.blog-list { display: grid; gap: 1.25rem; }
.blog-teaser {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}
.blog-teaser h2 { margin: 0 0 0.4rem; font-size: 1.2rem; }
.blog-teaser h2 a { color: var(--ink); text-decoration: none; }
.blog-teaser h2 a:hover { color: var(--pine); }
.meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; }
.blog-teaser p { margin: 0 0 0.75rem; color: var(--ink-soft); }
.read-more { font-weight: 700; text-decoration: none; }

.article { max-width: 42rem; padding: 2.5rem 0 3.5rem; }
.article h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.article .meta { margin-bottom: 1.5rem; }
.article p { color: var(--ink-soft); margin: 0 0 1.1rem; }
.article h2 { font-size: 1.25rem; margin: 1.75rem 0 0.65rem; }
.article ul { color: var(--ink-soft); padding-left: 1.2rem; }
.article li { margin-bottom: 0.4rem; }
.back-link { display: inline-block; margin-bottom: 1rem; font-weight: 650; text-decoration: none; }

.page-hero {
  padding: 2.25rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--sand) 0%, var(--bg) 100%);
}
.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  letter-spacing: -0.02em;
}
.page-hero p { margin: 0; color: var(--ink-soft); max-width: 40rem; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.offer-group { padding-top: 2.25rem; padding-bottom: 2.25rem; scroll-margin-top: 6.5rem; }
.offer-group .group-header {
  margin-bottom: 1.15rem;
  max-width: 42rem;
}
.offer-group .group-label {
  display: inline-block;
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--copper-dark);
  background: var(--copper-light);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.offer-group .group-header h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.3rem, 2.8vw, 1.6rem);
}
.offer-group .group-intro {
  margin: 0;
  color: var(--ink-soft);
  max-width: 40rem;
  font-size: 0.98rem;
}
