/* Small Fox Studio — Section Layouts */

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  padding-top: clamp(102px, 11vw, 152px);
  padding-bottom: clamp(122px, 14vw, 188px);
  overflow: hidden;
}

.site-header .container,
.hero .container {
  max-width: none;
  padding-inline: clamp(52px, 5vw, 112px);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 750px) minmax(0, 859px);
  gap: clamp(62px, 5vw, 92px);
  align-items: center;
  justify-content: center;
  max-width: 1767px;
  margin-inline: auto;
}

.hero__left {
  justify-self: center;
  max-width: 787px;
}

.hero .t-eyebrow {
  color: var(--c-accent);
  font-weight: 600;
}

.hero__headline {
  margin-bottom: 32px;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero__hl-big {
  display: block;
  font-family: var(--f-sans);
  font-size: 72px;
  font-weight: 600;
  color: var(--c-text);
}

.hero__hl-small {
  display: block;
  font-size: 48px;
  font-weight: 600;
  margin-top: 6px;
}

.hero__hl-visitors {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-grey);
}

.hero__hl-clients {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--c-accent);
}

.hero__sub {
  font-size: 21px;
  color: var(--c-grey);
  line-height: 1.62;
  margin-bottom: 54px;
  max-width: 560px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.hero__text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-accent);
  padding-bottom: 4px;
  transition: border-color var(--t), color var(--t);
}
.hero__text-link:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
}

.hero__right {
  display: flex;
  justify-content: center;
  justify-self: center;
  position: relative;
  padding-bottom: 58px;
  min-width: 0;
  width: 100%;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3.6vw, 47px);
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--c-hairline);
  color: var(--c-text);
}

.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.hero__proof-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(232, 100, 46, 0.16);
  color: var(--c-accent);
  font-size: 15px;
  font-weight: 700;
}
.hero__proof li:nth-child(2) .hero__proof-icon {
  background: rgba(245, 184, 61, 0.2);
  color: var(--c-yellow);
}
.hero__proof li:nth-child(3) .hero__proof-icon {
  background: rgba(91, 170, 196, 0.2);
  color: var(--c-blue);
}

/* ─── Pricing ────────────────────────────────────────── */
.pricing { background: var(--c-bg); border-top: 1px solid var(--c-hairline); }
.pricing .container { max-width: 1400px; }

.pricing__nudge {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: var(--c-grey);
}
.pricing__nudge a {
  color: var(--c-text);
  border-bottom: 1px solid var(--c-hairline);
  padding-bottom: 1px;
  transition: color var(--t), border-color var(--t);
}
.pricing__nudge a:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
}

/* ─── Process ────────────────────────────────────────── */
.process { background: var(--c-cream); }

/* ─── Included ───────────────────────────────────────── */
.included { background: var(--c-bg); }

/* ─── Work ───────────────────────────────────────────── */
.work { background: var(--c-cream); }

/* ─── FAQ ────────────────────────────────────────────── */
.faq { background: var(--c-bg); }

.faq__inner {
  max-width: 740px;
  margin-inline: auto;
}
.faq__inner .section-header { text-align: left; }

/* ─── Contact strip ──────────────────────────────────── */
.contact { background: var(--c-cream); }

.contact-strip {
  text-align: center;
}
.contact-strip .t-eyebrow {
  display: inline-block;
}
.contact-strip .t-subhead {
  margin-inline: auto;
  margin-bottom: 36px;
}

/* ─── Hero responsive ────────────────────────────────── */
@media (max-width: 1180px) {
  .hero { padding-top: 64px; padding-bottom: 110px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .hero__right {
    max-width: 680px;
    width: 100%;
  }

  .hero__hl-big  { font-size: 62px; }
  .hero__hl-small { font-size: 42px; }

  .hero__sub {
    font-size: 21px;
  }
}

@media (max-width: 600px) {
  .site-header .container,
  .hero .container {
    padding-inline: 24px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 74px;
  }

  .hero__hl-big  { font-size: 44px; }
  .hero__hl-small { font-size: 30px; }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero__proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 38px;
  }

  .hero__proof li {
    white-space: normal;
  }
}
