:root {
  --ink: #1d2421;
  --ink-soft: #4f5752;
  --paper: #f1efe8;
  --paper-light: #f8f7f2;
  --line: #cfcdc3;
  --clay: #a34e31;
  --sand: #d4c3a7;
  --moss: #627063;
  --font-body: "DM Sans", sans-serif;
  --font-display: "Newsreader", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  align-items: center;
  display: flex;
  height: 94px;
  justify-content: space-between;
  left: 0;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 5vw;
  position: absolute;
  right: 0;
  top: 0;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
  z-index: 20;
}

.site-header.is-scrolled {
  backdrop-filter: blur(16px);
  background: rgba(248, 247, 242, .9);
  box-shadow: 0 1px 0 rgba(29, 36, 33, .1);
  height: 76px;
  max-width: none;
  position: fixed;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  gap: 13px;
  position: relative;
  z-index: 22;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--ink);
  display: flex;
  font-family: var(--font-display);
  font-size: 18px;
  height: 42px;
  justify-content: center;
  letter-spacing: -1px;
  line-height: 1;
  position: relative;
  width: 42px;
}

.brand-mark::after {
  background: var(--clay);
  bottom: -3px;
  content: "";
  height: 6px;
  position: absolute;
  right: -3px;
  width: 6px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 48px);
}

.main-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  position: relative;
  text-transform: uppercase;
}

.main-nav a:not(.nav-contact)::after {
  background: var(--clay);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
  width: 100%;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  border: 1px solid var(--ink);
  padding: 11px 16px;
  transition: background .2s ease, color .2s ease;
}

.nav-contact:hover {
  background: var(--ink);
  color: var(--paper-light);
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 10px 6px;
  position: relative;
  width: 42px;
  z-index: 22;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 1px;
  margin: 7px 0;
  transition: transform .25s ease;
  width: 30px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .72fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: 800px;
  padding: 150px 5vw 72px;
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, rgba(29, 36, 33, .065) 1px, transparent 1px);
  background-size: 9.5vw 100%;
  content: "";
  inset: 0 5vw;
  opacity: .45;
  pointer-events: none;
  position: absolute;
}

.hero-content {
  align-self: center;
  max-width: 810px;
  padding: 32px 5vw 44px 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: .15em;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--clay);
  display: inline-block;
  height: 7px;
  width: 7px;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .96;
  margin: 0;
}

h1 {
  font-size: clamp(58px, 6.7vw, 104px);
}

h1 em,
h2 em {
  color: var(--clay);
  font-weight: 400;
}

.hero-intro {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.25vw, 19px);
  margin: 34px 0 40px;
  max-width: 585px;
}

.hero-actions,
.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 34px;
  justify-content: space-between;
  letter-spacing: .08em;
  min-width: 224px;
  padding: 16px 20px;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

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

.button-primary {
  background: var(--ink);
  color: var(--paper-light);
}

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

.text-link {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  padding: 10px 0 8px;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 8px;
}

