/* Design tokens */

:root {
  --cream: #fff9f6;
  --paper: #fffdfb;
  --blush: #f8e7ec;
  --raspberry: #c92f68;
  --raspberry-dark: #a81f53;
  --berry: #641c3b;
  --berry-deep: #441026;
  --ink: #24202a;
  --muted: #665d67;
  --rose: #dfa5b8;
  --line: #e8d7dd;
  --white: #fff;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 22px 60px rgba(68, 16, 38, .11);
  --content: 1180px;
}

/* Base */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

/* Shared layout and typography */

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--berry);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

.container {
  width: min(calc(100% - 2.25rem), var(--content));
  margin-inline: auto;
}

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

.section--paper {
  background: var(--paper);
}

.section--blush {
  background: var(--blush);
}

.section--berry {
  color: var(--white);
  background: var(--berry);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.1rem;
  color: var(--raspberry-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.9rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.section--berry .eyebrow {
  color: #ffd5e2;
}

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

h1,
h2 {
  font-family: var(--serif);
  color: var(--berry-deep);
  font-weight: 600;
  letter-spacing: -.035em;
}

h1 {
  max-width: 12.5ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 8.5vw, 5.6rem);
  line-height: .99;
}

h2 {
  max-width: 18ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.15rem, 5.5vw, 4rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: .55rem;
  color: var(--berry);
  font-size: 1.15rem;
  line-height: 1.3;
}

.section--berry h2,
.section--berry h3 {
  color: var(--white);
}

.lead {
  max-width: 64ch;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.62;
}

.section--berry .lead {
  color: #f7dfe7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .84rem 1.2rem;
  border: 2px solid transparent;
  border-radius: .45rem;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--raspberry);
  box-shadow: 0 10px 24px rgba(201, 47, 104, .2);
}

.button--primary:hover {
  background: var(--raspberry-dark);
}

.button--secondary {
  color: var(--berry);
  border-color: var(--berry);
  background: transparent;
}

.button--secondary:hover {
  color: var(--white);
  background: var(--berry);
}

.button--light {
  color: var(--berry);
  background: var(--white);
}

.button--light:hover {
  color: var(--berry-deep);
  background: #fff0f5;
}

/* Shared links */

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--raspberry-dark);
  font-weight: 800;
  text-underline-offset: .22rem;
}

/* Keep the Nutikorv link close to its introduction and separate from the next paragraph. */
.case-copy .text-link {
  display: flex;
  width: fit-content;
  margin-top: -1.1rem;
}

.case-copy .text-link + p {
  margin-top: 2rem;
}

/* Header and navigation */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(100, 28, 59, .1);
  background: rgba(255, 249, 246, .96);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: grid;
  min-height: 4.75rem;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: .65rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: .7rem;
  color: var(--berry);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--berry);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  display: none;
  margin-top: .2rem;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.nav-links {
  position: fixed;
  inset: 4.75rem 0 auto;
  display: none;
  max-height: calc(100vh - 4.75rem);
  padding: 1.5rem 1.125rem 2rem;
  border-bottom: 1px solid var(--line);
  overflow-y: auto;
  background: var(--cream);
  box-shadow: 0 20px 30px rgba(68, 16, 38, .08);
}

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

.nav-links a {
  padding: .8rem .2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--raspberry-dark);
}

.nav-cta {
  min-height: 2.75rem;
  padding: .65rem .8rem;
  font-size: .82rem;
}

.menu-button {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: .4rem;
  color: var(--berry);
  background: var(--paper);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform .2s ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -.38rem;
}

.menu-icon::after {
  top: .38rem;
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  padding: clamp(3.75rem, 8vw, 7.5rem) 0 5rem;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -8rem;
  width: 23rem;
  height: 23rem;
  border: 1px solid var(--rose);
  border-radius: 50%;
  opacity: .42;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3.25rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
  margin: 1.65rem 0 0;
  padding: 0;
  color: var(--berry);
  font-size: .91rem;
  font-weight: 800;
  list-style: none;
}

.trust-line li {
  position: relative;
}

.trust-line li:not(:last-child)::after {
  position: absolute;
  right: -.72rem;
  color: var(--rose);
  content: "·";
}

.hero-visual {
  display: grid;
  width: 100%;
  max-width: 34rem;
  margin-left: auto;
  align-self: center;
}

.hero-portrait {
  position: static;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
}

.hero-note {
  position: static;
  width: 100%;
  padding: 1.25rem 1.35rem;
  border-top: 4px solid var(--raspberry);
  color: var(--white);
  background: var(--berry);
  box-shadow: 0 15px 35px rgba(68, 16, 38, .18);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.35;
}

/* Workflow and introduction */

.workflow {
  display: grid;
  max-width: 980px;
  margin: 2.5rem auto 0;
  gap: 0;
}

