/* Zippy Zebra — Sonoran Hearth shared styles (v1 preview) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #FDFBF7;
  color: #3D2B1F;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
img.hero-image__media { max-width: none; height: 100%; width: 100%; }
ul { list-style: none; }
main { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
:focus-visible { outline: 2px solid #C86A3A; outline-offset: 2px; }

.overline {
  font-weight: 500; font-size: 0.85rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: #C86A3A;
}
.text-secondary { color: #6B5A4E; }
.text-accent { color: #C86A3A; }
.max-ch { max-width: 65ch; }

.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 500; font-size: 1rem; border-radius: 6px;
  padding: 0.8rem 1.8rem; cursor: pointer; min-height: 44px;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.btn-primary { background: #C86A3A; color: #FDFBF7; border: none; }
.btn-primary:hover { background: #A04E2A; }
.btn-secondary { background: transparent; color: #C86A3A; border: 2px solid #C86A3A; }
.btn-secondary:hover { background: #C86A3A; color: #FDFBF7; }

/* Header */
.site-header {
  background: #FDFBF7; padding: 0.75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem 1rem;
  border-bottom: 1px solid #E6DDD3;
  position: sticky; top: 0; z-index: 100;
}
.logo-link img { height: 44px; width: auto; max-width: min(180px, 55vw); }
.site-nav { display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem; font-size: 0.95rem; }
.site-nav a { color: #6B5A4E; padding: 0.35rem 0; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #C86A3A; text-decoration: underline; }
.header-phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-weight: 600; font-size: 0.95rem; color: #FDFBF7;
  background: #C86A3A; padding: 0.55rem 1.1rem; border-radius: 6px;
  white-space: nowrap; min-height: 44px; min-width: 44px;
  transition: background-color 150ms ease;
  -webkit-tap-highlight-color: transparent;
}
.header-phone:hover { background: #A04E2A; text-decoration: none; }
.header-phone:focus-visible { outline: 2px solid #3D2B1F; outline-offset: 2px; }
.tel-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-weight: 600; color: #C86A3A;
}
.tel-link:hover { text-decoration: underline; }
.btn-phone-inline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #C86A3A; color: #FDFBF7; font-weight: 600;
  padding: 0.5rem 1rem; border-radius: 6px; margin-top: 0.75rem;
  min-height: 44px;
}
.btn-phone-inline:hover { background: #A04E2A; text-decoration: none; }
.nav-toggle {
  display: none; background: none; border: 1px solid #E6DDD3;
  border-radius: 6px; padding: 0.4rem 0.65rem; color: #3D2B1F; cursor: pointer;
}

/* Hero — full width; van focal shifts on narrow viewports */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
  margin: 0;
}
.hero-image.hero-image--banner {
  display: block;
  width: 100%;
  aspect-ratio: 934 / 576;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #7eb0d4;
  line-height: 0;
}
.hero-image__media {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
}
.hero-content {
  padding: 2rem 1.5rem; display: flex; flex-direction: column;
  justify-content: center; gap: 1.25rem;
  background: #FDFBF7;
}
.hero-content h1 { font-size: clamp(2.2rem, 6vw, 3.5rem); letter-spacing: -0.01em; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Trust bar — edge to edge */
.trust-bar {
  background: #F6F2EC;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  gap: 0;
}
.trust-item {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.9rem; color: #3D2B1F; padding: 0.75rem 1.25rem;
  flex: 1 1 200px; text-align: center;
  transition: background 150ms;
}
.trust-item:hover { background: rgba(200, 106, 58, 0.08); }
.trust-item i { color: #C86A3A; font-size: 1.1rem; }
.trust-divider { width: 1px; background: #E6DDD3; align-self: stretch; min-height: 2.5rem; }

/* Sections */
.page-hero {
  padding: 3rem 1.5rem 2rem; max-width: 1200px; margin: 0 auto; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 2.75rem); margin-bottom: 0.75rem; }
.page-hero p { color: #6B5A4E; max-width: 50ch; margin: 0 auto; }

.section { padding: 3.5rem 0; }
.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem; text-align: center;
}
.section-intro { text-align: center; color: #6B5A4E; max-width: 55ch; margin: -0.5rem auto 2rem; }

/* Services grid */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
.service-card {
  background: #FFFFFF; border: 1px solid #E6DDD3; border-radius: 8px;
  padding: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.service-card i {
  font-size: 1.75rem; color: #C86A3A; width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
}
.service-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.15rem; }
.service-card p { color: #6B5A4E; font-size: 0.95rem; flex: 1; }
.service-card .learn-more { color: #C86A3A; font-weight: 500; font-size: 0.9rem; }
.service-card .learn-more:hover { text-decoration: underline; }

/* Intro band */
.intro-band {
  background: #F6F2EC; padding: 2.25rem 1.5rem 2.75rem;
  border-block: 1px solid #E6DDD3;
}
.intro-band .inner {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-start; text-align: left;
}
.intro-band .overline { margin: 0; }
.intro-band p { color: #6B5A4E; line-height: 1.65; margin: 0; }

/* Reviews page CTA */
.reviews-cta {
  text-align: center; margin-top: 3rem; padding-top: 0.5rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem;
}
.reviews-cta p { color: #6B5A4E; font-size: 1.05rem; margin: 0; }

/* Service detail (long-form services page) */
.service-detail {
  padding: 2.5rem 0; border-bottom: 1px solid #E6DDD3;
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); text-align: left;
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.service-detail h2 i { color: #C86A3A; font-size: 1.25rem; }
.service-detail p { color: #6B5A4E; margin-bottom: 1rem; max-width: 72ch; }
.service-detail ul {
  color: #6B5A4E; margin: 0 0 1rem 1.25rem; list-style: disc; max-width: 72ch;
}
.service-detail li { margin-bottom: 0.4rem; }
.services-page-intro {
  text-align: center; max-width: 55ch; margin: 0 auto 2rem;
  color: #6B5A4E;
}
.services-cta {
  margin: 2.5rem auto 0; padding: 2rem 1.5rem;
  max-width: 52rem; text-align: center;
  background: #F6F2EC; border-radius: 8px;
  border: 1px solid #E6DDD3;
}
.services-cta-lead {
  color: #6B5A4E; margin: 0 0 1.25rem; font-size: 1.05rem;
}
.services-cta-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 0.75rem 1.25rem;
}
.services-cta-or {
  margin: 0; color: #6B5A4E; font-size: 1rem;
  flex: 0 1 auto;
}
.services-cta-or a { font-weight: 500; }

/* Story preview */
.story-preview {
  display: grid; gap: 2rem; align-items: center;
}
.story-preview img {
  border-radius: 8px; box-shadow: 0 2px 12px rgba(62, 43, 31, 0.08);
}
.story-preview h3 { font-size: 1.35rem; margin: 1rem 0 0.5rem; color: #C86A3A; }
.story-signature { font-family: 'DM Serif Display', serif; color: #C86A3A; margin-top: 1rem; }

/* Reviews */
.reviews-platforms {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
  margin-bottom: 2.5rem; padding: 1.5rem; background: #FFFFFF;
  border: 1px solid #E6DDD3; border-radius: 8px;
}
.reviews-platforms a {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; border-radius: 8px; min-width: 100px;
  transition: background 150ms, transform 150ms;
}
.reviews-platforms a:hover { background: #F6F2EC; transform: translateY(-2px); }
.reviews-platforms img { max-height: 48px; width: auto; max-width: 120px; object-fit: contain; }
.reviews-platforms .platform-label { font-size: 0.8rem; font-weight: 500; color: #6B5A4E; }
.reviews-platforms .platform-stars { color: #C86A3A; font-size: 0.85rem; }

.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
.testimonial-card {
  background: #FFFFFF; border: 1px solid #E6DDD3; border-radius: 8px;
  padding: 1.75rem; box-shadow: 0 1px 3px rgba(62, 43, 31, 0.05);
}
.testimonial-card .quote-mark {
  font-family: 'DM Serif Display', serif; font-size: 2.5rem;
  line-height: 1; color: #C86A3A; margin-bottom: 0.25rem;
}
.testimonial-card .quote-title {
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 0.85rem; color: #C86A3A; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 0.5rem;
}
.testimonial-card .quote-text { font-style: italic; color: #3D2B1F; margin-bottom: 1rem; }
.testimonial-card .attribution { font-weight: 500; font-size: 0.95rem; color: #6B5A4E; }

.featured-quote {
  background: #2E1F16; color: #E6DDD3; padding: 3rem 1.5rem;
  border-radius: 8px; text-align: center; margin-bottom: 2rem;
}
.featured-quote blockquote {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem); font-style: italic;
  max-width: 42rem; margin: 0 auto 1rem; line-height: 1.5;
}
.featured-quote cite { font-style: normal; color: #C86A3A; font-weight: 500; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #E6DDD3; border-radius: 8px;
  margin-bottom: 0.75rem; background: #FFFFFF; overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem; cursor: pointer; font-weight: 500;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: #C86A3A; font-size: 1.25rem; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body {
  padding: 0 1.25rem 1.25rem; color: #6B5A4E; font-size: 0.95rem;
  border-top: 1px solid #E6DDD3;
}
.faq-item .faq-body p + p { margin-top: 0.75rem; }
.faq-item .faq-body ol { margin: 0.75rem 0 0 1.25rem; list-style: decimal; }
.faq-item .faq-body li { margin-bottom: 0.35rem; }

/* Contact */
.contact-section {
  display: grid; gap: 2.5rem; padding: 3.5rem 0;
}
.contact-map iframe {
  width: 100%; height: 300px; border: 1px solid #E6DDD3;
  border-radius: 8px; filter: grayscale(15%);
}
.contact-form-wrap { display: flex; flex-direction: column; gap: 1.25rem; }
.big-phone {
  font-family: 'DM Serif Display', serif; font-size: 1.65rem; color: #C86A3A;
}
.big-phone:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { font-weight: 500; font-size: 0.95rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid #E6DDD3; border-radius: 4px; padding: 0.75rem;
  background: #FDFBF7; font-family: inherit; font-size: 1rem; color: #3D2B1F; width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: 2px solid #C86A3A; outline-offset: 2px; }
.form-status {
  padding: 0.85rem 1rem; border-radius: 6px; font-size: 0.95rem; display: none;
}
.form-status.is-success {
  display: block; background: #F6F2EC; border: 1px solid #C86A3A; color: #3D2B1F;
}
.form-status.is-error {
  display: block; background: #fff5f0; border: 1px solid #A04E2A; color: #3D2B1F;
}
.service-area-text {
  font-size: 1.05rem; line-height: 1.7; color: #3D2B1F; max-width: 65ch;
}
.service-area-text strong { color: #3D2B1F; }

/* About page layout */
.about-layout { display: grid; gap: 2.5rem; padding: 2rem 0 3.5rem; }
.about-photo img { border-radius: 8px; box-shadow: 0 2px 12px rgba(62, 43, 31, 0.08); }
.about-content h2 { text-align: left; font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.about-content h3 { font-size: 1.2rem; color: #C86A3A; margin: 1.5rem 0 0.5rem; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.about-content p { color: #6B5A4E; margin-bottom: 1rem; max-width: 65ch; }

/* Footer */
.site-footer {
  background: #2E1F16; color: #E6DDD3;
  padding: 3rem 1.5rem; display: grid; gap: 2rem;
  max-width: none;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 1.05rem; margin-bottom: 0.75rem;
}
.footer-col p, .footer-col a { color: #E6DDD3; font-size: 0.95rem; line-height: 1.7; }
.footer-col a:hover { color: #C86A3A; text-decoration: underline; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.65rem; border: 1px solid rgba(230, 221, 211, 0.25);
  border-radius: 6px; font-size: 0.85rem;
}
.footer-social a:hover { border-color: #C86A3A; color: #C86A3A; }
.footer-bottom {
  border-top: 1px solid rgba(230, 221, 211, 0.2);
  text-align: center; padding: 1.25rem 1.5rem;
  font-size: 0.85rem; color: #9a8f85; background: #2E1F16;
}

.sticky-mobile {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%;
  background: #2E1F16; padding: 0.5rem 1rem; z-index: 200; justify-content: center;
}
.sticky-mobile .btn-primary { width: 100%; max-width: 360px; min-height: 48px; }

.skip-link {
  position: absolute; top: -100%; left: 0; background: #C86A3A;
  color: #FDFBF7; padding: 0.5rem 1rem; z-index: 1000;
}
.skip-link:focus { top: 0; }

@media (min-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .trust-bar { flex-wrap: nowrap; }
  .trust-item { flex: 1; border-right: none; }
  .trust-divider { display: block; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .story-preview { grid-template-columns: 1fr 1.1fr; }
  .intro-band .inner { max-width: 800px; padding-top: 0.25rem; }
  .contact-section { grid-template-columns: 1fr 1fr; align-items: start; }
  .about-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .site-footer { grid-template-columns: repeat(3, 1fr); padding: 3rem 2rem; }
  .nav-toggle { display: none !important; }
}
@media (min-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
    align-items: stretch;
    min-height: clamp(460px, 52vh, 640px);
  }
  .hero-image.hero-image--banner {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
  }
  .hero-content {
    padding: 3rem clamp(2rem, 4vw, 3.5rem);
    justify-self: stretch;
  }
  .testimonials-grid--dense { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    display: none; width: 100%; flex-direction: column;
    padding-top: 0.5rem; border-top: 1px solid #E6DDD3;
  }
  .site-nav.is-open { display: flex; }
  .header-phone { order: 3; width: 100%; justify-content: center; }
  .sticky-mobile { display: flex; }
  body { padding-bottom: 4.5rem; }
  .trust-divider { display: none; }
  .trust-item { border-bottom: 1px solid #E6DDD3; }
  .trust-item:last-child { border-bottom: none; }
}
