/* ============================================================
   Trifecta Sports Therapy — Landing Page
   Brand palette & fonts carried over from the v2 review outline.
   ============================================================ */

:root {
  --gold: #FFC637;
  --gold-deep: #C9971F;
  --black: #000000;
  --ink: #1a1a1a;
  --body-gray: #383838;
  --off-white: #F4F4F3;
  --white: #FFFFFF;
  --line-light: #E2E1DD;
  --good: #3FA34D;

  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;

  --maxw: 1140px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--body-gray);
  background: var(--white);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
a { color: var(--gold-deep); }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 84px 0; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; }
.section-sub { font-size: 1.25rem; font-weight: 600; color: var(--gold-deep); margin-bottom: .6em; }
.section-intro { color: var(--body-gray); }
.section-cta { text-align: center; margin-top: 48px; }

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold); }

/* ---------------------------- Buttons ---------------------------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .92rem; }
.btn-block { display: block; width: 100%; }

.btn-gold { background: var(--gold); color: var(--black); box-shadow: 0 8px 22px rgba(255, 198, 55, .45); }
.btn-gold:hover { background: var(--gold-deep); color: var(--black); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--black); }

.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255, 255, 255, .12); }

/* ---------------------------- Header ---------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--ink); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.logo { font-size: 1.4rem; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: .01em; }
.logo-sub { font-weight: 600; color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { color: var(--white); text-decoration: none; font-weight: 700; font-family: var(--display); white-space: nowrap; }
.header-phone:hover { color: var(--gold); }
.offer-strip {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  padding: 8px 10px;
}

/* ---------------------------- Hero ---------------------------- */
.hero { background: linear-gradient(160deg, var(--off-white) 0%, #e9e8e4 100%); padding: 64px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: start; }
.hero-copy h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 900; }
.lede { font-size: 1.22rem; color: var(--ink); }
.hero-bullets { list-style: none; padding: 0; margin: 28px 0; }
.hero-bullets li { position: relative; padding-left: 34px; margin-bottom: 16px; }
.hero-bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; background: var(--gold); color: var(--black);
  border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: .8rem;
}
.hero-trust { font-weight: 600; color: var(--ink); }

/* ---------------------------- Lead form card ---------------------------- */
.lead-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 30px 28px;
}
.ribbon {
  position: absolute; top: -14px; left: 30px;
  background: var(--ink); color: var(--gold);
  font-family: var(--display); font-weight: 700; font-size: .75rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
}
.lead-title { font-size: 1.5rem; font-weight: 800; margin-top: 8px; }
.lead-sub { font-size: 1rem; color: var(--body-gray); }
.lead-form { display: grid; gap: 14px; margin-top: 8px; }
.lead-form label { display: grid; gap: 0; }
.field-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; } /* visually hidden; placeholders carry the label */
.lead-form input,
.lead-form select {
  width: 100%; font-family: var(--body); font-size: 1rem;
  padding: 14px 16px; border: 1.5px solid var(--line-light);
  border-radius: 10px; background: var(--white); color: var(--ink);
}
.lead-form input:focus,
.lead-form select:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(255, 198, 55, .3); }
.lead-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23383838' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.fine-print { font-size: .82rem; color: #777; margin: 6px 0 0; line-height: 1.4; }
.lead-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 18px 0 0; margin: 0; font-size: .85rem; font-weight: 600; color: var(--ink); }
.lead-badges li { position: relative; padding-left: 18px; }
.lead-badges li::before { content: "•"; position: absolute; left: 2px; color: var(--gold-deep); font-size: 1.2rem; line-height: 1; }
.call-now { font-size: .9rem; margin: 14px 0 0; }

