/* ─────────────────────────────────────────────────────────────
   Sam Hartley — samhartley.co rebuild
   Palette harvested from the live Webflow CSS (2026-06-10):
   purple #381649 · plum #4e305d · coral #e2a293 · blush #f0d7cd
   creams #ece5e0 / #e6e1df / #f4e9e1
   Brand fonts were ClashGrotesk + Rubik; rebuild uses
   Fraunces (display) + Rubik (body, brand-faithful) via Google Fonts.
   ───────────────────────────────────────────────────────────── */

:root {
  --purple:     #381649;
  --plum:       #4e305d;
  --coral:      #e2a293;
  --coral-soft: rgba(226, 162, 147, 0.35);
  --blush:      #f0d7cd;
  --cream:      #f7f1ec;
  --cream-deep: #ece5e0;
  --ink:        #2b1138;
  --ink-soft:   #6d5a78;
  --white:      #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Rubik', system-ui, sans-serif;

  --radius: 22px;
  --shadow-soft: 0 18px 50px -18px rgba(56, 22, 73, 0.22);
  --shadow-lift: 0 28px 60px -20px rgba(56, 22, 73, 0.32);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

/* ── Type ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 420; color: var(--purple); line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.5rem); }
h2 em, h1 em {
  font-style: italic;
  font-weight: 380;
  color: transparent;
  background: linear-gradient(110deg, var(--plum), var(--coral) 85%);
  -webkit-background-clip: text;
  background-clip: text;
}
p { color: var(--ink-soft); }
.lede { font-size: 1.13rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--coral-soft);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 18px;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .lede { margin-top: 14px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 100px;
  padding: 14px 30px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              background-color 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(-1px); }
.btn-solid { background: var(--purple); color: var(--white); }
.btn-solid:hover { background: var(--plum); }
.btn-ghost { border-color: rgba(56, 22, 73, 0.35); color: var(--purple); }
.btn-ghost:hover { border-color: var(--purple); background: rgba(56, 22, 73, 0.05); }
.btn-coral { background: var(--coral); color: var(--purple); }
.btn-coral:hover { background: #d89280; }
.btn-lg { font-size: 1.1rem; padding: 18px 38px; }

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.nav.is-scrolled {
  background: rgba(247, 241, 236, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(56, 22, 73, 0.35);
}
.nav-inner {
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  transition: padding 0.35s var(--ease-out);
}
.nav.is-scrolled .nav-inner { padding-block: 12px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--purple);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a:not(.btn) {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 24px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-castle {
  position: absolute;
  top: 90px; right: -40px;
  width: clamp(280px, 32vw, 460px);
  opacity: 0.5;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-blob-1 { width: 520px; height: 520px; left: -180px; top: -120px; background: var(--blush); opacity: 0.8; }
.hero-blob-2 { width: 420px; height: 420px; right: 8%; bottom: -200px; background: var(--coral-soft); }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.9s var(--ease-out) forwards;
}
.hero-headline .line:nth-child(1) > span { animation-delay: 0.10s; }
.hero-headline .line:nth-child(2) > span { animation-delay: 0.22s; }
.hero-headline .line:nth-child(3) > span { animation-delay: 0.34s; }
.hero-headline .line:nth-child(4) > span { animation-delay: 0.46s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-stagger { opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards; }
.hero-copy .eyebrow { animation-delay: 0s; }
.hero-sub { animation-delay: 0.62s; }
.hero-intro { animation-delay: 0.74s; }
.hero-ctas { animation-delay: 0.86s; }
.hero-media { animation-delay: 0.5s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--plum);
}
.hero-intro { margin-top: 14px; max-width: 480px; }
.hero-ctas { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-photo-frame {
  position: relative;
  border-radius: 200px 200px var(--radius) var(--radius);
  background: linear-gradient(170deg, var(--blush), var(--cream-deep));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-photo-frame img { width: 100%; }
.hero-chat {
  position: absolute;
  width: 120px;
  left: -50px; bottom: 40px;
  filter: drop-shadow(0 14px 24px rgba(56, 22, 73, 0.25));
}

/* floating accents */
.float-slow { animation: floaty 7s ease-in-out infinite; }
.float-fast { animation: floaty 4.5s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ── Logos marquee ── */
.logos { padding: 44px 0 64px; }
.logos-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  padding-inline: 36px;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.3s;
}
.marquee-track img:hover { filter: grayscale(0) opacity(1); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Scroll reveal (JS adds .is-visible) ── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Problem ── */
.problem { padding: 90px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.checklist-label { margin-top: 26px; font-weight: 500; color: var(--purple); }
.checklist { list-style: none; margin-top: 14px; display: grid; gap: 12px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 13px 18px;
  font-weight: 400;
  color: var(--ink);
  box-shadow: 0 8px 24px -14px rgba(56, 22, 73, 0.18);
}
.problem-copy h2 { margin-bottom: 14px; }
.problem-media { position: relative; }
.problem-media > img:first-child {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.problem-pattern {
  position: absolute;
  width: 130px;
  right: -34px; top: -34px;
  opacity: 0.8;
}

/* ── About ── */
.about { padding: 90px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-media { position: relative; }
.about-photo-frame {
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--blush), var(--cream-deep));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.about-castle {
  position: absolute;
  width: 110px;
  right: -30px; bottom: -30px;
}
.about-copy h2 { margin-bottom: 18px; }
.about-copy p + p { margin-top: 14px; }
.about-copy .btn { margin-top: 28px; }

/* ── Benefits ── */
.benefits { padding: 100px 0; background: var(--purple); }
.benefits .eyebrow { background: rgba(226, 162, 147, 0.22); color: var(--coral); }
.benefits h2 { color: var(--white); }
.benefits h2 em { background: linear-gradient(110deg, var(--coral), var(--blush)); -webkit-background-clip: text; background-clip: text; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(226, 162, 147, 0.22);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.45s var(--ease-out), background-color 0.35s, box-shadow 0.45s var(--ease-out);
}
.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lift);
}
.card-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: var(--coral);
  border-radius: 16px;
  margin-bottom: 20px;
}
.card h3 { color: var(--white); margin-bottom: 10px; }
.card p { color: rgba(240, 215, 205, 0.85); font-size: 0.95rem; }
.benefits-strap {
  margin-top: 46px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--blush);
  max-width: 760px;
  margin-inline: auto;
}

