:root {
  --orange: #ef8a2b;
  --orange-deep: #d26e12;
  --orange-soft: #fdece2;
  --teal: #5a8a8a;
  --teal-deep: #3f6b6b;
  --ink: #2b2c31;
  --ink-soft: #585961;
  --bg: #ffffff;
  --bg-soft: #f2ede9;
  --border: #e7e7e7;
  --shadow: 0 20px 44px -24px rgba(43, 44, 49, 0.28);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.18;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Banner */
.banner {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 21px;
  text-decoration: none;
}
.brand-mark {
  color: var(--orange);
  font-size: 26px;
}
.primary-nav { display: flex; gap: 26px; align-items: center; }
.primary-nav a { color: var(--ink); font-weight: 500; font-size: 15px; }
.primary-nav a:hover { color: var(--orange-deep); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle-bar { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.site-header.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
section[id] { scroll-margin-top: 86px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-deep); text-decoration: none; transform: translateY(-1px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--orange-deep); border-color: var(--orange); }
.btn-ghost:hover { background: var(--orange-soft); text-decoration: none; }
.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-light:hover { background: rgba(255,255,255,0.14); text-decoration: none; }

/* Eyebrows / section titles */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--orange-deep);
  margin: 0 0 16px;
}
.eyebrow.center { text-align: center; }
.section { padding: 92px 0; }
.section-title { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 16px; }
.section-title.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }
.section-lede { max-width: 660px; margin: -24px auto 48px; text-align: center; font-size: 17px; color: var(--ink-soft); }

/* HERO (SoFlo style: warm orange gradient) */
.hero {
  padding: 84px 0 96px;
  background: linear-gradient(255deg, rgba(222,116,18,0.94) 0%, rgba(164,82,10,0.94) 100%), radial-gradient(900px 400px at 85% 10%, rgba(255,255,255,0.14), transparent 60%);
  color: #fff;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.hero-copy h1 { color: #fff; font-size: clamp(32px, 5vw, 56px); margin-bottom: 20px; font-weight: 600; }
.hero-copy h1 em { font-style: italic; color: #ffd9b0; }
.lede { font-size: 18px; max-width: 560px; color: #fff4e8; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 40px; }
.hero-copy .btn-teal { background: var(--teal); }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.28);
}
.stat-row li { display: flex; flex-direction: column; }
.stat-row strong { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-row span { font-size: 13px; color: #ffeddb; line-height: 1.4; }

/* Hero media card */
.hero-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 28px 60px -30px rgba(0,0,0,0.5);
}
.card-tag {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 700;
}
.hero-card .check-list li { color: var(--ink); }
.mini-quote { margin: 20px 0 0; padding: 14px 16px; background: var(--bg-soft); border-radius: var(--radius-sm); font-family: 'Montserrat', sans-serif; font-style: italic; font-size: 14px; color: var(--ink); border-left: 4px solid var(--orange); }
.mini-quote cite { display: block; margin-top: 6px; font-style: normal; font-family: 'Roboto', sans-serif; font-size: 13px; color: var(--ink-soft); }
.check-list li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink); font-size: 15px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700; }

/* VALUE PROP (white centered) */
.value-prop { text-align: center; }
.value-prop h2 { max-width: 780px; margin-left: auto; margin-right: auto; }
.value-prop .lede { max-width: 720px; margin: 0 auto; font-size: 17px; }
.value-prop strong, .value-prop .em { color: var(--orange-deep); }

/* FEATURES (3-column) */
.features { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { text-align: center; padding: 20px 12px; }
.feature-icon {
  width: 72px; height: 72px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-soft); border-radius: 16px; font-size: 34px;
}
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { font-size: 15px; }

/* METHOD (light warm bg) */
.method { background: var(--bg-soft); }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.method-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
}
.method-card .numeral {
  font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 700; line-height: 1;
  background: linear-gradient(124deg, #ef8a2b 0%, #ea770b 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 14px;
}
.method-card h3 { font-size: 20px; margin-bottom: 10px; }
.method-card p { font-size: 15px; margin: 0; }

/* SERVICES */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 940px; margin: 0 auto; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column;
}
.service-card.featured { background: var(--orange-soft); border-color: var(--orange); }
.service-card.featured h3, .service-card.featured .price { color: var(--ink); }
.service-card h3 { font-size: 22px; margin-bottom: 6px; }
.service-head { margin-bottom: 18px; }
.price { font-family: 'Montserrat', sans-serif; font-size: 22px; margin: 0 0 4px; color: var(--ink); }
.price span { font-size: 14px; color: var(--ink-soft); }
.badge { display: inline-block; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.service-card .check-list { margin-bottom: 24px; flex: 1; }
.service-card .btn { align-self: flex-start; }

/* ABOUT */
.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center; }
.about-photo { text-align: center; }
.photo-frame { width: 280px; height: 280px; margin: 0 auto; background: linear-gradient(160deg, #f7c98f, #ef8a2b); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.photo-mat { background: #fff; border-radius: calc(var(--radius) - 2px); margin: 6px; flex: 1; align-self: stretch; display: flex; align-items: center; justify-content: center; padding: 8px; }
.about-logo { max-width: 80%; max-height: 80%; width: auto; height: auto; border-radius: 8px; display: block; }
.photo-tag { margin-top: 16px; font-size: 14px; color: var(--ink-soft); letter-spacing: 0.04em; }
.credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 20px; }
.credentials li { padding: 10px 14px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--ink); }

