:root {
  --ink: #0c1f2e;
  --ink-soft: #142c3d;
  --paper: #f3efe7;
  --white: #fffdf8;
  --signal: #c8e078;
  --signal-deep: #b8ce68;
  --signal-bright: #d9ff76;
  --text: #122432;
  --muted: #5b6870;
  --line: rgba(12, 31, 46, .16);
  --line-light: rgba(255, 255, 255, .18);
  --error: #a52a2a;
  --success: #bce869;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shell: min(100% - 48px, 1200px);
  --radius-sm: 10px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

button,
a,
summary,
select {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--signal-bright);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 6px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease;
}

.site-header.is-scrolled,
.site-header:has(.site-nav.is-open) {
  background: rgba(12, 31, 46, .97);
  border-color: rgba(255, 255, 255, .12);
}

.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark span:first-child,
.brand-mark span:last-child {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.brand-mark span:first-child {
  left: 5px;
}

.brand-mark span:last-child {
  right: 5px;
}

.brand-name {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .76);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav .nav-cta {
  min-height: 44px;
  gap: 10px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 999px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 24px;
  height: 1.5px;
  display: block;
  margin: 6px auto;
  background: currentColor;
  transition: transform .18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3.75px) rotate(-45deg);
}

.hero {
  min-height: 780px;
  display: flex;
  align-items: center;
  padding: 132px 0 72px;
  color: var(--white);
  background: var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .65fr);
  align-items: center;
  gap: clamp(56px, 7vw, 100px);
}

.eyebrow,
.section-label {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .62);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-bright);
}

.hero h1,
.section-heading h2,
.services-intro h2,
.pricing-heading h2,
.about-grid h2,
.faq-intro h2,
.start-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4rem, 5.8vw, 5.8rem);
}

.hero h1 em {
  color: var(--signal);
  font-weight: 400;
}

.hero-lede {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.button-signal {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
}

.button-signal:hover {
  background: var(--signal-deep);
  border-color: var(--signal-deep);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

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

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.hero .text-link,
.text-link-light {
  color: rgba(255, 255, 255, .82);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  margin: 36px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-light);
}

.hero-facts div {
  min-width: 0;
  padding-right: 18px;
}

.hero-facts dt {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-facts dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .54);
  font-size: .7rem;
  line-height: 1.35;
}

.hero-person {
  position: relative;
  max-width: 420px;
  margin: 0 0 0 auto;
  padding: 0 0 24px 24px;
}

.hero-person::before {
  content: "";
  position: absolute;
  inset: 24px 24px 0 0;
  border: 1px solid rgba(217, 255, 118, .42);
  border-radius: var(--radius);
}

.hero-person img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
}

.hero-person figcaption {
  position: absolute;
  right: -18px;
  bottom: 0;
  min-width: 235px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--signal);
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
}

.hero-person figcaption span {
  display: block;
}

.hero-person figcaption span:first-child {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-person figcaption span:last-child {
  margin-top: 4px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.work-section,
.process-section,
.pricing-section,
.faq-section {
  padding-block: clamp(90px, 9vw, 128px);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  align-items: end;
  gap: clamp(44px, 8vw, 110px);
  margin-bottom: 52px;
}

.section-heading h2,
.pricing-heading h2,
.faq-intro h2,
.start-copy h2 {
  font-size: clamp(3rem, 5vw, 5.1rem);
}

.section-heading > p,
.pricing-heading > p:not(.section-label),
.faq-intro > p:not(.section-label),
.start-copy > p:not(.section-label) {
  margin: 0;
  color: var(--muted);
}

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

.project-card {
  grid-column: span 4;
  min-width: 0;
}

.project-card-wide {
  grid-column: span 6;
}

.project-card:nth-last-child(-n + 2) {
  grid-column: span 6;
}

.project-image {
  display: block;
  overflow: hidden;
  background: #e6e4df;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  transition: transform .22s ease;
}

.project-image:hover img {
  transform: scale(1.018);
}

.project-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 20px 2px 0;
}

.project-card-wide .project-copy {
  grid-template-columns: minmax(180px, .65fr) minmax(220px, 1fr) auto;
}

.project-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
}