/* ── Process ── */
.process { padding: 100px 0; }
.process .section-head { margin-inline: auto; text-align: center; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 20px;
}
.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 36px 36px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.step-num {
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 300;
  color: var(--coral-soft);
  line-height: 1;
}
.step-kicker {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.step h3 { margin-bottom: 14px; }
.step sup { font-size: 0.5em; }
.process-cta { text-align: center; margin-top: 44px; }

/* ── Expertise ── */
.expertise { padding: 100px 0; background: var(--cream-deep); }
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.expertise-copy h2 { margin-bottom: 30px; }
.expertise-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.expertise-list { display: grid; gap: 18px; }
.expertise-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: 0 10px 30px -18px rgba(56, 22, 73, 0.2);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.expertise-item:hover { transform: translateX(8px); box-shadow: var(--shadow-soft); }
.expertise-item .card-icon { flex: 0 0 52px; margin-bottom: 0; }
.expertise-item h3 { margin-bottom: 6px; font-size: 1.15rem; }
.expertise-item p { font-size: 0.95rem; }

/* ── Testimonials ── */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials .section-head { margin-inline: auto; text-align: center; }
.carousel {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 64px 56px 48px;
  box-shadow: var(--shadow-soft);
}
.carousel-quote {
  position: absolute;
  top: -26px; left: 48px;
  width: 64px;
}
.carousel-slides { position: relative; min-height: 240px; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
}
.slide.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.slide p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 380;
  color: var(--ink);
  line-height: 1.55;
}
.slide cite {
  display: block;
  margin-top: 22px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--plum);
}
.carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: var(--coral-soft);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background-color 0.3s;
}
.carousel-dots button.is-active { background: var(--coral); transform: scale(1.4); }

