/* Peach State Care — mockup-faithful rebuild */
:root {
  --orange: #F15F09;
  --orange-bright: #FF6E1A;
  --orange-deep: #D95408;
  --orange-soft: rgba(241, 95, 9, 0.12);
  --slate: #4A6274;
  --slate-deep: #3A5160;
  --ink: #111111;
  --ink-soft: #1a1a1a;
  --muted: #5c6570;
  --white: #ffffff;
  --off: #F5F8FA;
  --hero-bg: #F3F7FA;
  --gray: #E6EBF0;
  --gray-line: #D8DEE5;
  --shadow: 0 12px 32px rgba(17, 17, 17, 0.1);
  --shadow-sm: 0 6px 18px rgba(17, 17, 17, 0.08);
  --radius: 16px;
  --max: 1180px;
  --nav-h: 74px;
  --font: "Montserrat", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#quote, #services, #about, #home { scroll-margin-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }
a:hover { color: var(--orange); }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
  padding: 0.75rem 1rem; z-index: 1000; border-radius: 6px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--nav-h); gap: 0.75rem; position: relative;
}
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--ink); flex-shrink: 0;
}
.logo-mark { width: 48px; height: 48px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong {
  font-size: 1.02rem; font-weight: 800; letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--ink);
}
.logo-text span {
  font-size: 0.68rem; font-weight: 700; color: var(--orange);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.18rem;
}
.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav-toggle {
  border: 2px solid var(--ink); background: var(--white);
  border-radius: 8px; width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2.5px; background: var(--ink); margin: 3px 0; border-radius: 2px;
}
.site-nav { display: none; width: 100%; }
.site-nav.open {
  display: block;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-bottom: 2px solid var(--orange);
  box-shadow: var(--shadow-sm); padding: 0.5rem 0 1rem;
}
.nav-links {
  list-style: none; margin: 0; padding: 0.4rem 0;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.nav-links a {
  display: inline-block; text-decoration: none; color: var(--ink); font-weight: 700;
  font-size: 0.95rem; padding: 0.55rem 0.15rem;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--orange); }
.nav-links a.is-active {
  box-shadow: inset 0 -2px 0 var(--orange);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem; border-radius: 10px; font-weight: 800;
  text-decoration: none; border: none; cursor: pointer; font-size: 1rem;
  font-family: inherit; transition: background 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-bright); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 2px solid rgba(17, 17, 17, 0.18);
  padding: 0.78rem 1.35rem;
}
.btn-ghost:hover {
  border-color: var(--orange); color: var(--orange); background: var(--orange-soft);
}
.btn-phone {
  background: var(--orange); color: #fff !important;
  border-radius: 10px; padding: 0.7rem 1.1rem; font-weight: 800;
  font-size: 0.88rem; letter-spacing: 0.01em; text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .btn-phone { font-size: 0.95rem; padding: 0.75rem 1.3rem; }
}
.btn-phone:hover { background: var(--orange-bright); color: #fff !important; }
.btn-block {
  width: 100%; padding: 1rem; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.08em; border-radius: 10px;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block; width: auto; position: static;
    box-shadow: none; border: none; padding: 0;
    margin: 0 auto;
  }
  .nav-links {
    flex-direction: row; align-items: center; gap: 0.15rem 1.75rem; padding: 0;
  }
  .nav-links a { padding: 0.35rem 0; font-size: 0.95rem; }
  .header-inner { gap: 1.5rem; }
}

/* ========== RIBBON / TRIANGLES ========== */
.ribbon {
  position: absolute; pointer-events: none; z-index: 0;
  display: block;
}
.rib {
  position: absolute;
  display: block;
}
.rib-orange { background: var(--orange); }
.rib-slate { background: var(--slate); }

.ribbon-tr {
  top: 0; right: 0; width: 280px; height: 200px;
}
.ribbon-tr .rib-orange {
  top: 0; right: 0; width: 210px; height: 130px;
  clip-path: polygon(40% 0, 100% 0, 100% 100%);
  z-index: 2;
}
.ribbon-tr .rib-slate {
  top: 0; right: 55px; width: 200px; height: 170px;
  clip-path: polygon(0 0, 100% 0, 100% 55%, 45% 100%);
  opacity: 0.95;
  z-index: 1;
}

