:root {
  --cream: #f8f5ef;
  --cream-deep: #eee8df;
  --cream-light: #fcfaf6;
  --ink: #1b1b1a;
  --charcoal: #4a4a48;
  --taupe: #a79984;
  --sand: #cdb79b;
  --rust: #bd5b34;
  --line: rgba(27, 27, 26, 0.14);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;

  --page-pad: clamp(24px, 5vw, 96px);
  --section-space: clamp(80px, 10vw, 150px);
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.reveal {
  opacity: 1;
  transform: none;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  min-height: 110px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.brand-type strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
}

.brand-type em {
  display: block;
  margin-top: 8px;
  color: var(--rust);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-align: center;
}

.brand-mark {
  width: 28px;
  height: 54px;

  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-mark i {
  display: block;
  width: 5px;
  border-radius: 50%;
  transform: rotate(3deg);
}

.brand-mark i:nth-child(1) {
  height: 46px;
  background: var(--ink);
}

.brand-mark i:nth-child(2) {
  height: 38px;
  background: var(--taupe);
}

.brand-mark i:nth-child(3) {
  height: 25px;
  background: var(--rust);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.7vw, 42px);
}

.site-nav > a:not(.button) {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav > a:not(.button):hover {
  color: var(--rust);
}

.menu {
  display: none;
  padding: 8px;
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.eyebrow {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow b {
  margin: 0 10px;
  color: var(--rust);
}

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

h1,
h2,
blockquote {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  margin-bottom: 34px;
  font-size: clamp(62px, 6.4vw, 112px);
  line-height: 0.91;
  letter-spacing: -0.04em;
}

h1 em {
  color: #625b52;
  font-weight: 400;
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.lede {
  max-width: 770px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.45;
}


/* =========================================================
   BUTTONS + LINKS
========================================================= */

.button {
  min-height: 55px;
  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;

  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-1px);
}

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

.button-rust:hover {
  background: transparent;
  color: var(--rust);
}

.button-small {
  min-height: 48px;
  padding: 0 22px;
}

.text-link {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(27, 27, 26, 0.5);

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.text-link:hover {
  border-color: var(--rust);
  color: var(--rust);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: calc(100vh - 110px);

  padding:
    clamp(70px, 9vh, 125px)
    var(--page-pad)
    clamp(80px, 10vh, 140px);

  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: clamp(60px, 8vw, 150px);
}

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

.actions {
  margin-top: 46px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-art {
  width: 100%;
  max-width: 530px;
  margin-left: auto;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.paint-mark {
  width: 92%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.hero-art-tagline {
  margin: 22px 0 0;
  color: #403b35;
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 24px);
  font-style: italic;
  line-height: 1.3;
  text-align: center;
}


/* =========================================================
   WEB DESIGN INTRO
========================================================= */

.intro {
  padding: var(--section-space) var(--page-pad);
  border-top: 1px solid var(--line);

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(60px, 8vw, 150px);
}

.intro > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.intro-copy {
  align-self: end;
  max-width: 630px;
  padding-bottom: 12px;
}

.intro-copy p {
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.85;
}

.intro-copy strong {
  font-weight: 600;
}


/* =========================================================
   CLIENT TYPES
========================================================= */

.audience {
  padding: 0 var(--page-pad) var(--section-space);

  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.audience article {
  min-height: 335px;
  padding: 42px 40px;

  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.audience article:first-child {
  border-left: 1px solid var(--line);
}

.audience span {
  display: block;
  margin-bottom: 70px;
  color: var(--rust);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.audience h3 {
  margin-bottom: 20px;
}

.audience p {
  max-width: 355px;
  margin: 0;
  color: #57534d;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   SELECTED WORK
========================================================= */

.work {
  padding: var(--section-space) var(--page-pad);
  background: var(--cream-deep);
}

.section-head {
  margin-bottom: 90px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head-copy {
  max-width: 580px;
  justify-self: end;
}

.section-head-copy p {
  margin: 0 0 16px;
  color: #57534d;
  font-size: 16px;
  line-height: 1.75;
}

.section-head-copy .quiet {
  margin-bottom: 0;
  color: #766f67;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.projects {
  display: grid;
  gap: clamp(90px, 10vw, 145px);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(55px, 7vw, 120px);
}

.case-study.reverse {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.case-study.reverse .browser-preview {
  grid-column: 2;
  grid-row: 1;
}

.case-study.reverse .case-study-copy {
  grid-column: 1;
  grid-row: 1;
}

.browser-preview {
  display: block;
  min-width: 0;
  overflow: hidden;

  border: 1px solid rgba(27, 27, 26, 0.14);
  background: var(--cream-light);

  box-shadow: 0 28px 65px rgba(40, 34, 28, 0.10);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.browser-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 80px rgba(40, 34, 28, 0.13);
}

.browser-bar {
  height: 45px;
  padding: 0 17px;

  display: flex;
  align-items: center;
  gap: 7px;

  background: #f1ede6;
  border-bottom: 1px solid rgba(27, 27, 26, 0.10);
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aaa39a;
}

.browser-bar small {
  margin-left: 13px;
  color: #777068;
  font-size: 9px;
  letter-spacing: 0.05em;
}

.browser-content {
  min-height: 520px;
  padding: clamp(38px, 4vw, 60px);

  display: flex;
  flex-direction: column;
}

.browser-content > p {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.25em;
}

.art-preview .browser-content {
  background:
    linear-gradient(rgba(15, 15, 15, 0.05), rgba(15, 15, 15, 0.05)),
    #252523;

  color: #fff;
}

.author-preview .browser-content {
  background:
    linear-gradient(
      135deg,
      #fdfbf7 0%,
      #f3ede4 100%
    );

  color: var(--ink);
}

.art-preview-heading,
.author-preview-heading {
  margin-top: auto;

  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 80px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.author-preview-heading {
  max-width: 650px;
}

.mini-rule {
  width: 60px;
  height: 1px;
  margin: 28px 0;
  background: var(--rust);
}

.browser-content small {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.art-preview .browser-content small {
  color: #cbc5bd;
}

.case-study-copy {
  max-width: 560px;
}

.project-type {
  margin: 0 0 18px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.case-study-copy h3 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4vw, 62px);
}

.case-study-copy > p:not(.project-type) {
  margin: 0 0 28px;
  color: #57534d;
  font-size: 16px;
  line-height: 1.8;
}

.project-details {
  margin-bottom: 32px;

  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-details span {
  padding: 7px 11px;
  border: 1px solid rgba(27, 27, 26, 0.16);

  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-note {
  margin-top: 110px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 27, 26, 0.16);

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

.portfolio-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.2;
}

.portfolio-note span {
  max-width: 600px;
  color: #625c55;
  font-size: 14px;
  line-height: 1.75;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
  padding: var(--section-space) var(--page-pad);
  background: var(--cream);
}

.process-heading {
  margin-bottom: 75px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(60px, 8vw, 140px);
}

.process-heading .eyebrow {
  grid-column: 1 / -1;
}

.process-heading h2 {
  margin-bottom: 0;
}

.process-heading > p:last-child {
  max-width: 520px;
  margin: auto 0 12px;

  color: #57534d;
  font-size: 17px;
  line-height: 1.8;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-steps article {
  min-height: 325px;
  padding: 38px 32px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-steps span {
  display: block;
  margin-bottom: 58px;

  color: var(--rust);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.process-steps h3 {
  margin-bottom: 18px;
  font-size: 30px;
}

.process-steps p {
  margin: 0;
  color: #5d5852;
  font-size: 14px;
  line-height: 1.75;
}


/* =========================================================
   WEBSITE INVESTMENT
========================================================= */

.investment {
  padding: var(--section-space) var(--page-pad);
  background: #e7ddd0;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(60px, 8vw, 150px);
}

.investment h2 {
  margin-bottom: 0;
}

.investment-copy {
  max-width: 560px;
}

.investment-copy > p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.8;
}

.investment-copy strong {
  display: block;
  margin: 10px 0 25px;

  font-family: var(--serif);
  font-size: clamp(74px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.investment-copy .button {
  margin-top: 18px;
}


/* =========================================================
   PUBLISHING
========================================================= */

.publishing {
  padding: var(--section-space) var(--page-pad);

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(70px, 9vw, 160px);
}

.publishing-art {
  min-height: 560px;
  position: relative;
}

.publication {
  position: absolute;
  bottom: 20px;

  width: 210px;
  height: 385px;
  padding: 28px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid rgba(27, 27, 26, 0.10);
  box-shadow: 0 28px 58px rgba(40, 34, 28, 0.10);
}

.publication span {
  font-size: 9px;
  letter-spacing: 0.25em;
}

.publication strong {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.publication-dark {
  left: 2%;
  background: var(--ink);
  color: #fff;
  transform: rotate(-6deg);
}

.publication-taupe {
  left: 29%;
  bottom: 55px;
  background: #b8a78f;
  color: #fff;
  transform: rotate(1deg);
}

.publication-light {
  left: 56%;
  background: #f3ebdf;
  color: var(--ink);
  transform: rotate(7deg);
}

.publishing-copy {
  max-width: 680px;
}

.publishing-copy > p:not(.eyebrow) {
  margin: 0 0 23px;
  font-size: 16px;
  line-height: 1.85;
}


/* =========================================================
   APPROACH
========================================================= */

.about {
  padding: var(--section-space) var(--page-pad);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.about .eyebrow {
  color: #c9baa8;
}

.about blockquote {
  max-width: 1150px;
  margin: 0 auto 48px;

  font-size: clamp(46px, 5vw, 82px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.about blockquote em {
  color: #c4b8aa;
}

.about > p:last-child {
  max-width: 760px;
  margin: 0 auto;

  color: #c9c1b7;
  font-size: 16px;
  line-height: 1.85;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
  padding: var(--section-space) var(--page-pad);
  text-align: center;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 42px;

  color: #4f4a45;
  font-size: 17px;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  justify-content: center;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  padding: 48px var(--page-pad);
  border-top: 1px solid var(--line);

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 35px;
}

.footer-brand strong {
  display: block;

  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.footer-brand em {
  display: block;
  margin-top: 4px;

  color: var(--rust);
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.35em;
}

.footer-services {
  display: flex;
  gap: 25px;
}

.footer-services a,
.footer-meta p {
  margin: 0;

  color: #69635c;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-services a {
  transition: color 0.2s ease;
}

.footer-services a:hover {
  color: var(--rust);
}

.footer-meta {
  text-align: right;
}

.footer-meta p + p {
  margin-top: 7px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .site-header {
    min-height: 95px;
  }

  .brand-type strong {
    font-size: 24px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.button) {
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.7fr;
    gap: 50px;
  }

  .hero-art {
    max-width: 420px;
  }

  .case-study,
  .case-study.reverse {
    gap: 55px;
  }

  .browser-content {
    min-height: 450px;
  }

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

  .publishing-art {
    min-height: 480px;
  }

  .publication {
    width: 170px;
    height: 320px;
    padding: 22px;
  }

  .publication strong {
    font-size: 31px;
  }

}


/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media (max-width: 860px) {

  .site-header {
    min-height: 82px;
    position: relative;
  }

  .brand-type strong {
    font-size: 21px;
  }

  .brand-type em {
    font-size: 9px;
  }

  .brand-mark {
    height: 42px;
  }

  .menu {
    display: block;
  }

  .site-nav {
    display: none;

    position: absolute;
    z-index: 50;

    top: 82px;
    left: 0;
    right: 0;

    padding: 28px var(--page-pad) 34px;

    background: var(--cream);
    border-bottom: 1px solid var(--line);

    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

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

  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-art {
    max-width: 440px;
    margin: 0 auto;
  }

  .paint-mark {
    width: 88%;
  }

  .intro,
  .section-head,
  .process-heading,
  .investment,
  .publishing {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 25px;
  }

  .intro > .eyebrow {
    margin-bottom: 0;
  }

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

  .audience article {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .audience span {
    margin-bottom: 38px;
  }

  .section-head {
    gap: 25px;
    margin-bottom: 65px;
  }

  .section-head-copy {
    justify-self: start;
  }

  .case-study,
  .case-study.reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .case-study.reverse .browser-preview,
  .case-study.reverse .case-study-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .case-study.reverse .browser-preview {
    order: 1;
  }

  .case-study.reverse .case-study-copy {
    order: 2;
  }

  .browser-content {
    min-height: 420px;
  }

  .portfolio-note {
    flex-direction: column;
    gap: 18px;
  }

  .process-heading {
    gap: 25px;
  }

  .process-heading > p:last-child {
    margin: 0;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .investment {
    gap: 45px;
  }

  .publishing {
    gap: 45px;
  }

  .publishing-art {
    min-height: 440px;
    max-width: 620px;
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-services {
    flex-wrap: wrap;
  }

  .footer-meta {
    text-align: left;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

  :root {
    --page-pad: 22px;
    --section-space: 76px;
  }

  .site-header {
    min-height: 76px;
  }

  .site-nav {
    top: 76px;
  }

  .brand {
    gap: 11px;
  }

  .brand-type strong {
    font-size: 17px;
    letter-spacing: 0.12em;
  }

  .brand-type em {
    margin-top: 5px;
    font-size: 7px;
    letter-spacing: 0.32em;
  }

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

  .brand-mark i {
    width: 4px;
  }

  .brand-mark i:nth-child(1) {
    height: 31px;
  }

  .brand-mark i:nth-child(2) {
    height: 25px;
  }

  .brand-mark i:nth-child(3) {
    height: 17px;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 75px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(52px, 15vw, 72px);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .lede {
    font-size: 21px;
  }

  .actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .button {
    width: 100%;
  }

  .button-small {
    width: auto;
  }

  .hero-art {
    max-width: 350px;
  }

  .paint-mark {
    width: 90%;
  }

  .hero-art-tagline {
    margin-top: 18px;
    font-size: 18px;
  }

  .intro-copy p {
    font-size: 16px;
  }

  .audience article {
    padding: 32px 28px;
  }

  .projects {
    gap: 80px;
  }

  .browser-bar {
    height: 40px;
    padding: 0 13px;
  }

  .browser-bar small {
    font-size: 8px;
  }

  /* Mobile portfolio previews:
     keep the full screenshot width, but crop the long blank lower portion. */
  .browser-preview {
    overflow: hidden;
  }

  .browser-content {
    min-height: 0;
    padding: 0;
  }

  .browser-content img {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
  }

  /* David Harding screenshot */
  .art-preview .browser-content {
    height: clamp(245px, 76vw, 330px);
    min-height: 0 !important;
    overflow: hidden;
  }

  /* Margie Harding screenshot */
  .author-preview .browser-content {
    height: clamp(235px, 73vw, 315px);
    min-height: 0 !important;
    overflow: hidden;
  }

  .art-preview-heading,
  .author-preview-heading {
    font-size: 48px;
  }

  .case-study-copy h3 {
    font-size: 42px;
  }

  .portfolio-note {
    margin-top: 75px;
  }

  .portfolio-note p {
    font-size: 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps article {
    min-height: auto;
    padding: 32px 28px;
  }

  .process-steps span {
    margin-bottom: 34px;
  }

  /* Mobile pricing refinement */
  .investment {
    gap: 30px;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .investment h2 {
    font-size: clamp(42px, 11.5vw, 54px);
    line-height: 0.98;
  }

  .investment-copy > p {
    margin-bottom: 18px;
  }

  .investment-copy strong {
    margin: 6px 0 22px;
    font-size: 68px;
  }

  .investment-copy .button {
    margin-top: 12px;
  }

  .publishing-art {
    min-height: 345px;
  }

  .publication {
    width: 128px;
    height: 245px;
    padding: 17px;
  }

  .publication span {
    font-size: 7px;
  }

  .publication strong {
    font-size: 25px;
  }

  .publication-dark {
    left: 0;
  }

  .publication-taupe {
    left: 27%;
    bottom: 43px;
  }

  .publication-light {
    left: 53%;
  }

  .about blockquote {
    font-size: 43px;
  }

  .footer-services {
    flex-direction: column;
    gap: 10px;
  }

}