/* ── Playbook ── */
.playbook { padding: 100px 0 60px; }
.playbook-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  background: var(--purple);
  border-radius: 34px;
  padding: 64px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.playbook-pattern {
  position: absolute;
  right: -60px; top: -60px;
  width: 320px;
  opacity: 0.16;
  pointer-events: none;
}
.playbook .eyebrow { background: rgba(226, 162, 147, 0.22); color: var(--coral); }
.playbook h2 { color: var(--white); }
.playbook h2 em { background: linear-gradient(110deg, var(--coral), var(--blush)); -webkit-background-clip: text; background-clip: text; }
.playbook-copy > p { color: var(--blush); margin-top: 12px; }
.playbook-form { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.playbook-form input,
.footer-form input {
  flex: 1 1 240px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.playbook-form input:focus, .footer-form input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(226, 162, 147, 0.25);
}
.playbook-media { position: relative; z-index: 1; }
.playbook-media img {
  border-radius: var(--radius);
  box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.45);
  transform: rotate(2.5deg);
  transition: transform 0.5s var(--ease-out);
}
.playbook-card:hover .playbook-media img { transform: rotate(0deg) scale(1.02); }

/* ── Contact strip ── */
.contact { padding: 80px 0 110px; text-align: center; }
.contact-inner { position: relative; }
.contact-castle {
  width: 90px;
  margin-inline: auto;
  margin-bottom: 18px;
  opacity: 0.85;
}
.contact h2 { margin-bottom: 12px; }
.contact p { margin-bottom: 30px; }

/* ── Footer ── */
.footer { background: var(--purple); color: var(--blush); padding: 70px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 56px;
}
.footer .nav-logo { color: var(--white); }
.footer-brand p { color: rgba(240, 215, 205, 0.8); margin-top: 18px; max-width: 360px; font-size: 0.95rem; }
.footer-social { display: flex; gap: 18px; margin-top: 22px; }
.footer-social a, .footer-nav a, .footer-legal a {
  color: var(--blush);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s;
}
.footer-social a:hover, .footer-nav a:hover, .footer-legal a:hover { color: var(--coral); }
.footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.footer-nav { display: grid; gap: 10px; align-content: start; }
.footer-newsletter p { color: rgba(240, 215, 205, 0.8); font-size: 0.95rem; }
.footer-form { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.footer-base {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(240, 215, 205, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-base p { color: rgba(240, 215, 205, 0.7); font-size: 0.85rem; }
.footer-legal { display: flex; gap: 22px; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .hero-grid, .problem-grid, .about-grid, .expertise-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-media { max-width: 440px; }
  .hero-chat { left: -16px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .playbook-card { grid-template-columns: 1fr; padding: 44px 32px; }
  .playbook-media { max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { gap: 48px; }
}

@media (max-width: 760px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: var(--cream);
    font-size: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { font-size: 1.25rem; }
  .nav-burger { position: relative; z-index: 60; }
  .nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2) { opacity: 0; }
  .nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .card-grid { grid-template-columns: 1fr; }
  .carousel { padding: 48px 26px 38px; }
  .carousel-slides { min-height: 340px; }
  .marquee-track { gap: 44px; }
  .marquee-track img { height: 34px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-headline .line > span { transform: none; animation: none; }
  .hero-stagger { opacity: 1; animation: none; }
  .float-slow, .float-fast { animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .slide { transition: opacity 0.2s linear; transform: none; }
  .btn, .card, .step, .expertise-item { transition: none; }
}

/* ═════════════════════════════════════════════════════════════
   Inner pages (about / packages / training / case studies /
   articles / contact / legal)
   ═════════════════════════════════════════════════════════════ */

/* ── Page hero ── */
.page-hero {
  position: relative;
  padding: 170px 0 70px;
  overflow: hidden;
}
.page-hero .hero-blob-1 { left: -220px; top: -160px; }
.page-hero .hero-blob-2 { right: -120px; top: 40px; bottom: auto; }
.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.page-hero .hero-sub { margin-top: 18px; }
.page-hero-media img { width: 100%; }
.page-hero.center { text-align: center; padding-bottom: 50px; }
.page-hero.center .hero-sub, .page-hero.center .hero-intro { margin-inline: auto; max-width: 640px; }

/* ── Tier badge ── */
.badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--coral);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ── About: timeline ── */
.timeline { position: relative; max-width: 760px; margin-inline: auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--coral), var(--coral-soft));
}
.timeline-item { position: relative; padding: 0 0 42px 48px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 3px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--coral);
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--coral);
}
.timeline-item h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 8px;
}
.timeline-item p { max-width: 560px; }
.timeline-item p + p { margin-top: 8px; }

