:root {
  --ink: #142428;
  --ink-soft: #3a5258;
  --paper: #fff8f0;
  --paper-2: #ffeede;
  --coral: #ff5a36;
  --coral-deep: #e03f1c;
  --teal: #00c2a8;
  --teal-deep: #009882;
  --sun: #ffe566;
  --plum: #2b1a4a;
  --line: rgba(20, 36, 40, 0.12);
  --shadow: 0 18px 40px rgba(20, 36, 40, 0.12);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 229, 102, 0.45), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(0, 194, 168, 0.28), transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(255, 90, 54, 0.12), transparent 40%),
    linear-gradient(180deg, var(--paper) 0%, #fff4e8 45%, #f3fff9 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 0.4rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 240, 0.82);
  border-bottom: 2px solid var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.55rem;
  background:
    linear-gradient(135deg, var(--coral), var(--sun) 55%, var(--teal));
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-6deg);
  animation: bob 4s ease-in-out infinite;
}

.brand-text {
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0.1rem;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 3px;
  background: var(--coral);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 0.55rem 0.95rem !important;
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--coral);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid var(--ink);
  border-radius: 0.7rem;
  background: var(--sun);
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-secondary {
  background: var(--teal);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-secondary:hover {
  color: var(--ink);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn-ghost:hover {
  color: var(--ink);
}

.page-main {
  padding-bottom: 4rem;
}

.hero-burst {
  position: relative;
  padding: 4.5rem 0 3rem;
  overflow: hidden;
}

.hero-burst::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 40% 60% 55% 45%;
  background: var(--sun);
  opacity: 0.55;
  top: -4rem;
  right: -3rem;
  z-index: 0;
  animation: spin-slow 28s linear infinite;
}

.hero-burst::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 60% 40% 45% 55%;
  background: var(--teal);
  opacity: 0.35;
  bottom: 1rem;
  left: -2rem;
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero-kicker {
  display: inline-block;
  background: var(--ink);
  color: var(--sun);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transform: rotate(-1.5deg);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  max-width: 14ch;
  margin-bottom: 0.7rem;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 42ch;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-visual {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: calc(var(--radius) + 0.4rem);
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--coral);
  min-height: 280px;
  animation: rise-in 0.8s ease both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.section {
  padding: 3.5rem 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 18ch;
}

.section-lead {
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.band-coral {
  background: linear-gradient(120deg, rgba(255, 90, 54, 0.14), rgba(255, 229, 102, 0.25));
  border-block: 2px solid var(--ink);
}

.band-teal {
  background: linear-gradient(160deg, rgba(0, 194, 168, 0.18), rgba(255, 248, 240, 0.2));
  border-block: 2px dashed rgba(20, 36, 40, 0.25);
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

.feature-tile {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 6px 6px 0 var(--teal);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.2s ease;
}

.feature-tile:hover {
  transform: rotate(0deg) translateY(-4px);
}

.feature-tile:nth-child(1) {
  --tilt: -1deg;
}

.feature-tile:nth-child(2) {
  --tilt: 1deg;
  box-shadow: 6px 6px 0 var(--coral);
}

.feature-tile:nth-child(3) {
  --tilt: -0.5deg;
  box-shadow: 6px 6px 0 var(--sun);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  background: var(--sun);
  border: 2px solid var(--ink);
  margin-bottom: 0.9rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
}

.course-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 7px 7px 0 var(--ink);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease;
}

.course-card:hover {
  transform: translate(-3px, -3px);
}

.course-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  border-bottom: 2px solid var(--ink);
}

.course-card-body {
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.course-card h3 {
  font-size: 1.25rem;
  margin: 0;
}

.course-card p {
  color: var(--ink-soft);
  flex: 1;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.4rem 0 0.8rem;
}

.chip {
  display: inline-block;
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.chip-teal {
  background: rgba(0, 194, 168, 0.25);
}

.chip-coral {
  background: rgba(255, 90, 54, 0.18);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.proof-item {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  box-shadow: 4px 4px 0 var(--sun);
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.quote-block {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 var(--coral);
  position: relative;
}

.quote-block::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--teal);
  position: absolute;
  top: 0.4rem;
  left: 0.8rem;
  opacity: 0.5;
}

.quote-block p {
  position: relative;
  z-index: 1;
}

.quote-meta {
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.page-hero p {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.6rem;
}

.prose h3 {
  margin-top: 1.4rem;
  font-size: 1.25rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 1.8rem;
  background: #fff;
  border: 2px solid var(--ink);
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--sun);
  font-family: var(--font-display);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 7px 7px 0 var(--ink);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(165deg, #fff 40%, rgba(0, 194, 168, 0.18));
  transform: translateY(-0.5rem);
  box-shadow: 9px 9px 0 var(--coral);
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 0.8rem;
}

.price-amount span {
  font-size: 1rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 600;
}

.price-card ul {
  flex: 1;
  padding-left: 1.1rem;
  margin-bottom: 1.4rem;
}

.form-panel {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 var(--teal);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: var(--paper);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid var(--sun);
  outline-offset: 1px;
}

.field-error {
  color: var(--coral-deep);
  font-size: 0.9rem;
  margin-top: 0.35rem;
  display: none;
}

.field-error.show {
  display: block;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink);
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: rgba(0, 194, 168, 0.2);
}

.form-status.error {
  background: rgba(255, 90, 54, 0.18);
}

.contact-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 var(--sun);
}

.contact-card a {
  color: var(--sun);
}

.contact-card h2 {
  color: var(--sun);
}

.faq details {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
  box-shadow: 3px 3px 0 var(--paper-2);
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-display);
}

.faq details[open] summary {
  margin-bottom: 0.5rem;
  color: var(--coral-deep);
}

.blog-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.2rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--teal);
}

