:root {
  --canvas: #ece9e3;
  --surface: #f7f5f1;
  --surface-deep: #ddd8d0;
  --white: #fffdf9;
  --ink: #120d10;
  --ink-raised: #1d1519;
  --text: #51494d;
  --wine: #701a3b;
  --red: #b52e4d;
  --rose: #e097ad;
  --sand: #d2af7a;
  --line: rgba(18, 13, 16, .16);
  --line-light: rgba(255, 255, 255, .18);
  --display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Bodoni Moda", "Iowan Old Style", Georgia, serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(.2, .76, .25, 1);
  --shadow: 0 32px 90px rgba(18, 13, 16, .18);
  --header-height: 92px;
}

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

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

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

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: var(--white);
}

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

figure,
blockquote,
p,
h1,
h2,
h3 {
  margin: 0;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: .82rem;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.shell {
  width: min(1360px, calc(100% - 80px));
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(112px, 10vw, 172px);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--wine);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker::before {
  width: 31px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--red);
  content: "";
}

.kicker-light {
  color: rgba(255, 255, 255, .68);
}

.kicker-light::before {
  background: var(--rose);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.06em;
}

h2 {
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  line-height: .96;
}

h3 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.02;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 25px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}

.button svg,
.header-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform .35s var(--ease);
}

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

.button:hover svg,
.header-cta:hover svg {
  transform: translate(3px, -3px);
}

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

.button-solid:hover {
  background: var(--wine);
  border-color: var(--wine);
}

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

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

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

.button-light:hover {
  border-color: var(--rose);
  background: var(--rose);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-block: 5px;
  border-bottom: 1px solid currentColor;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
  transition: color .25s ease, gap .25s var(--ease);
}

.text-link:hover {
  color: var(--red);
  gap: 18px;
}

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

/* Header */

.site-header {
  height: var(--header-height);
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: height .35s var(--ease), color .3s ease, background-color .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.scrolled,
.menu-open .site-header {
  height: 76px;
  background: rgba(247, 245, 241, .94);
  color: var(--ink);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(18, 13, 16, .07);
  backdrop-filter: blur(18px);
}

.scroll-progress {
  height: 2px;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(310px, 1fr);
  align-items: center;
  gap: 38px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-symbol {
  width: 43px;
  height: 38px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("../img/marca-jp-v2.svg") center / contain no-repeat;
  mask: url("../img/marca-jp-v2.svg") center / contain no-repeat;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-type strong {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand-type span {
  margin-top: 7px;
  color: currentColor;
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .11em;
  opacity: .58;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .055em;
}

.desktop-nav a::after {
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

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

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-instagram {
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .07em;
  opacity: .7;
  text-transform: uppercase;
  transition: opacity .2s ease;
}

.header-instagram:hover {
  opacity: 1;
}

.header-instagram span {
  color: var(--rose);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

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

.menu-toggle span {
  width: 20px;
  height: 1px;
  position: absolute;
  left: 13px;
  background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}

.menu-toggle span:first-child {
  top: 19px;
}

.menu-toggle span:last-child {
  top: 27px;
}

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

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

.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  z-index: 99;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 42px 32px;
  background: var(--surface);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .3s ease, transform .3s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.mobile-menu nav a {
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1;
}

.mobile-menu-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mobile-instagram {
  border-bottom: 1px solid currentColor;
  font-size: .76rem;
  font-weight: 700;
}

.mobile-menu > p {
  margin-top: 30px;
  color: var(--text);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

/* Hero */

.hero {
  min-height: 100svh;
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll: 0px;
}

.hero::before {
  width: 46vw;
  height: 46vw;
  position: absolute;
  top: -27vw;
  left: -22vw;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(255, 255, 255, .015), 0 0 0 170px rgba(255, 255, 255, .01);
  content: "";
}

.hero-media {
  width: 59%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 43%;
  transform: scale(1.035) translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0);
  transform-origin: center;
  transition: transform .8s var(--ease);
  will-change: transform;
  animation: hero-image-in 1.5s var(--ease) both;
}

.hero-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0, rgba(18, 13, 16, .83) 8%, rgba(18, 13, 16, .18) 30%, transparent 54%), linear-gradient(0deg, rgba(18, 13, 16, .48), transparent 35%);
  pointer-events: none;
}

.hero-image-credit {
  position: absolute;
  right: 27px;
  bottom: 90px;
  z-index: 3;
  color: rgba(255, 255, 255, .7);
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-inner {
  min-height: 100svh;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(47%, 650px);
  padding: calc(var(--header-height) + 42px) 0 118px;
}

.hero-kicker {
  margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(4.25rem, 6.65vw, 7.35rem);
  font-weight: 600;
  letter-spacing: -.078em;
  line-height: .81;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--rose);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.06em;
}

.hero h1 em:first-of-type {
  margin-top: .12em;
}

.hero-lede {
  max-width: 550px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .64);
  font-size: clamp(.98rem, 1.25vw, 1.14rem);
  line-height: 1.78;
}

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

.hero-proof {
  max-width: 510px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: clamp(48px, 6vh, 72px);
  padding-top: 23px;
  border-top: 1px solid var(--line-light);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1;
}

.hero-proof span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .5);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .04em;
  line-height: 1.45;
}

.hero-name {
  position: absolute;
  right: -1.5vw;
  bottom: 9px;
  z-index: 2;
  color: rgba(255, 255, 255, .065);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 700;
  letter-spacing: -.095em;
  line-height: .65;
  pointer-events: none;
  user-select: none;
}

.hero-spectrum {
  width: 59%;
  height: 68px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.hero-spectrum span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--tone);
  color: var(--white);
  font-family: var(--mono);
  font-size: .49rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-spectrum span:last-child {
  color: var(--ink);
}

.hero-spectrum i {
  font-style: normal;
  opacity: .53;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: max(40px, calc((100vw - 1360px) / 2));
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .58);
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-scroll i {
  width: 42px;
  height: 1px;
  position: relative;
  background: rgba(255, 255, 255, .34);
  overflow: hidden;
}

.hero-scroll i::after {
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--rose);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes hero-image-in {
  from { opacity: .3; transform: scale(1.1) translate3d(0, 0, 0); }
  to { opacity: 1; transform: scale(1.035) translate3d(0, 0, 0); }
}

@keyframes scroll-line {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(220%); }
}

