:root {
  --navy: #061a38;
  --blue: #1557b7;
  --teal: #008c95;
  --mint: #bdf7ea;
  --yellow: #f6c83d;
  --cream: #f8f1e3;
  --ink: #111111;
  --white: #fffaf0;
  --border: 3px solid var(--navy);
  --shadow: 10px 10px 0 var(--ink);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(#111 0.65px, transparent 0.65px);
  background-size: 7px 7px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(4rem, 10vw, 9rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}

p {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-140%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--navy);
  border-top: 5px solid var(--mint);
  border-bottom: 2px solid rgba(248, 241, 227, 0.18);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--cream);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: min(255px, 46vw);
  max-height: 70px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.04);
}

.footer-logo {
  width: min(310px, 74vw);
  max-height: 96px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--mint);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--yellow) 0 10%, transparent 11%),
    radial-gradient(circle at 50% 50%, var(--teal) 0 33%, transparent 34%),
    var(--navy);
}

.brand-mark span {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--navy);
}

.brand-text {
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.about-badge {
  display: block;
  width: min(260px, 72vw);
  height: auto;
  margin-top: 28px;
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--cream);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 17px;
  background: var(--yellow);
  color: var(--navy);
  border: 2px solid var(--mint);
}

.breadcrumb-shell {
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: 48px;
  margin: 0 auto;
  gap: 10px;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.breadcrumbs span {
  overflow-wrap: anywhere;
}

.breadcrumbs span[aria-hidden="true"] {
  color: var(--teal);
}

.breadcrumbs [aria-current="page"] {
  display: inline-block;
  padding: 6px 9px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-1deg);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 2px solid var(--mint);
  background: transparent;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 22px;
  height: 3px;
  margin: 0 auto;
  background: var(--cream);
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-8px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 140, 149, 0.18) 0 22%, transparent 22% 100%),
    linear-gradient(165deg, transparent 0 68%, rgba(0, 140, 149, 0.28) 68% 100%),
    var(--navy);
  color: var(--cream);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  right: min(8vw, 92px);
  top: 92px;
  width: 260px;
  height: 260px;
  border: 28px solid rgba(189, 247, 234, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 24px rgba(0, 140, 149, 0.28),
    0 0 0 2px rgba(248, 241, 227, 0.08);
}