/* ---------------------------- Trust bar ---------------------------- */
.trust-bar { background: var(--ink); color: var(--white); padding: 34px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num { font-family: var(--display); font-weight: 900; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.trust-label { font-size: .9rem; color: #d9d9d9; }

/* ---------------------------- Benefits ---------------------------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: var(--off-white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 28px 26px; }
.benefit-card h3 { font-size: 1.3rem; font-weight: 800; position: relative; padding-top: 14px; }
.benefit-card h3::before { content: ""; position: absolute; top: 0; left: 0; width: 38px; height: 4px; background: var(--gold); border-radius: 4px; }
.benefit-card p { margin: 0; }

/* ---------------------------- Method ---------------------------- */
.method { background: var(--off-white); }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.method-step { background: var(--white); border: 1px solid var(--line-light); border-top: 5px solid var(--gold); border-radius: var(--radius); padding: 30px 28px; }
.step-kicker { display: block; font-family: var(--display); font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.method-step h3 { font-size: 1.7rem; font-weight: 900; }

.audience { text-align: center; margin: 56px auto 0; max-width: 820px; }
.audience-title { font-size: 1.5rem; font-weight: 800; }
.audience-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 0; margin: 22px 0; }
.audience-list li { background: var(--white); border: 1px solid var(--line-light); border-radius: 999px; padding: 9px 20px; font-family: var(--display); font-weight: 600; font-size: .95rem; color: var(--ink); }
.audience-note { color: var(--body-gray); }

.more-than-massage { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: center; margin-top: 60px; }
.photo-placeholder { background: repeating-linear-gradient(45deg, #e5e4e0, #e5e4e0 14px, #ededea 14px, #ededea 28px); border: 2px dashed #c4c3be; border-radius: var(--radius); min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 30px; }
.photo-placeholder span { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: #8a8984; }
.photo-placeholder small { color: #9b9a95; max-width: 260px; }
.mtm-copy h3 { font-size: 1.7rem; font-weight: 800; }
.mtm-list { list-style: none; padding: 0; margin: 0 0 26px; }
.mtm-list li { position: relative; padding-left: 26px; margin-bottom: 14px; }
.mtm-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }

/* ---------------------------- Providers ---------------------------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card { background: var(--off-white); border: 1px solid var(--line-light); border-left: 5px solid var(--gold); border-radius: var(--radius); padding: 28px 26px; margin: 0; }
.quote-card blockquote { margin: 0 0 18px; font-size: 1.08rem; color: var(--ink); }
.quote-card figcaption { font-size: .92rem; }
.quote-card figcaption strong { display: block; font-family: var(--display); color: var(--ink); }
.quote-card figcaption span { color: var(--body-gray); }
.reviews-line { text-align: center; margin-top: 40px; font-weight: 600; color: var(--ink); }

/* ---------------------------- How it works ---------------------------- */
.how { background: var(--ink); color: var(--white); }
.how .section-head h2, .how .section-intro { color: var(--white); }
.steps-grid { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 0; margin: 0; }
.step { position: relative; background: #262626; border: 1px solid #3a3a3a; border-radius: var(--radius); padding: 30px 24px; counter-increment: step; }
.step::before { content: counter(step); position: absolute; top: -18px; left: 24px; width: 40px; height: 40px; background: var(--gold); color: var(--black); font-family: var(--display); font-weight: 900; border-radius: 50%; display: grid; place-items: center; }
.step-num { display: block; font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin: 10px 0 6px; }
.step h3 { color: var(--white); font-size: 1.25rem; }
.step p { color: #cfcfcf; margin: 0; }

/* ---------------------------- Offer + pricing ---------------------------- */
.offer { background: var(--ink); color: var(--white); }
.offer-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 50px; align-items: center; }
.offer-copy h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; }
.offer-copy p { color: #d6d6d6; }
.price-table { margin: 26px 0 30px; border-top: 1px solid #3a3a3a; }
.price-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid #3a3a3a; }
.price-name { font-family: var(--display); font-weight: 700; color: var(--white); flex: 1; }
.price-name small { display: block; font-family: inherit; font-weight: 400; color: #9a9a9a; font-size: .82rem; margin-top: 3px; }
.price-was { color: #8f8f8f; text-decoration: line-through; font-size: 1.1rem; }
.price-now { font-family: var(--display); font-weight: 900; color: var(--gold); font-size: 1.6rem; min-width: 70px; text-align: right; }
.price-row:last-child .price-name { font-size: 1.15rem; }
.offer-note { color: var(--gold); font-size: .85rem; margin: -16px 0 20px; }
.offer-badge { background: var(--gold); color: var(--black); border-radius: 50%; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; max-width: 230px; margin: 0 auto; }
.badge-pct { font-family: var(--display); font-weight: 900; font-size: 4rem; line-height: 1; }
.badge-label { font-family: var(--display); font-weight: 700; font-size: .95rem; max-width: 130px; }

/* ---------------------------- FAQ ---------------------------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line-light); padding: 6px 0; }
.faq-list summary { font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: var(--ink); cursor: pointer; list-style: none; padding: 16px 36px 16px 0; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--gold-deep); font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0 0 18px; color: var(--body-gray); }
.promise { max-width: 800px; margin: 44px auto 0; background: var(--off-white); border: 1px solid var(--line-light); border-left: 5px solid var(--gold); border-radius: var(--radius); padding: 26px 30px; }
.promise h3 { font-size: 1.3rem; font-weight: 800; }
.promise p { margin: 0; }

/* ---------------------------- Final CTA ---------------------------- */
.final-cta { background: linear-gradient(160deg, var(--off-white) 0%, #e9e8e4 100%); }
.final-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.final-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; }
.final-copy p { font-size: 1.15rem; color: var(--ink); }
.final-call { font-weight: 600; }
.lead-card--final { box-shadow: var(--shadow); }

/* ---------------------------- Footer ---------------------------- */
.site-footer { background: var(--black); color: #cfcfcf; padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-addr { margin: 0; font-family: var(--display); font-weight: 700; color: var(--white); }
.footer-brand { margin: 0; font-size: .92rem; letter-spacing: .04em; }
.footer-actions { display: flex; gap: 12px; margin-top: 6px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid,
  .more-than-massage,
  .offer-grid,
  .final-grid { grid-template-columns: 1fr; }
  .benefit-grid,
  .method-grid,
  .quote-grid,
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .offer-badge { display: none; }
  .hero { padding-top: 44px; }
}

@media (max-width: 600px) {
  body { font-size: 17px; }
  .section { padding: 56px 0; }
  .benefit-grid,
  .method-grid,
  .quote-grid,
  .steps-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid { gap: 26px; }
  .header-phone { display: none; }
  .logo-sub { display: none; }
  .steps-grid { gap: 30px; }
  .step { margin-top: 8px; }
}