.ribbon-tl {
  top: 0; left: 0; width: 160px; height: 130px;
}
.ribbon-tl .rib-slate {
  top: 0; left: 0; width: 130px; height: 100px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.85;
}
.ribbon-tl .rib-orange {
  top: 0; left: 18px; width: 100px; height: 80px;
  clip-path: polygon(0 0, 100% 0, 0 85%);
  opacity: 0.55;
}

.ribbon-bl {
  bottom: 0; left: 0; width: 180px; height: 140px;
}
.ribbon-bl .rib-slate {
  bottom: 0; left: 0; width: 150px; height: 120px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  opacity: 0.9;
}
.ribbon-bl .rib-orange {
  bottom: 0; left: 20px; width: 110px; height: 90px;
  clip-path: polygon(0 30%, 0 100%, 100% 100%);
  opacity: 0.7;
}

.ribbon-why {
  left: -2rem; bottom: -1rem; width: 160px; height: 140px;
}
.ribbon-why .rib-slate {
  bottom: 0; left: 0; width: 130px; height: 110px;
  clip-path: polygon(0 15%, 0 100%, 90% 100%);
  opacity: 0.85;
}
.ribbon-why .rib-orange {
  bottom: 0; left: 10px; width: 95px; height: 80px;
  clip-path: polygon(0 35%, 0 100%, 100% 100%);
  opacity: 0.65;
}

/* ========== HERO ========== */
.hero {
  position: relative; overflow: hidden;
  padding: 2.25rem 0 2.5rem;
  background: linear-gradient(180deg, var(--hero-bg) 0%, #EEF3F7 55%, #E8EEF3 100%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 1.5rem; align-items: start;
}
.hero-copy h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.05rem, 5vw, 3.35rem);
  line-height: 1.08; letter-spacing: -0.03em;
  font-weight: 900; color: var(--ink);
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center;
  margin-bottom: 1.15rem;
}
.hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 0.85rem;
}
.hero-visual::before {
  content: "";
  position: absolute;
  left: 8%; right: 8%; bottom: 0.15rem;
  height: 56px;
  background: linear-gradient(to top, rgba(74, 98, 116, 0.14), rgba(74, 98, 116, 0.05) 50%, transparent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Planted team cutout — baked ground shadow in PNG + light floor wash */
.team-plant {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.hero-team {
  width: min(100%, 380px);
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  /* light ambient only — contact shadow is baked into the PNG under the legs */
  filter: drop-shadow(0 4px 10px rgba(17, 17, 17, 0.08));
  position: relative;
  z-index: 2;
  display: block;
}
.team-plant::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 36px;
  background: linear-gradient(to top, rgba(74, 98, 116, 0.10), transparent);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
/* CSS ground kept as a subtle reinforce under baked shadow */
.team-ground { display: none; }
.hero-badge {
  width: clamp(110px, 32%, 200px);
  height: auto;
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 10%;
  filter: drop-shadow(0 10px 22px rgba(17, 17, 17, 0.16));
  z-index: 2;
}

/* Quote card in hero — above the fold */
.quote-card--hero {
  margin-top: 0.15rem;
  padding: 1.15rem 1.05rem 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}
.quote-card--hero .quote-title {
  font-size: 1.12rem;
  margin-bottom: 0.85rem;
}
.quote-card--hero .field { margin-bottom: 0.7rem; }
.quote-card--hero .btn-block { padding: 0.85rem; font-size: 0.98rem; }
.quote-card--hero .form-note { font-size: 0.75rem; margin-top: 0.5rem; }

@media (min-width: 800px) {
  .hero { padding: 2.75rem 0 3rem; }
  .hero-grid {
    grid-template-columns: 0.92fr 1.18fr;
    gap: 1.75rem;
    align-items: center;
  }
  .hero-copy { padding-right: 0.35rem; }
  .hero-visual {
    justify-content: flex-end;
    gap: 0.75rem;
  }
  .hero-team { width: min(100%, 420px); }
  .hero-badge { width: clamp(140px, 36%, 210px); margin-bottom: 12%; }
  .ribbon-tr { width: 340px; height: 240px; }
  .ribbon-tr .rib-orange { width: 260px; height: 160px; }
  .ribbon-tr .rib-slate { width: 240px; height: 200px; right: 70px; }
  .quote-card--hero { max-width: 440px; }
}

/* ========== MAIN TWO-COLUMN ========== */
.main-panel {
  padding: 3rem 0 3.25rem;
  background: var(--white);
  position: relative;
}
.main-grid {
  display: grid; gap: 2.5rem;
}
.block-title {
  margin: 0 0 1.2rem;
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 900; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.045em;
}

/* Service cards — large illustrated */
.service-cards {
  display: grid; gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 17, 17, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-icon {
  position: absolute;
  top: 1rem; left: 1rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange);
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(241, 95, 9, 0.35);
}
.service-illust {
  margin: 0.35rem 0 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--off);
}
.service-illust img {
  width: 100%;
  height: auto;
  aspect-ratio: 280 / 180;
  object-fit: cover;
}
.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem; font-weight: 800; color: var(--ink);
  line-height: 1.3;
}
.service-card h3 span {
  display: inline; font-weight: 700; color: var(--orange); font-size: 0.92rem;
}
.service-card p {
  margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5;
  font-weight: 500;
}

/* Why choose us */
.why-block {
  position: relative;
  padding: 0.5rem 0 0.5rem;
  overflow: hidden;
}
.why-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.9rem 1.75rem;
  position: relative; z-index: 1;
}
.why-list li {
  display: flex; align-items: center; gap: 0.7rem;
  font-weight: 700; color: var(--ink); font-size: 1rem;
}
.why-list .check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center;
  font-size: 0.78rem; font-weight: 900; flex-shrink: 0;
}

