:root {
  --peach: #e8734a;
  --peach-dark: #cf5f38;
  --ink: #1e2229;
  --ink-soft: #4b5261;
  --paper: #faf7f3;
  --paper-deep: #f1ebe3;
  --white: #ffffff;
  --line: rgba(30, 34, 41, 0.12);
  --radius: 8px;
  --shadow: 0 2px 16px rgba(30, 34, 41, 0.07);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  line-height: 1.2;
  font-weight: 600;
}

/* ---------- nav ---------- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
  padding: 28px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 26px;
  height: 26px;
  color: var(--peach);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--ink);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--peach);
  color: var(--white) !important;
}

.btn-primary:hover {
  background: var(--peach-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-small {
  padding: 9px 18px;
  font-size: 0.88rem;
  background: var(--ink);
  color: var(--white) !important;
}

.btn-small:hover {
  background: #343b47;
  color: var(--white);
}

.btn-big {
  padding: 16px 34px;
  font-size: 1.05rem;
}

/* ---------- hero ---------- */
.hero {
  max-width: 1060px;
  margin: 0 auto;
  padding: 80px 24px 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-art {
  width: 100%;
}

.hero-art svg {
  width: 100%;
  height: auto;
  max-width: 440px;
  display: block;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}

.accent {
  color: var(--peach-dark);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- positioning ---------- */
.positioning {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 24px;
}

.positioning-inner {
  max-width: 720px;
  margin: 0 auto;
}

.positioning h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom: 24px;
}

.positioning p {
  color: rgba(250, 247, 243, 0.82);
  margin-bottom: 20px;
  font-size: 1.08rem;
}

.positioning p:last-child {
  margin-bottom: 0;
}

.sequence-lead {
  font-weight: 600;
  color: var(--paper) !important;
  margin-bottom: 18px !important;
}

.sequence-steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.sequence-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(250, 247, 243, 0.06);
  border: 1px solid rgba(250, 247, 243, 0.16);
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  position: relative;
}

.sequence-steps li:not(:last-child)::after {
  content: "";
  width: 12px;
  height: 1px;
  background: rgba(250, 247, 243, 0.28);
  margin-left: 12px;
}

.step-dot {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--peach);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--paper);
  font-family: 'Source Serif 4', Georgia, serif;
}

/* ---------- pillars ---------- */
.pillars {
  max-width: 1060px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.pillar {
  border-top: 3px solid var(--peach);
  padding-top: 20px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pillar.visible {
  opacity: 1;
  transform: translateY(0);
}

.pillar h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.pillar p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- services ---------- */
.services {
  max-width: 960px;
  margin: 0 auto;
  padding: 70px 24px 40px;
}

.services h2,
.not-list h2,
.cta h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 620px;
  margin-bottom: 48px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 34px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(30, 34, 41, 0.1);
}

.service-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.service-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(232, 115, 74, 0.1);
  color: var(--peach-dark);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-price {
  margin-left: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.price-amount {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.price-terms {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.service-tagline {
  color: var(--peach-dark);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--ink-soft);
  font-size: 0.99rem;
  margin-bottom: 22px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.service-detail h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23cf5f38' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3.5 3.5 7-8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.best-for p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- what we're not ---------- */
.not-list {
  background: var(--paper-deep);
  padding: 80px 24px;
  margin-top: 50px;
}

.not-inner {
  max-width: 720px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.not-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.not-inner h2 {
  margin-bottom: 26px;
}

.not-inner ul {
  list-style: none;
}

.not-inner li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.not-inner li:last-child {
  border-bottom: none;
}

.not-inner strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- CTA ---------- */
.cta {
  padding: 90px 24px;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cta-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-mark {
  width: 44px;
  height: 44px;
  color: var(--peach);
  margin: 0 auto 22px;
  display: block;
}

.cta-inner p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin: 18px 0 32px;
}

/* ---------- footer ---------- */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 24px;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

footer .logo {
  color: var(--paper);
  justify-content: center;
  margin-bottom: 14px;
}

.footer-tag {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  color: rgba(250, 247, 243, 0.85);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-links {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-links a {
  color: var(--peach);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: rgba(250, 247, 243, 0.4);
}

.footer-copy {
  color: rgba(250, 247, 243, 0.45);
  font-size: 0.88rem;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 72px;
  }

  .hero-art {
    order: -1;
  }

  .hero-art svg {
    max-width: 340px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 620px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .service-card {
    padding: 26px 24px;
  }

  .service-top {
    flex-wrap: wrap;
  }

  .service-price {
    margin-left: 0;
    text-align: left;
    width: 100%;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }
}
