﻿:root {
  --black: #080808;
  --black-2: #0d0d0d;
  --ink: #f5f2ec;
  --soft: #c9c4ba;
  --muted: #8f8b84;
  --faint: #56534f;
  --rule: rgba(245, 242, 236, 0.16);
  --rule-strong: rgba(245, 242, 236, 0.34);
  --paper: rgba(245, 242, 236, 0.055);
  --paper-strong: rgba(245, 242, 236, 0.095);
  --max: 1240px;
  --gutter: clamp(18px, 4vw, 52px);
  --radius: 6px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  overflow-y: auto;
}

main,
section[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 6%, rgba(255, 255, 255, 0.09), transparent 24rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 42rem),
    var(--black);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(115deg, transparent 0 44%, #fff 44.2% 44.35%, transparent 44.55% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 38%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 20px 20px;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 24px), var(--max));
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  transition: height 220ms ease, top 220ms ease, padding 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  height: 62px;
  padding: 0 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
}

.brand::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.72;
}

.brand:has(img:not([hidden]))::before {
  display: none;
}

.brand img {
  display: block;
  width: 162px;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.brand img:not([hidden]) + span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--ink) !important;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(245, 242, 236, 0.035);
}

.nav-cta:hover {
  border-color: var(--rule-strong);
  background: rgba(245, 242, 236, 0.075);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(245, 242, 236, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.hero {
  width: min(calc(100% - var(--gutter) - var(--gutter)), var(--max));
  min-height: 76vh;
  margin-inline: auto;
  padding: 96px 0 32px;
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding-top: 18px;
}

.eyebrow,
.section-label {
  display: inline-block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
}

h1 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(3.85rem, 5.7vw, 5.7rem);
  line-height: 1;
  letter-spacing: -0.012em;
}

h1 span {
  display: block;
}

h1 span:last-child {
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  font-size: 5.8rem;
  line-height: 0.98;
}

h3 {
  margin-bottom: 0;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-board {
  min-height: 640px;
  perspective: 1500px;
}

.board-frame {
  position: relative;
  height: 100%;
  min-height: 640px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 58% 34%, rgba(245, 242, 236, 0.16), transparent 17rem),
    radial-gradient(circle at 86% 70%, rgba(245, 242, 236, 0.09), transparent 12rem),
    linear-gradient(148deg, rgba(255, 255, 255, 0.08), transparent 36rem);
  box-shadow: none;
}

.board-frame::before,
.board-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.board-frame::before {
  display: none;
}

.board-frame::after {
  right: -10%;
  bottom: 1%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 242, 236, 0.14);
  border-radius: 50%;
  opacity: 0.34;
}

.media-slot {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 242, 236, 0.1), transparent 36%),
    repeating-linear-gradient(0deg, rgba(245, 242, 236, 0.04) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(245, 242, 236, 0.035) 0 1px, transparent 1px 28px),
    #101010;
}

.media-slot::before {
  content: attr(data-label);
  position: absolute;
  left: 22px;
  top: 20px;
  z-index: 1;
  color: rgba(245, 242, 236, 0.54);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-slot::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245, 242, 236, 0.1);
  pointer-events: none;
}

.media-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 420ms var(--ease), opacity 220ms ease;
}

.media-slot img[hidden] {
  display: none;
}

.board-frame > img {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.board-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 28px;
}

.showcase-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 236, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 32%),
    #101010;
  box-shadow:
    0 42px 118px rgba(0, 0, 0, 0.58),
    0 0 42px rgba(245, 242, 236, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), border-color 420ms ease;
}

.showcase-card::before {
  display: none;
}

.showcase-card::after {
  inset: 0;
  border-color: rgba(245, 242, 236, 0.12);
}

.showcase-main::after {
  display: none;
}

.showcase-card img {
  filter: grayscale(0) saturate(1.04) contrast(1.1) brightness(1.06);
}

