:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #60646c;
  --line: #dcd8d0;
  --paper: #f7f5ef;
  --white: #ffffff;
  --yellow: #f2ca2f;
  --blue: #2657ff;
  --coral: #ef6a4c;
  --green: #4a8a66;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: soft-rise 620ms ease-out both;
  }

  .hero-media {
    animation: soft-rise 760ms 120ms ease-out both;
  }

  .button,
  .work-card,
  .expanded-card,
  .identity-card,
  .offer-intro,
  .offer-card,
  .capability-grid div,
  .ecosystem-card,
  .video-frame {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      background-color 180ms ease;
  }

  @supports (animation-timeline: view()) {
    .section-heading,
    .offer-intro,
    .offer-card,
    .work-card,
    .expanded-card,
    .identity-card,
    .capability-grid div,
    .about-image,
    .about-copy,
    .video-frame,
    .ecosystem-card,
    .contact-section {
      animation: scroll-rise 680ms ease-out both;
      animation-timeline: view();
      animation-range: entry 0% cover 24%;
    }
  }
}

@keyframes scroll-rise {
  from {
    transform: translateY(14px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes soft-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 42px);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(168px, 18vw, 228px);
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: #34373d;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px) 0 clamp(26px, 4vw, 44px);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 640px;
  font-size: clamp(3rem, 4.55vw, 4.55rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  max-width: 780px;
  font-size: clamp(2.1rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-summary {
  max-width: 560px;
  color: #30343a;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.45;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: var(--yellow);
  color: var(--ink);
}

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

.hero-media {
  position: relative;
  min-height: clamp(370px, 42vw, 500px);
}

.hero-image {
  position: absolute;
  border: 8px solid var(--white);
  box-shadow: 0 22px 60px rgba(21, 21, 21, 0.18);
  object-fit: cover;
}

.hero-image-main {
  inset: 60px 8% auto 0;
  width: 78%;
  aspect-ratio: 1.7 / 1;
}

.hero-image-small {
  right: 0;
  width: 42%;
  aspect-ratio: 1.45 / 1;
}

.hero-image-small.top {
  top: 0;
  border-color: var(--yellow);
}

.hero-image-small.bottom {
  bottom: 34px;
  border-color: var(--coral);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.intro-band div {
  min-height: 168px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.intro-band strong {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.intro-band span {
  color: #e6e1d7;
  line-height: 1.5;
}

.section,
.reel-section,
.landing-systems-section,
.brand-section,
.pipeline-section,
.ecosystem-section,
.capability-band,
.about-section,
.contact-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.landing-systems-section {
  padding-top: clamp(58px, 8vw, 98px);
}

.landing-systems-section .section-heading h2 {
  max-width: 930px;
  font-size: clamp(2.45rem, 4vw, 4.15rem);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.82fr) minmax(260px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.offer-intro,
.offer-card {
  padding: clamp(26px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.offer-intro {
  display: flex;
  flex-direction: column;
  border-top: 8px solid var(--blue);
}

.offer-intro .button {
  align-self: flex-start;
  margin-top: auto;
}

.offer-intro p,
.offer-card p,
.offer-card li {
  color: var(--muted);
  line-height: 1.58;
}

.offer-intro p {
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.offer-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
}

.offer-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.offer-card li + li {
  margin-top: 8px;
}

.reel-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(21, 21, 21, 0.16);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.work-card:hover,
.expanded-card:hover,
.identity-card:hover,
.offer-card:hover,
.offer-intro:hover,
.ecosystem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(21, 21, 21, 0.1);
}

.work-card.feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
}

.work-media {
  display: grid;
  align-items: center;
  min-height: 310px;
  margin: 0;
  background: #ece8df;
}

.website-frame {
  padding: clamp(12px, 2vw, 22px);
}

.print-frame {
  padding: 0;
  background: #f0ede5;
}

.work-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(21, 21, 21, 0.14);
}

.print-frame img {
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.work-card-copy {
  padding: clamp(22px, 4vw, 42px);
}

.work-type {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card p:last-child,
.capability-grid p,
.about-copy p,
.identity-card p,
.expanded-card p {
  color: var(--muted);
  line-height: 1.58;
}

.scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.scope-list li {
  padding: 7px 10px;
  background: #f6f4ee;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #30343a;
  font-size: 0.82rem;
  font-weight: 800;
}

.brand-section {
  padding-top: 0;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.identity-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.identity-logo {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 24px;
}

.identity-logo.light {
  background: #f8f6f0;
}

.identity-logo.dark {
  background: var(--ink);
}

.identity-logo img {
  max-height: 142px;
  object-fit: contain;
}

.identity-application {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.identity-card div:last-child {
  grid-column: span 2;
}

.pipeline-section {
  padding-top: 0;
}

.expanded-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.expanded-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.expanded-card.wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  grid-template-rows: auto;
}

.expanded-card figure {
  display: grid;
  align-items: start;
  min-height: 360px;
  margin: 0;
  padding: clamp(12px, 2vw, 22px);
  background: #ece8df;
}

.expanded-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(21, 21, 21, 0.14);
}

.expanded-card:not(.wide) figure {
  max-height: 520px;
  overflow: hidden;
}

.expanded-card:not(.wide) img {
  height: 100%;
  object-fit: cover;
}

.expanded-card > div {
  padding: clamp(22px, 3.5vw, 38px);
}

.capability-band {
  width: 100%;
  padding-inline: max(18px, calc((100% - var(--max)) / 2));
  background: var(--white);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.capability-grid div {
  min-height: 230px;
  padding: clamp(24px, 3.5vw, 38px);
  background: var(--white);
}

.capability-grid div:nth-child(2) {
  border-top: 6px solid var(--blue);
}

.capability-grid div:nth-child(4) {
  border-top: 6px solid var(--coral);
}

.capability-grid div:nth-child(5) {
  border-top: 6px solid var(--yellow);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.about-image {
  background: #dbd5ca;
  border: 8px solid var(--white);
}

.about-image img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  object-position: top center;
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.client-list li {
  padding: 9px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #33373d;
  font-size: 0.9rem;
  font-weight: 800;
}

.ecosystem-section {
  padding-top: clamp(34px, 5vw, 70px);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.ecosystem-grid a {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 34px;
  flex-direction: column;
  min-height: 280px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  text-decoration: none;
  overflow: hidden;
}

.ecosystem-grid a:hover {
  background: #fff9dc;
}

.ecosystem-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.ecosystem-logo {
  display: flex;
  align-items: center;
  width: min(230px, 100%);
  min-height: 68px;
}

.ecosystem-logo img {
  display: block;
  width: 100%;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
}

.mark-amazon {
  position: relative;
  padding-bottom: 9px;
  font-size: 1.35rem;
  font-weight: 800;
}

.mark-amazon::after {
  position: absolute;
  right: 4px;
  bottom: 0;
  width: 58px;
  height: 10px;
  border-bottom: 4px solid #ff9900;
  border-radius: 0 0 80px 80px;
  content: "";
}

.mark-apple {
  padding: 11px 16px;
  color: var(--white);
  background: linear-gradient(135deg, #fb5a8b, #7658ff 58%, #1ec8ff);
  border-radius: 999px;
}

.mark-rca {
  align-items: flex-start;
  flex-direction: column;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mark-rca::before {
  width: 56px;
  height: 6px;
  margin-bottom: 10px;
  background: var(--yellow);
  content: "";
}

.mark-etsy {
  color: #f1641e;
  font-family: Georgia, serif;
  font-size: 2.15rem;
}

.mark-youtube {
  width: 76px;
  min-height: 52px;
  background: #ff0033;
  border-radius: 14px;
}

.mark-youtube i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--white);
}

.mark-archive,
.mark-systems,
.mark-pickleball {
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mark-archive::before,
.mark-systems::before,
.mark-pickleball::before {
  width: 12px;
  height: 12px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.mark-systems::before {
  background: var(--coral);
}

.mark-pickleball::before {
  width: 16px;
  height: 16px;
  background:
    radial-gradient(circle at 40% 35%, var(--ink) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 60%, var(--ink) 0 2px, transparent 3px),
    #d5fb49;
}

.ecosystem-grid strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.contact-section {
  padding: clamp(52px, 8vw, 88px);
  background: var(--blue);
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--yellow);
}

.contact-section h2 {
  max-width: 860px;
}

.contact-section .button.secondary {
  background: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 42px);
  color: #f1eee7;
  background: var(--ink);
}

.subpage-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) 0 clamp(36px, 6vw, 72px);
}

.subpage-hero h1 {
  max-width: 980px;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

.deep-hero {
  padding-bottom: clamp(28px, 5vw, 56px);
}

.deep-hero .hero-actions {
  margin-top: 28px;
}

.subpage-showcase,
.case-study {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(64px, 9vw, 118px);
}

.large-preview {
  margin: 0 0 28px;
  padding: clamp(12px, 2vw, 22px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.archive-preview {
  margin-top: 18px;
}

.large-preview img {
  width: 100%;
  border-radius: 6px;
}

.deep-showcase .large-preview {
  background: #f3f1eb;
}

.workflow-visual {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(18px, 3vw, 32px);
  background: #f3f5f6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-card {
  min-height: 290px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid #d9dde1;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(21, 21, 21, 0.08);
}

.ev-logo {
  margin-bottom: 52px;
  color: #22262b;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.ev-logo span {
  color: #c91637;
}

.workflow-card p {
  margin: 0 0 22px;
  color: #c91637;
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.05;
}

.mini-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-project-grid span,
.form-card-preview > span,
.crm-card-preview > span {
  display: block;
  padding: 12px 14px;
  color: #293039;
  background: #f9fafb;
  border: 1px solid #e1e5e9;
  border-radius: 6px;
  font-weight: 800;
}

.form-card-preview i {
  display: block;
  height: 28px;
  margin-top: 10px;
  background: #f9fafb;
  border: 1px solid #dfe4e8;
  border-radius: 5px;
}

.workflow-arrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deep-system {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(64px, 9vw, 118px);
}

.deep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.deep-grid article {
  min-height: 260px;
  padding: clamp(24px, 3.5vw, 38px);
  background: var(--white);
}

.deep-grid span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deep-grid h3 {
  margin-top: 18px;
}

.deep-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.project-notes,
.case-study {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-notes article,
.case-panel,
.case-study > div:first-child {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-notes h2,
.case-study h2,
.pickleball-intro h2,
.pickleball-details h2 {
  max-width: none;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
}

.project-notes p,
.case-study p,
.case-panel li {
  color: var(--muted);
  line-height: 1.58;
}

.website-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
}

.website-directory a {
  display: flex;
  flex-direction: column;
  min-height: 166px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  text-decoration: none;
}

.website-directory a:hover {
  background: #fff9dc;
}

.website-directory span {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.website-directory strong {
  margin-bottom: 8px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.website-directory em {
  margin-top: auto;
  color: var(--muted);
  font-style: normal;
  overflow-wrap: anywhere;
}

.case-study > div:first-child {
  grid-column: span 2;
}

.case-panel ul {
  margin: 0;
  padding-left: 1.15rem;
}

.case-panel li + li {
  margin-top: 10px;
}

.quote-panel p {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.42;
}

.quote-panel strong {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.4;
}

.pickleball-page {
  color: #101417;
  background: #f4f6f0;
}

.pickleball-hero {
  display: grid;
  align-items: center;
  min-height: min(760px, 88vh);
  padding: clamp(28px, 8vw, 110px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 18, 28, 0.9), rgba(2, 18, 28, 0.48), rgba(2, 18, 28, 0.26)),
    url("/pickleball-coach-jackson/images/slider-students-05.jpg") center 42% / cover;
}

.pickleball-hero-copy {
  width: min(760px, 100%);
}

.pickleball-logo {
  width: min(300px, 72vw);
  margin-bottom: clamp(34px, 7vw, 70px);
  filter: brightness(0) invert(1);
}

.pickleball-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(4.5rem, 9vw, 8.4rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.pickleball-hero p {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pickleball-hero .button.secondary {
  background: var(--white);
}

.pickleball-intro,
.pickleball-details {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 112px) 0;
}

.pickleball-intro figure {
  margin: 0;
}

.pickleball-intro img {
  width: 100%;
  border: 10px solid var(--white);
  box-shadow: 0 20px 50px rgba(12, 16, 18, 0.12);
}

.pickleball-intro p,
.pickleball-details p,
.pickleball-details li {
  color: var(--muted);
  line-height: 1.58;
}

.pickleball-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  background: #111518;
}

.pickleball-band div {
  min-height: 250px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.pickleball-band div:nth-child(2) {
  border-top: 8px solid #d5fb49;
}

.pickleball-band span {
  display: block;
  margin-bottom: 28px;
  color: #d5fb49;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pickleball-band strong {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.24;
}

.pickleball-slider,
.pickleball-proof {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 112px) 0 0;
}

.student-slideshow {
  overflow: hidden;
  background: var(--ink);
  border: 10px solid var(--white);
  box-shadow: 0 20px 50px rgba(12, 16, 18, 0.12);
}

.student-track {
  display: flex;
  width: max-content;
  animation: student-slide 42s linear infinite;
}

.student-track img {
  width: min(780px, 78vw);
  aspect-ratio: 2408 / 1280;
  object-fit: cover;
}

.student-slideshow:hover .student-track {
  animation-play-state: paused;
}

@keyframes student-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.pickleball-details {
  align-items: start;
}

.pickleball-details ul {
  margin: 0;
  padding-left: 1.15rem;
}

.pickleball-details li + li {
  margin-top: 12px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.proof-grid figure {
  margin: 0;
  padding: clamp(12px, 2vw, 20px);
  background: var(--white);
  border: 1px solid var(--line);
}

.proof-grid img {
  width: 100%;
}

.quickstart-poster {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(38px, 6vw, 78px) auto 0;
  padding: clamp(10px, 1.5vw, 16px);
  background: #111518;
}

.quickstart-poster img {
  width: 100%;
}

.pickleball-contact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(38px, 6vw, 78px) auto 0;
  padding: clamp(28px, 5vw, 56px);
  background: var(--yellow);
}

.pickleball-contact img {
  width: clamp(74px, 9vw, 118px);
}

.pickleball-contact h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.pickleball-contact .eyebrow {
  color: var(--ink);
}

.pickleball-contact .button {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero,
  .work-card.feature,
  .about-section,
  .project-notes,
  .case-study,
  .offer-grid,
  .pickleball-intro,
  .pickleball-details,
  .pickleball-band,
  .proof-grid,
  .pickleball-contact,
  .workflow-visual,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .case-study > div:first-child {
    grid-column: auto;
  }

  .offer-intro {
    grid-row: auto;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-media {
    min-height: 460px;
  }

  .intro-band,
  .capability-grid,
  .identity-grid,
  .deep-grid,
  .expanded-work-grid,
  .ecosystem-grid,
  .website-directory {
    grid-template-columns: 1fr;
  }

  .expanded-card.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .identity-card {
    grid-template-columns: 1fr;
  }

  .identity-card div:last-child {
    grid-column: auto;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .pickleball-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .pickleball-contact {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.88rem;
  }

  .site-nav a {
    margin-right: 12px;
  }

  .brand-logo {
    width: 184px;
  }

  .hero {
    width: min(100% - 28px, var(--max));
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.35rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 270px;
  }

  .hero-image {
    border-width: 5px;
  }

  .hero-image-main {
    inset: 30px auto auto 0;
    width: 86%;
  }

  .hero-image-small {
    width: 48%;
  }

  .hero-image-small.bottom {
    bottom: 16px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card.feature {
    grid-column: auto;
  }

  .work-media {
    min-height: 220px;
  }

  .print-frame img {
    min-height: 220px;
  }

  .contact-section {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .pickleball-hero {
    min-height: 620px;
  }

  .pickleball-hero h1 {
    max-width: none;
    font-size: clamp(3.2rem, 11.8vw, 4.8rem);
  }

  .student-track {
    animation-duration: 34s;
  }

  .student-track img {
    width: 86vw;
  }
}
