:root {
  --green-900: #143f21;
  --green-800: #1d5b2f;
  --green-700: #267a3d;
  --green-600: #359447;
  --green-100: #e8f4e3;
  --yellow: #f3b51b;
  --yellow-100: #fff3cf;
  --ink: #18201b;
  --muted: #617064;
  --line: #d9e5d8;
  --paper: #ffffff;
  --soft: #f6f8f4;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--soft) 42%, #fff 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(29, 91, 47, .96);
  color: #fff;
  box-shadow: 0 10px 30px rgba(20, 63, 33, .18);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}
.brand img { width: 62px; height: auto; }
.brand > span { color: #78b82a; }
.brand > span > span { color: #a4a6a8; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.site-nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover { border-color: #fff; }
.site-nav .nav-reserve {
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-900);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.site-nav .nav-reserve:hover {
  border-color: transparent;
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--radius);
  background: transparent;
  padding: 9px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: clamp(640px, calc(100vh - 72px), 760px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, #eaf6e5 0%, #fff 72%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.92) 58%, #fff 100%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 62%;
  object-fit: cover;
  object-position: center top;
  opacity: .36;
  pointer-events: none;
}
.hero-art {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 12px));
  max-height: 430px;
  margin: 8px auto 38px;
  object-fit: contain;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 32px));
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 20px;
}
.neighbor-logo {
  width: min(360px, 100%);
  height: auto;
  object-fit: contain;
}
.neighbor-mark {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 14px;
  padding: 10px 4px;
  color: var(--green-900);
}
.neighbor-mark-icon {
  width: 96px;
  height: auto;
  flex: 0 0 auto;
}
.neighbor-mark strong {
  display: block;
  color: #78b82a;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: .92;
  letter-spacing: 0;
}
.neighbor-mark strong span {
  color: #a4a6a8;
}
.neighbor-mark small {
  display: block;
  margin-top: 10px;
  color: var(--green-800);
  font-size: clamp(16px, 2vw, 25px);
  font-weight: 800;
  letter-spacing: 0;
}
.hero-logo {
  width: min(300px, 82%);
  margin: 0 auto 18px;
}
.brand-band {
  display: grid;
  grid-template-columns: .75fr 1fr;
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
  width: min(1050px, calc(100% - 32px));
  margin: 70px auto 56px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #fbfdf9 100%);
  box-shadow: none;
}
.brand-band h2 { margin-bottom: 0; }
.brand-band .neighbor-logo { width: min(360px, 100%); justify-self: center; }
.about-logo, .inner-logo { margin-bottom: 28px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}
h3 { margin-bottom: 8px; font-size: 20px; }
p { color: var(--muted); line-height: 1.65; }
.hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}
.button-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
}
.button.primary { background: var(--yellow); color: var(--green-900); box-shadow: 0 10px 18px rgba(243,181,27,.24); }
.button.secondary { border: 2px solid var(--green-700); color: var(--green-900); background: var(--green-100); }
.button:hover { transform: translateY(-1px); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -22px auto 0;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.trust-strip article {
  padding: 24px;
  background: #fff;
}
.trust-strip strong { display: block; margin-bottom: 6px; color: var(--green-900); }
.trust-strip span { color: var(--muted); font-size: 14px; line-height: 1.5; }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}
.intro-grid, .split, .about-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}
.section-copy p { max-width: 620px; }
.apple-authorized-badge {
  display: inline-block;
  width: 388px;
  max-width: 100%;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 63, 33, .06);
}
.apple-authorized-badge img {
  width: min(360px, 100%);
  height: auto;
}
.centered { text-align: center; margin: 0 auto; }
.centered p { margin-left: auto; margin-right: auto; }
.repair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-card, .ai-card, .feature-list article, .stats-panel article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 63, 33, .07);
}
.service-card {
  min-height: 260px;
  padding: 22px;
}
.service-card img {
  height: 92px;
  margin: 0 auto 12px;
  object-fit: contain;
}
.service-card h3 { text-align: center; }
.service-card p { margin-bottom: 0; text-align: center; font-size: 15px; }
.text-link {
  display: block;
  margin-top: 16px;
  color: var(--green-700);
  font-weight: 800;
  text-align: center;
}
.support-strip {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 63, 33, .06);
}
.support-strip h2 { font-size: clamp(28px, 3vw, 44px); }
.support-strip p { margin-bottom: 0; }
.partner-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.partner-list span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--green-900);
  font-weight: 900;
}
.custom-pc-section {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 56px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 63, 33, .06);
}
.custom-pc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.custom-pc-grid article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--green-100), #fff);
}
.custom-pc-grid p { margin-bottom: 0; color: var(--muted); font-size: 15px; }
.local-llm-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.local-llm-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(53, 148, 71, .26), transparent 48%),
    linear-gradient(315deg, rgba(243, 181, 27, .16), transparent 42%);
  pointer-events: none;
}
.local-llm-copy,
.local-llm-steps {
  position: relative;
}
.local-llm-copy .eyebrow,
.local-llm-copy p {
  color: #e6f5df;
}
.local-llm-copy h2 {
  color: #fff;
}
.llm-actions {
  justify-content: flex-start;
}
.local-llm-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.local-llm-steps article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.local-llm-steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-900);
  font-weight: 900;
}
.local-llm-steps h3 {
  color: #fff;
}
.local-llm-steps p {
  margin-bottom: 0;
  color: #e6f5df;
  font-size: 15px;
}
.content-band .local-llm-section {
  width: 100%;
  margin: 0 0 66px;
}
.inner-main { min-height: 70vh; }
.seo-fallback {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}
.seo-fallback p { font-size: 18px; }
.inner-hero {
  padding: 82px max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--green-100), #fff);
}
.inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}
.inner-hero h1 { max-width: 780px; font-size: clamp(42px, 7vw, 82px); }
body[data-page="ai"] .inner-hero h1 { font-size: clamp(36px, 5.4vw, 64px); }
.inner-hero p:not(.eyebrow) { max-width: 660px; font-size: 18px; }
.retail-ai-line {
  max-width: 690px;
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  color: var(--green-900);
  font-weight: 800;
}
.inner-hero img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}
.business-photo-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10% 24% 8% 18% / 22% 8% 26% 10%;
  border: 8px solid #fff;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 63, 33, .14);
}
.business-photo-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 24% 8% 20% 10% / 8% 24% 10% 22%;
  background: var(--yellow-100);
}
.business-photo-frame img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}
.education-photo-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 28% 8% 22% 10% / 10% 24% 8% 20%;
  border: 8px solid #fff;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 63, 33, .12);
}
.education-photo-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 12% 28% 10% 22% / 24% 10% 20% 8%;
  background: var(--green-100);
}
.education-photo-frame img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}
.content-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}
.ai-guide-panel {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  margin-bottom: 66px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-100), #fff 72%);
  box-shadow: 0 14px 34px rgba(20, 63, 33, .06);
}
.ai-guide-panel h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
}
.ai-guide-copy p {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.62;
}
.ai-guide-copy strong {
  display: block;
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-900);
  font-size: 20px;
  line-height: 1.35;
}
.ai-agent-panel {
  margin-top: 62px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, var(--yellow-100) 54%, var(--green-100));
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(20, 63, 33, .08);
  overflow: hidden;
  position: relative;
}
.ai-agent-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--green-700), var(--yellow));
  pointer-events: none;
}
.ai-agent-heading,
.ai-agent-grid,
.ai-agent-note {
  position: relative;
}
.ai-agent-heading {
  max-width: 780px;
  margin-bottom: 30px;
}
.ai-agent-heading .eyebrow,
.ai-agent-heading p {
  color: var(--green-900);
}
.ai-agent-heading h2 {
  color: var(--green-900);
}
.ai-agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ai-agent-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(29, 91, 47, .18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 22px rgba(20, 63, 33, .06);
}
.ai-agent-grid h3 {
  margin-bottom: 10px;
  color: var(--green-900);
}
.ai-agent-grid p {
  margin-bottom: 0;
  color: var(--muted);
}
.ai-agent-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--green-900);
  color: var(--ink);
}
.ai-agent-note strong {
  color: #fff;
  font-size: 20px;
}
.ai-agent-note p {
  max-width: 680px;
  margin-bottom: 0;
  color: #dcebdd;
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.page-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 63, 33, .07);
}
.page-card .number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--yellow);
  color: #fff;
  font-weight: 900;
}
.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--green-900);
  color: #fff;
}
.page-cta p { margin: 0; color: #dcebdd; }
.page-cta .button { flex: 0 0 auto; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.button.secondary.dark {
  border-color: rgba(255,255,255,.55);
  background: transparent;
  color: #fff;
}
.portal-panel {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 76px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 63, 33, .06);
}
.content-band .portal-panel {
  width: 100%;
  margin: 56px 0 0;
}
.portal-panel p { margin-bottom: 0; }
.portal-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.portal-card-list article {
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.portal-card-list p { font-size: 15px; }
.inquiry-panel {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  margin-top: 56px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 63, 33, .07);
}
.inquiry-panel p { margin-bottom: 0; }
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.inquiry-form label { display: block; color: var(--green-900); font-weight: 800; }
.inquiry-form label span { display: block; margin-bottom: 8px; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.inquiry-form input,
.inquiry-form select { min-height: 50px; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 3px solid var(--green-100);
  border-color: var(--green-600);
}
.inquiry-form .full,
.inquiry-form .form-note {
  grid-column: 1 / -1;
}
.inquiry-form .button { justify-self: start; border: 0; cursor: pointer; }
.inquiry-form .button:disabled {
  cursor: wait;
  opacity: .72;
}
.form-note { margin: -4px 0 0; font-size: 13px; }
.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--green-900);
  font-weight: 800;
}
.form-status.success { color: var(--green-700); }
.form-status.error { color: #a73520; }
.directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.directory article {
  padding: 20px;
  border-left: 4px solid var(--green-600);
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 63, 33, .06);
}
.directory h3 { margin-bottom: 4px; }
.directory p { margin-bottom: 0; }
.store-tools {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1.1fr;
  gap: 14px;
  margin: 30px 0 12px;
  align-items: end;
}
.store-tools label { display: block; color: var(--green-900); font-weight: 800; }
.store-tools span { display: block; margin-bottom: 8px; }
.store-tools input, .store-tools select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.store-tools input:focus, .store-tools select:focus {
  outline: 3px solid var(--green-100);
  border-color: var(--green-600);
}
.store-tools form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}
.store-status { margin: 14px 0 24px; }
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.store-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 63, 33, .07);
}
.store-card h3 { font-size: 24px; }
.store-card p { margin-bottom: 0; }
.store-card .hours { font-size: 14px; }
.store-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.store-card-head h3 { margin-bottom: 4px; }
.store-card-head .eyebrow { margin-bottom: 6px; }
.distance {
  display: inline-block;
  color: var(--green-700);
}
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.store-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 800;
}
.store-actions .reserve-action {
  background: var(--yellow);
  color: var(--green-900);
}
.reserve-action.compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.reserve-link {
  color: var(--green-900);
  font-weight: 900;
}
.repair-directory {
  margin-top: 76px;
  padding-top: 66px;
  border-top: 1px solid var(--line);
}
.repair-group { margin-top: 28px; }
.repair-group > h3 { color: var(--green-900); }
.repair-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.repair-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-800);
  font-weight: 800;
}
.repair-links a:hover {
  border-color: var(--green-600);
  box-shadow: 0 8px 20px rgba(20,63,33,.08);
}
.repair-links span { color: var(--yellow); font-size: 20px; }
.detail-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 110px;
}
.detail-back {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--green-700);
  font-weight: 800;
}
.detail-shell h1 { max-width: 800px; }
.detail-intro { max-width: 680px; font-size: 19px; }
.detail-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 40px 0;
}
.detail-points article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.detail-points p { margin-bottom: 0; }
.model-shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 110px;
}
.model-search {
  display: block;
  max-width: 560px;
  margin: 34px 0 12px;
  color: var(--green-900);
  font-weight: 800;
}
.model-search span { display: block; margin-bottom: 8px; }
.model-search input {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.model-search input:focus { outline: 3px solid var(--green-100); border-color: var(--green-600); }
.model-count { margin-bottom: 22px; font-size: 14px; }
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.model-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-900);
  font-weight: 750;
}
.model-card:hover { border-color: var(--green-600); box-shadow: 0 8px 20px rgba(20,63,33,.08); }
.model-card strong { color: var(--yellow); font-size: 20px; }
.empty-state { padding: 22px; border: 1px solid var(--line); background: #fff; }

.ai-section {
  width: 100%;
  padding: 88px max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
}
.ai-section .section-copy { max-width: 760px; }
.ai-section .eyebrow, .ai-section p { color: #e6f5df; }
.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.ai-card {
  padding: 24px;
  min-height: 300px;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
  box-shadow: none;
}
.ai-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: #fff;
  font-weight: 900;
}
.ai-card p { margin-bottom: 0; }
.ai-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.24);
}
.ai-callout strong { font-size: clamp(24px, 3vw, 38px); line-height: 1.05; max-width: 520px; }
.ai-callout p { margin: 0; max-width: 460px; }