.showcase-main {
  left: -22px;
  right: -8px;
  top: 78px;
  height: 548px;
  transform: rotateX(4deg) rotateY(10deg) rotateZ(2.2deg) translate3d(0, 0, 0);
  transform-origin: center center;
  box-shadow:
    0 54px 140px rgba(0, 0, 0, 0.64),
    0 0 46px rgba(245, 242, 236, 0.1);
}

.showcase-main img {
  height: 100%;
  object-position: center 6%;
}

.showcase-support {
  left: -8px;
  bottom: 10px;
  width: 178px;
  height: 324px;
  border-radius: 24px;
  background: rgba(245, 242, 236, 0.92);
  transform: rotateX(2deg) rotateY(-6deg) rotateZ(-7deg) translate3d(0, 0, 86px);
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(245, 242, 236, 0.13);
}

.showcase-support::after {
  border-color: rgba(245, 242, 236, 0.16);
}

.showcase-support img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.06) contrast(1.06) brightness(1.02);
  transform: none;
  transform-origin: center;
}

.showcase-label {
  position: absolute;
  left: 6px;
  top: 22px;
  z-index: 4;
  color: rgba(245, 242, 236, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 10px;
  background: rgba(245, 242, 236, 0.36);
}

.brand-board:hover .showcase-main {
  transform: rotateX(2deg) rotateY(6deg) rotateZ(1.2deg) translate3d(18px, -26px, 58px) scale(1.045);
  border-color: rgba(245, 242, 236, 0.38);
  box-shadow:
    0 86px 196px rgba(0, 0, 0, 0.76),
    0 0 76px rgba(245, 242, 236, 0.16);
}

.brand-board:hover .showcase-support {
  transform: rotateX(1deg) rotateY(-2deg) rotateZ(-4.8deg) translate3d(-28px, -34px, 136px) scale(1.07);
  border-color: rgba(245, 242, 236, 0.4);
  box-shadow:
    0 58px 132px rgba(0, 0, 0, 0.76),
    0 0 54px rgba(245, 242, 236, 0.16);
}

.mark-large {
  position: absolute;
  left: -0.1em;
  bottom: -0.28em;
  font-family: var(--serif);
  font-size: 27rem;
  line-height: 0.8;
  letter-spacing: 0;
  color: rgba(245, 242, 236, 0.92);
  animation: markDrift 12s var(--ease) infinite alternate;
}

.mark-name {
  position: absolute;
  top: 28px;
  left: 28px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.mark-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.mark-line {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 242, 236, 0.72), transparent);
  opacity: 0.52;
  transform-origin: left center;
}

.mark-line-one {
  top: 37%;
  animation: scanLine 5.8s ease-in-out infinite;
}

.mark-line-two {
  top: 57%;
  width: 54%;
  animation: scanLine 6.6s ease-in-out infinite 700ms;
}

