/* Innovatio Consulting LLC — base styles */

:root {
  --color-primary: #4E6E8E;
  --color-primary-dark: #35506A;
  --color-primary-light: #E7EEF4;
  --color-accent: #C79A4B;
  --color-accent-dark: #A87C34;
  --color-ink: #26313D;
  --color-body: #46525C;
  --color-muted: #6B7684;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F4F7F9;
  --color-border: #E1E7EC;
  --font-heading: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 10px;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg);
  line-height: 1.65;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.25;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin: 0 0 1rem; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-secondary:hover { background: var(--color-primary-light); }

/* Header */
.site-header {
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-ink);
}
.brand:hover { text-decoration: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; }
.brand-tagline { font-size: 0.72rem; color: var(--color-muted); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--color-ink);
}

.primary-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  color: var(--color-ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.primary-nav a[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 700;
  border-bottom: 2px solid var(--color-accent);
}
.primary-nav a:hover {
  color: var(--color-accent-dark);
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-cta { font-size: 0.85rem; padding: 0.6rem 1.25rem; }

/* Hero */
.hero, .page-hero {
  background: linear-gradient(180deg, var(--color-primary-light) 0%, #fff 100%);
  padding: 3.5rem 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.hero-lead { font-size: 1.1rem; color: var(--color-body); max-width: 60ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }

.hero-photo { margin: 0; text-align: center; }
.hero-photo-frame {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 0 0 8px #fff, 0 0 0 11px var(--color-primary-light), 0 25px 45px -20px rgba(38,49,61,0.4);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-caption {
  margin: 0.9rem 0 0;
  padding-top: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-ink);
  font-size: 1.05rem;
  position: relative;
}
.hero-photo-caption::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0 auto 0.6rem;
}

.about-photo { margin: 0 0 1.25rem; max-width: 340px; }
.about-photo img {
  width: 100%;
  aspect-ratio: 580 / 554;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 4px solid #fff;
  box-shadow: 0 12px 30px -18px rgba(38,49,61,0.45);
}
.about-photo figcaption {
  margin-top: 0.65rem;
  font-weight: 600;
  color: var(--color-ink);
  font-size: 0.92rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.trust-badges li {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--color-bg-alt); }
.section-lead { color: var(--color-muted); max-width: 70ch; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.card-link { font-weight: 600; }
.card-link:hover { color: var(--color-accent-dark); }

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.city-pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.5rem 0;
}
.city-pill-list li {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
}

.why-grid, .two-col, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.testimonial-name { font-weight: 600; color: var(--color-ink); margin: 0; }
.placeholder-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-style: italic;
}
.placeholder-card { background: var(--color-bg-alt); }
.fine-print { font-size: 0.85rem; color: var(--color-muted); }

.cta-card {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
}
.cta-card h3, .cta-card h2 { color: #fff; }
.cta-card-wide { text-align: center; }
.cta-card .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-card .btn-secondary:hover { background: rgba(255,255,255,0.1); }

.contact-list { list-style: none; padding: 0; }
.contact-list li { margin-bottom: 0.5rem; }

/* Service page */
.service-jumplinks {
  border-bottom: 1px solid var(--color-border);
  background: #fff;
  position: sticky;
  top: 73px;
  z-index: 50;
}
.service-jumplinks ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0.9rem 0;
  margin: 0;
  overflow-x: auto;
  font-size: 0.9rem;
  font-weight: 600;
}
.service-detail { max-width: 75ch; }

/* Blog */
.post-meta { color: var(--color-muted); font-size: 0.9rem; }
.post-grid .card p { color: var(--color-body); }
.post-container { max-width: 78ch; padding-top: 2.5rem; padding-bottom: 3rem; }
.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 0.4rem;
  padding: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; }
.post-header { margin-top: 1rem; }
.post-placeholder-banner {
  background: #FFF6E5;
  border: 1px solid #F2D48A;
  color: #6B5100;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  margin: 1.5rem 0;
}
.post-body h2 { margin-top: 2rem; }
.post-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.post-footer .btn { margin-right: 0.75rem; margin-top: 0.5rem; }

/* Schedule */
.schedule-embed { max-width: 900px; margin: 0 auto; }
.schedule-embed-frame {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt);
}
.schedule-embed-frame iframe {
  width: 100%;
  height: 1000px;
  border: 0;
  display: block;
}
.schedule-embed-placeholder {
  height: 1000px;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border-style: dashed;
}

/* FAQ */
.faq-list { max-width: 80ch; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.9rem;
}
.faq-item summary { cursor: pointer; }
.faq-item summary h3 { display: inline; font-size: 1.05rem; }
.faq-item[open] summary { margin-bottom: 0.5rem; }

/* Footer */
.site-footer {
  background: var(--color-ink);
  color: #C9D4D5;
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-business-name { color: #fff; font-weight: 700; margin: 0.75rem 0 0.15rem; }
.footer-tagline { font-size: 0.85rem; margin-bottom: 0.75rem; }
.footer-note { font-size: 0.85rem; }
.footer-heading { color: #fff; font-size: 0.95rem; font-family: var(--font-body); margin-bottom: 1rem; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 0.55rem; font-size: 0.9rem; }
.footer-list a { color: #C9D4D5; }
.footer-cities li { color: #A9B8B9; }
.footer-subheading { margin-top: 1.5rem; }
.footer-address-block {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 0.4rem;
}
.footer-address-note {
  font-size: 0.78rem;
  color: #9AA7B3;
  line-height: 1.5;
  margin: 0;
}
.footer-sms-disclosure {
  font-size: 0.75rem;
  color: #9AA7B3;
  line-height: 1.55;
  margin: 0.85rem 0 0;
}
.footer-sms-disclosure a { color: var(--color-accent); }
.footer-sms-disclosure a:hover { color: var(--color-accent-dark); }
.footer-bottom {
  border-top: 1px solid rgba(199,154,75,0.35);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: #8FA0A1;
}
.footer-bottom a { color: #C9D4D5; }
.footer-bottom a:hover { color: var(--color-accent); }
.footer-disclaimer { max-width: 80ch; }

@media (max-width: 860px) {
  .hero-inner, .why-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 260px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    display: none;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav ul {
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
  }
  .nav-cta { margin-top: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