.workflow-step {
  position: relative;
  display: grid;
  min-height: 7rem;
  grid-template-columns: 3.6rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: .9rem 0;
  color: var(--berry);
}

.workflow-step:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: calc(50% + 1.7rem);
  bottom: calc(-50% + 1.7rem);
  left: 1.75rem;
  width: 2px;
  background: var(--rose);
  content: "";
}

.workflow-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border: 2px solid var(--raspberry);
  border-radius: 50%;
  background: var(--cream);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

.workflow-step strong {
  display: block;
  font-size: 1.05rem;
}

.workflow-step span {
  color: var(--muted);
  font-size: .93rem;
}

.statement {
  display: grid;
  gap: 2.5rem;
}

.statement h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.statement-copy {
  align-self: end;
  max-width: 620px;
}

.manifesto-line {
  display: inline-block;
  margin-top: .75rem;
  padding: .45rem .7rem;
  color: var(--white);
  background: var(--berry);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  line-height: 1.3;
}

.situations {
  display: grid;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.situation {
  display: grid;
  gap: .45rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.situation-number {
  color: var(--raspberry-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.situation p {
  max-width: 42ch;
  margin-bottom: 0;
  color: var(--muted);
}

.section-close {
  max-width: 870px;
  margin: 2.5rem 0 0;
  color: var(--berry);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.4;
}

/* Examples */

.examples-intro {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.examples-intro .lead {
  margin-bottom: 0;
}

.example-list {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.example-head {
  display: none;
}

.example {
  display: grid;
  gap: 1.35rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.example-title {
  align-content: start;
}

.example-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.example-detail {
  margin: 0;
}

.example-detail dt {
  margin-bottom: .25rem;
  color: var(--raspberry-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.example-detail dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.example-detail--control {
  padding-left: 1rem;
  border-left: 3px solid var(--raspberry);
}

.small-start {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.small-start-note {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  border-top: 1px solid var(--rose);
  border-bottom: 1px solid var(--rose);
  color: var(--berry);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.45;
}

.small-start-note::before {
  position: absolute;
  top: -.75rem;
  left: 1rem;
  padding: 0 .5rem;
  color: var(--raspberry);
  background: var(--paper);
  font-size: 2rem;
  line-height: 1;
  content: "“";
}

/* Process and about */

.steps {
  display: grid;
  margin: 3rem 0;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.6rem 0 1.6rem 4.5rem;
  border-top: 1px solid var(--line);
  counter-increment: step;
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step::before {
  position: absolute;
  top: 1.45rem;
  left: 0;
  color: var(--raspberry);
  font-family: var(--serif);
  font-size: 2.7rem;
  font-style: italic;
  line-height: 1;
  content: "0" counter(step);
}

.step p {
  max-width: 56ch;
  margin-bottom: 0;
  color: var(--muted);
}

.honesty {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border-left: 5px solid var(--raspberry);
  color: var(--white);
  background: var(--berry);
}

.honesty p {
  margin-bottom: 0;
}

.honesty p:first-child {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blush);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-list {
  margin-top: 2.5rem;
}

.proof-point {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .85rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.proof-point:last-child {
  border-bottom: 1px solid var(--line);
}

.proof-check {
  color: var(--raspberry);
  font-size: 1.3rem;
  font-weight: 900;
}

.proof-point p {
  margin-bottom: 0;
  color: var(--muted);
}

.credibility {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.5rem;
  padding: .55rem .8rem;
  color: var(--berry);
  border: 1px solid var(--rose);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.credibility::before {
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  background: var(--raspberry);
  content: "";
}

/* Case study */

.case-study {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.device {
  position: relative;
  min-height: 0;
  padding: .65rem;
  border: 1px solid #c8b5bc;
  border-radius: 1.5rem;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.device::before {
  position: absolute;
  z-index: 2;
  top: .3rem;
  left: 50%;
  width: 3.5rem;
  height: .22rem;
  border-radius: 99px;
  background: #6d666d;
  content: "";
  transform: translateX(-50%);
}

.device-screen {
  display: grid;
  height: auto;
  min-height: 0;
  place-items: center;
  padding: .75rem;
  border-radius: 1rem;
  color: var(--berry);
  background:
    linear-gradient(135deg, rgba(201,47,104,.08), transparent 45%),
    var(--paper);
}

.device-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .5rem;
  object-fit: contain;
  object-position: top center;
  background: var(--paper);
}

/* Outcomes and pricing */

.checklist-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

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

.checklist li {
  position: relative;
  padding: .85rem 0 .85rem 2.35rem;
  border-bottom: 1px solid var(--line);
}

.checklist li::before {
  position: absolute;
  top: .82rem;
  left: 0;
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border: 1px solid var(--raspberry);
  border-radius: 50%;
  color: var(--raspberry-dark);
  font-size: .78rem;
  font-weight: 900;
  content: "✓";
}

.first-win {
  padding: 2rem;
  color: var(--white);
  background: var(--berry);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  line-height: 1.35;
}

.pricing {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.price-card--primary {
  order: -1;
  border: 2px solid var(--raspberry);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-label {
  align-self: flex-start;
  margin: -.45rem 0 1.3rem;
  padding: .35rem .6rem;
  color: var(--white);
  background: var(--raspberry);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card h3 {
  min-height: 2.8em;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.price {
  margin-bottom: 1rem;
  color: var(--berry);
  font-size: 1.1rem;
  font-weight: 900;
}

.price-card p,
.price-card li {
  color: var(--muted);
  font-size: .95rem;
}

.price-card ul {
  margin: .25rem 0 1.25rem;
  padding-left: 1.2rem;
}

.price-card .button,
.price-card .text-link {
  margin-top: auto;
}

.scope-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  text-align: center;
}

/* FAQ and enquiry */

.faq-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 20px 64px 20px 0;
  color: var(--berry);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::marker {
  content: "";
}

/* Closed FAQ item: circle with a centered plus */
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 1px solid #e9a4bd;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  transform: translateY(-50%);
  background:
    linear-gradient(#b31858, #b31858) center / 12px 2px no-repeat,
    linear-gradient(#b31858, #b31858) center / 2px 12px no-repeat;
}

/* Open FAQ item: circle with a centered minus */
.faq-list details[open] summary::after {
  content: "";
  background:
    linear-gradient(#b31858, #b31858) center / 12px 2px no-repeat;
}

.faq-list details p {
  max-width: 70ch;
  margin-bottom: 0;
  padding: 0 3rem 1.4rem 0;
  color: var(--muted);
}

.enquiry-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  position: relative;
  padding: clamp(1.25rem, 4vw, 2rem);
  overflow: hidden;
  color: var(--ink);
  border-top: 5px solid var(--raspberry);
  border-radius: .45rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-kicker {
  margin: 0 0 .3rem;
  color: var(--raspberry-dark);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  color: var(--berry-deep);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.contact-intro {
  margin: 1rem 0 1.35rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-primary {
  width: 100%;
}

.contact-primary span {
  display: inline-block;
  margin-left: .35rem;
  transition: transform .18s ease;
}

.contact-primary:hover span {
  transform: translateX(.25rem);
}

.contact-expectation {
  display: flex;
  gap: .55rem;
  align-items: center;
  margin: .8rem 0 1.35rem;
  color: var(--berry);
  font-size: .86rem;
  font-weight: 800;
}

.contact-expectation::before {
  width: .55rem;
  height: .55rem;
  flex: none;
  border-radius: 50%;
  background: var(--raspberry);
  content: "";
}

.contact-address {
  display: grid;
  gap: .7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--blush);
}

.contact-address-label {
  color: var(--raspberry-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-address a {
  color: var(--raspberry-dark);
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-weight: 800;
  text-underline-offset: .18rem;
}

.contact-privacy {
  margin: .8rem 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}

.contact-privacy a {
  color: var(--raspberry-dark);
  font-weight: 800;
  text-underline-offset: .18rem;
}

.contact-address .copy-email {
  min-height: 2.8rem;
  padding: .55rem .8rem;
  color: var(--berry);
  border: 1px solid var(--rose);
  border-radius: .3rem;
  cursor: pointer;
  background: var(--paper);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.2;
}

.contact-address .copy-email:hover {
  color: var(--white);
  border-color: var(--berry);
  background: var(--berry);
}

.contact-address .copy-email:focus-visible {
  outline: 3px solid var(--berry-deep);
  outline-offset: 2px;
}

.contact-status {
  min-height: 1.5rem;
  margin: .75rem 0 0;
  color: var(--berry);
  font-size: .88rem;
  font-weight: 800;
}

.contact-status:empty {
  display: none;
}

.contact-status[data-state="error"] {
  color: var(--raspberry-dark);
}

.contact-status[data-state="success"] {
  color: #276044;
}

/* Footer */

.site-footer {
  padding: 2.7rem 0;
  color: #ead1da;
  background: var(--berry-deep);
  font-size: .9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.3rem;
}

.footer-links a {
  color: #f8e7ec;
  text-underline-offset: .22rem;
}

.footer-meta {
  margin: 0;
  color: #cfabb8;
}

/* Legal pages */

.legal-main {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.legal {
  max-width: 820px;
}

.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.legal-updated,
.legal-summary {
  color: var(--muted);
}

.legal-summary {
  max-width: 68ch;
  font-size: 1.08rem;
}

.legal h2 {
  max-width: none;
  margin-top: 3rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.legal h3 {
  margin-top: 2rem;
}

.legal p,
.legal li,
.legal dd {
  max-width: 76ch;
}

.legal ul,
.legal ol {
  padding-left: 1.4rem;
}

.legal li + li {
  margin-top: .45rem;
}

.legal-data {
  margin: 1.5rem 0;
}

.legal-data div {
  display: grid;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-data dt {
  color: var(--berry);
  font-weight: 800;
}

.legal-data dd {
  margin: .2rem 0 0;
}

.legal-note,
.legal-template {
  margin: 1.75rem 0;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--raspberry);
  background: var(--blush);
}

.legal-template {
  white-space: pre-line;
}

.legal a {
  color: var(--raspberry-dark);
  font-weight: 700;
  text-underline-offset: .18rem;
}

/* Focus and motion */

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--berry-deep);
}

html.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

html.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */

@media (min-width: 720px) {
  .device {
    min-height: 28rem;
    padding: 1rem;
    border-radius: 2.1rem;
  }

  .device::before {
    top: .45rem;
    width: 5rem;
    height: .32rem;
  }

  .device-screen {
    height: 100%;
    min-height: 26rem;
    padding: 2rem;
    border-radius: 1.35rem;
  }

  .device-screen img {
    width: 100%;
    height: 100%;
    border-radius: .75rem;
    object-fit: contain;
    object-position: top center;
  }

  .container {
    width: min(calc(100% - 4rem), var(--content));
  }

  .brand small {
    display: block;
  }

  .hero-grid,
  .statement,
  .examples-intro,
  .small-start,
  .about-grid,
  .case-study,
  .checklist-grid,
  .enquiry-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .situation:nth-child(odd) {
    padding-right: 2rem;
    border-right: 1px solid var(--line);
  }

  .situation:nth-child(even) {
    padding-left: 2rem;
  }

  .honesty {
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
  }

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

  .step {
    padding: 5rem 2rem 1.5rem 0;
    border-top: 1px solid var(--line);
  }

  .step:not(:last-child) {
    border-right: 1px solid var(--line);
  }

  .step:not(:first-child) {
    padding-left: 2rem;
  }

  .step::before {
    top: 1.35rem;
    left: 0;
  }

  .step:not(:first-child)::before {
    left: 2rem;
  }

  .step:last-child {
    border-bottom: 0;
  }

  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card--primary {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }

  .legal-data div {
    grid-template-columns: minmax(12rem, .35fr) 1fr;
    gap: 1.5rem;
  }

  .legal-data dd {
    margin: 0;
  }
}

/* Desktop */

@media (min-width: 1040px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    position: static;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding: 0;
    border: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    padding: .45rem 0;
    border: 0;
    font-size: .86rem;
  }

  .menu-button {
    display: none;
  }

  .nav-cta {
    min-height: 3rem;
    padding: .7rem 1rem;
    font-size: .87rem;
  }

  .hero-grid {
    grid-template-columns: 1.08fr .92fr;
    gap: 5rem;
  }

  .example {
    grid-template-columns: minmax(12rem, .75fr) repeat(3, 1fr);
  }

  .example-head {
    display: grid;
    grid-template-columns: minmax(12rem, .75fr) repeat(3, 1fr);
    gap: 1.35rem;
    padding: 1.5rem 0 .9rem;
    border-bottom: 1px solid var(--line);
  }

  .example-head-cell {
    color: var(--raspberry-dark);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .example .example-detail dt {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

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

  .workflow-step {
    grid-template-columns: 3.6rem 1fr;
    padding: .9rem 1rem;
  }

  .workflow-step:not(:last-child)::after {
    top: 50%;
    right: -1.75rem;
    bottom: auto;
    left: auto;
    width: 3.5rem;
    height: 2px;
  }

  .about-grid {
    grid-template-columns: .82fr 1.18fr;
    gap: 5rem;
  }

  .case-study {
    grid-template-columns: .82fr 1.18fr;
    gap: 5rem;
  }

  .case-copy {
    order: 2;
  }

  .device-wrap {
    order: 1;
  }

  .pricing {
    grid-template-columns: .92fr 1.16fr .92fr;
    align-items: stretch;
  }

  .price-card--primary {
    grid-column: auto;
    order: 2;
    transform: translateY(-.8rem);
  }

  .price-card:first-child {
    order: 1;
  }

  .price-card:last-child {
    order: 3;
  }
}

/* Small phones */

@media (max-width: 420px) {
  .nav-cta {
    max-width: 8.2rem;
    padding-inline: .6rem;
  }

  .brand-text {
    max-width: 7rem;
  }

  .button-row .button {
    width: 100%;
  }

}

/* Reduced motion */

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  html.reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