.hero::after {
  left: -94px;
  bottom: -74px;
  width: 300px;
  height: 120px;
  background: var(--yellow);
  border: 4px solid var(--ink);
  transform: rotate(-8deg);
  opacity: 0.92;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: min(700px, calc(100vh - 82px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

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

.pattern-field {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(rgba(248, 241, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 241, 227, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 22px 22px, rgba(189, 247, 234, 0.2) 0 3px, transparent 4px);
  background-size: 48px 48px, 48px 48px, 96px 96px;
}

.hero-pattern {
  mask-image: linear-gradient(90deg, transparent 0, #000 28%, #000 72%, transparent 100%);
}

.angle-label,
.section-kicker,
.card-label,
.note-card span {
  display: inline-block;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  background: var(--yellow);
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.hero .angle-label {
  border-color: var(--mint);
}

.hero-lede {
  max-width: 820px;
  color: rgba(248, 241, 227, 0.88);
  font-size: clamp(1.18rem, 2.2vw, 1.5rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 19px;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button-primary {
  background: var(--teal);
  color: var(--mint);
}

.button-secondary {
  background: var(--cream);
  color: var(--navy);
}

.hero-micro {
  color: var(--mint);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(0, 140, 149, 0.2) 0 24%, transparent 24% 100%),
    linear-gradient(25deg, transparent 0 70%, rgba(246, 200, 61, 0.18) 70% 100%),
    var(--navy);
  color: var(--cream);
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  border: 32px solid rgba(189, 247, 234, 0.14);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 52px;
}

.page-hero h1 {
  max-width: 1060px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.2vw, 4.25rem);
  line-height: 1;
}

.page-hero p:not(.angle-label) {
  max-width: 760px;
  color: rgba(248, 241, 227, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 700;
}

.section-pad {
  padding: 96px 0;
}

.section-grid,
.section-head,
.service-grid,
.detail-grid,
.timeline-list,
.notes-feature,
.article-grid,
.values-grid,
.contact-grid,
.process-grid,
.notes-grid,
.proof-inner,
.cta-card,
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 54px;
}

.intro {
  background: var(--cream);
}

.intro-copy {
  padding-top: 16px;
  font-size: 1.22rem;
  font-weight: 600;
}

.intro-copy p + p {
  margin-top: 18px;
}

.section-kicker {
  background: var(--mint);
}

.services {
  background:
    linear-gradient(180deg, rgba(0, 140, 149, 0.08), transparent 36%),
    var(--cream);
}

.section-head {
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  grid-column: span 2;
  min-width: 0;
  min-height: 278px;
  padding: 26px;
  overflow: hidden;
  background: var(--white);
  border: var(--border);
  box-shadow: 7px 7px 0 var(--navy);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -38px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(0, 140, 149, 0.18);
  border-radius: 50%;
}

.feature-card {
  grid-column: span 4;
  background: var(--navy);
  color: var(--cream);
}

.feature-card::after {
  border-color: rgba(189, 247, 234, 0.26);
}

.card-label {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  background: var(--mint);
}

.feature-card .card-label {
  background: var(--yellow);
}

.service-card ul {
  display: grid;
  padding-left: 20px;
  margin: 22px 0 0;
  gap: 8px;
  font-weight: 700;
}

.card-link {
  display: inline-block;
  margin-top: 24px;
  color: inherit;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 4px;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.card-link:hover,
.card-link:focus-visible {
  color: var(--teal);
}

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

.detail-card,
.values-grid article,
.article-grid article,
.contact-panel,
.contact-form {
  position: relative;
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: var(--border);
  box-shadow: 7px 7px 0 var(--navy);
}

.detail-card h2,
.timeline-list h2,
.values-grid h2,
.article-grid h2,
.contact-panel h2,
.notes-feature h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.1vw, 3.25rem);
}

.detail-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 28px;
  background: var(--navy);
  color: var(--cream);
  border-color: var(--mint);
}

.detail-feature .card-label {
  background: var(--yellow);
}

.check-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border: 2px solid currentColor;
  transform: rotate(-8deg);
}

.process {
  background: var(--navy);
  color: var(--cream);
}

.process .section-kicker {
  border-color: var(--mint);
  color: var(--navy);
}

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

.process-grid article {
  min-height: 250px;
  padding: 28px;
  border: 3px solid var(--mint);
  background:
    linear-gradient(135deg, rgba(0, 140, 149, 0.28), transparent 62%),
    rgba(248, 241, 227, 0.06);
}

.process-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--yellow);
  font-family: "Archivo Black", sans-serif;
  font-size: 3.3rem;
  line-height: 0.8;
}

.testimonials {
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  gap: 20px;
}

.testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 320px;
  margin: 0;
  padding: 28px;
  background: var(--white);
  border: var(--border);
  box-shadow: 7px 7px 0 var(--navy);
}

.testimonial-card:nth-child(2) {
  background: var(--yellow);
}

.testimonial-card:nth-child(3) {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--mint);
}

.testimonial-card blockquote {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.85rem);
  line-height: 1.03;
  text-transform: uppercase;
}

.testimonial-card figcaption {
  display: grid;
  margin-top: 28px;
  gap: 3px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-card span {
  font-size: 0.8rem;
}

.product-hero .page-hero-inner {
  padding-bottom: 52px;
}

.product-section {
  background: var(--cream);
}

.product-grid,
.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  gap: 28px;
}

.product-copy,
.offer-layout > div {
  padding: 34px;
  background: var(--white);
  border: var(--border);
  box-shadow: 7px 7px 0 var(--navy);
}

.product-copy h2,
.offer-layout h2 {
  margin-bottom: 20px;
}

.product-copy p:not(.section-kicker),
.offer-layout p:not(.section-kicker) {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 1.16rem;
  font-weight: 700;
}