/* SIGNS */
.signs { background: var(--bg); }
.signs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sign { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; font-size: 14px; color: var(--ink); line-height: 1.45; }
.sign span { display: block; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: var(--orange-deep); margin-bottom: 8px; letter-spacing: 0.08em; }

/* TESTIMONIAL */
.stories { background: var(--bg-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.testimonial { max-width: none; margin: 0; text-align: left; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 34px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.stars { color: var(--orange); font-size: 20px; letter-spacing: 4px; margin-bottom: 16px; }
.testimonial blockquote { margin: 0 0 20px; font-family: 'Montserrat', sans-serif; font-style: italic; font-size: clamp(15px, 1.5vw, 18px); line-height: 1.55; color: var(--ink); flex: 1; }
.testimonial blockquote p { margin: 0 0 14px; }
.testimonial blockquote p:last-child { margin-bottom: 0; }
.testimonial figcaption strong { font-family: 'Montserrat', sans-serif; font-size: 16px; color: var(--ink); display: block; }
.testimonial figcaption span { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.04em; }

/* FAQ */
.faq { background: var(--bg); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 22px; transition: background 0.15s ease; }
.faq details[open] { background: var(--bg-soft); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 16px; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--orange); font-weight: 400; transition: transform 0.2s ease; }
.faq details[open] summary::after { content: '−'; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: 12px 0 0; font-size: 15px; }

/* SCHEDULE (Book a Discovery Call) */
.schedule { background: var(--bg-soft); }
.schedule-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; max-width: 1020px; margin: 0 auto; align-items: start; }
.cal-card, .questions-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.cal-card h3, .questions-card h3 { font-size: 21px; margin-bottom: 8px; }
.cal-note { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }
.cal-inline { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: #fff; width: 100%; height: 640px; min-height: 480px; }
.questions-card p { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; font-size: 12px; font-weight: 600; color: var(--orange-deep); letter-spacing: 0.08em; text-transform: uppercase; gap: 6px; font-family: 'Montserrat', sans-serif; }
.contact-form input, .contact-form textarea { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; font: inherit; color: var(--ink); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--orange); outline-offset: 1px; }
.form-status { margin: 4px 0 0; font-size: 14px; color: var(--orange-deep); font-weight: 500; letter-spacing: 0.02em; text-transform: none; }

/* CONTACT (orange band) */
.contact { background: linear-gradient(255deg, rgba(222,116,18,0.94) 0%, rgba(164,82,10,0.94) 100%); color: #fff; }
.contact .section-title, .contact .lede, .contact .eyebrow { color: #fff; }
.contact .eyebrow { color: #ffd9b0; }
.contact .lede { color: #fff4e8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.contact-list li { display: grid; grid-template-columns: 90px 1fr; gap: 16px; font-size: 15px; color: #fff; align-items: center; }
.contact-list span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: #ffd9b0; font-weight: 600; }
.contact-list a { color: #fff; }
.contact .contact-form { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); border-radius: var(--radius); padding: 28px; }
.contact .contact-form label { color: #ffd9b0; }
.contact .contact-form input, .contact .contact-form textarea { background: #fff; border-color: transparent; color: var(--ink); }

/* FOOTER */
.site-footer { background: #1f2024; color: #cdcfd3; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.site-footer h4 { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; font-weight: 600; }
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: #cdcfd3; font-size: 14px; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.site-footer .brand { color: #fff; }
.footer-tag { margin-top: 12px; font-size: 14px; color: #a7a9ad; max-width: 280px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: #8f9196; }

/* CHAT BUBBLE */
.chat-bubble { position: fixed; bottom: 24px; right: 24px; background: var(--orange); color: #fff; border: none; padding: 12px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; box-shadow: 0 12px 28px -10px rgba(239,138,43,0.6); z-index: 40; }
.chat-bubble:hover { background: var(--orange-deep); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .primary-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); padding: 8px 24px 18px; }
  .site-header.nav-open .primary-nav { display: flex; }
  .primary-nav a { padding: 13px 4px; font-size: 16px; border-bottom: 1px solid var(--border); }
  .primary-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .hero-grid, .about-grid, .contact-grid, .schedule-grid { grid-template-columns: 1fr; }
  .method-grid, .services-grid, .testimonials-grid, .features-grid { grid-template-columns: 1fr; }
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .stat-row { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 540px) {
  .signs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .credentials { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* REVEAL-ON-SCROLL (only when JS is active) */
html.js .section, html.js .hero-card, html.js .testimonial { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
html.js .section.in-view, html.js .hero-card.in-view, html.js .testimonial.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .section, html.js .hero-card, html.js .testimonial { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