.project-copy h3 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
}

.project-copy > p {
  max-width: 400px;
  font-size: .82rem;
  line-height: 1.55;
}

.project-copy > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 700;
  white-space: nowrap;
  text-underline-offset: 5px;
}

.work-proof {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.work-proof p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

.work-proof strong {
  color: var(--text);
}

.services-section {
  padding-block: clamp(90px, 9vw, 128px);
  color: var(--white);
  background: var(--ink);
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1fr);
  align-items: start;
  gap: clamp(60px, 9vw, 125px);
}

.section-label-light {
  color: rgba(255, 255, 255, .52);
}

.services-intro {
  position: sticky;
  top: 120px;
}

.services-intro h2 {
  max-width: 570px;
  font-size: clamp(3rem, 4.6vw, 4.8rem);
}

.services-intro > p:not(.section-label) {
  max-width: 540px;
  margin: 26px 0 18px;
  color: rgba(255, 255, 255, .64);
}

.service-list,
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.service-list li:first-child {
  border-top: 1px solid var(--line-light);
}

.service-list > li > span,
.process-list > li > span {
  color: var(--signal-bright);
  font-size: .68rem;
  font-weight: 700;
}

.service-list h3,
.process-list h3 {
  margin: -5px 0 7px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.service-list p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .87rem;
}

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

.section-heading-compact {
  margin-bottom: 46px;
}

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

.process-list li {
  min-height: 250px;
  padding: 26px 28px 30px;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-list > li > span {
  color: var(--muted);
}

.process-list h3 {
  margin-top: 62px;
}

.process-list p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
}

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

.pricing-heading {
  max-width: 850px;
  margin-bottom: 52px;
}

.pricing-heading > p:not(.section-label) {
  max-width: 590px;
  margin-top: 24px;
}

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

.price-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 50px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-card-featured {
  color: var(--white);
  background: var(--ink-soft);
}

.popular-label {
  position: absolute;
  top: 26px;
  right: 26px;
  margin: 0;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.price-name {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
}

.price-audience {
  max-width: 400px;
  min-height: 51px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.price-card-featured .price-audience,
.price-card-featured .deposit {
  color: rgba(255, 255, 255, .58);
}

.price {
  position: relative;
  margin: 35px 0 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.2vw, 6rem);
  line-height: .9;
  letter-spacing: -.045em;
}

.price .price-currency {
  margin-right: 6px;
  font-family: var(--sans);
  font-size: 1rem;
  vertical-align: top;
}

.price .price-prefix {
  position: absolute;
  top: -1.25rem;
  left: 0;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.deposit {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .74rem;
}

.price-card ul {
  margin: 36px 0 34px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card-featured ul {
  border-color: var(--line-light);
}

.price-card li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 20px;
  color: var(--muted);
  font-size: .82rem;
}

.price-card-featured li {
  color: rgba(255, 255, 255, .7);
}

.price-card li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: .62em;
  left: 0;
  background: var(--signal-deep);
  border-radius: 50%;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-terms {
  max-width: 920px;
  margin: 18px 2px 0;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.65;
}

.pricing-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 20px;
  padding: 25px 28px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-sm);
}

.pricing-foot p {
  margin: 0;
  font-size: .84rem;
}

.pricing-foot a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--signal);
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}

.about-strip {
  padding-block: clamp(72px, 8vw, 108px);
  background: var(--signal);
  border-block: 1px solid var(--ink);
}

.about-grid {
  display: grid;
  grid-template-columns: .35fr 1fr .58fr;
  align-items: start;
  gap: clamp(36px, 6vw, 80px);
}

.about-grid .section-label {
  margin-top: 8px;
  color: rgba(12, 31, 46, .65);
}

.about-grid h2 {
  font-size: clamp(2.5rem, 4.1vw, 4.2rem);
}