.mark-line-three {
  top: 76%;
  width: 72%;
  animation: scanLine 7.2s ease-in-out infinite 1.2s;
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.7fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.hero-subhead {
  max-width: 790px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 1.28rem;
  line-height: 1.55;
}

.hero-actions p,
.belief-copy p,
.about-profile,
.portfolio-intro,
.capability-item p,
.contact-copy p,
.service-row p,
.approach-step p {
  color: var(--muted);
}

.hero-actions p {
  max-width: 520px;
  margin-bottom: 0;
}

.hero-buttons {
  margin-top: 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  gap: 8px;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.cta-icon {
  display: inline-block;
  flex: 0 0 auto;
  color: currentColor;
}

.cta-icon-stroke {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-icon-fill {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.button-secondary .cta-icon-fill {
  width: 16px;
  height: 16px;
  opacity: 0.82;
}

.header-cta-icon,
.final-cta-icon {
  transform: rotate(-8deg);
  transition: transform 180ms var(--ease);
}

.nav-cta:hover .header-cta-icon,
.contact-whatsapp-cta:hover .final-cta-icon {
  transform: translate(1px, -1px) rotate(-8deg);
}

.hero-whatsapp-icon {
  width: 17px;
  height: 17px;
}

.hero-play-icon {
  width: 16px;
  height: 16px;
  opacity: 0.9;
}

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

.button-primary {
  border: 1px solid #f5f2ec;
  background: #f5f2ec;
  color: #0b0b0b;
}

.button-secondary {
  border: 1px solid var(--rule);
  background: rgba(245, 242, 236, 0.035);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--rule-strong);
  background: rgba(245, 242, 236, 0.075);
}

.capability-strip {
  border-block: 1px solid var(--rule);
  background: rgba(8, 8, 8, 0.78);
  overflow: hidden;
}

.founder-strip {
  display: grid;
  grid-template-columns: minmax(360px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 78px);
  border-bottom: 1px solid var(--rule);
}

.founder-photo {
  min-height: 520px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.42);
}

.founder-photo::before {
  display: none;
}

.founder-photo::after {
  inset: 0;
  border-color: rgba(245, 242, 236, 0.12);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.48)),
    linear-gradient(110deg, rgba(8, 8, 8, 0.42), transparent 48%);
}

.founder-photo img {
  object-position: 50% center;
  filter: saturate(0.6) contrast(1.1) brightness(0.8);
  transform: scale(1.01);
}

.founder-photo.is-missing {
  display: grid;
  place-items: end start;
  padding: 24px;
}

.founder-photo.is-missing::before {
  position: relative;
  left: auto;
  top: auto;
  font-size: 0.86rem;
}

.founder-copy h2 {
  max-width: 980px;
  margin: 24px 0 26px;
  font-size: 4.9rem;
  line-height: 0.92;
}

.about-profile {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: 1.16rem;
  line-height: 1.62;
}

.founder-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.founder-points li {
  position: relative;
  min-height: 206px;
  padding: 22px 20px 20px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--soft);
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.048), rgba(245, 242, 236, 0.018)),
    rgba(8, 8, 8, 0.34);
  transition: transform 260ms var(--ease), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.founder-points li::after {
  content: ">";
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(245, 242, 236, 0.42);
  font-size: 0.95rem;
  transition: color 260ms ease, transform 260ms var(--ease);
}

.founder-points li:hover {
  border-color: var(--rule-strong);
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.078), rgba(245, 242, 236, 0.026)),
    rgba(8, 8, 8, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-7px);
}

.founder-points li:hover::after {
  color: var(--ink);
  transform: translate(3px, -3px);
}

.founder-points strong {
  display: block;
  max-width: 12rem;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 600;
}

.founder-points span {
  display: block;
  color: var(--muted);
  transition: color 260ms ease, transform 260ms var(--ease);
}