/* Experts */
.experts-card { margin-bottom: 0.5rem; }
.experts-photo-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef3f7 0%, #e5ebf1 55%, #d5dee6 100%);
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.experts-photo {
  width: min(100%, 340px);
  max-height: none;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  background: transparent;
  position: relative;
  z-index: 2;
  filter: none;
  display: block;
}
.experts-photo-wrap.team-plant {
  padding-bottom: 0.85rem;
}
.experts-photo-wrap .team-ground {
  display: none; /* baked into PNG */
}
.experts-contacts {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0;
}
.experts-contacts li {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-line);
}
.experts-contacts li:last-child { border-bottom: none; }
.eci {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.experts-contacts p {
  margin: 0; font-size: 0.95rem; color: var(--ink); font-weight: 600;
  line-height: 1.35;
}
.experts-contacts strong {
  font-weight: 800; color: var(--ink);
}
.experts-contacts a {
  font-weight: 700; text-decoration: none; color: var(--ink);
}
.experts-contacts a:hover { color: var(--orange); }

/* Quote form — Name + Phone side-by-side */
.quote-card {
  background: var(--white);
  border: 2.5px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.quote-title {
  margin: 0 0 1.15rem;
  font-size: 1.3rem; font-weight: 900; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.04em; text-align: center;
}
.quote-title em {
  font-style: normal; color: var(--orange);
}
.field-row {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0;
}
.field { margin-bottom: 0.9rem; }
label {
  display: block; font-weight: 700; font-size: 0.85rem;
  color: var(--ink); margin-bottom: 0.3rem;
}
input, select {
  width: 100%; padding: 0.78rem 0.85rem; border-radius: 8px;
  border: 1.5px solid rgba(17, 17, 17, 0.16); background: var(--white);
  font: inherit; color: var(--ink);
}
input:focus, select:focus {
  outline: 2px solid rgba(241, 95, 9, 0.35); border-color: var(--orange);
}
.form-note {
  margin: 0.65rem 0 0; color: var(--muted); font-size: 0.8rem; text-align: center;
  font-weight: 500;
}
.form-status {
  display: none; margin-top: 0.65rem; padding: 0.7rem 0.85rem; border-radius: 8px;
  background: #EEF6FF; color: var(--ink); font-weight: 700; font-size: 0.9rem;
}
.form-status.show { display: block; }

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
}
@media (min-width: 700px) {
  .service-cards { grid-template-columns: 1fr 1fr; }
  .why-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .main-grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 2.75rem;
    align-items: start;
  }
  .field-row { grid-template-columns: 1fr 1fr; }
}