.about-grid > div p {
  margin: 8px 0 16px;
  color: rgba(12, 31, 46, .72);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: .68fr 1fr;
  align-items: start;
  gap: clamp(70px, 10vw, 140px);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:not(.section-label) {
  max-width: 430px;
  margin-top: 23px;
}

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

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

.faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  transition: transform .18s ease, background .18s ease;
}

.faq-list details[open] summary span {
  background: var(--signal);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -2px 0 26px;
  color: var(--muted);
  font-size: .88rem;
}

.start-section {
  padding-block: clamp(90px, 9vw, 128px);
  color: var(--white);
  background: var(--ink);
}

.start-grid {
  display: grid;
  grid-template-columns: .72fr 1fr;
  align-items: start;
  gap: clamp(70px, 10vw, 140px);
}

.start-copy {
  position: sticky;
  top: 120px;
}

.start-copy > p:not(.section-label) {
  max-width: 490px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .64);
}

.start-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
}

.start-note svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--signal-bright);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.start-note strong,
.start-note span {
  display: block;
}

.start-note strong {
  font-size: .85rem;
}

.start-note span {
  margin-top: 2px;
  color: rgba(255, 255, 255, .55);
  font-size: .74rem;
}

.start-form {
  padding: clamp(24px, 4vw, 42px);
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius);
}

.start-form label {
  display: block;
  margin-bottom: 19px;
}

.start-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: .74rem;
  font-weight: 700;
}

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

.start-form input,
.start-form select,
.start-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(12, 31, 46, .24);
  border-radius: 8px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.start-form textarea {
  min-height: 112px;
  resize: vertical;
}

.start-form .form-confirm {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  margin: 2px 0 20px;
  padding: 14px 15px;
  background: rgba(12, 31, 46, .045);
  border: 1px solid rgba(12, 31, 46, .12);
  border-radius: 8px;
}

.start-form .form-confirm input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.start-form .form-confirm > span {
  margin: 0;
  font-size: .78rem;
  line-height: 1.45;
}

.start-form input:focus,
.start-form select:focus,
.start-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(12, 31, 46, .1);
}

.start-form .is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(165, 42, 42, .1);
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .64;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--error);
  font-size: .78rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #3f6800;
}

.form-small {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .69rem;
  text-align: center;
}

.site-footer {
  padding: 60px 0 26px;
  color: var(--white);
  background: #071723;
}

.footer-top {
  display: grid;
  grid-template-columns: .65fr 1fr auto;
  align-items: start;
  gap: 54px;
  padding-bottom: 48px;
}

.brand-footer {
  color: var(--white);
}

.footer-top > p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: .8rem;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a {
  min-height: 30px;
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
}

.footer-links button {
  width: fit-content;
  min-height: 30px;
  padding: 0;
  color: rgba(255, 255, 255, .7);
  background: none;
  border: 0;
  font-size: .76rem;
  text-align: left;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .38);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .68rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

