/* =========================================================
   THOMPSON SORTED — STYLESHEET
   =========================================================
   Quick guide for editing:
   - All colours live in the :root section right below. Change
     a colour once here and it updates everywhere on the site.
   - Sections are laid out in the same order they appear on the
     page (header, hero, services, pricing, about, faq, contact,
     footer) so it's easy to find what you're looking for.
   ========================================================= */

/* -----------------------------
   1. COLOURS, FONTS & SPACING
   ----------------------------- */
:root {
  /* Charcoal & teal palette */
  --charcoal-900: #1f2422;   /* near-black, used for headings */
  --charcoal-700: #3d4548;   /* body text */
  --charcoal-500: #6b7377;   /* muted / secondary text */
  --teal: #1f8a82;           /* primary accent — buttons, links */
  --teal-dark: #146b64;      /* hover state for teal */
  --teal-light: #e6f3f1;     /* soft tint for backgrounds/badges */
  --cream: #faf8f5;          /* main page background */
  --white: #ffffff;
  --border: #e4e1da;
  --shadow: 0 4px 20px rgba(31, 36, 34, 0.08);

  /* Fonts */
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing / layout */
  --max-width: 1140px;
  --radius: 12px;
}

/* -----------------------------
   2. RESET & BASE STYLES
   ----------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal-700);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal);
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--charcoal-900);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1rem; }

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

section {
  padding: 88px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-heading p {
  color: var(--charcoal-500);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* -----------------------------
   3. BUTTONS
   ----------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--teal-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--charcoal-900);
  border-color: var(--charcoal-900);
}

.btn-secondary:hover {
  background-color: var(--charcoal-900);
  color: var(--white);
}

.btn-block {
  display: block;
  width: 100%;
}

/* -----------------------------
   4. HEADER (sticky)
   ----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal-900);
}

.logo span {
  color: var(--teal);
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: var(--charcoal-700);
  font-weight: 500;
  font-size: 0.98rem;
}

.main-nav a:hover {
  color: var(--teal);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-cta-item {
  display: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--charcoal-900);
  display: block;
}

/* -----------------------------
   5. HERO
   ----------------------------- */
.hero {
  padding: 72px 0 56px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero .subheadline {
  font-size: 1.15rem;
  color: var(--charcoal-500);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--charcoal-500);
  font-size: 0.92rem;
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-strip svg {
  flex-shrink: 0;
  color: var(--teal);
}

/* Hero visual card */
.hero-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-visual .visual-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal-500);
  margin-bottom: 18px;
}

.visual-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.visual-row:last-of-type {
  border-bottom: none;
}

.visual-row .amount {
  font-weight: 600;
  color: var(--charcoal-900);
}

.visual-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px solid var(--charcoal-900);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.visual-total .label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--charcoal-900);
}

.visual-total .amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--teal);
  font-weight: 600;
}

/* -----------------------------
   6. HOW IT WORKS
   ----------------------------- */
.how-it-works {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  position: relative;
  padding-left: 4px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal-900);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 18px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--charcoal-500);
  margin-bottom: 0;
}

/* -----------------------------
   7. SERVICES
   ----------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--charcoal-500);
  margin-bottom: 18px;
}

.service-link {
  font-weight: 600;
  font-size: 0.95rem;
}

.service-link:hover {
  color: var(--teal-dark);
}

/* -----------------------------
   8. PRICING
   ----------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow);
  position: relative;
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 100px;
}

.price-card h3 {
  margin-bottom: 8px;
}

.price-card .price-desc {
  color: var(--charcoal-500);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--charcoal-900);
  margin-bottom: 4px;
}

.price-amount .period {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal-500);
}

.price-note {
  font-size: 0.88rem;
  color: var(--teal-dark);
  margin-bottom: 24px;
}

.price-features {
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.96rem;
  color: var(--charcoal-700);
}

.price-features svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 3px;
}

.pricing-footnote {
  text-align: center;
  color: var(--charcoal-500);
  font-size: 0.92rem;
  margin-top: 32px;
  margin-bottom: 0;
}

/* -----------------------------
   9. ABOUT
   ----------------------------- */
.about {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about .container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-avatar span {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--white);
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--charcoal-700);
}

.about-content .disclaimer {
  font-size: 0.9rem;
  color: var(--charcoal-500);
  border-left: 3px solid var(--teal-light);
  padding-left: 16px;
  margin-top: 24px;
}

/* -----------------------------
   10. FAQ
   ----------------------------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal-900);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--teal);
  transition: transform 0.2s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 4px 22px;
  color: var(--charcoal-500);
  max-width: 640px;
}

/* -----------------------------
   11. CONTACT
   ----------------------------- */
.contact {
  background-color: var(--white);
  border-top: 1px solid var(--border);
}

.contact .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--charcoal-500);
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-detail svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  color: var(--charcoal-900);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
  color: var(--charcoal-700);
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal-900);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--charcoal-500);
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
}

.form-success {
  display: none;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.form-success.visible {
  display: block;
}

/* -----------------------------
   11b. FREE CHECKLIST (lead magnet)
   ----------------------------- */
.checklist {
  background-color: var(--teal-light);
}

.checklist-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 48px;
}

.checklist-text .section-tag {
  margin-bottom: 16px;
}

.checklist-text h2 {
  margin-bottom: 14px;
}

.checklist-text p {
  color: var(--charcoal-500);
  margin-bottom: 0;
}

.checklist-form .form-group {
  margin-bottom: 14px;
}

.checklist-form .form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--charcoal-500);
  margin-top: 12px;
  margin-bottom: 0;
}

/* -----------------------------
   11c. WEB DESIGN (secondary offer)
   ----------------------------- */
.web-design {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.web-design-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.web-design-box .section-tag {
  margin-bottom: 16px;
}

.web-design-box h2 {
  margin-bottom: 18px;
}

.web-design-box p {
  color: var(--charcoal-500);
}

.web-design-box .btn {
  margin-top: 12px;
}

/* -----------------------------
   12. FINAL CTA BAND
   ----------------------------- */
.cta-band {
  background-color: var(--charcoal-900);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* -----------------------------
   13. FOOTER
   ----------------------------- */
.site-footer {
  background-color: var(--charcoal-900);
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .logo span {
  color: var(--teal);
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-bottom .disclaimer {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.45);
}

/* -----------------------------
   14. RESPONSIVE
   ----------------------------- */
@media (max-width: 900px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  section { padding: 64px 0; }

  .main-nav,
  .header-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 12px 24px 24px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 12px 0;
    width: 100%;
  }

  .nav-cta-item {
    display: block;
    margin-top: 10px;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .steps,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .about-avatar {
    max-width: 200px;
    margin: 0 auto;
  }

  .checklist-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .contact .container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  h1 { font-size: 1.85rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}