.founder-points small {
  display: block;
  margin-top: 20px;
  color: rgba(245, 242, 236, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
  transform: translateY(4px);
  transition: color 260ms ease, opacity 260ms ease, transform 260ms var(--ease);
}

.founder-points li:hover span,
.founder-points li:hover small {
  color: var(--soft);
  transform: translateY(0);
}

.marquee {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marqueeScroll 68s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.marquee-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-item::after {
  content: "•";
  display: inline-block;
  margin: 0 clamp(28px, 4.2vw, 64px);
  color: rgba(245, 242, 236, 0.42);
  font-size: 0.78rem;
  line-height: 1;
}

.section-wrap {
  width: min(calc(100% - var(--gutter) - var(--gutter)), var(--max));
  margin-inline: auto;
  padding: clamp(52px, 6.5vw, 92px) 0;
}

.founder-strip.section-wrap {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

.belief {
  display: grid;
  grid-template-columns: 0.28fr minmax(0, 0.92fr);
  gap: clamp(30px, 6vw, 82px);
  border-bottom: 1px solid var(--rule);
}

.portfolio {
  position: relative;
  border-bottom: 1px solid var(--rule);
}

.portfolio-head {
  display: grid;
  grid-template-columns: 0.28fr minmax(0, 1fr) auto;
  gap: clamp(30px, 6vw, 82px);
  row-gap: clamp(12px, 2vw, 22px);
  align-items: end;
  margin-bottom: clamp(24px, 3.6vw, 42px);
}

.portfolio-head h2 {
  grid-column: 2 / 4;
  max-width: 900px;
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  line-height: 0.9;
}

.portfolio-intro {
  grid-column: 2;
  max-width: 760px;
  margin: -6px 0 0;
  font-size: 1.06rem;
  line-height: 1.62;
}

.portfolio-controls {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  gap: 10px;
  margin-top: -6px;
}

.portfolio-control {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(245, 242, 236, 0.035);
  cursor: pointer;
  transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.portfolio-control svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-control:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: var(--rule-strong);
  background: rgba(245, 242, 236, 0.07);
}

.portfolio-control:disabled {
  opacity: 0.35;
  cursor: default;
}

.portfolio-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, calc((100% - 36px) / 3));
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 22px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-color: var(--rule-strong) transparent;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.portfolio-rail::-webkit-scrollbar {
  display: none;
}

.portfolio-rail.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.portfolio-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(245, 242, 236, 0.035);
  scroll-snap-align: start;
  transition: border-color 220ms ease, transform 220ms var(--ease), background 220ms ease;
}

.portfolio-card:hover {
  border-color: var(--rule-strong);
  transform: translateY(-4px);
  background: rgba(245, 242, 236, 0.055);
}

.portfolio-image {
  display: block;
  aspect-ratio: 16 / 11;
  border-bottom: 1px solid var(--rule);
}

.portfolio-image::before,
.portfolio-image::after {
  display: none;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.045);
}

.portfolio-image img {
  filter: none;
  object-position: center;
}

.portfolio-card-portrait .portfolio-image {
  background:
    radial-gradient(circle at 50% 34%, rgba(245, 242, 236, 0.08), transparent 14rem),
    #111;
}

.portfolio-card-portrait .portfolio-image img {
  width: min(58%, 214px);
  margin-inline: auto;
  object-fit: cover;
  object-position: center 32%;
}

.portfolio-card-launch .portfolio-image {
  background:
    radial-gradient(circle at 50% 40%, rgba(222, 154, 54, 0.24), transparent 14rem),
    linear-gradient(135deg, rgba(78, 42, 13, 0.9), rgba(12, 10, 8, 0.96));
}

.portfolio-card-launch .portfolio-image img {
  width: min(68%, 248px);
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}

.portfolio-card-bigbird .portfolio-image img {
  object-position: center 42%;
}

.portfolio-body {
  padding: 22px;
}

.portfolio-role {
  display: block;
  min-height: 42px;
  margin-bottom: 18px;
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-body h3 {
  min-height: 76px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.portfolio-body p {
  min-height: 72px;
  margin: 18px 0 24px;
  color: var(--muted);
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease;
}

.text-link:hover {
  border-color: var(--rule-strong);
  background: rgba(245, 242, 236, 0.07);
}

.belief-copy p {
  max-width: 760px;
  margin-top: 26px;
  margin-bottom: 0;
  font-size: 1.45rem;
  line-height: 1.5;
}

.belief-copy p + p {
  margin-top: 16px;
}

.proof-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.proof-list li {
  min-height: 126px;
  padding: 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--soft);
  font-size: 1.18rem;
}

.section-head {
  display: grid;
  grid-template-columns: 0.28fr minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  margin-bottom: clamp(48px, 7vw, 84px);
}

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

.service-row {
  display: grid;
  grid-template-columns: 56px minmax(220px, 0.5fr) minmax(320px, 1fr);
  gap: clamp(20px, 4.2vw, 52px);
  align-items: start;
  padding: clamp(24px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--rule);
  transition: background 180ms ease, border-color 180ms ease;
}

.service-row:hover {
  background: rgba(245, 242, 236, 0.02);
  border-color: rgba(245, 242, 236, 0.24);
}

.service-row:hover h3 {
  color: var(--ink);
  transform: translateX(4px);
}

.service-number {
  color: var(--faint);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding-top: 4px;
}

.service-row h3 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  transition: color 180ms ease, transform 180ms var(--ease);
}