/* Expertise */

.expertise-line {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.expertise-line-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.expertise-line span {
  color: var(--text);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.expertise-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

/* Results */

.results {
  background: var(--surface);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
  margin-bottom: clamp(62px, 7vw, 96px);
}

.section-intro h2 {
  max-width: 850px;
  margin-top: 19px;
}

.section-intro > p {
  padding-bottom: 8px;
  color: var(--text);
  font-size: .96rem;
  line-height: 1.82;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(590px, 47vw) minmax(500px, 40vw);
  gap: 16px;
}

.work-card {
  min-width: 0;
  position: relative;
  padding: 0;
  border: 0;
  background: var(--ink);
  cursor: zoom-in;
  overflow: hidden;
  text-align: left;
}

.work-card-a {
  grid-column: 1 / span 7;
  grid-row: 1;
}

.work-card-b {
  grid-column: 8 / span 5;
  grid-row: 1;
}

.work-card-c {
  grid-column: 1 / span 5;
  grid-row: 2;
}

.work-card-d {
  grid-column: 6 / span 7;
  grid-row: 2;
}

.work-card::after {
  height: 48%;
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(transparent, rgba(18, 13, 16, .84));
  content: "";
  pointer-events: none;
}

.work-card picture,
.work-card img {
  width: 100%;
  height: 100%;
}

.work-card img {
  object-fit: cover;
  transition: transform .85s var(--ease), filter .5s ease;
}

.work-card-a img {
  object-position: center 39%;
}

.work-card-b img {
  object-position: center 35%;
}

.work-card-c img {
  object-position: center 36%;
}

.work-card-d img {
  object-position: center 43%;
}

.work-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.work-card > span {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  z-index: 2;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.025em;
}

.work-card > span small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .66);
  font-family: var(--mono);
  font-size: .53rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.transformation {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  margin-top: clamp(110px, 11vw, 168px);
  background: var(--ink-raised);
  color: var(--white);
}

.transformation-stage {
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.transformation-stage picture,
.transformation-stage img {
  width: 100%;
  height: 100%;
}

.transformation-stage img {
  object-fit: cover;
}

.transformation-stage::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  content: "";
  pointer-events: none;
}

.transformation-label {
  position: absolute;
  top: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  background: rgba(18, 13, 16, .78);
  color: var(--white);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.transformation-label i {
  color: var(--rose);
  font-style: normal;
}

.transformation-before {
  left: 24px;
}

.transformation-after {
  right: 24px;
}

.transformation-divider {
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  background: rgba(255, 255, 255, .8);
}

.transformation-divider::after {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: rgba(18, 13, 16, .35);
  content: "";
  transform: translate(-50%, -50%);
  backdrop-filter: blur(6px);
}

.transformation-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 84px);
}