/* ========== FOOTER — light, simple ========== */
.site-footer {
  background: var(--off);
  padding: 2.25rem 0 1.25rem;
  border-top: 1px solid var(--gray-line);
}
.footer-grid {
  display: grid; gap: 1.5rem; align-items: center;
  margin-bottom: 1.5rem;
}
.footer-brand img {
  width: 130px; height: 130px; margin: 0 auto;
}
.footer-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem;
  justify-items: start;
}
.footer-links h3 {
  margin: 0 0 0.5rem; font-size: 0.95rem; font-weight: 800; color: var(--ink);
}
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.38rem; }
.footer-links a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.92rem;
}
.footer-links a:hover { color: var(--orange); }
.footer-qr {
  display: flex; align-items: center; gap: 0.75rem; justify-content: center;
}
.footer-qr img {
  width: 108px; height: 108px;
  border: 3px solid var(--orange); border-radius: 6px; background: #fff;
  padding: 4px;
}
.qr-caption {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem;
}
.qr-script {
  font-family: "Segoe Script", "Brush Script MT", "Comic Sans MS", cursive;
  color: var(--orange); font-size: 1.15rem; font-weight: 600;
  line-height: 1.2;
}
.qr-arrow {
  color: var(--orange); font-size: 1.35rem; line-height: 1; margin-left: 0.15rem;
}
.footer-bottom {
  border-top: 1px solid var(--gray-line); padding-top: 1rem;
  text-align: center; color: var(--muted); font-size: 0.82rem;
}
.footer-bottom p { margin: 0 0 0.4rem; }
.footer-meta { font-weight: 500; line-height: 1.5; }
.footer-bottom a { font-weight: 700; text-decoration: none; color: var(--muted); }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom .copy { font-size: 0.78rem; opacity: 0.85; }

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
  }
  .footer-brand img { margin: 0; width: 140px; height: 140px; }
  .footer-qr { justify-content: flex-end; }
  .footer-bottom {
    text-align: left;
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    align-items: baseline;
  }
  .footer-bottom .copy { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

.optional { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.7; font-size: 0.85em; }

/* SEO local section */
.hero-sub{margin:0.5rem 0 1rem;font-size:1.05rem;font-weight:600;color:#002D5B;max-width:28rem;line-height:1.4}
.local-seo{padding:2.5rem 0 3rem;background:#f7f8fa;color:#002D5B}
.local-seo-inner{max-width:820px}
.local-seo p{line-height:1.6;margin:0.75rem 0}
.local-sub{font-size:1.1rem;margin:1.5rem 0 0.5rem;color:#F15F09}
.area-list{display:flex;flex-wrap:wrap;gap:0.5rem 1.25rem;list-style:disc;padding-left:1.25rem;margin:0.5rem 0 0}
.area-list li{margin:0.15rem 0}
.faq{margin:0.5rem 0 0}
.faq dt{font-weight:700;margin-top:0.85rem}
.faq dd{margin:0.25rem 0 0;line-height:1.55}
.local-cta{display:flex;flex-wrap:wrap;gap:0.75rem;margin-top:1.5rem}

/* Service landing pages */
.service-page .service-hero{padding:2.5rem 0 1.5rem;background:var(--hero-bg);color:#002D5B}
.service-page .crumb{font-size:0.9rem;margin:0 0 0.75rem;opacity:0.85}
.service-page .crumb a{color:#002D5B;text-decoration:underline}
.service-page h1{font-size:clamp(1.6rem,3vw,2.25rem);margin:0 0 0.75rem;line-height:1.2}
.service-page .lead{font-size:1.05rem;max-width:40rem;margin:0 0 1.25rem;line-height:1.55}
.service-page .service-hero .btn{margin-right:0.5rem;margin-bottom:0.5rem}
.service-body{padding:2rem 0 3rem}
.service-page .prose{max-width:760px;color:#002D5B}
.service-page .prose h2{font-size:1.25rem;margin:1.75rem 0 0.5rem;color:var(--orange)}
.service-page .prose ul{padding-left:1.25rem}
.service-page .prose li{margin:0.35rem 0}