.product-summary {
  padding: 30px;
  background: var(--navy);
  color: var(--cream);
  border: 4px solid var(--mint);
  box-shadow: 8px 8px 0 var(--ink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  gap: 16px;
}

.pricing-card {
  display: grid;
  align-content: space-between;
  min-width: 0;
  min-height: 210px;
  padding: 22px;
  background: var(--white);
  border: var(--border);
  box-shadow: 6px 6px 0 var(--navy);
}

.pricing-card.feature-price {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--mint);
}

.pricing-card span {
  display: block;
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  color: var(--teal);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.65rem, 2.35vw, 2.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.pricing-card.feature-price strong {
  color: var(--yellow);
}

.pricing-card p {
  margin-top: 18px;
  font-weight: 700;
}

.pricing-note {
  width: min(var(--max), calc(100% - 32px));
  margin: 24px auto 0;
  padding: 18px 22px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.price-panel {
  margin-top: 24px;
  padding: 22px;
  background: var(--yellow);
  color: var(--navy);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.price-panel span {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-panel strong {
  display: block;
  margin-top: 6px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.price-panel + .button {
  margin-top: 24px;
}

.deliverables {
  background:
    linear-gradient(180deg, rgba(0, 140, 149, 0.08), transparent 38%),
    var(--cream);
}

.offer-detail {
  background: var(--cream);
}

.timeline {
  background: var(--cream);
}

.timeline-list {
  display: grid;
  gap: 24px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 26px;
  padding: 34px;
  background: var(--white);
  border: var(--border);
  box-shadow: 8px 8px 0 var(--navy);
}

.timeline-list span {
  color: var(--teal);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.82;
}

.notes {
  background: var(--cream);
}

.notes .section-grid {
  align-items: end;
  margin-bottom: 34px;
}

.notes .section-grid p:last-child {
  font-size: 1.15rem;
  font-weight: 700;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.note-card {
  position: relative;
  min-height: 420px;
  padding: 28px;
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
}

.note-card::before {
  content: "";
  position: absolute;
  inset: auto -32px -56px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--yellow) 0 12%, transparent 13%),
    radial-gradient(circle at center, var(--mint) 0 28%, transparent 29%),
    radial-gradient(circle at center, var(--teal) 0 48%, transparent 49%);
  opacity: 0.9;
}

.note-card span,
.note-card h3,
.note-card p {
  position: relative;
  z-index: 1;
}

.note-card span {
  background: var(--cream);
}

.note-card h3 {
  margin-top: 60px;
}

.blue-cover {
  background: var(--navy);
  color: var(--cream);
}

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

.teal-cover {
  background: var(--teal);
  color: var(--cream);
}

.notes-page {
  background: var(--cream);
}

.notes-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 24px;
  margin-bottom: 34px;
}

.notes-feature .note-card {
  min-height: 360px;
}

.issue-list {
  display: grid;
  align-content: start;
  padding: 28px;
  background: var(--navy);
  color: var(--cream);
  border: 4px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
  gap: 12px;
}

.issue-list a {
  padding: 13px 14px;
  background: rgba(248, 241, 227, 0.08);
  border: 2px solid rgba(189, 247, 234, 0.34);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.article-grid article {
  min-height: 300px;
}

.article-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-grid h2 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.about-page {
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 32px));
  margin: 54px auto 0;
  border: 4px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
}

.experience-strip article {
  display: grid;
  align-content: space-between;
  min-width: 0;
  min-height: 160px;
  padding: 22px;
  background: var(--navy);
  color: var(--cream);
  border-right: 3px solid var(--mint);
}

.experience-strip article:nth-child(even) {
  background: var(--teal);
  color: var(--white);
}

.experience-strip article:last-child {
  border-right: 0;
}

.experience-strip strong {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.45rem, 2.25vw, 2.4rem);
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.experience-strip span {
  display: block;
  margin-top: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.values-grid article:nth-child(2) {
  background: var(--yellow);
}

.values-grid article:nth-child(3) {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--mint);
}

.about-statement {
  width: min(var(--max), calc(100% - 32px));
  margin: 34px auto 0;
  padding: 34px;
  background: var(--white);
  border: var(--border);
  box-shadow: 7px 7px 0 var(--navy);
}

.about-statement h2 {
  max-width: 850px;
  margin-bottom: 18px;
}

.about-statement p:not(.angle-label) {
  max-width: 850px;
  font-size: 1.18rem;
  font-weight: 700;
}

.contact-page {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 28px;
}

.contact-panel {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--mint);
}

.direct-email {
  margin-top: 26px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.direct-email a {
  color: var(--mint);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 3px solid var(--navy);
  background: var(--cream);
  color: var(--ink);
  font: 600 1rem Inter, system-ui, sans-serif;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 4px solid var(--mint);
  outline-offset: 0;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.4em;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--teal);
}

.form-status.is-error {
  color: #b42318;
}

.thanks-page {
  background: var(--cream);
}

.thanks-card {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border: var(--border);
  box-shadow: 10px 10px 0 var(--navy);
}

.thanks-card h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 6vw, 5.4rem);
}