.transformation-copy h3 {
  max-width: 560px;
  margin-top: 19px;
}

.transformation-copy > p:not(.kicker) {
  max-width: 530px;
  margin-top: 27px;
  color: rgba(255, 255, 255, .61);
  font-size: .96rem;
  line-height: 1.85;
}

.transformation-copy .text-link {
  align-self: flex-start;
  margin-top: 33px;
}

/* Services */

.services {
  background: var(--canvas);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  gap: clamp(72px, 9vw, 138px);
  align-items: start;
}

.services-copy h2 {
  max-width: 760px;
  margin-top: 20px;
}

.services-lede {
  max-width: 650px;
  margin-top: 31px;
  color: var(--text);
  line-height: 1.83;
}

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

.service-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 20px;
  padding-block: 27px;
  border-top: 1px solid var(--line);
  transition: padding-left .35s var(--ease);
}

.service-row:hover {
  padding-left: 9px;
}

.service-mark {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--service-tone);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--service-tone), transparent 82%);
}

.service-row h3 {
  font-size: 1.28rem;
  letter-spacing: -.035em;
}

.service-row p {
  max-width: 570px;
  margin-top: 9px;
  color: var(--text);
  font-size: .91rem;
  line-height: 1.72;
}

.services-copy > .button {
  margin-top: 42px;
}

.services-visual {
  min-height: 720px;
  position: sticky;
  top: 104px;
}