.apple-banner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 30px;
  width: min(1050px, calc(100% - 32px));
  margin: 78px auto 20px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.apple-banner img { mix-blend-mode: multiply; }

.image-band {
  margin-top: 76px;
  padding: 74px 0;
  background: linear-gradient(135deg, var(--green-100), #fff 68%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.education-band-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}
.home-education-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 10% 28% 8% 22% / 20% 9% 24% 10%;
  background: #fff;
  box-shadow: 0 22px 48px rgba(20, 63, 33, .13);
}
.home-education-photo::after {
  content: "";
  position: absolute;
  inset: auto 9% -18px 14%;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 63, 33, .12);
  filter: blur(12px);
  z-index: -1;
}
.home-education-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.band-content {
  width: 100%;
  margin: 0;
  padding: 0;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.feature-list article { padding: 20px; }
.feature-list p { margin-bottom: 0; font-size: 15px; }

.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stats-panel article {
  min-height: 180px;
  padding: 24px;
  display: grid;
  align-content: center;
}
.stats-panel strong { color: var(--green-700); font-size: 54px; line-height: 1; }
.stats-panel span { color: var(--muted); line-height: 1.45; }

.locations { padding-top: 60px; }
.map { width: min(560px, 100%); margin: 26px auto; }
.state-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.state-list a {
  padding: 8px 14px;
  border: 2px solid var(--green-700);
  border-radius: 999px;
  background: #fff;
  color: var(--green-800);
  font-weight: 800;
  font-size: 14px;
}
.state-list a:hover {
  background: var(--green-100);
  transform: translateY(-1px);
}
.testimonial-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 86px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.testimonial-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 63, 33, .07);
}
.testimonial-grid strong {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  letter-spacing: .08em;
}
.testimonial-grid p { color: var(--ink); }
.testimonial-grid span { color: var(--green-700); font-weight: 900; }