.blog-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  border-right: 2px solid var(--ink);
}

.blog-row-body {
  padding: 1.1rem 1.1rem 1.2rem 0;
}

.blog-row h2 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.blog-row h2 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-row h2 a:hover {
  color: var(--coral-deep);
}

.article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--coral);
  margin: 1rem 0 1.5rem;
}

.instructor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.2rem;
  align-items: center;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 6px 6px 0 var(--sun);
}

.instructor img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--ink);
}

.module-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}

.module-list li {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 0.7rem;
  box-shadow: 4px 4px 0 rgba(0, 194, 168, 0.45);
}

.module-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.site-footer {
  background: var(--ink);
  color: #e8f3f1;
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  border-top: 4px solid var(--coral);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 1.5rem;
}

.footer-heading {
  font-size: 1rem;
  color: var(--sun);
  margin-bottom: 0.8rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a,
.footer-legal a,
.footer-email a {
  color: #dffaf4;
  text-decoration: none;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-email a:hover {
  color: var(--sun);
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-blurb,
.footer-address,
.footer-phone {
  color: #c9ddd8;
  font-size: 0.95rem;
}

.brand-footer .brand-text {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: #a9c2bc;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(20, 36, 40, 0.96);
  color: #fff;
  border-top: 3px solid var(--sun);
  padding: 1rem 0;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  max-width: 60ch;
}

.cookie-banner a {
  color: var(--sun);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.inline-error {
  color: #ffb4a3;
  text-align: center;
  margin: 0.5rem 0 0;
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin: 0;
}

.case-study {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 7px 7px 0 var(--teal);
  margin-bottom: 1.25rem;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-step {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
}

.lens-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.lens-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 6px 6px 0 var(--sun);
}

.cta-band {
  margin: 3rem 0 1rem;
  padding: 2rem;
  background: linear-gradient(120deg, var(--coral), #ff8a4c 45%, var(--sun));
  border: 3px solid var(--ink);
  border-radius: calc(var(--radius) + 0.3rem);
  box-shadow: 10px 10px 0 var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-band h2 {
  margin: 0;
  max-width: 16ch;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.cta-band p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36ch;
}

@keyframes bob {
  0%,
  100% {
    transform: rotate(-6deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-3px);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@media (max-width: 960px) {
  .grid-3,
  .pricing-grid,
  .proof-strip,
  .footer-grid,
  .lens-panel,
  .contact-split {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    border-bottom: 2px solid var(--ink);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .hero-layout,
  .grid-3,
  .grid-2,
  .pricing-grid,
  .proof-strip,
  .footer-grid,
  .lens-panel,
  .contact-split,
  .blog-row,
  .instructor {
    grid-template-columns: 1fr;
  }

  .blog-row img {
    border-right: none;
    border-bottom: 2px solid var(--ink);
    max-height: 200px;
  }

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

  .hero-visual {
    box-shadow: 6px 6px 0 var(--coral);
  }
}