.service-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  fill: none;
  stroke: rgba(245, 242, 236, 0.72);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 180ms ease, transform 180ms var(--ease);
}

.service-row:hover .service-icon {
  stroke: rgba(245, 242, 236, 0.92);
  transform: translateX(1px);
}

.service-row p {
  max-width: 620px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
}

.services .section-head h2 {
  max-width: none;
  font-size: clamp(2.7rem, 4.6vw, 4.6rem);
  line-height: 1.04;
  white-space: nowrap;
}

.services.section-wrap {
  padding-bottom: clamp(34px, 4vw, 58px);
}

.who {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 7vw, 94px);
  border-bottom: 1px solid var(--rule);
}

.who.section-wrap {
  padding-top: clamp(34px, 4vw, 58px);
}

.who-title h2 {
  margin-top: 26px;
}

.who-grid {
  display: grid;
  gap: 10px;
}

.who-card {
  min-height: 84px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(245, 242, 236, 0.03);
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.5;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease), color 180ms ease;
}

.help-check-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 0;
  fill: none;
  stroke: rgba(245, 242, 236, 0.66);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 180ms ease;
}

.who-card:hover {
  transform: translateY(-2px);
  border-color: var(--rule-strong);
  background: rgba(245, 242, 236, 0.055);
  color: var(--ink);
}

.who-card:hover .help-check-icon {
  stroke: rgba(245, 242, 236, 0.92);
}

.selected {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: start;
  border-block: 1px solid var(--rule);
}

.image-led {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(420px, 0.92fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.image-led-copy h2 {
  margin-top: 26px;
  font-size: clamp(3.8rem, 6.5vw, 5.8rem);
  line-height: 0.92;
}

.image-led-copy p {
  max-width: 520px;
  color: var(--muted);
}

.proof-carousel {
  position: relative;
  min-width: 0;
}

.proof-carousel-viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background:
    radial-gradient(circle at 78% 12%, rgba(245, 242, 236, 0.1), transparent 17rem),
    rgba(245, 242, 236, 0.028);
  box-shadow:
    0 34px 98px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(245, 242, 236, 0.06);
  transition: transform 260ms var(--ease), border-color 220ms ease, box-shadow 260ms ease;
}

.proof-carousel:hover .proof-carousel-viewport {
  transform: translateY(-4px);
  border-color: rgba(245, 242, 236, 0.26);
  box-shadow:
    0 44px 118px rgba(0, 0, 0, 0.56),
    0 0 42px rgba(245, 242, 236, 0.08);
}

.proof-carousel-track {
  display: flex;
  transition: transform 520ms var(--ease);
  will-change: transform;
}

.proof-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  padding: 12px;
}

.proof-media {
  height: clamp(420px, 44vw, 590px);
  border-radius: 10px;
  border: 1px solid rgba(245, 242, 236, 0.12);
  background:
    linear-gradient(135deg, rgba(245, 242, 236, 0.08), transparent 38%),
    #0e0e0e;
}

.proof-media::before {
  opacity: 0;
}

.proof-media::after {
  inset: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 44%);
}

.proof-media img {
  filter: saturate(0.92) contrast(1.06) brightness(0.96);
  object-position: center;
}

.proof-slide.is-active .proof-media img {
  transform: scale(1.018);
}

.proof-carousel:hover .proof-slide.is-active .proof-media img {
  transform: scale(1.045);
}

.proof-slide.is-portrait .proof-media {
  background:
    radial-gradient(circle at 50% 38%, rgba(245, 242, 236, 0.06), transparent 16rem),
    #0d0d0d;
}