.about-section { padding-bottom: 110px; }
.about-copy p { max-width: 680px; }
.cta-card {
  display: grid;
  grid-template-columns: .75fr 1fr;
  align-items: end;
  gap: 22px;
  overflow: hidden;
  padding: 24px 24px 0;
  border-radius: var(--radius);
  background: var(--green-900);
  color: #fff;
}
.cta-card p { color: #dcebdd; }
.cta-card img { align-self: end; max-height: 380px; object-fit: contain; }
.cta-card .button { margin-bottom: 26px; }

.site-footer {
  display: grid;
  place-items: center;
  gap: 22px;
  padding: 42px 20px;
  color: #d4d4d4;
  background: #050705;
  text-align: center;
}
.site-footer img { width: 68px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.site-footer a { color: #f3f3f3; font-weight: 700; }
.site-footer p { margin: 0; color: #9da69d; font-size: 13px; }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--green-800);
  }
  .site-nav .nav-reserve { text-align: center; }
  .site-nav.is-open { display: flex; }
  .hero { min-height: 700px; }
  .hero-art { max-height: 390px; margin-top: 14px; margin-bottom: 12px; }
  .hero-copy { margin-bottom: 32px; }
  .trust-strip, .intro-grid, .split, .about-section, .apple-banner, .support-strip, .custom-pc-section, .local-llm-section, .portal-panel, .ai-guide-panel {
    grid-template-columns: 1fr;
  }
  .brand-band {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 54px;
    text-align: center;
  }
  .brand-band .neighbor-logo {
    width: min(300px, 82%);
  }
  .neighbor-mark {
    flex-direction: column;
    gap: 8px;
  }
  .neighbor-mark-icon {
    width: 82px;
  }
  .education-band-shell { grid-template-columns: 1fr; }
  .home-education-photo { max-width: 720px; width: 100%; justify-self: center; }
  .ai-grid, .feature-list, .partner-list, .custom-pc-grid, .local-llm-steps, .portal-card-list, .testimonial-grid, .ai-agent-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-hero-grid { grid-template-columns: 1fr; }
  .inner-hero img { max-height: 280px; }
  .business-photo-frame::before,
  .education-photo-frame::before { display: none; }
  .business-photo-frame img,
  .education-photo-frame img { max-height: none; }
  .page-grid, .directory { grid-template-columns: repeat(2, 1fr); }
  .inquiry-panel { grid-template-columns: 1fr; }
  .store-tools, .store-grid { grid-template-columns: 1fr 1fr; }
  .store-tools form { grid-column: 1 / -1; }
  .repair-links { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-callout { display: block; }
  .ai-callout p { margin-top: 12px; }
}

@media (max-width: 640px) {
  .site-header { padding: 10px 16px; }
  .brand > span { display: none; }
  .hero { min-height: 640px; }
  .hero-art {
    width: 100%;
    max-width: none;
    max-height: 330px;
    margin-left: 0;
    margin-bottom: 8px;
  }
  .hero-copy {
    width: calc(100% - 24px);
    padding: 0 12px;
  }
  .hero-logo { width: min(240px, 76%); }
  .brand-band {
    gap: 18px;
    padding: 22px;
  }
  .brand-band .neighbor-logo {
    width: min(260px, 86%);
  }
  #repairs {
    width: calc(100% - 32px);
    max-width: 100%;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
  }
  #repairs .section-copy,
  #repairs .repair-grid,
  #repairs .service-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  #repairs h2 {
    font-size: 32px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
  #repairs .section-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }
  .apple-authorized-badge {
    display: grid;
    justify-items: start;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .apple-authorized-badge img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .button-row, .button { width: 100%; }
  .trust-strip, .repair-grid, .ai-grid, .feature-list, .stats-panel, .partner-list, .custom-pc-grid, .local-llm-steps, .portal-card-list, .testimonial-grid, .ai-agent-grid {
    grid-template-columns: 1fr;
  }
  .ai-agent-note { display: block; }
  .ai-agent-note p { margin-top: 10px; }
  .page-grid, .directory { grid-template-columns: 1fr; }
  .inquiry-form { grid-template-columns: 1fr; }
  .store-tools, .store-grid, .store-tools form { grid-template-columns: 1fr; }
  .repair-links, .detail-points { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .page-cta { display: block; }
  .page-cta .button { width: 100%; margin-top: 18px; }
  .section, .ai-section { padding-top: 64px; padding-bottom: 64px; }
  .support-strip, .custom-pc-section, .local-llm-section, .portal-panel, .ai-guide-panel, .ai-agent-panel { padding: 24px; }
  .service-card { min-height: auto; }
  .apple-banner { padding: 22px; }
  .cta-card { grid-template-columns: 1fr; padding: 24px; }
  .cta-card img { display: none; }
}
