/* ==========================================================================
   Websting — landing page styles
   Palette: pink #f6a3d5, yellow #ffd93d, orange #ff8a3d, ink #1a1a1a
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #f6a3d5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

:where(a, button):focus-visible {
  outline: 3px solid var(--focus-ring, #1a1a1a);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border: 2px solid #1a1a1a;
  border-radius: 8px;
  background: #ffd93d;
  color: #1a1a1a;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 140ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:root {
  --pink: #f6a3d5;
  --pink-soft: #fbc9e3;
  --pink-hot: #ff5eb0;
  --yellow: #ffd93d;
  --yellow-soft: #fff2a8;
  --orange: #ff8a3d;
  --ink: #1a1a1a;
  --paper: #fff;
  --shadow-hard: 4px 4px 0 #1a1a1a;
  --shadow-soft: 0 6px 20px rgba(0,0,0,.08);
}

/* Fonts */
.display, .display-2, .section-h2, h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0;
}
.caveat { font-family: 'Caveat', cursive; font-weight: 700; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2.5px solid var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: var(--shadow-hard);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #1a1a1a; }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 #1a1a1a; }
.btn-dark { background: #1f1f1f; color: #ffd93d; border-color: #1f1f1f; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(246,163,213,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-style: italic; font-size: 26px;
  color: #1f1f1f;
}
.brand-mark { width: 30px; height: 30px; display: inline-block; }
.brand-star { color: var(--yellow); font-size: 18px; margin-left: -4px; }
.brand-word.big { font-size: 40px; }

.nav-links {
  display: flex; gap: 32px; justify-content: center;
  font-weight: 500; font-size: 15px;
}
.nav-links a { position: relative; padding: 6px 2px; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: right;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { justify-self: end; }

.hamburger { display: none; width: 44px; height: 44px; padding: 10px; }
.hamburger span { display: block; height: 3px; background: #1a1a1a; margin: 4px 0; border-radius: 3px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--pink); padding: 20px 32px 30px;
  display: flex; flex-direction: column; gap: 18px; font-weight: 600;
  border-bottom: 2.5px solid var(--ink);
}

.mobile-menu[hidden] {
  display: none !important;
}

/* ============ HERO ============ */
.hero {
  background: var(--pink);
  padding: 0 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px 0;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  min-height: 620px;
}
.hero-copy { position: relative; z-index: 2; }
.display .super {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1;
  margin-bottom: -12px;
  letter-spacing: -0.03em;
}
.display .title {
  display: block;
  color: #fff;
  font-size: clamp(64px, 9vw, 140px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-shadow: 3px 3px 0 rgba(0,0,0,.06);
}
.hero-sparkle {
  position: absolute; color: var(--yellow); font-size: 42px;
  top: 20%; right: -10px;
}
.hero-sub {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  margin: 26px 0 14px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-lede { font-size: 17px; line-height: 1.5; color: #2a2a2a; max-width: 460px; margin: 0 0 30px; }
.hero-badges { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hero-badges li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; line-height: 1.2;
}
.hero-badges strong { font-size: 13px; font-weight: 700; }
.badge-ico { width: 28px; height: 28px; display: inline-block; flex-shrink: 0; }
.badge-ico svg { width: 100%; height: 100%; }

.hero-art {
  position: relative; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.bee-placeholder {
  background: #fff2a8;
  border: 2.5px dashed #1a1a1a;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: #6b5a1e;
  text-align: center;
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 22px;
  line-height: 1.2;
  padding: 20px;
  position: relative;
}
.bee-placeholder .ph-label small {
  display: block; font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 12px; color: #8a7530; opacity: .85; margin-top: 4px;
}
.bee-placeholder.small { font-size: 16px; }
.bee-hero { width: 100%; max-width: 460px; aspect-ratio: 1/1; }

.hero-tags {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-30%);
  display: flex; flex-direction: column; gap: 10px;
  z-index: 3;
}
.pill {
  display: inline-block;
  padding: 10px 18px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 700; font-size: 13px;
  box-shadow: 3px 3px 0 var(--ink);
  letter-spacing: 0.02em;
}
.pill-yellow { background: var(--yellow); }
.pill-pink { background: #ffb8de; }

.scribble.sparkle {
  position: absolute; color: var(--yellow); font-size: 28px;
  animation: twinkle 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes twinkle { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.2); } }

.hero-tagline {
  position: absolute;
  bottom: 30px; left: 50%; transform: translateX(-50%);
  text-align: center;
  font-size: 22px; line-height: 1;
  color: var(--ink);
}
.underline-yellow { color: var(--yellow); font-size: 22px; }

.wave { display: block; width: 100%; height: 90px; position: absolute; left: 0; }
.wave-hero { bottom: 0; }

/* ============ HOW IT WORKS ============ */
.how {
  background: var(--yellow);
  padding: 80px 0 130px;
  position: relative;
}
.how-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  position: relative;
}
.how-top {
  display: grid; grid-template-columns: 1fr 1.1fr auto; gap: 40px;
  align-items: center; margin-bottom: 70px;
}
.how-art { position: relative; }
.bee-workshop { width: 100%; aspect-ratio: 1/1; max-width: 440px; }
.how-copy { position: relative; }
.display-2 {
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.under-swoosh { display: block; margin-top: 8px; width: 260px; max-width: 100%; }
.under-swoosh svg { display: block; width: 100%; height: auto; }
.under-swoosh.sm { width: 100px; }
.how-lede { margin-top: 22px; font-size: 15.5px; line-height: 1.55; max-width: 440px; color: #2a2a2a; }

.callout {
  position: relative;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 16px 24px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 20px; line-height: 1.05;
  text-align: center;
}
.callout p { margin: 0; }
.callout .kbrackets { position: absolute; color: var(--ink); font-weight: 900; font-size: 30px; top: 10px; }
.callout .kbrackets.left { left: -30px; }
.callout .kbrackets.right { right: -30px; }
.callout-right { transform: rotate(2deg); align-self: start; margin-top: 10px; }
.callout-left {
  position: absolute; left: 32px; bottom: -40px;
  transform: rotate(-6deg);
  width: 170px;
}

.section-h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  text-align: center;
  margin: 20px 0 40px;
}
.section-h2.center { text-align: center; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: 1000px; margin: 0 auto;
}
.step {
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  padding: 28px 26px 26px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.step-ico { margin-bottom: 20px; }
.step-ico-tile {
  background: var(--pink);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 22px;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16/9;
}
.step-ico-tile svg { width: 62px; height: 62px; }
.step h4 { font-size: 20px; margin: 0 0 8px; }
.step p { font-size: 14.5px; line-height: 1.55; color: #333; margin: 0; }

.deco-nodes {
  position: absolute; right: 32px; bottom: 60px;
  display: flex; flex-direction: column; gap: 12px;
  opacity: .8;
}
.node {
  width: 44px; height: 44px;
  background: #fff; border: 2.5px solid var(--ink);
  border-radius: 8px; padding: 8px;
  box-shadow: 3px 3px 0 var(--ink);
}
.node svg { width: 100%; height: 100%; }
.deco-nodes .node:nth-child(2) { transform: translateX(-30px); }
.deco-nodes .node:nth-child(3) { transform: translateX(-15px); }

.wave-how { bottom: 0; }

/* ============ WHY WEBSTING ============ */
.why {
  background: var(--pink);
  padding: 90px 0 100px;
  position: relative;
}
.why-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; position: relative; }
.why-head { text-align: center; margin-bottom: 60px; position: relative; }
.why-head h2 { font-size: clamp(42px, 5vw, 68px); }
.why-sub { margin: 14px 0 0; font-size: 18px; color: #2a2a2a; }
.why-head .scribble { position: absolute; font-size: 34px; }
.why-head .s1 { color: var(--yellow); top: -10px; left: 20%; }
.why-head .s2 { color: var(--pink-hot); top: 0; right: 22%; }
.why-head .s3 { color: var(--yellow); bottom: -10px; right: 28%; font-size: 24px; }

.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
}
.why-card {
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.why-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.why-illus {
  background: var(--pink-soft);
  padding: 20px; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 2.5px solid var(--ink);
}
.why-illus .bee-placeholder { width: 100%; height: 160px; }
.why-body { padding: 24px 28px 26px; }
.why-body h4 { font-size: 22px; margin: 0 0 8px; }
.why-body p { font-size: 14.5px; line-height: 1.55; color: #333; margin: 0; }

.why-callout {
  position: absolute; right: -10px; top: 45%;
  font-size: 20px; line-height: 1.1;
  text-align: center;
}

.trusted {
  margin-top: 70px; text-align: center;
  border-top: 2px solid rgba(26,26,26,.15);
  padding-top: 30px;
}
.trusted-label { font-size: 12px; letter-spacing: 0.15em; font-weight: 600; color: #2a2a2a; margin: 0 0 20px; }
.trusted-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 40px; align-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: rgba(26,26,26,.55); font-weight: 700; font-size: 18px;
  letter-spacing: 0.02em;
}
.trusted-logos li { transition: color .2s; }
.trusted-logos li:hover { color: var(--ink); }

.wave-why { bottom: 0; transform: rotate(180deg) translateY(-.5px); }

/* ============ OUR WORK ============ */
.work {
  background: var(--pink);
  padding: 90px 0 60px;
  position: relative;
}
.work-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; }

.work-head { text-align: center; position: relative; margin-bottom: 60px; }
.eyebrow {
  font-family: 'Caveat', cursive; font-weight: 700;
  letter-spacing: 0.1em; font-size: 20px; margin: 0 0 8px;
  color: var(--ink);
}
.work-head h2 { font-size: clamp(42px, 5.5vw, 68px); }
.work-head .under-swoosh { margin: 10px auto 0; }
.dots { color: var(--ink); }
.work-side {
  position: absolute; right: 8%; top: 20px;
  font-size: 22px; line-height: 1.05; text-align: right;
}
.work-bee {
  position: absolute; left: 6%; top: -20px;
  width: 110px; height: 110px;
}

.work-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
  margin-bottom: 60px;
}
.work-card {
  background: #fff; border: 2.5px solid var(--ink);
  border-radius: 20px; overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
  display: block;
}
.work-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.work-thumb { aspect-ratio: 16/9; overflow: hidden; background: #f6a3d5; border-bottom: 2.5px solid var(--ink); }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .4s ease; }
.work-card:hover .work-thumb img { transform: scale(1.03); }
.work-meta { padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.work-meta h4 { font-size: 22px; margin: 0 0 6px; }
.work-meta p { font-size: 14px; line-height: 1.5; margin: 0; color: #333; }
.work-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--yellow); border: 2.5px solid var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  transition: transform .2s ease;
}
.work-card:hover .work-arrow { transform: translateX(4px); }

.work-collage {
  position: relative;
  min-height: 240px;
  border-radius: 20px;
  background: #1a1a1a;
  overflow: hidden;
  margin-bottom: 60px;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  border: 2.5px solid var(--ink);
}
.collage-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 30%, #f6a3d5 0 30px, transparent 31px),
    radial-gradient(circle at 85% 20%, #ffd93d 0 25px, transparent 26px),
    radial-gradient(circle at 75% 75%, #ff5eb0 0 32px, transparent 33px),
    radial-gradient(circle at 25% 80%, #ff8a3d 0 22px, transparent 23px),
    linear-gradient(135deg, #2a2a2a, #1a1a1a);
  opacity: .35;
}
.collage-cta {
  position: relative; z-index: 2;
  background: #1a1a1a;
  color: #fff;
  padding: 24px 32px;
  border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  border: 2.5px solid #1a1a1a;
  text-align: center;
}
.collage-cta > span:first-child { font-weight: 600; font-size: 17px; }
.sticker {
  position: absolute; z-index: 3;
  font-size: 18px; line-height: 1.15;
  padding: 8px 16px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  text-align: center;
}
.sticker-tl { top: 20px; left: 20px; background: var(--yellow); transform: rotate(-4deg); }
.sticker-br { bottom: 20px; right: 20px; background: var(--pink); transform: rotate(3deg); }

.testimonial {
  position: relative;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 20px;
  padding: 34px 40px 32px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 5px 5px 0 var(--ink);
  text-align: center;
}
.stars { color: var(--yellow); font-size: 22px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial blockquote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px; line-height: 1.35;
  font-weight: 700; margin: 0 0 18px;
  color: var(--ink);
}
.who {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.who-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd93d, #ff8a3d);
  border: 2px solid var(--ink);
}
.who span { color: #555; font-size: 12px; }
.side-left, .side-right {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 40px; color: var(--ink); font-weight: 900;
}
.side-left { left: -20px; }
.side-right { right: -20px; }
.t-side {
  position: absolute;
  right: -140px; top: 40px;
  font-size: 20px; line-height: 1.05;
  text-align: left;
}
.smiley { display: inline-block; margin-left: 4px; }

.work-bottom-band {
  background: var(--yellow);
  padding: 30px 32px 40px;
  text-align: left;
  font-size: 26px;
  max-width: 1200px; margin: 60px auto 0;
  border-radius: 16px 16px 0 0;
}
.work .work-bottom-band .under-swoosh { width: 220px; }

/* ============ PRICING ============ */
.pricing {
  background: var(--yellow);
  padding: 60px 0 100px;
  position: relative;
}
.pricing-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; }
.pricing-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; margin-bottom: 60px;
}
.pricing-copy h2 { font-size: clamp(38px, 4.8vw, 62px); }
.pink-fill { color: var(--pink); text-shadow: -1.5px 0 var(--ink), 1.5px 0 var(--ink), 0 -1.5px var(--ink), 0 1.5px var(--ink); }
.pricing-lede { margin: 20px 0 30px; max-width: 480px; font-size: 15px; line-height: 1.55; color: #2a2a2a; }
.starting { font-size: 28px; margin: 0 0 6px; }
.starting-sub { margin: 0 0 26px; max-width: 480px; font-size: 14.5px; line-height: 1.5; color: #333; }
.booking-tag {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700; font-size: 13px; line-height: 1.15;
  box-shadow: 4px 4px 0 var(--ink);
}
.booking-tag .cal-ico { font-size: 20px; }
.booking-tag .bang { position: absolute; font-size: 24px; font-weight: 900; top: 8px; color: var(--ink); }
.booking-tag .bang.left { left: -20px; }
.booking-tag .bang.right { right: -20px; }

.pricing-art { position: relative; }
.bee-factory { width: 100%; aspect-ratio: 1/1; max-width: 460px; margin-left: auto; }

.plans {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  position: relative;
}
.plan {
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  padding: 30px 28px 28px;
  box-shadow: 5px 5px 0 var(--ink);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.plan-featured { transform: scale(1.03); z-index: 2; }
.plan-featured:hover { transform: scale(1.03) translate(-3px, -3px); }
.badge-pop {
  position: absolute; top: -14px; right: 20px;
  background: var(--pink-hot); color: #fff;
  padding: 8px 16px; border-radius: 999px;
  border: 2.5px solid var(--ink);
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  box-shadow: 3px 3px 0 var(--ink);
}
.plan-icon {
  background: var(--yellow-soft);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 22px;
  aspect-ratio: 5/3;
  display: flex; align-items: center; justify-content: center;
}
.plan-icon svg { width: 100%; height: 100%; max-width: 90px; }
.plan h4 { font-size: 18px; letter-spacing: 0.03em; margin: 0 0 10px; }
.plan-desc { font-size: 14px; color: #333; line-height: 1.5; margin: 0 0 20px; min-height: 60px; }
.plan-starting { font-size: 13px; color: #666; margin: 0; font-weight: 500; }
.plan-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px; font-weight: 800; letter-spacing: -0.03em;
  margin: 4px 0 18px; line-height: 1;
}
.plan-price-text { font-size: 40px; }
.feats { margin: 0 0 26px; padding: 0; flex: 1; }
.feats li {
  font-size: 14px; padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,.08);
}
.feats li:last-child { border-bottom: 0; }
.feats li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 16px; height: 16px;
  background: var(--pink-hot);
  border-radius: 50%;
  border: 1.5px solid var(--ink);
}
.feats li::after {
  content: '';
  position: absolute; left: 4px; top: 15px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.plan-foot { font-size: 13px; color: #666; margin: 14px 0 0; line-height: 1.4; }

.pricing-side-left, .pricing-side-right {
  position: absolute;
  font-size: 20px; line-height: 1.05;
}
.pricing-side-left { left: -10px; bottom: 30%; }
.pricing-side-right { right: -20px; top: 55%; text-align: center; }

.wave-pricing { bottom: 0; }

/* ============ FAQ ============ */
.faq {
  background: #fff;
  padding: 80px 0 100px;
}
.faq-inner { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.faq-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.faq-bee { width: 110px; height: 110px; }
.faq-head h2 { font-size: clamp(36px, 4.4vw, 56px); }
.probably {
  display: inline-block;
  background: var(--pink);
  padding: 6px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: 'Caveat', cursive;
  font-weight: 700; font-size: 18px;
  margin-left: 12px;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.faq-side { font-size: 16px; line-height: 1.1; text-align: right; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item:hover { box-shadow: 3px 3px 0 var(--ink); }
.faq-item.open { box-shadow: 4px 4px 0 var(--ink); border-color: var(--ink); }
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px; align-items: center;
  padding: 18px 22px;
  text-align: left;
  font-weight: 600; font-size: 15px;
}
.faq-q .plus {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 400;
  transition: transform .3s ease;
}
.faq-q .chev {
  font-size: 18px; color: #666;
  transition: transform .3s ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition:
    max-height .35s ease,
    visibility 0s linear .35s;
}
.faq-a p {
  padding: 0 22px 22px 60px;
  margin: 0;
  font-size: 15px; line-height: 1.6; color: #333;
}
.faq-item.open .faq-a {
  max-height: 500px;
  visibility: visible;
  transition-delay: 0s;
}

/* ============ CTA ============ */
.cta {
  background: #0d0d0d;
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
}
.cta-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr; gap: 40px;
  align-items: center;
}
.cta-left { position: relative; }
.cta-bee { width: 100%; max-width: 300px; aspect-ratio: 1/1; background: #333; border-color: #ffd93d; color: #ffd93d; }
.cta-bee .ph-label small { color: #b39a3a; }
.eyebrow-light { color: var(--yellow); }
.display-2.light { color: #fff; }
.cta-lede { font-size: 16px; line-height: 1.6; margin: 20px 0 30px; color: #ccc; max-width: 520px; }
.cta-note { margin: 16px 0 0; font-size: 14px; color: #999; }
.cta-right { position: relative; }
.cta-side {
  position: absolute; right: -20px; top: 100px;
  color: var(--pink); font-size: 22px; line-height: 1.05;
  text-align: right;
}

/* ============ FOOTER ============ */
.footer { background: #0d0d0d; color: #fff; padding: 40px 0 30px; border-top: 1px solid #1f1f1f; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto; gap: 40px;
}
.foot-brand p { color: #999; font-size: 14px; margin: 12px 0 20px; line-height: 1.5; }
.brand-word { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-style: italic; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 34px; height: 34px; border-radius: 8px;
  background: #1f1f1f; display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background .2s;
}
.socials a:hover { background: var(--yellow); color: var(--ink); }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: #ccc; font-size: 14px; transition: color .2s; }
.foot-col a:hover { color: var(--yellow); }
.foot-side { color: var(--pink); font-size: 15px; line-height: 1.15; text-align: right; }
.copyright { text-align: center; color: #666; font-size: 12px; margin: 40px 32px 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; justify-self: end; }
  .nav-inner { grid-template-columns: 1fr auto; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px; min-height: 0;
    text-align: left;
    padding-top: 30px;
  }
  .hero-tags { position: static; transform: none; flex-direction: row; flex-wrap: wrap; margin: 20px 0; }
  .hero-tagline { position: static; transform: none; margin: 30px 0 0; }
  .hero { padding-bottom: 120px; }

  .how-top { grid-template-columns: 1fr; }
  .callout-right, .callout-left { position: static; margin: 20px auto; transform: rotate(-2deg); }
  .steps { grid-template-columns: 1fr; }
  .deco-nodes { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .why-callout { position: static; margin: 30px auto 0; }

  .work-grid { grid-template-columns: 1fr; }
  .work-side, .work-bee { display: none; }
  .t-side { position: static; text-align: center; margin: 20px 0 0; }

  .pricing-top { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translate(-3px, -3px); }
  .pricing-side-left, .pricing-side-right { display: none; }

  .faq-head { grid-template-columns: 1fr; text-align: center; }
  .faq-bee, .faq-side { display: none; }

  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-side { display: none; }
  .cta-bee { margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .foot-col { align-items: center; }
  .socials { justify-content: center; }
  .foot-side { text-align: center; }
}

@media (max-width: 560px) {
  .hero-inner { padding: 20px 20px 0; }
  .nav-inner { padding: 0 20px; }
  .how-inner, .why-inner, .work-inner, .pricing-inner, .faq-inner, .cta-inner, .footer-inner { padding-left: 20px; padding-right: 20px; }
  .display .title { font-size: 68px; }
  .display .super { font-size: 42px; }
  .btn-lg { font-size: 15px; padding: 14px 22px; }
  .plan-price { font-size: 42px; }
  .why-body, .plan { padding: 22px; }
  .hero-badges { gap: 16px; }
  .trusted-logos { gap: 20px; font-size: 15px; }
}

/* =========================================================
   SUPER WEBSTING HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--pink, #f6a3d5);
  color: var(--ink, #1a1a1a);
  min-height: 820px;
  padding: 45px 24px 120px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 650px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-kicker-star {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink, #1a1a1a);
  border-radius: 50%;
  background: var(--yellow, #ffd93d);
  font-size: 1rem;
}

.hero-title {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  margin: 0 0 20px;
  line-height: 0.72;
}

.hero-super {
  position: absolute;
  top: -22px;
  left: 3px;
  z-index: 2;
  font-family: "Caveat", cursive;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 700;
  transform: rotate(-7deg);
}

.hero-websting {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(5rem, 9vw, 8.7rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.hero-headline {
  max-width: 660px;
  margin: 26px 0 18px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.hero-lede {
  max-width: 550px;
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 30px;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 58px;
  padding: 0 25px;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 12px;
  background: var(--orange, #ff8a3d);
  color: var(--ink, #1a1a1a);
  box-shadow: 6px 6px 0 var(--ink, #1a1a1a);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.hero-primary-btn:hover,
.hero-primary-btn:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink, #1a1a1a);
}

.hero-primary-btn span {
  font-size: 1.5rem;
  line-height: 1;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink, #1a1a1a);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-mini-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  font-size: 1.15rem;
  line-height: 1;
}

.hero-mini-arrow {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2rem;
  transform: rotate(12deg);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-burst {
  position: absolute;
  width: min(520px, 80vw);
  aspect-ratio: 1;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 50%;
  background: var(--yellow, #ffd93d);
  box-shadow: 10px 12px 0 rgba(26, 26, 26, 0.12);
}

.hero-burst::before,
.hero-burst::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 2px dashed var(--ink, #1a1a1a);
  border-radius: 50%;
  opacity: 0.32;
}

.hero-burst::after {
  inset: 17%;
}

.hero-bee {
  position: relative;
  z-index: 4;
  display: block;
  width: min(610px, 108%);
  max-height: 610px;
  object-fit: contain;
  filter: drop-shadow(12px 15px 0 rgba(26, 26, 26, 0.13));
}

.hero-platform {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) rotate(-2deg);
  min-width: 260px;
  padding: 12px 22px;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink, #1a1a1a);
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.hero-badge {
  position: absolute;
  z-index: 7;
  padding: 10px 15px;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink, #1a1a1a);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-badge-websites {
  top: 75px;
  left: -7px;
  background: #fff;
  transform: rotate(-7deg);
}

.hero-badge-ideas {
  top: 130px;
  right: -10px;
  background: var(--orange, #ff8a3d);
  transform: rotate(7deg);
}

.hero-badge-human {
  right: -13px;
  bottom: 115px;
  width: 85px;
  height: 85px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  line-height: 1.05;
  transform: rotate(7deg);
}

.hero-doodle {
  position: absolute;
  z-index: 6;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 800;
}

.hero-doodle-one {
  top: 18px;
  left: 13%;
  transform: rotate(-13deg);
}

.hero-doodle-two {
  top: 42px;
  right: 7%;
  font-size: 1.8rem;
}

.hero-doodle-three {
  left: 5%;
  bottom: 90px;
  color: #fff;
  -webkit-text-stroke: 2px var(--ink, #1a1a1a);
}

.hero-side-note {
  position: absolute;
  left: -20px;
  bottom: 20px;
  z-index: 6;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 0.95;
  transform: rotate(-6deg);
}

.hero-side-underline {
  display: block;
  width: 125px;
  height: 9px;
  margin: 4px 0 0 7px;
  border-bottom: 4px solid var(--orange, #ff8a3d);
  border-radius: 50%;
  transform: rotate(-3deg);
}

.hero-wave {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 95px;
}

/* Tablet */
@media (max-width: 1000px) {
  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 24px;
    min-height: 570px;
  }

  .hero-websting {
    font-size: clamp(4.5rem, 10vw, 6.8rem);
  }

  .hero-visual {
    min-height: 510px;
  }

  .hero-burst {
    width: min(430px, 49vw);
  }

  .hero-bee {
    width: 120%;
    max-width: 510px;
  }

  .hero-badge-human {
    right: -5px;
  }

  .hero-side-note {
    display: none;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .hero {
    padding: 68px 18px 105px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 12px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-kicker {
    font-size: 0.67rem;
  }

  .hero-title {
    margin-top: 8px;
  }

  .hero-super {
    top: -18px;
    font-size: 2.5rem;
  }

  .hero-websting {
    font-size: clamp(4.15rem, 21vw, 6rem);
  }

  .hero-headline {
    margin-top: 22px;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-lede {
    max-width: 460px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-primary-btn {
    width: 100%;
    max-width: 360px;
  }

  .hero-mini-note {
    margin-top: 27px;
  }

  .hero-visual {
    width: 100%;
    min-height: 430px;
    margin-top: 7px;
  }

  .hero-burst {
    width: min(380px, 87vw);
  }

  .hero-bee {
    width: min(460px, 112vw);
    max-height: 430px;
  }

  .hero-platform {
    bottom: 16px;
    min-width: 215px;
    padding: 10px 14px;
    font-size: 0.65rem;
  }

  .hero-badge {
    padding: 8px 11px;
    font-size: 0.61rem;
  }

  .hero-badge-websites {
    top: 55px;
    left: 2px;
  }

  .hero-badge-ideas {
    top: 85px;
    right: 2px;
  }

  .hero-badge-human {
    right: 5px;
    bottom: 83px;
    width: 68px;
    height: 68px;
  }

  .hero-wave {
    height: 70px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .hero-websting {
    font-size: 4.05rem;
  }

  .hero-headline {
    font-size: 2.05rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-badge-human {
    display: none;
  }
}

/* =========================================================
   HOW IT WORKS - NEW WEBSTING
   ========================================================= */

.how-new {
  position: relative;
  overflow: hidden;
  background: var(--yellow, #ffd93d);
  color: var(--ink, #1a1a1a);
  padding: 100px 24px 145px;
}

.how-new-inner {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.how-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  margin-bottom: 95px;
}

.how-workshop-wrap {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-workshop-wrap::before {
  display: none;
}

.how-workshop-art {
  position: relative;
  z-index: 2;
  display: block;
  width: min(540px, 105%);
  max-height: 500px;
  object-fit: contain;
}

.how-intro-copy {
  position: relative;
  z-index: 3;
  max-width: 590px;
}

.how-eyebrow,
.how-process-kicker {
  margin: 0 0 13px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-title {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.how-title-swoosh {
  display: block;
  width: 270px;
  height: 18px;
  margin: 13px 0 27px;
  border-bottom: 6px solid var(--orange, #ff8a3d);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.how-description {
  max-width: 560px;
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
}

.how-good-ideas {
  position: absolute;
  z-index: 5;
  top: -28px;
  right: -15px;
  width: clamp(130px, 15vw, 190px);
  transform: rotate(3deg);
}

.how-process-head {
  margin: 0 auto 35px;
  text-align: center;
}

.how-process-head h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.how-process-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
}

.how-process-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 24px;
  background: #fff;
  box-shadow: 8px 9px 0 var(--ink, #1a1a1a);
}

.how-process-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 235px;
  margin: 20px;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 17px;
  background: var(--pink, #f6a3d5);
  overflow: hidden;
}

.how-process-art img {
  display: block;
  width: 78%;
  height: 190px;
  object-fit: contain;
}

.how-process-content {
  position: relative;
  padding: 3px 27px 32px;
}

.how-step-number {
  display: inline-grid;
  place-items: center;
  width: 43px;
  height: 43px;
  margin-bottom: 13px;
  border: 2px solid var(--ink, #1a1a1a);
  border-radius: 50%;
  background: var(--yellow, #ffd93d);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.how-process-card h4 {
  margin: 0 0 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.how-process-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.how-work-cloud {
  position: absolute;
  z-index: 6;
  left: -15px;
  bottom: -60px;
  width: clamp(155px, 18vw, 225px);
  transform: rotate(-3deg);
}

.how-connected-tiles {
  position: absolute;
  z-index: 6;
  right: -40px;
  bottom: -35px;
  width: clamp(120px, 15vw, 190px);
  transform: rotate(3deg);
}

.how-new-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 105px;
}

/* Tablet */
@media (max-width: 1000px) {
  .how-new {
    padding-top: 80px;
  }

  .how-intro {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    margin-bottom: 75px;
  }

  .how-workshop-wrap {
    min-height: 390px;
  }

  .how-title {
    font-size: clamp(3rem, 6vw, 4.8rem);
  }

  .how-process-grid {
    gap: 20px;
  }

  .how-process-card {
    min-height: 475px;
  }

  .how-process-art {
    min-height: 200px;
    margin: 16px;
  }

  .how-process-art img {
    height: 160px;
  }

  .how-good-ideas {
    right: 0;
    top: -45px;
  }

  .how-work-cloud {
    left: -15px;
  }

  .how-connected-tiles {
    right: -10px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .how-new {
    padding: 70px 18px 120px;
  }

  .how-intro {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 70px;
  }

  .how-workshop-wrap {
    width: 100%;
    min-height: 330px;
  }

  .how-workshop-wrap::before {
    inset: 0;
  }

  .how-workshop-art {
    max-height: 340px;
  }

  .how-intro-copy {
    width: 100%;
  }

  .how-title {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .how-title-swoosh {
    width: 220px;
  }

  .how-good-ideas {
    top: 290px;
    right: -6px;
    width: 125px;
  }

  .how-process-head {
    text-align: left;
    margin-bottom: 27px;
  }

  .how-process-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .how-process-card {
    min-height: 0;
  }

  .how-process-art {
    min-height: 215px;
  }

  .how-process-art img {
    width: 72%;
    height: 180px;
  }

  .how-process-content {
    padding: 5px 24px 30px;
  }

  .how-work-cloud {
    position: relative;
    left: auto;
    bottom: auto;
    display: block;
    width: 160px;
    margin: 35px 0 0 2px;
  }

  .how-connected-tiles {
    right: -10px;
    bottom: 30px;
    width: 125px;
  }
}

@media (max-width: 430px) {
  .how-good-ideas {
    display: none;
  }

  .how-connected-tiles {
    display: none;
  }

  .how-title {
    font-size: 3.15rem;
  }
}

/* Give the Super Websting lockup breathing room */
@media (min-width: 761px) {
  .hero-title {
    padding-top: 24px;
    margin-bottom: 28px;
  }

  .hero-super {
    top: -20px;
    left: 8px;
  }
}

/* Fix mobile hero top spacing */
@media (max-width: 760px) {

  .hero {
    padding: 24px 18px 105px;
  }

  .hero-inner {
    padding: 0;
  }

  .hero-copy {
    margin-top: 0;
  }
}

/* Mobile Super Websting lockup spacing */
@media (max-width: 760px) {

  .hero-title {
    padding-top: 32px;
    margin-top: 4px;
    margin-bottom: 30px;
  }

  .hero-super {
    top: 0;
    left: 6px;
    font-size: 2.5rem;
  }
}

/* =========================================================
   RESPONSIVE WIDTH SAFETY
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

body {
  margin: 0;
}

img,
svg {
  max-width: 100%;
}

@media (max-width: 1000px) {

  .hero,
  .how-new,
  .why,
  .work,
  .pricing,
  .faq,
  .cta,
  footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }

  .hero-inner,
  .how-new-inner,
  .how-intro,
  .how-process-grid {
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

.hero-bee {
  width: 100%;
  max-width: 460px;
  max-height: 430px;
}

}

/* =========================================================
   PRICING RESPONSIVE REFINEMENT
   Prevent oversized pricing cards / icon panels on tablets
   ========================================================= */

.plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan {
  width: auto;
  min-width: 0;
}

.plan-icon {
  width: 100%;
  min-height: 150px;
  max-height: 190px;
  aspect-ratio: auto;
}

/* Tablet */
@media (min-width: 701px) and (max-width: 1099px) {

  .plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 900px;
    margin: 0 auto;
  }

  .plan {
    width: 100%;
  }

  .plan:last-child {
    grid-column: 1 / -1;
    width: min(100%, 430px);
    justify-self: center;
  }

  .plan-icon {
    height: 165px;
    min-height: 165px;
    max-height: 165px;
  }
}

/* Phone */
@media (max-width: 700px) {

  .plans {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }

  .plan,
  .plan:last-child {
    grid-column: auto;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }

  .plan-icon {
    height: 155px;
    min-height: 155px;
    max-height: 155px;
  }
}

/* =========================================================
   WHY WEBSTING - NEW
   ========================================================= */

.why-new {
  position: relative;
  overflow: hidden;
  background: var(--pink, #f6a3d5);
  color: var(--ink, #1a1a1a);
  padding: 100px 24px 145px;
}

.why-new-inner {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.why-new-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, 0.55fr);
  align-items: center;
  gap: 60px;
  margin-bottom: 65px;
}

.why-new-heading {
  max-width: 780px;
}

.why-new-eyebrow {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.why-new-head h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(4rem, 8vw, 7.6rem);
  line-height: 0.83;
  letter-spacing: -0.075em;
  font-weight: 800;
}

.why-new-head h2 span {
  position: relative;
  display: inline-block;
}

.why-new-head h2 span::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 4%;
  bottom: -13px;
  height: 12px;
  border-bottom: 6px solid var(--yellow, #ffd93d);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.why-new-lede {
  max-width: 650px;
  margin: 34px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  font-weight: 500;
}

.why-new-head-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-new-head-art img {
  width: min(300px, 100%);
  max-height: 210px;
  object-fit: contain;
  transform: rotate(3deg);
}

.why-new-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.why-new-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 26px;
  background: #fff;
  box-shadow: 8px 9px 0 var(--ink, #1a1a1a);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.why-new-card:hover {
  transform: translate(-3px, -3px) rotate(-0.4deg);
  box-shadow: 11px 12px 0 var(--ink, #1a1a1a);
}

.why-new-card:nth-child(2) {
  transform: rotate(0.8deg);
}

.why-new-card:nth-child(3) {
  transform: rotate(-0.7deg);
}

.why-new-card:nth-child(5) {
  transform: rotate(-0.5deg);
}

.why-new-card:nth-child(6) {
  transform: rotate(0.6deg);
}

.why-new-card:nth-child(2):hover,
.why-new-card:nth-child(3):hover,
.why-new-card:nth-child(5):hover,
.why-new-card:nth-child(6):hover {
  transform: translate(-3px, -3px) rotate(0);
}

.why-new-art {
  position: relative;
  min-height: 285px;
  margin: 17px;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-new-art img {
  position: relative;
  z-index: 2;
  display: block;
  width: 88%;
  height: 245px;
  object-fit: contain;
}

.why-card-yellow .why-new-art {
  background: var(--yellow, #ffd93d);
}

.why-card-blue .why-new-art {
  background: #84dcf4;
}

.why-card-orange .why-new-art {
  background: var(--orange, #ff8a3d);
}

.why-card-pink .why-new-art {
  background: #ffb7dd;
}

.why-card-white .why-new-art {
  background: #fff7d9;
}

.why-card-number {
  position: absolute;
  z-index: 5;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 2.5px solid var(--ink, #1a1a1a);
  border-radius: 50%;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink, #1a1a1a);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
}

.why-new-copy {
  padding: 8px 26px 30px;
}

.why-card-kicker {
  margin: 0 0 8px;
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.68;
}

.why-new-copy h3 {
  margin: 0 0 13px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.why-new-copy p:last-child {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.why-built-row {
  margin-top: 85px;
  padding-top: 30px;
  border-top: 2px solid rgba(26, 26, 26, 0.17);
}

.why-built-label {
  margin: 0 0 25px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.why-built-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 35px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.why-built-logos img {
  width: 100%;
  height: 68px;
  object-fit: contain;
}

.why-new-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100px;
}

/* Tablet */
@media (max-width: 1000px) {

  .why-new {
    padding: 80px 24px 130px;
  }

  .why-new-head {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 35px;
  }

  .why-new-head h2 {
    font-size: clamp(4rem, 10vw, 6rem);
  }

  .why-new-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .why-new-art {
    min-height: 245px;
  }

  .why-new-art img {
    height: 210px;
  }

  .why-built-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

/* Mobile */
@media (max-width: 700px) {

  .why-new {
    padding: 70px 18px 115px;
  }

  .why-new-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 45px;
  }

  .why-new-head h2 {
    font-size: clamp(3.8rem, 20vw, 5.8rem);
  }

  .why-new-head-art {
    align-self: flex-end;
    width: 190px;
    margin-top: -15px;
  }

  .why-new-lede {
    margin-top: 28px;
  }

  .why-new-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .why-new-card,
  .why-new-card:nth-child(2),
  .why-new-card:nth-child(3),
  .why-new-card:nth-child(5),
  .why-new-card:nth-child(6) {
    transform: none;
  }

  .why-new-card {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }

  .why-new-art {
    min-height: 250px;
  }

  .why-new-art img {
    width: 86%;
    height: 220px;
  }

  .why-new-copy {
    padding: 7px 23px 27px;
  }

  .why-built-row {
    margin-top: 65px;
  }

  .why-built-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 35px;
  }

  .why-built-logos img {
    height: 58px;
  }

  .why-new-wave {
    height: 75px;
  }
}

/* =========================================================
   HOW IT WORKS - TABLET DECORATION FIX
   ========================================================= */

@media (min-width: 701px) and (max-width: 1400px) {

  .how-new {
    padding-bottom: 210px;
  }

  .how-work-cloud {
    position: absolute;
    left: 20px;
    bottom: -145px;
    width: 150px;
    max-width: 150px;
    transform: rotate(-3deg);
    pointer-events: none;
  }

  .how-connected-tiles {
    position: absolute;
    right: 20px;
    bottom: -135px;
    width: 120px;
    max-width: 120px;
    transform: rotate(3deg);
    pointer-events: none;
  }
}

/* =========================================================
   WHY -> WORK SPACING REFINEMENT
   ========================================================= */

.why-new {
  padding-bottom: 65px;
}


/* =========================================================
   OUR WORK - NEW WEBSTING
   ========================================================= */

.work-new {
  position: relative;
  overflow: hidden;
  background: var(--pink, #f6a3d5);
  color: var(--ink, #1a1a1a);
  padding: 35px 24px 110px;
}

.work-new-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.work-new-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: end;
  gap: 45px;
  margin-bottom: 50px;
}

.work-new-heading {
  max-width: 850px;
}

.work-new-eyebrow {
  margin: 0 0 14px;
  font-family: "Caveat", cursive;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.work-new-heading h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(4rem, 7vw, 7.3rem);
  line-height: 0.83;
  letter-spacing: -0.07em;
  font-weight: 800;
}

.work-new-heading h2 span {
  color: var(--yellow, #ffd93d);
}

.work-new-intro {
  max-width: 720px;
  margin: 30px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
}

.work-new-side-note {
  align-self: center;
  justify-self: center;
  text-align: center;
  transform: rotate(4deg);
}

.work-new-side-note .caveat {
  font-size: 1.7rem;
  line-height: 0.95;
}

.work-note-arrow {
  display: block;
  margin-top: 5px;
  font-size: 2.2rem;
}


/* PROJECT CARDS */

.work-project {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 27px;
  background: #fff;
  box-shadow: 8px 9px 0 var(--ink, #1a1a1a);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.work-project:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 12px 0 var(--ink, #1a1a1a);
}

.work-project-link {
  display: block;
}

.work-project-media {
  position: relative;
  overflow: hidden;
  background: #fff4dc;
  border-bottom: 3px solid var(--ink, #1a1a1a);
}

.work-project-featured .work-project-media {
  aspect-ratio: 16 / 7.5;
}

.work-project-grid .work-project-media {
  aspect-ratio: 16 / 9;
}

.work-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 350ms ease;
}

.work-project:hover .work-project-media img {
  transform: scale(1.015);
}

.work-project-badge {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: inline-flex;
  padding: 9px 14px;
  border: 2.5px solid var(--ink, #1a1a1a);
  border-radius: 999px;
  background: var(--yellow, #ffd93d);
  box-shadow: 3px 3px 0 var(--ink, #1a1a1a);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.work-project-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  padding: 27px 30px 30px;
}

.work-project-copy {
  max-width: 760px;
}

.work-project-number {
  margin: 0 0 7px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.55;
}

.work-project-copy h3 {
  margin: 0 0 9px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.work-project-copy > p:not(.work-project-number) {
  max-width: 690px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.work-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.work-project-tags span {
  padding: 6px 10px;
  border: 2px solid var(--ink, #1a1a1a);
  border-radius: 999px;
  background: #fff;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 700;
}

.work-project-tags span:nth-child(2n) {
  background: #ffe683;
}

.work-project-arrow {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 50%;
  background: var(--yellow, #ffd93d);
  box-shadow: 4px 4px 0 var(--ink, #1a1a1a);
  font-size: 1.55rem;
  font-weight: 800;
}


/* TWO SMALLER PROJECTS */

.work-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 35px;
}

.work-project-grid .work-project-info {
  padding: 25px 25px 27px;
}

.work-project-grid .work-project-copy h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}


/* BOTTOM STRIP */

.work-new-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 55px;
  margin-top: 65px;
  padding: 30px 35px;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 24px;
  background: var(--yellow, #ffd93d);
  box-shadow: 7px 8px 0 var(--ink, #1a1a1a);
}

.work-new-bottom > p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 0.95;
  transform: rotate(-3deg);
}

.work-new-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 21px;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 999px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink, #1a1a1a);
  font-size: 0.9rem;
}

.work-new-cta strong {
  font-weight: 800;
}

.work-new-cta span {
  margin-left: 6px;
  font-size: 1.2rem;
}


/* TABLET */

@media (max-width: 1000px) {

  .why-new {
    padding-bottom: 55px;
  }

  .work-new {
    padding-top: 25px;
  }

  .work-new-head {
    grid-template-columns: 1fr 145px;
    gap: 30px;
  }

  .work-new-heading h2 {
    font-size: clamp(4rem, 9vw, 6rem);
  }

  .work-project-featured .work-project-media {
    aspect-ratio: 16 / 8.5;
  }

  .work-project-grid {
    gap: 24px;
  }

  .work-project-info {
    align-items: center;
  }
}


/* MOBILE */

@media (max-width: 700px) {

  .why-new {
    padding-bottom: 55px;
  }

  .work-new {
    padding: 25px 18px 90px;
  }

  .work-new-head {
    display: block;
    margin-bottom: 35px;
  }

  .work-new-heading h2 {
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .work-new-intro {
    margin-top: 24px;
  }

  .work-new-side-note {
    display: none;
  }

  .work-project-featured .work-project-media,
  .work-project-grid .work-project-media {
    aspect-ratio: 4 / 3;
  }

  .work-project-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }

  .work-project-info {
    align-items: flex-start;
    padding: 23px;
  }

  .work-project-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .work-project-tags {
    gap: 6px;
  }

  .work-project-badge {
    left: 14px;
    bottom: 14px;
  }

  .work-new-bottom {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 45px;
    padding: 26px;
  }

  .work-new-cta {
    justify-self: start;
  }
}

/* =========================================================
   PRICING - NEW WEBSTING
   ========================================================= */

.pricing-new {
  position: relative;
  overflow: hidden;
  background: var(--yellow, #ffd93d);
  color: var(--ink, #1a1a1a);
  padding: 90px 24px 145px;
}

.pricing-new-inner {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
}


/* TOP */

.pricing-new-top {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(45px, 6vw, 85px);
  margin-bottom: 60px;
}

.pricing-new-copy {
  position: relative;
  z-index: 4;
}

.pricing-new-title {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3.4rem, 5.7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.pricing-new-title > span {
  color: var(--ink, #1a1a1a);
}

.pricing-new-title strong {
  display: inline-block;
  color: var(--pink, #f6a3d5);
  -webkit-text-stroke: 2px var(--ink, #1a1a1a);
  paint-order: stroke fill;
}

.pricing-new-lede {
  max-width: 560px;
  margin: 28px 0 25px;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}

.pricing-new-copy h3 {
  margin: 0 0 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-new-starting {
  max-width: 570px;
  margin: 0 0 27px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.pricing-booking {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 11px 24px 11px 15px;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 999px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink, #1a1a1a);
  font-size: 0.78rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pricing-booking img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}


/* FACTORY ART */

.pricing-factory-wrap {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-factory {
  display: block;
  width: min(690px, 110%);
  max-height: 545px;
  object-fit: contain;
}


/* PLANS */

.pricing-new-plans {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 30px;
  width: min(1050px, 100%);
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: visible;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 18px;
  background: #fff;
  box-shadow: 7px 8px 0 var(--ink, #1a1a1a);
}

.pricing-card-featured {
  transform: translateY(-10px);
}

.pricing-card-art {
  min-height: 175px;
  margin: 14px 14px 0;
  border-radius: 13px;
  background: var(--pink, #f6a3d5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pricing-card-art img {
  width: 80%;
  height: 145px;
  object-fit: contain;
}

.pricing-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 20px 20px;
}

.pricing-card h3 {
  margin: 0 0 6px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-card-desc {
  min-height: 67px;
  margin: 0 0 15px;
  font-size: 0.9rem;
  line-height: 1.42;
}

.pricing-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-price {
  margin: 2px 0 16px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.pricing-price-talk {
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
}

.pricing-features {
  flex: 1;
  margin: 0 0 22px;
  padding: 0;
}

.pricing-features li {
  position: relative;
  padding: 5px 0 5px 25px;
  font-size: 0.83rem;
  line-height: 1.3;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 2px solid var(--ink, #1a1a1a);
  border-radius: 50%;
  background: var(--pink, #f6a3d5);
  font-size: 0.65rem;
  line-height: 1;
  font-weight: 900;
}

.pricing-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 15px;
  border: 3px solid var(--ink, #1a1a1a);
  border-radius: 12px;
  background: var(--yellow, #ffd93d);
  box-shadow: 4px 4px 0 var(--ink, #1a1a1a);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.pricing-card-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink, #1a1a1a);
}

.pricing-card-btn span {
  font-size: 1.2rem;
}

.pricing-card-foot {
  margin: 16px 0 0;
  min-height: 35px;
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: center;
}


/* MOST POPULAR */

.pricing-popular {
  position: absolute;
  z-index: 8;
  top: -25px;
  right: -12px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--pink-hot, #ff5eb0);
  color: #fff;
  text-align: center;
  font-size: 0.68rem;
  line-height: 1.05;
  font-weight: 800;
  transform: rotate(5deg);
}


/* SIDE DOODLES */

.pricing-doodle {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  object-fit: contain;
}

.pricing-doodle-left {
  left: -90px;
  bottom: 115px;
  width: 145px;
  transform: rotate(-5deg);
}

.pricing-doodle-right {
  right: -105px;
  bottom: 200px;
  width: 150px;
  transform: rotate(6deg);
}


/* BOTTOM WAVE */

.pricing-new-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 90px;
}


/* =========================================================
   PRICING TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .pricing-new {
    padding-top: 75px;
  }

  .pricing-new-top {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 30px;
  }

  .pricing-new-title {
    font-size: clamp(3.2rem, 6vw, 4.8rem);
  }

  .pricing-factory-wrap {
    min-height: 430px;
  }

  .pricing-factory {
    max-height: 450px;
  }

  .pricing-new-plans {
    gap: 20px;
  }

  .pricing-card-art {
    min-height: 150px;
  }

  .pricing-card-art img {
    height: 125px;
  }

  .pricing-card-body {
    padding: 17px;
  }

  .pricing-doodle-left,
  .pricing-doodle-right {
    display: none;
  }
}


/* =========================================================
   PRICING IPAD / SMALL TABLET
   ========================================================= */

@media (min-width: 701px) and (max-width: 900px) {

  .pricing-new-top {
    grid-template-columns: 1fr;
  }

  .pricing-new-copy {
    max-width: 700px;
  }

  .pricing-factory-wrap {
    min-height: 390px;
  }

  .pricing-factory {
    width: min(650px, 100%);
    max-height: 430px;
  }

  .pricing-new-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(760px, 100%);
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card:last-child {
    grid-column: 1 / -1;
    width: min(360px, 100%);
    justify-self: center;
  }
}


/* =========================================================
   PRICING MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .pricing-new {
    padding: 65px 18px 110px;
  }

  .pricing-new-top {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 45px;
  }

  .pricing-new-title {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
  }

  .pricing-new-lede {
    margin-top: 22px;
  }

  .pricing-factory-wrap {
    width: 100%;
    min-height: 300px;
  }

  .pricing-factory {
    width: 100%;
    max-height: 340px;
  }

  .pricing-new-plans {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing-card,
  .pricing-card:last-child {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-art {
    min-height: 175px;
  }

  .pricing-card-art img {
    height: 145px;
  }

  .pricing-card-desc {
    min-height: 0;
  }

  .pricing-label-empty {
    display: none;
  }

  .pricing-popular {
    top: -19px;
    right: 15px;
    width: 72px;
    height: 72px;
  }

  .pricing-booking {
    padding-right: 18px;
  }

  .pricing-new-wave {
    height: 70px;
  }
}

/* =========================================================
   FAQ - FINAL WEBSTING
   ========================================================= */

.faq-new {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--ink, #1a1a1a);
  padding: 95px 24px 110px;
}

.faq-new-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.faq-new-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 35px;
  margin-bottom: 45px;
}

.faq-new-bee {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-new-bee img {
  width: min(210px, 100%);
  max-height: 210px;
  object-fit: contain;
}

.faq-new-heading {
  position: relative;
  text-align: center;
}

.faq-new-heading h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.faq-new-swoosh {
  display: block;
  width: min(340px, 78%);
  height: 15px;
  margin: 10px auto 0;
  border-bottom: 6px solid var(--yellow, #ffd93d);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.faq-probably {
  position: absolute;
  right: -10px;
  bottom: -20px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 7px;
  background: var(--pink, #f6a3d5);
  font-family: "Caveat", cursive;
  font-size: 1.4rem;
  font-weight: 700;
  transform: rotate(-8deg);
}

.faq-head-doodle {
  display: flex;
  justify-content: center;
}

.faq-head-doodle img {
  width: min(165px, 100%);
  max-height: 170px;
  object-fit: contain;
}


/* FAQ ACCORDION */

.faq-new-list {
  width: min(760px, 100%);
  margin: 0 auto;
  gap: 9px;
}

.faq-new-list .faq-item {
  overflow: hidden;
  border: 1.5px solid var(--ink, #1a1a1a);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

.faq-new-list .faq-item:hover {
  box-shadow: 3px 3px 0 var(--ink, #1a1a1a);
}

.faq-new-list .faq-q {
  grid-template-columns: 30px 1fr 25px;
  gap: 10px;
  min-height: 56px;
  padding: 14px 18px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.faq-new-list .plus {
  font-size: 1.6rem;
  font-weight: 500;
}

.faq-new-list .chev {
  justify-self: end;
  color: var(--ink, #1a1a1a);
  font-size: 1.2rem;
}

.faq-new-list .faq-a p {
  padding: 2px 58px 20px;
  font-size: 0.92rem;
  line-height: 1.6;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.cta-new {
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
  color: #fff;
  padding: 125px 24px 55px;
}

.cta-new-wave {
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 0;
  width: 100%;
  height: 95px;
}

.cta-new-inner {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.35fr) 170px;
  align-items: center;
  gap: 45px;
}

.cta-new-art {
  align-self: end;
}

.cta-new-art img {
  width: min(360px, 115%);
  max-height: 380px;
  object-fit: contain;
}

.cta-new-copy {
  position: relative;
}

.cta-new-eyebrow {
  display: inline-block;
  margin: 0 0 17px;
  padding-bottom: 5px;
  border-bottom: 4px solid var(--yellow, #ffd93d);
  font-family: "Caveat", cursive;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cta-new-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  line-height: 0.87;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.cta-new-copy h2 span {
  color: var(--pink, #f6a3d5);
}

.cta-new-lede {
  max-width: 700px;
  margin: 25px 0 28px;
  color: #f2f2f2;
  font-size: 1rem;
  line-height: 1.55;
}

.cta-new-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(470px, 100%);
  min-height: 58px;
  padding: 0 25px;
  border-radius: 14px;
  background: var(--yellow, #ffd93d);
  color: var(--ink, #1a1a1a);
  box-shadow: 5px 5px 0 rgba(255,255,255,.16);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 160ms ease;
}

.cta-new-button:hover {
  transform: translateY(-2px);
}

.cta-new-button span {
  font-size: 1.45rem;
}

.cta-new-note {
  margin: 17px 0 0;
  color: #c5c5c5;
  font-size: 0.78rem;
}

.cta-new-doodle {
  align-self: end;
  padding-bottom: 25px;
}

.cta-new-doodle img {
  width: min(160px, 100%);
  object-fit: contain;
}


/* =========================================================
   FINAL FOOTER
   ========================================================= */

.footer-new {
  overflow: hidden;
  background: #0d0d0d;
  color: #fff;
  padding: 45px 24px 25px;
  border-top: 0;
}

.footer-new-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .75fr .75fr .9fr;
  gap: 55px;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.055em;
}

.footer-new-brand p {
  margin: 14px 0 22px;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.3;
  font-style: italic;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.footer-socials a:hover {
  background: var(--yellow, #ffd93d);
  color: var(--ink, #1a1a1a);
}

.footer-new-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-new-links a {
  color: #eee;
  font-size: 0.86rem;
}

.footer-new-links a:hover {
  color: var(--yellow, #ffd93d);
}

.footer-new-note {
  display: flex;
  justify-content: flex-end;
}

.footer-new-note img {
  width: min(210px, 100%);
  object-fit: contain;
}

.footer-new-bottom {
  width: min(1180px, 100%);
  margin: 38px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.footer-new-bottom p {
  margin: 0;
  color: #aaa;
  font-size: 0.72rem;
}


/* =========================================================
   FINAL SECTIONS TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .faq-new-head {
    grid-template-columns: 165px minmax(0, 1fr) 135px;
    gap: 22px;
  }

  .faq-new-bee img {
    max-height: 165px;
  }

  .faq-head-doodle img {
    max-height: 140px;
  }

  .cta-new-inner {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 35px;
  }

  .cta-new-doodle {
    display: none;
  }

  .footer-new-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }

  .footer-new-note {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .footer-new-note img {
    width: 180px;
  }
}


/* =========================================================
   FINAL SECTIONS MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .faq-new {
    padding: 65px 18px 80px;
  }

  .faq-new-head {
    display: grid;
    grid-template-columns: 95px 1fr;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
  }

  .faq-new-heading {
    text-align: left;
  }

  .faq-new-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .faq-new-bee img {
    width: 100%;
    max-height: 125px;
  }

  .faq-head-doodle {
    display: none;
  }

  .faq-new-swoosh {
    width: 70%;
    margin-left: 0;
  }

  .faq-probably {
    position: static;
    margin-top: 12px;
    font-size: 1.1rem;
  }

  .faq-new-list .faq-q {
    grid-template-columns: 24px 1fr 20px;
    min-height: 58px;
    padding: 14px 12px;
    font-size: 0.88rem;
  }

  .faq-new-list .faq-a p {
    padding: 0 20px 20px 46px;
    font-size: 0.88rem;
  }


  .cta-new {
    padding: 105px 18px 45px;
  }

  .cta-new-wave {
    height: 70px;
  }

  .cta-new-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .cta-new-art {
    order: 2;
    width: 100%;
    margin-bottom: -30px;
  }

  .cta-new-art img {
    width: min(330px, 100%);
    margin: 0 auto;
  }

  .cta-new-copy {
    order: 1;
    width: 100%;
  }

  .cta-new-copy h2 {
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

  .cta-new-button {
    width: 100%;
  }


  .footer-new {
    padding: 40px 18px 25px;
  }

  .footer-new-inner {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-new-brand {
    grid-column: 1 / -1;
  }

  .footer-logo {
    font-size: 2.5rem;
  }

  .footer-new-note {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .footer-new-note img {
    width: 175px;
  }

  .footer-new-bottom {
    margin-top: 30px;
  }
}


@media (max-width: 430px) {

  .faq-new-head {
    grid-template-columns: 75px 1fr;
  }

  .faq-new-heading h2 {
    font-size: 2.85rem;
  }

  .footer-new-inner {
    grid-template-columns: 1fr;
  }

  .footer-new-brand,
  .footer-new-note {
    grid-column: auto;
  }
}

/* =========================================================
   ACCESSIBILITY AND MOTION PREFERENCES
   ========================================================= */

.cta-new,
.footer-new {
  --focus-ring: var(--yellow, #ffd93d);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}


/* =========================================================
   MERGED CONTENT: SERVICE CAPABILITIES
   ========================================================= */
.service-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: -35px 0 82px;
}
.service-capability {
  min-width: 0;
  border: 2.5px solid var(--ink);
  border-radius: 20px;
  padding: 24px 22px 22px;
  box-shadow: 5px 6px 0 var(--ink);
  transform: rotate(-0.4deg);
}
.service-capability:nth-child(even) { transform: rotate(0.45deg); }
.service-capability-pink { background: var(--pink-soft); }
.service-capability-white { background: #fff; }
.service-capability-orange { background: #ffad75; }
.service-capability-blue { background: #bfe3ff; }
.service-capability-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
}
.service-capability h3 { font-size: clamp(1.45rem, 2vw, 2rem); line-height: .95; }
.service-capability p { margin: 15px 0 17px; font-size: .94rem; line-height: 1.55; }
.service-capability-note {
  display: block;
  padding-top: 14px;
  border-top: 1.5px dashed rgba(26,26,26,.6);
  font-family: "Caveat", cursive;
  font-size: 1.04rem;
  line-height: 1.15;
  font-weight: 700;
}

/* =========================================================
   MERGED CONTENT: WEBSTING ROOTS
   ========================================================= */
.roots {
  background: var(--pink);
  color: var(--ink);
  padding: 20px 24px 105px;
}
.roots-inner { width: min(1240px, 100%); margin: 0 auto; }
.roots-head { max-width: 940px; margin-bottom: 50px; }
.roots-eyebrow {
  margin: 0 0 13px;
  font-family: "Caveat", cursive;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .06em;
}
.roots-head h2 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: .88;
  letter-spacing: -.065em;
}
.roots-head > p:last-child {
  max-width: 760px;
  margin: 27px 0 0;
  font-size: 1.05rem;
  line-height: 1.62;
  font-weight: 500;
}
.roots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 25px;
}
.roots-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 8px 8px 0 var(--ink);
  display: flex;
  flex-direction: column;
}
.roots-card:nth-child(2) { transform: rotate(1deg); }
.roots-card:nth-child(3) { transform: rotate(-.7deg); }
.roots-card-yellow { background: var(--yellow); }
.roots-card-white { background: #fff; }
.roots-card-orange { background: var(--orange); }
.roots-year {
  display: inline-block;
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--ink);
}
.roots-label { margin: 0 0 8px; font-size: .72rem; font-weight: 800; letter-spacing: .13em; }
.roots-card h3 { font-size: clamp(1.7rem, 2.4vw, 2.55rem); line-height: .96; }
.roots-card p:not(.roots-label) { margin: 18px 0; line-height: 1.55; font-size: .95rem; }
.roots-card a {
  margin-top: auto;
  width: fit-content;
  font-weight: 800;
  border-bottom: 2px solid var(--ink);
}
.roots-note { margin: 36px 0 0; text-align: right; font-size: 1.4rem; }

.cta-new-note a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   STATIC SUBPAGES: PROJECT INTAKE + LEGAL
   ========================================================= */
.subpage-body { background: var(--pink); }
.subpage-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 2px solid var(--ink);
  background: rgba(246,163,213,.95);
  backdrop-filter: blur(8px);
}
.subpage-nav-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.subpage-nav-links { display: flex; align-items: center; gap: 22px; font-weight: 700; font-size: .92rem; }
.subpage-shell { width: min(1100px, calc(100% - 36px)); margin: 0 auto; padding: 70px 0 90px; }
.subpage-hero { max-width: 850px; margin-bottom: 45px; }
.subpage-eyebrow { margin: 0 0 13px; font-family: "Caveat", cursive; font-size: 1.45rem; font-weight: 700; }
.subpage-hero h1 { font-size: clamp(3.3rem, 8vw, 7.2rem); line-height: .84; letter-spacing: -.07em; }
.subpage-hero > p:last-child { max-width: 720px; margin: 27px 0 0; font-size: 1.08rem; line-height: 1.62; }
.intake-card, .legal-card-static {
  border: 3px solid var(--ink);
  border-radius: 26px;
  background: #fff;
  box-shadow: 9px 10px 0 var(--ink);
}
.intake-card { padding: clamp(24px, 5vw, 54px); }
.intake-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.intake-field { display: grid; gap: 8px; }
.intake-field-full { grid-column: 1 / -1; }
.intake-field label { font-weight: 800; font-size: .9rem; }
.intake-field input, .intake-field select, .intake-field textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: #fffdf8;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
}
.intake-field textarea { min-height: 135px; resize: vertical; }
.intake-field input:focus, .intake-field select:focus, .intake-field textarea:focus { outline: 4px solid rgba(255,217,61,.75); outline-offset: 1px; }
.intake-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.intake-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 800;
}
.intake-button-secondary { background: #fff; }
.intake-status { min-height: 1.4em; margin: 16px 0 0; font-size: .9rem; font-weight: 700; }
.subpage-foot { margin-top: 54px; padding-top: 24px; border-top: 2px solid var(--ink); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .88rem; }
.subpage-foot a { text-decoration: underline; text-underline-offset: 3px; }
.legal-card-static { padding: clamp(25px, 5vw, 58px); }
.legal-card-static .legal-intro { margin-bottom: 34px; padding-bottom: 24px; border-bottom: 2px solid var(--ink); }
.legal-card-static .legal-section { padding: 24px 0; border-top: 1px solid rgba(26,26,26,.18); }
.legal-card-static .legal-section:first-of-type { border-top: 0; }
.legal-card-static h2 { margin-bottom: 13px; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1; }
.legal-card-static h3 { margin: 22px 0 8px; font-size: 1.12rem; line-height: 1.15; }
.legal-card-static p, .legal-card-static li, .legal-card-static address { font-size: .95rem; line-height: 1.72; }
.legal-card-static ul, .legal-card-static ol { list-style: revert; margin: 12px 0 12px 24px; padding: 0; }
.legal-card-static a { text-decoration: underline; text-underline-offset: 3px; }
.legal-card-static address { font-style: normal; margin: 14px 0; padding: 15px; border-left: 5px solid var(--yellow); background: #fff8cf; }
.legal-document-footer { display: flex; gap: 18px; flex-wrap: wrap; padding-top: 28px; border-top: 2px solid var(--ink); }

@media (max-width: 1000px) {
  .service-capabilities { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .roots-grid { grid-template-columns: 1fr; }
  .roots-card { min-height: 0; }
}
@media (max-width: 700px) {
  .service-capabilities { grid-template-columns: 1fr; margin-top: -20px; margin-bottom: 65px; }
  .service-capability { transform: none !important; }
  .roots { padding: 10px 18px 75px; }
  .roots-card { transform: none !important; padding: 23px; }
  .roots-note { text-align: left; }
  .subpage-nav-inner { min-height: 68px; }
  .subpage-nav-links a:not(.subpage-nav-primary) { display: none; }
  .subpage-shell { padding-top: 50px; }
  .intake-grid { grid-template-columns: 1fr; }
  .intake-field-full { grid-column: auto; }
}