.hero-study {
  align-self: stretch;
  background: var(--ink);
  color: var(--paper-light);
  display: flex;
  flex-direction: column;
  min-height: 565px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.study-meta,
.study-caption {
  align-items: center;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: .15em;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.study-meta {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 18px;
}

.soil-profile {
  flex: 1;
  margin: 24px 0 18px;
  min-height: 390px;
  overflow: hidden;
  position: relative;
}

.soil-layer {
  border-top: 1px solid rgba(255, 255, 255, .2);
  left: 0;
  position: absolute;
  right: 0;
}

.soil-layer span {
  color: rgba(255, 255, 255, .62);
  font-size: 8px;
  letter-spacing: .1em;
  position: absolute;
  right: 0;
  top: 5px;
}

.layer-one {
  background-color: #737165;
  background-image: radial-gradient(rgba(255,255,255,.15) .7px, transparent .7px);
  background-size: 5px 5px;
  height: 21%;
  top: 0;
}

.layer-two {
  background: repeating-linear-gradient(-8deg, #a87350 0, #a87350 6px, #966144 7px, #966144 8px);
  height: 26%;
  top: 21%;
}

.layer-three {
  background-color: #5f5d50;
  background-image: radial-gradient(#807d6d 1px, transparent 1px);
  background-size: 8px 8px;
  height: 31%;
  top: 47%;
}

.layer-four {
  background: repeating-linear-gradient(45deg, #3c4640 0, #3c4640 3px, #46514a 3px, #46514a 6px);
  bottom: 0;
  height: 22%;
}

.core-line {
  background: rgba(248, 247, 242, .92);
  height: 100%;
  left: 42%;
  position: absolute;
  top: 0;
  width: 2px;
  z-index: 2;
}

.core-line::before,
.core-line::after {
  border: 1px solid rgba(248, 247, 242, .75);
  content: "";
  height: 14px;
  left: -7px;
  position: absolute;
  width: 14px;
}

.core-line::before { top: 0; }
.core-line::after { bottom: 0; }

.sample-point {
  align-items: center;
  display: flex;
  gap: 7px;
  left: calc(42% - 4px);
  position: absolute;
  z-index: 3;
}

.sample-point i {
  background: var(--paper-light);
  border: 3px solid var(--clay);
  border-radius: 50%;
  display: block;
  height: 10px;
  width: 10px;
}

.sample-point b {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .1em;
}

.point-one { top: 16%; }
.point-two { top: 50%; }
.point-three { top: 80%; }

.study-caption {
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, .2);
  gap: 30px;
  padding-top: 16px;
}

.study-caption p {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}

.study-caption span {
  color: rgba(255, 255, 255, .55);
  line-height: 1.4;
  max-width: 180px;
  text-align: right;
}

.proof-bar {
  align-items: center;
  background: var(--clay);
  color: var(--paper-light);
  display: flex;
  gap: clamp(20px, 4vw, 68px);
  justify-content: center;
  padding: 18px 5vw;
}

.proof-bar p {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  margin: 0;
}

.proof-bar i {
  background: rgba(255, 255, 255, .45);
  height: 1px;
  width: clamp(18px, 3vw, 52px);
}

.section {
  margin: 0 auto;
  max-width: 1440px;
  padding: 128px 5vw;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 30px;
  grid-template-columns: 1.3fr .7fr;
  margin-bottom: 80px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.section h2 {
  font-size: clamp(46px, 5vw, 74px);
}

.section-heading > p:last-child {
  color: var(--ink-soft);
  margin: 0 0 5px auto;
  max-width: 440px;
}

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

.service-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: 70px 1fr 100px;
  min-height: 180px;
  padding: 34px 18px 34px 0;
  position: relative;
  transition: padding .3s ease;
}

.service-item::before {
  background: rgba(212, 195, 167, .2);
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s ease;
}

.service-item:hover {
  padding-left: 18px;
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item > * {
  position: relative;
  z-index: 1;
}

.service-number {
  align-self: start;
  color: var(--clay);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  padding-top: 8px;
}

.service-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(27px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin: 0 0 10px;
}

.service-copy p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 680px;
}

.service-icon {
  height: 64px;
  justify-self: end;
  opacity: .65;
  position: relative;
  width: 70px;
}

.strata-icon,
.strata-icon::before,
.strata-icon::after {
  border-top: 1px solid var(--ink);
  display: block;
  height: 16px;
  position: absolute;
  right: 0;
  transform: skewY(-8deg);
  width: 68px;
}

.strata-icon { top: 13px; }
.strata-icon::before { content: ""; top: 13px; }
.strata-icon::after { content: ""; top: 26px; }

.cube-icon {
  border: 1px solid var(--ink);
  height: 44px;
  margin-right: 8px;
  transform: rotate(30deg) skew(-5deg);
  width: 44px;
}

.cube-icon::before {
  border-left: 1px solid var(--ink);
  content: "";
  height: 44px;
  left: 50%;
  position: absolute;
  transform: rotate(60deg);
}

.plan-icon {
  border: 1px solid var(--ink);
}

.plan-icon::before,
.plan-icon::after,
.plan-icon span {
  background: var(--ink);
  content: "";
  height: 1px;
  position: absolute;
}

.plan-icon::before { left: 0; right: 18px; top: 23px; }
.plan-icon::after { left: 25px; right: 0; top: 42px; }
.plan-icon span { bottom: 0; left: 25px; top: 23px; width: 1px; height: auto; }

.lab-icon {
  border-bottom: 1px solid var(--ink);
}

.lab-icon::before {
  border: 1px solid var(--ink);
  border-radius: 50% 50% 45% 45%;
  bottom: 0;
  content: "";
  height: 36px;
  left: 17px;
  position: absolute;
  width: 36px;
}

.lab-icon::after {
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  content: "";
  height: 26px;
  left: 29px;
  position: absolute;
  top: 0;
  width: 12px;
}

.method {
  background: var(--ink);
  color: var(--paper-light);
  display: grid;
  grid-template-columns: minmax(340px, .82fr) 1.18fr;
  max-width: none;
  padding: 0;
}

.method-visual {
  background: #d1c0a3;
  color: var(--ink);
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.technical-grid {
  background-image: linear-gradient(rgba(29,36,33,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(29,36,33,.15) 1px, transparent 1px);
  background-size: 42px 42px;
  inset: 0;
  opacity: .8;
  position: absolute;
}

.diagram-circle {
  border: 1px solid rgba(29, 36, 33, .6);
  border-radius: 50%;
  position: absolute;
}

.circle-large {
  height: min(42vw, 610px);
  left: -18%;
  top: 12%;
  width: min(42vw, 610px);
}

.circle-small {
  height: 170px;
  right: 12%;
  top: 22%;
  width: 170px;
}

.diagram-line {
  background: var(--clay);
  height: 1px;
  position: absolute;
  width: 70%;
}

.line-a { right: -12%; top: 35%; transform: rotate(-36deg); }
.line-b { bottom: 22%; left: 2%; transform: rotate(28deg); }

.coordinate {
  font-size: 9px;
  letter-spacing: .12em;
  position: absolute;
}

.coord-a { right: 8%; top: 8%; writing-mode: vertical-rl; }
.coord-b { bottom: 7%; left: 7%; }

.method-visual strong {
  bottom: 9%;
  font-family: var(--font-display);
  font-size: clamp(64px, 6vw, 95px);
  font-weight: 400;
  left: 9%;
  letter-spacing: -.05em;
  line-height: .78;
  position: absolute;
}

.method-content {
  align-self: center;
  max-width: 760px;
  padding: 100px 8vw;
}

.eyebrow.light {
  color: rgba(248, 247, 242, .56);
}

.method-content h2 em,
.contact h2 em {
  color: var(--sand);
}

.method-intro {
  color: rgba(248, 247, 242, .65);
  margin: 34px 0 50px;
  max-width: 590px;
}

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

.method-steps li {
  border-top: 1px solid rgba(248, 247, 242, .18);
  display: grid;
  gap: 22px;
  grid-template-columns: 34px 1fr;
  padding: 17px 0;
}

.method-steps li > span {
  color: var(--sand);
  font-size: 9px;
  letter-spacing: .1em;
  padding-top: 4px;
}

.method-steps strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}

.method-steps p {
  color: rgba(248, 247, 242, .5);
  font-size: 13px;
  margin: 1px 0 0;
}

.profile {
  padding-bottom: 150px;
}

.profile-quote {
  margin: 0 auto 120px;
  max-width: 1050px;
  position: relative;
  text-align: center;
}

.quote-mark {
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 68px;
  height: 45px;
  line-height: 1;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(35px, 4.1vw, 60px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.12;
  margin: 0;
}

.profile-card {
  align-items: stretch;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  margin: 0 auto;
  max-width: 1060px;
}

.portrait-monogram {
  align-items: center;
  background: var(--sand);
  display: flex;
  font-family: var(--font-display);
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.portrait-monogram::before,
.portrait-monogram::after {
  border: 1px solid rgba(29, 36, 33, .25);
  border-radius: 50%;
  content: "";
  position: absolute;
}

.portrait-monogram::before {
  height: 390px;
  width: 390px;
}

.portrait-monogram::after {
  height: 240px;
  width: 240px;
}

.portrait-monogram span {
  font-size: clamp(150px, 15vw, 230px);
  letter-spacing: -.12em;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.portrait-monogram span:last-child {
  color: var(--clay);
  margin-left: -14px;
}

.profile-info {
  background: var(--paper);
  padding: 64px 7vw;
}

.profile-info .eyebrow {
  margin-bottom: 54px;
}

.profile-info h2 {
  font-size: clamp(48px, 5vw, 72px);
}

.profile-info h3 {
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 23px;
  font-style: italic;
  font-weight: 400;
  margin: 2px 0 28px;
}

.profile-info > p {
  color: var(--ink-soft);
  margin-bottom: 35px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-tags span {
  border: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: .1em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.contact {
  background: var(--clay);
  color: var(--paper-light);
  max-width: none;
  overflow: hidden;
  padding: 110px 8vw;
  position: relative;
}

.contact-inner {
  max-width: 840px;
  position: relative;
  z-index: 2;
}

.contact h2 {
  font-size: clamp(55px, 6.6vw, 94px);
}

.contact-inner > p:not(.eyebrow) {
  color: rgba(248, 247, 242, .75);
  font-size: 17px;
  margin: 34px 0 42px;
  max-width: 620px;
}

.button-light {
  background: var(--paper-light);
  color: var(--ink);
  min-width: 260px;
}

.button-light:hover {
  background: var(--ink);
  color: var(--paper-light);
}

.phone-link {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.phone-link small {
  color: rgba(248, 247, 242, .55);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.phone-link strong {
  border-bottom: 1px solid rgba(248, 247, 242, .5);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
}

.contact-contours {
  height: 700px;
  position: absolute;
  right: -180px;
  top: -180px;
  width: 700px;
}

.contact-contours span {
  border: 1px solid rgba(248, 247, 242, .15);
  border-radius: 45% 55% 48% 52%;
  inset: calc(var(--n) * 46px);
  position: absolute;
  transform: rotate(calc(var(--n) * 13deg));
}

.contact-contours span:nth-child(1) { --n: 0; }
.contact-contours span:nth-child(2) { --n: 1; }
.contact-contours span:nth-child(3) { --n: 2; }
.contact-contours span:nth-child(4) { --n: 3; }
.contact-contours span:nth-child(5) { --n: 4; }

.site-footer {
  align-items: center;
  background: #141917;
  color: var(--paper-light);
  display: grid;
  font-size: 10px;
  grid-template-columns: 1fr auto 1fr;
  letter-spacing: .08em;
  padding: 34px 5vw;
  text-transform: uppercase;
}

.site-footer > p:last-child {
  justify-self: end;
}

.footer-brand .brand-mark {
  border-color: var(--paper-light);
}

.footer-brand .brand-copy small {
  color: rgba(248, 247, 242, .45);
  text-transform: none;
}

.floating-whatsapp {
  align-items: center;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 8px 30px rgba(29, 36, 33, .2);
  display: flex;
  height: 52px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition: background .2s ease, transform .2s ease;
  width: 52px;
  z-index: 19;
}

.floating-whatsapp:hover {
  background: #2d8053;
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  fill: var(--paper-light);
  height: 23px;
  width: 23px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal:nth-child(2) {
  transition-delay: .14s;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }

  .main-nav {
    align-items: flex-start;
    background: var(--paper-light);
    flex-direction: column;
    gap: 30px;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 100px 8vw;
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease;
    z-index: 21;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -.02em;
    text-transform: none;
  }

  .main-nav .nav-contact {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: .07em;
    margin-top: 15px;
    text-transform: uppercase;
  }

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

  .hero-content { padding-right: 0; }
  .hero-study { min-height: 620px; }

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

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

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

  .method-visual {
    min-height: 540px;
  }

  .circle-large {
    height: 70vw;
    width: 70vw;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .portrait-monogram { min-height: 400px; }

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

  .site-footer > p:first-of-type { justify-self: end; }
  .site-footer > p:last-child { grid-column: 1 / -1; justify-self: center; }
}

@media (max-width: 620px) {
  .site-header { height: 78px; padding: 0 20px; }
  .site-header.is-scrolled { height: 68px; }
  .brand { min-width: 210px; }
  .brand-copy small { display: none; }
  .brand-mark { height: 38px; width: 38px; }

  .hero {
    min-height: auto;
    padding: 118px 20px 44px;
  }

  .hero::before { inset: 0 20px; background-size: 25% 100%; }
  .hero-content { padding-bottom: 60px; }
  h1 { font-size: clamp(49px, 16vw, 68px); }
  .hero-intro { margin-top: 26px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .button { width: 100%; }
  .text-link { width: max-content; }
  .hero-study { margin: 0 -20px; min-height: 560px; padding: 20px; }
  .study-caption { align-items: flex-start; flex-direction: column; gap: 6px; }
  .study-caption span { text-align: left; }

  .proof-bar {
    gap: 10px;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .proof-bar p { font-size: 12px; }
  .proof-bar i { width: 8px; }

  .section { padding: 90px 20px; }
  .section-heading { margin-bottom: 52px; }
  .section h2 { font-size: clamp(42px, 13vw, 58px); }

  .service-item {
    gap: 14px;
    grid-template-columns: 34px 1fr;
    padding: 28px 0;
  }

  .service-item:hover { padding-left: 0; }
  .service-icon { display: none; }
  .service-copy p { font-size: 14px; }

  .method-visual { min-height: 430px; }
  .method-visual strong { font-size: 64px; }
  .method-content { padding: 82px 20px; }

  .profile { padding-bottom: 90px; }
  .profile-quote { margin-bottom: 78px; }
  blockquote { font-size: clamp(32px, 9.7vw, 46px); }
  .portrait-monogram { min-height: 330px; }
  .portrait-monogram::before { height: 300px; width: 300px; }
  .portrait-monogram::after { height: 180px; width: 180px; }
  .portrait-monogram span { font-size: 135px; }
  .profile-info { padding: 50px 25px; }
  .profile-info .eyebrow { margin-bottom: 36px; }

  .contact { padding: 82px 20px 90px; }
  .contact h2 { font-size: clamp(49px, 15vw, 67px); }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-contours { opacity: .6; right: -480px; }

  .site-footer {
    display: flex;
    flex-direction: column;
    padding: 42px 20px;
    text-align: center;
  }

  .site-footer > p:first-of-type,
  .site-footer > p:last-child { margin: 0; }
  .footer-brand .brand-copy small { display: block; }

  .floating-whatsapp { bottom: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