.proof-slide.is-portrait .proof-media img {
  object-fit: contain;
  object-position: center;
}

.proof-slide.is-timeline .proof-media img {
  object-fit: contain;
  object-position: center;
  filter: saturate(1) contrast(1.04) brightness(0.98);
}

.proof-caption {
  position: absolute;
  left: 30px;
  bottom: 28px;
  z-index: 2;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(245, 242, 236, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.62);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.proof-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.proof-arrow {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: rgba(245, 242, 236, 0.035);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease;
}

.proof-arrow:hover {
  transform: translateY(-2px);
  border-color: var(--rule-strong);
  background: rgba(245, 242, 236, 0.075);
}

.proof-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(245, 242, 236, 0.32);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: width 220ms var(--ease), border-color 180ms ease, background 180ms ease;
}

.proof-dot.is-active {
  width: 26px;
  border-radius: 999px;
  border-color: rgba(245, 242, 236, 0.74);
  background: rgba(245, 242, 236, 0.68);
}

.selected-title {
  position: relative;
  top: auto;
}

.selected-title h2 {
  margin-top: 28px;
}

.capability-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.capability-item {
  padding: 34px 0;
  border-bottom: 1px solid var(--rule);
}

.capability-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.85rem;
  font-weight: 500;
}

.capability-item p {
  margin-bottom: 0;
}

.approach {
  border-bottom: 1px solid var(--rule);
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.approach-step {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(245, 242, 236, 0.045), transparent);
}

.approach-step span {
  display: block;
  margin-bottom: 70px;
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.approach-step p {
  margin-bottom: 0;
}

.contact {
  position: relative;
  display: block;
  overflow: visible;
  padding-top: clamp(42px, 5.2vw, 78px);
  padding-bottom: clamp(70px, 8vw, 118px);
  border-top: 1px solid var(--rule);
  text-align: center;
}
.contact-copy {
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-copy h2 {
  max-width: 860px;
  margin: 0 0 22px;
}
.contact-copy p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.28vw, 1.2rem);
}
.contact .button-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.contact-whatsapp-cta {
  min-height: 70px;
  padding: 20px 40px;
  border-radius: 999px;
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  letter-spacing: 0.08em;
  border: 1px solid #f5f2ec;
  background: #f5f2ec;
  color: #090909;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.44), 0 0 0 rgba(245, 242, 236, 0.2);
  animation: finalCtaFloat 5.3s ease-in-out infinite, finalCtaGlow 4.9s ease-in-out infinite;
}
.contact-whatsapp-cta:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.48), 0 0 26px rgba(245, 242, 236, 0.24);
  animation-duration: 4.2s, 3.6s;
}
.contact-whatsapp-cta:focus-visible {
  outline: 2px solid rgba(245, 242, 236, 0.6);
  outline-offset: 4px;
}
@keyframes finalCtaFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes finalCtaGlow {
  0%,
  100% {
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.4), 0 0 0 rgba(245, 242, 236, 0.18);
  }
  50% {
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.44), 0 0 22px rgba(245, 242, 236, 0.24);
  }
}
.linkedin-icon-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: rgba(245, 242, 236, 0.86);
  background: rgba(245, 242, 236, 0.02);
  transition: transform 180ms var(--ease), color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.linkedin-icon-link:hover {
  transform: translateY(-2px);
  color: var(--ink);
  border-color: rgba(245, 242, 236, 0.58);
  background: rgba(245, 242, 236, 0.07);
}
.linkedin-icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer {
  width: min(calc(100% - var(--gutter) - var(--gutter)), var(--max));
  margin-inline: auto;
  padding: 34px 0 44px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

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

.site-footer .brand img {
  width: 142px;
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 242, 236, 0.56);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.94);
  color: var(--ink);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.54), 0 0 28px rgba(245, 242, 236, 0.1);
  isolation: isolate;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border: 1px solid rgba(245, 242, 236, 0.2);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.9);
  animation: whatsappPulse 2.8s ease-out infinite;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px) scale(1.06);
  border-color: rgba(245, 242, 236, 0.78);
  background: rgba(18, 18, 18, 0.96);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.54),
    0 0 34px rgba(245, 242, 236, 0.13);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  flex: 0 0 auto;
}