.services-photo-main {
  width: 80%;
  height: 76%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.services-photo-detail {
  width: 47%;
  height: 45%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  border: 12px solid var(--canvas);
  overflow: hidden;
}

.services-photo-main picture,
.services-photo-main img,
.services-photo-detail picture,
.services-photo-detail img {
  width: 100%;
  height: 100%;
}

.services-photo-main img,
.services-photo-detail img {
  object-fit: cover;
}

.services-photo-main img {
  object-position: center 38%;
}

.services-photo-detail img {
  object-position: center 31%;
}

.formula-card {
  position: absolute;
  right: 0;
  bottom: 39px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 17px 19px;
  background: var(--wine);
  color: var(--white);
  font-family: var(--mono);
  font-size: .54rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.formula-card i {
  color: var(--rose);
  font-style: normal;
}

/* About */

.about {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.about.section-space {
  padding-block: clamp(74px, 6.2vw, 104px);
}

.about-monogram {
  width: min(70vw, 1040px);
  aspect-ratio: 1558 / 1348;
  position: absolute;
  right: -12vw;
  bottom: -22vw;
  background: rgba(255, 255, 255, .026);
  -webkit-mask: url("../img/marca-jp-v2.svg") center / contain no-repeat;
  mask: url("../img/marca-jp-v2.svg") center / contain no-repeat;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  gap: clamp(54px, 7vw, 108px);
  align-items: center;
}

.about-portrait {
  width: min(100%, 380px);
  position: relative;
  justify-self: start;
  padding: 0 22px 22px 0;
}

.about-portrait::before {
  position: absolute;
  inset: 22px 0 0 22px;
  border: 1px solid rgba(224, 151, 173, .55);
  content: "";
}

.about-portrait picture,
.about-portrait img {
  width: 100%;
  position: relative;
}

.about-portrait picture {
  aspect-ratio: .92;
  overflow: hidden;
}

.about-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: 64% 27%;
}

.about-portrait > span {
  position: absolute;
  right: 6px;
  bottom: 13px;
  z-index: 2;
  padding: 12px 15px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: .53rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 790px;
  margin-top: 18px;
  font-size: clamp(2.9rem, 4.4vw, 4.65rem);
  line-height: .98;
}

.about-text {
  max-width: 680px;
  margin-top: 30px;
}

.about-text p {
  color: rgba(255, 255, 255, .61);
  font-size: .9rem;
  line-height: 1.7;
}

.about-copy blockquote {
  max-width: 780px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: #ead6de;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  font-style: italic;
  line-height: 1.2;
}

.about-copy .text-link {
  margin-top: 26px;
}

/* Education */

.education {
  background: var(--surface);
}

.education-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(72px, 10vw, 154px);
  align-items: center;
}

.education-copy h2 {
  max-width: 850px;
  margin-top: 20px;
}

.education-lede {
  max-width: 700px;
  margin-top: 31px;
  color: var(--text);
  line-height: 1.82;
}

.education-list {
  max-width: 700px;
  margin: 48px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.education-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  font-size: .92rem;
  line-height: 1.6;
}

.education-list span {
  color: var(--red);
  font-family: var(--mono);
  font-size: .9rem;
}

.education-copy .button {
  margin-top: 40px;
}

.education-visual {
  min-width: 0;
  position: relative;
  padding: 0 0 76px 46px;
}

.education-visual::before {
  width: 124px;
  height: 124px;
  position: absolute;
  top: -38px;
  right: -36px;
  border-radius: 50%;
  background: conic-gradient(#33221e 0 12.5%, #765342 12.5% 25%, #c09a69 25% 37.5%, #e5d8bf 37.5% 50%, #c8868e 50% 62.5%, #884260 62.5% 75%, #7a5350 75% 87.5%, #312225 87.5%);
  content: "";
}

.education-visual figure {
  position: relative;
  z-index: 1;
  aspect-ratio: .9;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.education-visual figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
}

.education-visual blockquote {
  width: min(410px, calc(100% - 20px));
  position: absolute;
  right: -18px;
  bottom: 0;
  z-index: 2;
  padding: 30px 34px 30px 59px;
  background: var(--wine);
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-style: italic;
  line-height: 1.28;
}

.education-visual blockquote span {
  position: absolute;
  top: 8px;
  left: 21px;
  color: rgba(255, 255, 255, .32);
  font-size: 4.7rem;
  line-height: 1;
}

/* Instagram */

.instagram-section {
  background: var(--surface-deep);
}

.instagram-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: end;
  margin-bottom: 72px;
}

.instagram-heading h2 {
  max-width: 830px;
  margin-top: 20px;
}

.instagram-handle {
  min-width: 330px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 23px 52px 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.instagram-handle span {
  color: var(--text);
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.instagram-handle strong {
  margin-top: 6px;
  font-size: .78rem;
  font-weight: 600;
}

.instagram-handle i {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--red);
  font-size: 1.5rem;
  font-style: normal;
  transform: translateY(-50%);
  transition: transform .3s var(--ease);
}

.instagram-handle:hover i {
  transform: translate(4px, calc(-50% - 4px));
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.instagram-card {
  position: relative;
  display: block;
  background: var(--ink);
  overflow: hidden;
}

.instagram-card::after {
  height: 42%;
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(transparent, rgba(18, 13, 16, .72));
  content: "";
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s ease;
}

.instagram-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.instagram-card span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  color: var(--white);
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.instagram-card-result {
  height: 610px;
  grid-column: 1 / span 5;
}

.instagram-card-client {
  height: 475px;
  grid-column: 6 / span 3;
}

.instagram-card-education {
  height: 530px;
  grid-column: 9 / span 4;
}

.instagram-card-result img {
  object-position: center 22%;
}

.instagram-card-client img {
  object-position: center 30%;
}

.instagram-card-education img {
  object-position: center;
}

/* Contact */

.contact {
  background: var(--wine);
  color: var(--white);
}

.contact .shell {
  max-width: 1160px;
}

.contact h2 {
  max-width: 940px;
  margin-top: 20px;
}

.contact-intro {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .66);
  line-height: 1.8;
}

.contact-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.contact-card {
  min-height: 232px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  border-right: 1px solid var(--line-light);
  transition: background-color .35s var(--ease), color .35s var(--ease);
}

.contact-card:last-child {
  border-right: 0;
}

.contact-card:hover {
  background: var(--white);
  color: var(--ink);
}

.contact-card > span {
  font-family: var(--mono);
  font-size: .59rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-card strong {
  max-width: 390px;
  font-size: clamp(1.8rem, 3.1vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.05;
}

.contact-card svg {
  width: 29px;
  height: 29px;
  position: absolute;
  right: 35px;
  bottom: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
  transition: transform .35s var(--ease);
}

.contact-card:hover svg {
  transform: translate(5px, -5px);
}

/* Footer */

.site-footer {
  padding: 76px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding-bottom: 64px;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a,
.footer-social a {
  width: fit-content;
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
  transition: color .2s ease;
}

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

.footer-social span {
  color: var(--rose);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .36);
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* WhatsApp */

.whatsapp-float {
  min-height: 50px;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 999px;
  background: #157c43;
  color: var(--white);
  box-shadow: 0 16px 42px rgba(12, 76, 39, .26);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background-color .3s ease;
}

.whatsapp-float:hover {
  background: #116b3b;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Lightbox */

.lightbox {
  width: min(980px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(8, 6, 7, .94);
  backdrop-filter: blur(13px);
}

.lightbox figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100svh - 112px);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 13px;
  color: rgba(255, 255, 255, .68);
  font-family: var(--mono);
  font-size: .59rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: -4px;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0 10px 16px;
  border: 0;
  background: rgba(18, 13, 16, .8);
  color: var(--white);
  cursor: pointer;
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lightbox-close span {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: .7;
}

.lightbox[open] {
  animation: dialog-in .35s var(--ease) both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: scale(.97); }
  to { opacity: 1; transform: scale(1); }
}

/* Motion */

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(25px);
}

.reveal {
  transition: opacity .78s ease, transform .78s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: .09s;
}

.reveal-delay-2 {
  transition-delay: .18s;
}

.reveal-delay-3 {
  transition-delay: .27s;
}

@supports (animation-timeline: view()) {
  .about-portrait img,
  .education-visual figure img {
    animation: image-breathe linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 100%;
  }

  @keyframes image-breathe {
    from { transform: scale(1.035); }
    to { transform: scale(1); }
  }
}

/* Responsive */

@media (max-width: 1180px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-copy {
    width: 48%;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.2vw, 6.2rem);
  }

  .services-layout,
  .education-layout {
    gap: 74px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 80px;
  }

  .shell {
    width: min(100% - 40px, 740px);
  }

  .section-space {
    padding-block: 106px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    width: 100%;
    height: min(78svh, 780px);
    position: relative;
  }

  .hero-media img {
    object-position: 62% 36%;
  }

  .hero-media-shade {
    background: linear-gradient(0deg, var(--ink) 0, rgba(18, 13, 16, .22) 28%, transparent 56%), linear-gradient(90deg, rgba(18, 13, 16, .15), transparent 40%);
  }

  .hero-image-credit {
    bottom: 87px;
  }

  .hero-inner {
    min-height: 0;
    width: 100%;
    padding: 82px 20px 118px;
    background: var(--ink);
  }

  .hero-copy {
    width: min(100%, 720px);
    margin-inline: auto;
    padding: 0;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(4.2rem, 12vw, 6.7rem);
  }

  .hero-lede {
    max-width: 630px;
  }

  .hero-name {
    display: none;
  }

  .hero-spectrum {
    width: 100%;
    height: 64px;
    top: calc(min(78svh, 780px) - 64px);
    bottom: auto;
  }

  .hero-scroll {
    display: none;
  }

  .expertise-line-inner {
    width: 100%;
    padding-inline: 20px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro > p {
    max-width: 620px;
    padding-bottom: 0;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 590px 430px 440px;
  }

  .work-card-a {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .work-card-b {
    grid-column: 1;
    grid-row: 2;
  }

  .work-card-c {
    grid-column: 2;
    grid-row: 2;
  }

  .work-card-d {
    grid-column: 1 / 3;
    grid-row: 3;
  }

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

  .transformation-stage {
    aspect-ratio: 1;
  }

  .transformation-copy {
    min-height: 500px;
  }

  .services-layout,
  .about-layout,
  .education-layout {
    grid-template-columns: 1fr;
  }

  .services-visual {
    min-height: 730px;
    position: relative;
    top: auto;
  }

  .about-layout {
    gap: 52px;
  }

  .about-portrait {
    width: min(640px, calc(100% - 24px));
    margin-inline: auto;
  }

  .about-portrait picture {
    aspect-ratio: 16 / 9;
  }

  .about-portrait img {
    object-position: 64% 26%;
  }

  .education-layout {
    gap: 100px;
  }

  .education-visual {
    width: min(610px, 100%);
    margin-inline: auto;
  }

  .instagram-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .instagram-handle {
    width: min(100%, 430px);
    min-width: 0;
  }

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

  .instagram-card-result {
    height: 580px;
    grid-column: 1 / 3;
  }

  .instagram-card-client,
  .instagram-card-education {
    height: 410px;
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .section-space {
    padding-block: 86px;
  }

  h2 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .site-header,
  .site-header.scrolled,
  .menu-open .site-header {
    height: 72px;
  }

  .brand-symbol {
    width: 37px;
    height: 33px;
  }

  .brand-type strong {
    font-size: .69rem;
  }

  .brand-type span {
    font-size: .45rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .menu-toggle span {
    left: 11px;
  }

  .mobile-menu {
    inset: 72px 0 0;
  }

  .mobile-menu-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media {
    height: 68svh;
    min-height: 500px;
  }

  .hero-media img {
    object-position: 62% 31%;
  }

  .hero-image-credit {
    right: 15px;
    bottom: 76px;
    font-size: .47rem;
  }

  .hero-spectrum {
    height: 58px;
    top: calc(max(500px, 68svh) - 58px);
  }

  .hero-spectrum span {
    gap: 3px;
    font-size: .38rem;
  }

  .hero-spectrum span i {
    display: none;
  }

  .hero-inner {
    padding: 70px 16px 86px;
  }

  .hero-kicker {
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .hero-lede {
    margin-top: 28px;
    font-size: .97rem;
  }

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

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    gap: 20px;
    margin-top: 48px;
  }

  .hero-proof strong {
    font-size: 1.3rem;
  }

  .expertise-line-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0;
  }

  .expertise-line span {
    padding: 17px 10px;
    border-bottom: 1px solid var(--line);
    font-size: .51rem;
    text-align: center;
  }

  .expertise-line span:nth-of-type(odd) {
    border-right: 1px solid var(--line);
  }

  .expertise-line i {
    display: none;
  }

  .section-intro {
    margin-bottom: 50px;
  }

  .work-grid {
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .work-card,
  .work-card-b,
  .work-card-c {
    height: 480px;
  }

  .work-card > span {
    right: 20px;
    bottom: 19px;
    left: 20px;
  }

  .transformation {
    min-height: 0;
    margin-top: 84px;
  }

  .transformation-label {
    top: 13px;
    padding: 8px 9px;
    font-size: .49rem;
  }

  .transformation-before {
    left: 13px;
  }

  .transformation-after {
    right: 13px;
  }

  .transformation-copy {
    min-height: 0;
    padding: 52px 24px 58px;
  }

  .service-row {
    grid-template-columns: 24px 1fr;
    gap: 14px;
  }

  .service-mark {
    width: 10px;
    height: 10px;
  }

  .services-copy > .button,
  .education-copy .button {
    width: 100%;
  }

  .services-visual {
    min-height: 550px;
  }

  .services-photo-main {
    width: 83%;
    height: 77%;
  }

  .services-photo-detail {
    width: 50%;
    height: 44%;
    border-width: 8px;
  }

  .formula-card {
    right: 0;
    bottom: 18px;
    gap: 7px;
    padding: 13px 12px;
    font-size: .44rem;
  }

  .about-layout {
    gap: 28px;
  }

  .about.section-space {
    padding-block: 58px;
  }

  .about-portrait {
    width: 100%;
    padding: 0 12px 12px 0;
  }

  .about-portrait::before {
    inset: 12px 0 0 12px;
  }

  .about-portrait picture {
    height: 128px;
    aspect-ratio: auto;
  }

  .about-portrait img {
    object-position: 64% 24%;
  }

  .about-portrait > span {
    right: 0;
    bottom: 5px;
    padding: 9px 11px;
  }

  .about-text {
    margin-top: 22px;
  }

  .about-copy h2 {
    margin-top: 15px;
    font-size: clamp(2.5rem, 11.5vw, 3rem);
  }

  .about-text p {
    font-size: .86rem;
    line-height: 1.62;
  }

  .about-copy blockquote {
    margin-top: 24px;
    padding-top: 18px;
    font-size: 1.5rem;
  }

  .about-copy .text-link {
    margin-top: 21px;
  }

  .education-layout {
    gap: 78px;
  }

  .education-visual {
    padding: 0 0 74px;
  }

  .education-visual::before {
    width: 90px;
    height: 90px;
    top: -30px;
    right: -8px;
  }

  .education-visual blockquote {
    right: -6px;
    padding: 25px 22px 25px 47px;
  }

  .instagram-heading {
    margin-bottom: 48px;
  }

  .instagram-grid {
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .instagram-card-result,
  .instagram-card-client,
  .instagram-card-education {
    width: 100%;
    height: 450px;
  }

  .instagram-card-client,
  .instagram-card-education {
    height: 380px;
  }

  .contact-paths {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .contact-card {
    min-height: 200px;
    padding: 27px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .contact-card:last-child {
    border-bottom: 0;
  }

  .contact-card svg {
    right: 24px;
    bottom: 27px;
  }

  .contact-card strong {
    max-width: 265px;
  }

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

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

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

  .whatsapp-float {
    width: 52px;
    height: 52px;
    min-height: 0;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .lightbox-close {
    top: 0;
  }
}

/* Mobile composition pass — intentionally isolated from tablet and desktop. */
@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

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

  .shell {
    width: calc(100% - 36px);
  }

  .section-space {
    padding-block: 72px;
  }

  .kicker {
    gap: 10px;
    font-size: .58rem;
    letter-spacing: .11em;
  }

  .kicker::before {
    width: 24px;
  }

  h2 {
    font-size: clamp(2.35rem, 10.8vw, 3.05rem);
    line-height: .98;
  }

  h3 {
    font-size: clamp(1.85rem, 8.4vw, 2.4rem);
  }

  .button {
    min-height: 54px;
    gap: 16px;
    padding-inline: 18px;
    font-size: .67rem;
  }

  .site-header,
  .site-header.scrolled,
  .menu-open .site-header {
    height: 64px;
  }

  .brand {
    gap: 10px;
  }

  .brand-symbol {
    width: 32px;
    height: 29px;
  }

  .brand-type strong {
    font-size: .63rem;
    letter-spacing: .14em;
  }

  .brand-type span {
    margin-top: 5px;
    font-size: .39rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-toggle span {
    left: 10px;
  }

  .menu-toggle span:first-child {
    top: 17px;
  }

  .menu-toggle span:last-child {
    top: 24px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child,
  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 20px;
  }

  .mobile-menu {
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    max-height: calc(100dvh - 64px);
    inset: 64px 0 auto;
    justify-content: flex-start;
    padding: 38px 20px max(28px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu nav a {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .hero-media {
    height: clamp(360px, 44svh, 480px);
    min-height: 0;
  }

  .hero-media img {
    object-position: 59% 27%;
    animation: none;
    transform: scale(1.015);
  }

  .hero-media-shade {
    background: linear-gradient(0deg, rgba(18, 13, 16, .42), transparent 34%), linear-gradient(90deg, rgba(18, 13, 16, .16), transparent 44%);
  }

  .hero-image-credit {
    right: 14px;
    bottom: 20px;
    font-size: .42rem;
    letter-spacing: .08em;
  }

  .hero-spectrum {
    height: 10px;
    top: calc(clamp(360px, 44svh, 480px) - 10px);
  }

  .hero-spectrum span {
    gap: 0;
    font-size: 0;
  }

  .hero-spectrum span i {
    display: none;
  }

  .hero-inner {
    padding: 40px 18px 60px;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 15vw, 4.35rem);
    line-height: .83;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: .9rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 17px;
    margin-top: 27px;
  }

  .hero-proof {
    gap: 16px;
    margin-top: 32px;
    padding-top: 18px;
  }

  .hero-proof strong {
    font-size: 1.18rem;
  }

  .hero-proof span {
    margin-top: 6px;
    font-size: .49rem;
  }

  .expertise-line span {
    padding: 14px 8px;
    font-size: .47rem;
  }

  .section-intro {
    gap: 22px;
    margin-bottom: 36px;
  }

  .section-intro h2 {
    margin-top: 14px;
  }

  .section-intro > p {
    font-size: .89rem;
    line-height: 1.68;
  }

  .work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 400px 250px 330px;
    gap: 8px;
  }

  .work-card,
  .work-card-b,
  .work-card-c {
    height: auto;
  }

  .work-card > span {
    right: 14px;
    bottom: 14px;
    left: 14px;
    font-size: .78rem;
    line-height: 1.25;
  }

  .work-card > span small {
    margin-bottom: 4px;
    font-size: .44rem;
  }

  .work-card-b > span,
  .work-card-c > span {
    right: 11px;
    left: 11px;
    font-size: .69rem;
  }

  .transformation {
    margin-top: 64px;
  }

  .transformation-label {
    padding: 7px 8px;
    font-size: .45rem;
  }

  .transformation-copy {
    padding: 38px 20px 44px;
  }

  .transformation-copy h3 {
    margin-top: 14px;
  }

  .transformation-copy > p:not(.kicker) {
    margin-top: 21px;
    font-size: .87rem;
    line-height: 1.7;
  }

  .transformation-copy .text-link {
    margin-top: 25px;
  }

  .services-layout {
    gap: 48px;
  }

  .services-copy h2,
  .education-copy h2,
  .instagram-heading h2,
  .contact h2 {
    margin-top: 14px;
  }

  .services-lede,
  .education-lede,
  .contact-intro {
    margin-top: 22px;
    font-size: .89rem;
    line-height: 1.68;
  }

  .service-list {
    margin-top: 36px;
  }

  .service-row {
    grid-template-columns: 20px 1fr;
    gap: 11px;
    padding-block: 20px;
  }

  .service-row h3 {
    font-size: 1.08rem;
  }

  .service-row p {
    margin-top: 7px;
    font-size: .83rem;
    line-height: 1.6;
  }

  .services-copy > .button {
    margin-top: 32px;
  }

  .services-visual {
    min-height: 420px;
  }

  .services-photo-main {
    width: 84%;
    height: 78%;
  }

  .services-photo-detail {
    width: 48%;
    height: 43%;
    border-width: 7px;
  }

  .formula-card {
    bottom: 12px;
    padding: 11px 10px;
    font-size: .4rem;
  }

  .about.section-space {
    padding-block: 56px;
  }

  .about-layout {
    gap: 22px;
  }

  .about-portrait picture {
    height: 150px;
  }

  .about-text {
    margin-top: 17px;
  }

  .about-copy h2 {
    margin-top: 13px;
    font-size: clamp(2.25rem, 10.2vw, 2.75rem);
    line-height: 1;
  }

  .about-text p {
    font-size: .83rem;
    line-height: 1.58;
  }

  .about-copy blockquote {
    margin-top: 20px;
    padding-top: 16px;
    font-size: 1.32rem;
  }

  .about-copy .text-link {
    margin-top: 18px;
    font-size: .7rem;
  }

  .education-layout {
    gap: 48px;
  }

  .education-list {
    margin-top: 34px;
  }

  .education-list li {
    grid-template-columns: 24px 1fr;
    gap: 8px;
    padding-block: 14px;
    font-size: .83rem;
    line-height: 1.52;
  }

  .education-copy .button {
    margin-top: 30px;
  }

  .education-visual {
    padding: 0 0 58px;
  }

  .education-visual::before {
    width: 72px;
    height: 72px;
    top: -23px;
    right: -4px;
  }

  .education-visual blockquote {
    width: calc(100% - 26px);
    right: -2px;
    padding: 20px 18px 20px 39px;
    font-size: 1.1rem;
  }

  .education-visual blockquote span {
    top: 5px;
    left: 13px;
    font-size: 3.7rem;
  }

  .instagram-heading {
    gap: 24px;
    margin-bottom: 36px;
  }

  .instagram-handle {
    padding-block: 17px;
  }

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

  .instagram-card-result {
    width: 100%;
    height: 380px;
    grid-column: 1 / -1;
  }

  .instagram-card-client,
  .instagram-card-education {
    width: 100%;
    height: 230px;
    grid-column: auto;
  }

  .instagram-card span {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: .45rem;
  }

  .contact-paths {
    margin-top: 36px;
  }

  .contact-card {
    min-height: 172px;
    padding: 22px 20px;
  }

  .contact-card strong {
    max-width: 240px;
    font-size: 1.55rem;
  }

  .contact-card svg {
    width: 23px;
    height: 23px;
    right: 20px;
    bottom: 22px;
  }

  .site-footer {
    padding: 58px 0 24px;
  }

  .footer-main {
    gap: 34px 20px;
    padding-bottom: 42px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }
}

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

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

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