/* ── About: stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 26px 0 8px;
}
.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 10px 30px -18px rgba(56, 22, 73, 0.2);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 420;
  color: var(--purple);
  line-height: 1.1;
}
.stat span { font-size: 0.88rem; color: var(--ink-soft); }

/* ── Packages: pricing ── */
.brief-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--purple);
  border-radius: var(--radius);
  padding: 46px 48px;
  box-shadow: var(--shadow-lift);
}
.brief-card h3 { color: var(--white); }
.brief-card p { color: var(--blush); margin-top: 12px; max-width: 640px; }
.brief-price {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--coral);
  line-height: 1;
  white-space: nowrap;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.price-card.is-featured { background: var(--purple); }
.price-card.is-featured h3, .price-card.is-featured .price { color: var(--white); }
.price-card.is-featured p, .price-card.is-featured .price-kind { color: var(--blush); }
.price-card h3 { text-transform: capitalize; }
.price-card .price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--purple);
  margin: 10px 0 2px;
  line-height: 1;
}
.price-kind {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.price-card p { font-size: 0.95rem; flex: 1; }
.price-card .btn { margin-top: 26px; align-self: flex-start; }
.pricing-notes { margin-top: 28px; text-align: center; }
.pricing-notes p { font-size: 0.9rem; }

/* ── Case studies: cards ── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.cs-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.cs-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.cs-card-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream-deep); }
.cs-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.cs-card:hover .cs-card-media img { transform: scale(1.05); }
.cs-card-body { padding: 26px 28px 30px; }
.cs-card-body .badge { margin-bottom: 14px; }
.cs-card-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.cs-card-body p { font-size: 0.95rem; }

/* ── Case study detail ── */
.cs-hero-figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.cs-quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: var(--shadow-soft);
  max-width: 860px;
  margin-inline: auto;
}
.cs-quote p { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); line-height: 1.6; }
.cs-quote cite { display: block; margin-top: 16px; font-style: normal; font-weight: 500; color: var(--plum); font-size: 0.92rem; }
.cs-section { padding: 56px 0 0; }
.cs-section h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 18px; }
.cs-body { max-width: 800px; }
.cs-body p + p { margin-top: 12px; }
.cs-list { list-style: none; display: grid; gap: 12px; max-width: 800px; }
.cs-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
}
.cs-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  background: url('../assets/icon-check-circle.svg') no-repeat center / contain;
}
.cs-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 26px;
}
.cs-gallery figure {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.cs-gallery img { width: 100%; }
.cs-gallery figcaption { padding: 14px 20px 18px; font-size: 0.88rem; color: var(--ink-soft); }
.cs-note {
  margin-top: 30px;
  font-size: 0.92rem;
  font-style: italic;
}

/* ── Articles ── */
.empty-state {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 70px 40px;
  box-shadow: var(--shadow-soft);
  max-width: 640px;
  margin-inline: auto;
}
.empty-state img { width: 90px; margin: 0 auto 20px; }
.empty-state h3 { margin-bottom: 10px; }

/* ── Contact / forms ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 40px;
  box-shadow: var(--shadow-soft);
}
.form-card h3 { margin-bottom: 6px; }
.form-card > p { font-size: 0.95rem; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--white);
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(226, 162, 147, 0.22);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-status { margin-top: 14px; font-size: 0.92rem; display: none; }
.form-status.is-success { display: block; color: #2e7d4f; }
.form-status.is-error { display: block; color: #b3442e; }
.contact-aside { position: sticky; top: 120px; }
.contact-aside .about-photo-frame { margin-bottom: 26px; }
.contact-aside h3 { margin-bottom: 8px; }
.contact-aside .btn { margin-top: 18px; }

/* ── Legal ── */
.legal { max-width: 760px; margin-inline: auto; padding: 150px 24px 90px; }
.legal h1 { margin-bottom: 28px; }
.legal h2 { font-size: 1.3rem; margin: 34px 0 10px; }
.legal p + p { margin-top: 12px; }

/* ── Shared section paddings ── */
.section { padding: 90px 0; }
.section.tint { background: var(--cream-deep); }
.section.white { background: var(--white); }

/* ── Inner-page responsive ── */
@media (max-width: 980px) {
  .page-hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .cs-grid, .cs-gallery { grid-template-columns: 1fr; }
  .brief-card { grid-template-columns: 1fr; padding: 36px 30px; }
  .contact-aside { position: static; }
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