.cookie-notice {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 210;
  width: min(calc(100% - 48px), 690px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  padding: 22px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 50px rgba(7, 23, 35, .24);
}

.cookie-notice p {
  margin: 0;
}

.cookie-notice .cookie-title {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.15;
}

.cookie-notice p:not(.cookie-title) {
  max-width: 440px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: .74rem;
}

.cookie-decline {
  min-height: 42px;
  padding: 0 4px;
  color: var(--muted);
  background: none;
  border: 0;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-actions a {
  color: var(--muted);
  font-size: .7rem;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.privacy-main {
  padding: 150px 0 100px;
  background: var(--paper);
}

.privacy-content {
  max-width: 780px;
}

.privacy-content > header {
  margin-bottom: 52px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.privacy-content h1 {
  max-width: 680px;
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.035em;
}

.privacy-content h2 {
  margin: 42px 0 10px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.15;
}

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

.privacy-content ul {
  padding-left: 22px;
}

.privacy-content a {
  color: var(--text);
  text-underline-offset: 4px;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 6.4vw, 4.9rem);
  }

  .project-card-wide .project-copy {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .project-card-wide .project-copy > p {
    display: none;
  }

  .about-grid {
    grid-template-columns: .3fr 1fr;
  }

  .about-grid > div {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .nav-shell {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 18px max(34px, env(safe-area-inset-bottom));
    overflow-y: auto;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    min-height: 58px;
    padding: 0 4px;
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .site-nav .nav-cta {
    min-height: 54px;
    justify-content: center;
    margin-top: 24px;
    padding: 0 20px;
    font-family: var(--sans);
    font-size: .86rem;
    font-weight: 700;
    border: 0;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-grid,
  .services-grid,
  .faq-grid,
  .start-grid {
    grid-template-columns: 1fr;
  }

  .hero-person {
    width: min(70vw, 380px);
    margin: 18px 18px 0 auto;
  }

  .project-card,
  .project-card-wide {
    grid-column: span 6;
  }

  .services-intro,
  .faq-intro,
  .start-copy {
    position: static;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 610px;
  }

  .services-grid,
  .faq-grid,
  .start-grid {
    gap: 52px;
  }

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

  .footer-links {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 14px;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: .78rem;
  }

  .hero {
    min-height: 0;
    padding: 108px 0 72px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.3rem);
    line-height: .98;
  }

  .hero-lede {
    margin-top: 23px;
    font-size: .98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
    margin-top: 27px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: fit-content;
  }

  .hero-facts {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-facts div {
    padding-right: 6px;
  }

  .hero-facts dt {
    font-size: 1.45rem;
  }

  .hero-facts dd {
    font-size: .62rem;
  }

  .hero-person {
    width: calc(100% - 20px);
    margin-top: 36px;
    padding: 0 0 18px 18px;
  }

  .hero-person img {
    aspect-ratio: 4 / 4.3;
  }

  .hero-person figcaption {
    right: -10px;
    min-width: 210px;
  }

  .work-section,
  .process-section,
  .pricing-section,
  .faq-section,
  .services-section,
  .start-section {
    padding-block: 76px;
  }

  .section-heading,
  .pricing-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .pricing-heading h2,
  .faq-intro h2,
  .start-copy h2,
  .services-intro h2 {
    font-size: clamp(2.55rem, 12vw, 3.4rem);
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .project-card,
  .project-card-wide,
  .project-card:nth-last-child(-n + 2) {
    grid-column: 1 / -1;
  }

  .project-card-wide .project-copy,
  .project-copy {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .project-copy h3 {
    font-size: 1.55rem;
  }

  .project-copy > a {
    font-size: .69rem;
  }

  .work-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 42px;
  }

  .service-list li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .process-list,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list h3 {
    margin-top: 26px;
  }

  .price-card {
    padding: 26px 22px;
  }

  .popular-label {
    top: 20px;
    right: 20px;
  }

  .price {
    font-size: clamp(3.4rem, 17vw, 4.6rem);
  }

  .pricing-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-grid h2 {
    font-size: clamp(2.4rem, 11vw, 3.15rem);
  }

  .about-grid > div {
    grid-column: auto;
  }

  .faq-grid,
  .start-grid {
    gap: 42px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 1.18rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .start-form {
    padding: 22px 17px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 10px calc(10px + env(safe-area-inset-bottom));
    z-index: 90;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 20px;
    color: var(--ink);
    background: var(--signal);
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }

  .cookie-notice {
    inset: auto 10px calc(76px + env(safe-area-inset-bottom));
    width: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 19px;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }

  .cookie-actions .button {
    flex: 1 1 90px;
  }

  .privacy-main {
    padding: 115px 0 76px;
  }
}

@media (max-width: 380px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .hero h1 {
    font-size: 2.86rem;
  }

  .hero-facts dt {
    font-size: 1.28rem;
  }

  .project-copy {
    grid-template-columns: 1fr;
  }

  .project-copy > a {
    width: fit-content;
  }
}

@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;
  }
}