.whatsapp-bubble {
  position: absolute;
  right: 72px;
  bottom: 6px;
  width: 198px;
  padding: 13px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.92);
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.35;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px) translateY(4px);
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.floating-whatsapp:hover .whatsapp-bubble,
.floating-whatsapp:focus-visible .whatsapp-bubble,
.floating-whatsapp.is-bubble-visible .whatsapp-bubble {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

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

@keyframes markDrift {
  from {
    transform: translate3d(-1.6%, 0, 0) skewX(-1deg);
  }
  to {
    transform: translate3d(1.2%, -1.2%, 0) skewX(1deg);
  }
}

@keyframes scanLine {
  0%,
  100% {
    opacity: 0.2;
  }
  48% {
    opacity: 0.72;
  }
}

@keyframes marqueeScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes whatsappPulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  18% {
    opacity: 0.38;
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .hero-lower,
  .belief,
  .founder-strip,
  .portfolio-head,
  .section-head,
  .who,
  .selected,
  .image-led,
  .contact {
    grid-template-columns: 1fr;
  }

  .brand-board {
    min-height: auto;
  }

  .board-frame {
    min-height: 540px;
  }

  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 5rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  .mark-large {
    font-size: 22rem;
  }

  .hero-subhead {
    font-size: 1.16rem;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: 10px;
    top: 50%;
    width: auto;
    min-width: 72px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    z-index: 3;
    background: rgba(245, 242, 236, 0.14);
    transform: translateY(-50%);
  }

  .nav-toggle::before {
    content: "Menu";
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-toggle::after {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(245, 242, 236, 0.18);
    border-radius: inherit;
    pointer-events: none;
  }

  .nav-toggle span {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--rule);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink) !important;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(245, 242, 236, 0.035);
}

  .founder-copy h2,
  .portfolio-head h2,
  .image-led-copy h2 {
    font-size: 4.25rem;
  }

  .portfolio-head h2 {
    grid-column: auto;
  }

  .founder-points {
    grid-template-columns: 1fr;
  }

  .portfolio-intro {
    grid-column: auto;
    margin-top: -12px;
  }

  .portfolio-controls {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    margin-top: 0;
  }

  .portfolio-rail {
    grid-auto-columns: minmax(310px, 48%);
  }

  .proof-media {
    height: 460px;
  }

  .proof-controls {
    justify-content: space-between;
  }

  .proof-list {
    grid-column: auto;
  }

  .selected-title {
    position: static;
  }

  .approach-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
  }

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

  main,
  section[id] {
    scroll-margin-top: 96px;
  }

  .brand img {
    width: 132px;
  }

  .site-footer .brand img {
    width: 122px;
  }

  .hero {
    width: min(calc(100% - 40px), var(--max));
    min-height: auto;
    padding-top: 104px;
    overflow: hidden;
  }

  .hero-grid {
    width: 100%;
    min-width: 0;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: 3.55rem;
    line-height: 1.02;
  }

  h1 span:last-child {
    white-space: normal;
  }

  h2 {
    font-size: 4rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  .board-frame {
    width: 100%;
    min-height: 540px;
  }

  .mark-large {
    font-size: 14.5rem;
  }

  .board-overlay {
    padding: 20px;
  }

  .showcase-main {
    left: 2vw;
    right: 2vw;
    top: 54px;
    width: auto;
    height: 446px;
    transform: rotateX(2deg) rotateY(5deg) rotateZ(1.2deg);
  }

  .showcase-support {
    display: block;
    left: 18px;
    bottom: 6px;
    width: 146px;
    height: 266px;
    transform: rotateX(1deg) rotateY(-4deg) rotateZ(-6deg) translate3d(0, 0, 62px);
  }

  .services .section-head h2 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: normal;
    font-size: clamp(2.75rem, 12vw, 4rem);
    line-height: 0.98;
  }

  .showcase-label {
    left: 20px;
    top: 20px;
  }

  .hero-subhead {
    font-size: 1.05rem;
  }

  .founder-photo {
    min-height: 380px;
  }

  .founder-points li {
    min-height: auto;
  }

  .belief-copy p,
  .about-profile,
  .portfolio-intro,
  .contact-copy p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.28vw, 1.2rem);
}

  .proof-list li {
    font-size: 1rem;
  }

  .capability-item span {
    font-size: 1.45rem;
  }

  .mark-caption {
    writing-mode: horizontal-tb;
    right: auto;
    left: 28px;
    bottom: 24px;
  }

  .proof-list,
  .approach-list {
    grid-template-columns: 1fr;
  }

  .portfolio-rail {
    grid-auto-columns: minmax(286px, 86%);
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
  }

  .portfolio-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .portfolio-body h3,
  .portfolio-body p,
  .portfolio-role {
    min-height: auto;
  }

  .service-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px 16px;
    align-items: start;
  }

  .service-row:hover {
    background: rgba(245, 242, 236, 0.02);
  }

  .service-row h3,
  .service-row p {
    grid-column: 2;
  }

  .service-row h3 {
    transform: none;
  }

  .service-row p {
    margin-top: 2px;
  }

  .approach-step {
    min-height: 190px;
  }

  .approach-step span {
    margin-bottom: 34px;
  }

  .floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 242, 236, 0.56);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.94);
  color: var(--ink);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.54), 0 0 28px rgba(245, 242, 236, 0.1);
  isolation: isolate;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

  .floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  flex: 0 0 auto;
}

  .whatsapp-bubble {
    right: 0;
    bottom: calc(100% + 12px);
    width: min(216px, calc(100vw - 40px));
    padding: 12px 13px;
    font-size: 0.8rem;
    transform: translateY(6px);
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .founder-copy h2,
  .portfolio-head h2,
  .image-led-copy h2 {
    font-size: 3rem;
  }

  .proof-slide {
    padding: 9px;
  }

  .proof-media {
    height: 360px;
  }

  .proof-caption {
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
  }

  .proof-arrow {
    width: 38px;
    height: 38px;
  }

  .button {
  gap: 8px;
    width: 100%;
    min-height: 52px;
  }

  .board-frame {
    min-height: 430px;
  }

  .showcase-main {
    left: 0;
    right: 0;
    top: 58px;
    height: 320px;
    transform: rotateX(1deg) rotateY(2deg) rotateZ(0.8deg);
  }

  .showcase-support {
    display: block;
    left: 2px;
    bottom: 8px;
    width: min(39vw, 148px);
    height: min(71vw, 268px);
    border-radius: 18px;
    transform: rotateX(1deg) rotateY(-3deg) rotateZ(-5.5deg) translate3d(0, 0, 48px);
  }

  .mark-large {
    font-size: 12.5rem;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.65rem;
  }

  .hero {
    width: min(calc(100% - 32px), var(--max));
  }

  .showcase-support {
    width: 38vw;
    height: 70vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

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

@media (max-width: 760px) {
  .contact-whatsapp-cta {
  min-height: 70px;
  padding: 20px 40px;
  border-radius: 999px;
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  letter-spacing: 0.08em;
  border: 1px solid #f5f2ec;
  background: #f5f2ec;
  color: #090909;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.44), 0 0 0 rgba(245, 242, 236, 0.2);
  animation: finalCtaFloat 5.3s ease-in-out infinite, finalCtaGlow 4.9s ease-in-out infinite;
}
}


