/* ============================================================
   Yahoola Creek Marketing — Global Styles
   ============================================================ */

/* --- Reset & base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #1E3A2F;
  --green-mid:  #2A5240;
  --green-light:#3D7A5C;
  --gold:       #C8913A;
  --gold-light: #E0A94A;
  --cream:      #F6F1E7;
  --white:      #FFFFFF;
  --gray-100:   #F4F4F2;
  --gray-300:   #D1CFC9;
  --gray-500:   #8A887E;
  --gray-700:   #4A4840;
  --text:       #1C1B18;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;

  --max-w: 1120px;
  --section-gap: 80px;
  --radius: 8px;
  --transition: 0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }

p { max-width: 66ch; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

/* --- Layout helpers --------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }
.section--cream { background: var(--cream); }
.section--green { background: var(--green); color: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

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

.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-dark:hover { background: var(--green); color: var(--white); }

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* --- Navigation ------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.nav__logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--green); }

.nav__cta { flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-300);
  padding: 16px 24px 24px;
}
.nav__mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile .btn { margin-top: 16px; width: 100%; text-align: center; }
.nav__mobile.open { display: flex; }

/* --- Hero ------------------------------------------------- */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 100px 0 80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__tag {
  display: inline-block;
  background: rgba(200,145,58,0.2);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold-light); font-style: normal; }

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 52ch;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__proof {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__proof-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hero__proof-item span { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

.hero__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 32px;
}

.hero__card h3 { color: var(--white); margin-bottom: 20px; }

.hero__checklist { display: flex; flex-direction: column; gap: 14px; }
.hero__checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.hero__checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* --- Cards ------------------------------------------------ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 32px;
}

.card--hover { transition: box-shadow var(--transition), transform var(--transition); }
.card--hover:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card h3 { margin-bottom: 10px; color: var(--green); }
.card p { font-size: 0.95rem; color: var(--gray-700); margin-bottom: 0; }

/* --- Pricing ---------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--green);
  border-width: 2px;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price sup { font-size: 1.1rem; vertical-align: top; margin-top: 6px; }
.pricing-card__cadence { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 16px; }
.pricing-card__desc { font-size: 0.9rem; color: var(--gray-700); margin-bottom: 24px; border-bottom: 1px solid var(--gray-300); padding-bottom: 20px; }

.pricing-card__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-card__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.pricing-card__features li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--green-light);
  font-weight: 700;
  margin-top: 1px;
}

.pricing-card .btn { width: 100%; text-align: center; }

/* --- Testimonials ----------------------------------------- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 28px;
}

.testimonial__quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__author { display: flex; gap: 14px; align-items: center; }
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: 0.95rem; }
.testimonial__title { font-size: 0.85rem; color: var(--gray-500); }

/* --- FAQ -------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid var(--gray-300);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--gray-300); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-top: 14px;
  color: var(--gray-700);
  font-size: 0.95rem;
  max-width: 70ch;
}

.faq-item.open .faq-answer { display: block; }

/* --- Process steps ---------------------------------------- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-300);
}
.step:last-child { border-bottom: none; }
.step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.step h3 { margin-bottom: 6px; color: var(--green); }
.step p { font-size: 0.95rem; color: var(--gray-700); margin: 0; }

/* --- Section headers -------------------------------------- */
.section-header { margin-bottom: 48px; }
.section-header .eyebrow { margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--gray-700); }

.section--green .section-header p { color: rgba(255,255,255,0.7); }
.section--green .section-header h2 { color: var(--white); }
.section--green .eyebrow { color: var(--gold-light); }

/* --- CTA banner ------------------------------------------- */
.cta-banner {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin: 0 auto 36px; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Contact form ----------------------------------------- */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- Footer ----------------------------------------------- */
.footer {
  background: var(--green);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.footer__brand h3 span { color: var(--gold); }
.footer__brand p { font-size: 0.9rem; max-width: 36ch; }

.footer__col h4 { color: var(--white); margin-bottom: 16px; font-size: 0.8rem; letter-spacing: 0.1em; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.9rem; transition: color var(--transition); }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- About page ------------------------------------------- */
.about-hero {
  background: var(--green);
  color: var(--white);
  padding: 80px 0;
}
.about-hero h1 { color: var(--white); margin-bottom: 20px; }
.about-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 60ch; }

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

/* --- Results page ----------------------------------------- */
.results-hero {
  background: var(--green);
  color: var(--white);
  padding: 80px 0;
}
.results-hero h1 { color: var(--white); margin-bottom: 20px; }
.results-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-box {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
}
.stat-box__num { font-size: 2.5rem; font-weight: 700; color: var(--green); display: block; }
.stat-box__label { font-size: 0.9rem; color: var(--gray-500); }

.case-study {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 24px;
}
.case-study__header { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; flex-wrap: wrap; }
.case-study__tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--cream);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 100px;
}
.case-study h3 { color: var(--green); margin-bottom: 0; font-size: 1.2rem; }
.case-study__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-300);
}
.case-study__metric strong { display: block; font-size: 1.6rem; color: var(--green); }
.case-study__metric span { font-size: 0.85rem; color: var(--gray-500); }

/* --- Responsive ------------------------------------------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .case-study__results { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  :root { --section-gap: 56px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .case-study__results { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 52px; }
  .hero__proof { gap: 24px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr; }
}