.thanks-card p {
  max-width: 700px;
  margin-top: 18px;
  font-size: 1.12rem;
  font-weight: 700;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.faq {
  background: var(--cream);
}

.faq-list {
  display: grid;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  gap: 16px;
}

.faq-item {
  padding: 26px;
  background: var(--white);
  border: var(--border);
  box-shadow: 6px 6px 0 var(--navy);
}

.faq-item h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

.legal-page {
  background: var(--cream);
}

.legal-content {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px;
  background: var(--white);
  border: var(--border);
  box-shadow: 7px 7px 0 var(--navy);
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p + p {
  margin-top: 14px;
}

.proof-band {
  padding: 54px 0;
  background: var(--yellow);
  color: var(--navy);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.proof-inner p {
  max-width: 630px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 3.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.proof-tags span {
  padding: 9px 11px;
  max-width: 100%;
  background: var(--navy);
  color: var(--cream);
  border: 2px solid var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(246, 200, 61, 0.18) 0 18%, transparent 18% 100%),
    linear-gradient(25deg, transparent 0 64%, rgba(0, 140, 149, 0.22) 64% 100%),
    var(--navy);
  color: var(--cream);
}

.cta::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 42px;
  width: 190px;
  height: 190px;
  border: 24px solid rgba(189, 247, 234, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.cta-card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 46px;
  background: var(--cream);
  color: var(--navy);
  border: 4px solid var(--mint);
  box-shadow: var(--shadow);
}

.cta-card p:not(.angle-label) {
  max-width: 680px;
  margin: 20px 0 30px;
  font-size: 1.2rem;
  font-weight: 700;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
  border-top: 5px solid var(--mint);
}

.footer-pattern {
  height: 28px;
  background:
    linear-gradient(90deg, var(--mint) 0 18%, var(--teal) 18% 72%, var(--yellow) 72% 100%);
  background-size: 180px 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: start;
  padding: 42px 0;
  gap: 30px;
}

.footer-inner p {
  color: rgba(248, 241, 227, 0.8);
  font-weight: 600;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--navy);
    border: 3px solid var(--mint);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

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

  .hero-inner {
    min-height: auto;
  }

  .service-card,
  .feature-card {
    grid-column: span 3;
  }

  .process-grid,
  .notes-grid,
  .detail-grid,
  .notes-feature,
  .article-grid,
  .values-grid,
  .experience-strip,
  .testimonial-grid,
  .product-grid,
  .offer-layout,
  .pricing-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .experience-strip article {
    border-right: 0;
    border-bottom: 3px solid var(--mint);
  }

  .experience-strip article:last-child {
    border-bottom: 0;
  }

  .detail-feature,
  .timeline-list article {
    grid-template-columns: 1fr;
  }

  .proof-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-tags,
  .footer-links {
    justify-content: flex-start;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 68px 0;
  }

  .brand-text {
    font-size: 0.88rem;
  }

  .hero-inner {
    padding: 52px 0 74px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .page-hero-inner {
    padding: 38px 0 46px;
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 9vw, 3.15rem);
  }

  .page-hero p:not(.angle-label) {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

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

  .service-card,
  .feature-card {
    grid-column: span 1;
  }

  .note-card {
    min-height: 340px;
  }

  .cta-card {
    padding: 28px;
  }
}
