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

:root {
  --white: #FFFFFF;
  --ink: #0F0F0D;
  --black: #000000;
  --orange: #FF5C00;
  --orange-dark: #E84F00;
  --muted: #6E6E68;
  --line: rgba(15, 15, 13, .14);
  --line-strong: rgba(15, 15, 13, .30);
  --white-line: rgba(255,255,255,.18);
  --display: "Bebas Neue", sans-serif;
  --body: "DM Sans", sans-serif;
  --mono: "DM Mono", monospace;
  --max: 1540px;
  --gut: clamp(20px, 4vw, 70px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: smooth; background: var(--white); }
body {
  min-height: 100vh;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { border: 0; background: transparent; color: inherit; cursor: pointer; }
::selection { background: var(--orange); color: var(--white); }

.container { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--gut); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  width: fit-content;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 44px);
  line-height: .8;
  letter-spacing: .012em;
  text-transform: lowercase;
}
.brand span { color: var(--orange); }

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
}
.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color .18s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta { justify-self: end; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .18s var(--ease), background .18s ease, color .18s ease, border-color .18s ease;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-line { background: var(--white); border: 1px solid var(--line-strong); color: var(--ink); }
.btn-line:hover { border-color: var(--orange); color: var(--orange); }
.btn-black { background: var(--ink); color: var(--white); }
.btn-black:hover { background: var(--orange); }

.burger {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  place-items: center;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-102%);
  transition: transform .48s var(--ease);
  display: grid;
  place-items: center;
  padding: var(--gut);
}
.mobile-menu.is-open { transform: translateY(0); }

.mobile-close {
  position: absolute;
  top: 22px;
  right: var(--gut);
  width: 52px;
  height: 52px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}
.mobile-nav {
  display: grid;
  gap: 12px;
  text-align: center;
}
.mobile-nav a {
  font-family: var(--display);
  font-size: clamp(54px, 12vw, 112px);
  line-height: .82;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.mobile-nav a:nth-child(even) { color: var(--orange); }

.hero,
.page-hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: 100svh;
  padding-top: 76px;
  display: flex;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(54px, 7vw, 96px) var(--gut);
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 98px);
}

.hero-super,
.page-watermark {
  position: absolute;
  z-index: -4;
  left: 50%;
  bottom: -4.5vw;
  width: 160vw;
  color: rgba(15,15,13,.035);
  font-family: var(--display);
  font-size: clamp(150px, 24vw, 390px);
  line-height: .72;
  letter-spacing: .035em;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  transform: translateX(-50%);
}

.orange-slab {
  position: absolute;
  left: 0;
  top: 19%;
  z-index: -2;
  width: min(38vw, 560px);
  height: min(62vh, 690px);
  background: var(--orange);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(25% - 1px), rgba(15,15,13,.07) calc(25% - 1px), rgba(15,15,13,.07) 25%, transparent 25%),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(15,15,13,.05) calc(50% - 1px), rgba(15,15,13,.05) 50%, transparent 50%),
    linear-gradient(90deg, transparent calc(75% - 1px), rgba(15,15,13,.05) calc(75% - 1px), rgba(15,15,13,.05) 75%, transparent 75%);
}

.portrait-col {
  position: relative;
  min-height: clamp(520px, 72vh, 800px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.portrait-frame {
  position: relative;
  width: min(100%, 650px);
  height: clamp(520px, 72vh, 800px);
  overflow: visible;
}
.portrait {
  position: absolute;
  left: 50%;
  bottom: -3%;
  z-index: 2;
  width: min(120%, 720px);
  height: 106%;
  object-fit: contain;
  object-position: bottom center;
  transform: translateX(-50%);
  filter: contrast(1.08) saturate(1.02);
}
.portrait-shadow {
  position: absolute;
  left: 10%;
  right: 4%;
  bottom: 1%;
  z-index: 1;
  height: 26%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.16), transparent 68%);
  transform: rotate(-3deg);
}
.vertical-note {
  position: absolute;
  left: -18px;
  top: 18%;
  z-index: 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 18px 11px;
  border-radius: 999px;
}
.parallax-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  pointer-events: none;
}
.chip-a { right: -12px; top: 28%; }
.chip-b { left: -16px; bottom: 20%; background: var(--orange); border-color: var(--orange); color: var(--white); }

.hero-copy {
  text-align: right;
  justify-self: end;
  display: grid;
  justify-items: end;
  gap: clamp(18px, 3vw, 30px);
  max-width: 940px;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,92,0,.24);
  color: var(--orange);
  background: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tagline::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
.page-title {
  font-family: var(--display);
  font-size: clamp(72px, 10.7vw, 174px);
  line-height: .82;
  letter-spacing: .018em;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 span,
.page-title span,
.title span { color: var(--orange); }

.hero-lead,
.page-lead {
  max-width: 790px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.32;
  font-weight: 650;
  text-wrap: pretty;
}

.hero-text,
.page-text {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.proof-item { background: var(--white); padding: 23px 22px; }
.proof-item strong,
.stat strong {
  display: block;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 68px);
  line-height: .8;
  margin-bottom: 9px;
}
.proof-item span,
.stat span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
  padding-block: 12px;
  border-bottom: 1px solid var(--ink);
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-inline: 26px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee span::after { content: "·"; opacity: .4; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section {
  position: relative;
  padding-block: clamp(88px, 11vw, 170px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.section-dark { background: var(--ink); color: var(--white); }
.section-orange { background: var(--orange); color: var(--white); }

.section-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(42px, 7vw, 96px);
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }

.title {
  font-family: var(--display);
  font-size: clamp(54px, 7.2vw, 122px);
  line-height: .86;
  letter-spacing: .018em;
  text-transform: uppercase;
  text-wrap: balance;
}
.text {
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
  font-weight: 300;
}
.section-dark .text { color: rgba(255,255,255,.68); }

.big-watermark {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 3%;
  width: 140vw;
  color: rgba(15,15,13,.035);
  font-family: var(--display);
  font-size: clamp(130px, 21vw, 330px);
  line-height: .75;
  text-align: center;
  letter-spacing: .035em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  transform: translateX(-50%);
}
.section-dark .big-watermark { color: rgba(255,255,255,.055); }

.grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  min-height: 285px;
  padding: 32px 30px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
}
.card::after {
  content: attr(data-n);
  position: absolute;
  right: 18px;
  bottom: -24px;
  color: rgba(15,15,13,.045);
  font-family: var(--display);
  font-size: 158px;
  line-height: 1;
  pointer-events: none;
}
.card-kicker,
.project-tag,
.plan-tag,
.flow-n {
  position: relative;
  z-index: 1;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.card h3 {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(36px, 3.6vw, 58px);
  line-height: .86;
  letter-spacing: .018em;
  text-transform: uppercase;
}
.card p,
.card li {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  font-weight: 300;
}
.card ul { list-style: none; display: grid; gap: 9px; }
.card li { padding-left: 18px; position: relative; }
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  transform: translateY(-50%);
}

.card-wide {
  grid-column: 1 / -1;
  min-height: 240px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .85fr) auto;
  align-items: end;
  gap: 32px;
}
.card-wide::after { color: rgba(255,255,255,.05); }
.card-wide p { color: rgba(255,255,255,.7); max-width: 680px; }

.projects-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 24px;
}
.project-main,
.project-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.project-main-media {
  position: relative;
  height: clamp(340px, 40vw, 570px);
  overflow: hidden;
  background: var(--white);
}
.project-main-media img,
.project-card img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(var(--py, 0px));
  will-change: transform;
}
.project-body { padding: clamp(30px, 4vw, 56px); }
.project-main h3,
.project-card h3 {
  font-family: var(--display);
  font-size: clamp(42px, 5.4vw, 92px);
  line-height: .84;
  letter-spacing: .018em;
  text-transform: uppercase;
  margin: 14px 0;
}
.project-main p,
.project-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 300;
}
.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  margin-top: 30px;
}
.stat { background: var(--white); padding: 18px; }
.project-stack { display: grid; gap: 24px; }
.project-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 228px;
}
.project-card-media { overflow: hidden; background: var(--white); }
.project-card .project-body { padding: 26px; align-self: center; }
.project-card h3 { font-size: clamp(34px, 3.6vw, 54px); }

.drag-section { position: relative; z-index: 2; overflow: hidden; cursor: grab; }
.drag-section.is-dragging { cursor: grabbing; }
.drag-track {
  display: flex;
  gap: 24px;
  width: max-content;
  user-select: none;
  transform: translateX(0);
  transition: transform .08s linear;
}
.drag-card {
  width: min(78vw, 460px);
  min-height: 520px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  flex: 0 0 auto;
}
.drag-card img { width: 100%; height: 310px; object-fit: cover; pointer-events: none; }
.drag-card div { padding: 28px; }
.drag-card h3 {
  font-family: var(--display);
  font-size: 54px;
  line-height: .86;
  text-transform: uppercase;
  margin: 12px 0;
}
.drag-card p { color: var(--muted); line-height: 1.7; font-size: 14px; font-weight: 300; }

.system-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.16);
}
.system-copy,
.flow-list { background: var(--ink); }
.system-copy {
  padding: clamp(34px, 4vw, 60px);
  display: grid;
  gap: 34px;
  align-content: space-between;
}
.system-copy .title { font-size: clamp(52px, 6vw, 102px); }
.flow-list { display: grid; gap: 1px; background: rgba(255,255,255,.16); }
.flow {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 32px;
  background: var(--ink);
}
.flow h3 {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 62px);
  line-height: .86;
  letter-spacing: .018em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.flow p {
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.72;
  font-weight: 300;
}

.plans { grid-template-columns: repeat(3, 1fr); }
.plan {
  min-height: 420px;
  padding: 34px 30px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.plan:nth-child(2) { background: var(--orange); color: var(--white); }
.plan:nth-child(2) .plan-tag,
.plan:nth-child(2) .price,
.plan:nth-child(2) p,
.plan:nth-child(2) li { color: var(--white); }
.plan h3 {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 76px);
  line-height: .84;
  letter-spacing: .018em;
  text-transform: uppercase;
  margin: 14px 0 10px;
}
.price {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(50px, 5.5vw, 84px);
  line-height: .84;
}
.plan p,
.plan li { color: var(--muted); font-size: 14px; line-height: 1.68; font-weight: 300; }
.plan ul { list-style: none; display: grid; gap: 9px; }
.plan li { position: relative; padding-left: 18px; }
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--orange);
}
.plan:nth-child(2) li::before { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact-panel,
.form-panel {
  background: var(--white);
  padding: clamp(32px, 4vw, 58px);
}
.contact-panel .title { font-size: clamp(52px, 6vw, 100px); }
.form {
  display: grid;
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
}
label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  padding: 16px 14px;
  border-radius: 0;
  outline: none;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--orange); }

.final {
  position: relative;
  padding-block: clamp(90px, 11vw, 175px);
  background: var(--orange);
  color: var(--white);
  overflow: hidden;
}
.final::before {
  content: "diazuxstudio";
  position: absolute;
  left: 50%;
  top: 12%;
  width: 160vw;
  transform: translateX(-50%);
  color: rgba(255,255,255,.13);
  font-family: var(--display);
  font-size: clamp(130px, 20vw, 320px);
  line-height: .75;
  letter-spacing: .035em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.final-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
}
.final h2 {
  font-family: var(--display);
  font-size: clamp(60px, 8.4vw, 134px);
  line-height: .86;
  letter-spacing: .018em;
  text-transform: uppercase;
  text-wrap: balance;
}
.final p {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

.footer { background: var(--ink); color: rgba(255,255,255,.52); padding-block: 34px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer .brand { color: rgba(255,255,255,.38); }
.footer-links { list-style: none; display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.52); font-size: 13px; transition: color .18s ease; }
.footer-links a:hover { color: var(--white); }

.whatsapp {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
}

.reveal,
.line-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-visible,
.line-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.line-delay-1 { transition-delay: .08s; }
.line-delay-2 { transition-delay: .16s; }
.line-delay-3 { transition-delay: .24s; }

@media (max-width: 1180px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: grid; }
  .hero-grid,
  .section-head,
  .projects-layout,
  .system-grid,
  .contact-grid,
  .final-grid { grid-template-columns: 1fr; }
  .hero-copy {
    justify-self: stretch;
    justify-items: start;
    text-align: left;
    max-width: 100%;
  }
  .hero-actions { justify-content: flex-start; }
  .portrait-col { order: 2; }
  .portrait-frame { width: min(100%, 700px); }
  .orange-slab { width: 56vw; height: 54vh; }
  .grid-3, .grid-4, .plans { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero { min-height: auto; }
  .hero-grid { padding-top: 44px; padding-bottom: 44px; }
  h1, .page-title { font-size: clamp(64px, 18vw, 108px); }
  .portrait-col { min-height: 430px; }
  .portrait-frame { height: 460px; }
  .portrait { height: 106%; }
  .orange-slab { width: 76vw; height: 390px; top: auto; bottom: 5%; }
  .vertical-note, .parallax-chip { display: none; }
  .hero-proof,
  .grid-3, .grid-4,
  .project-stats,
  .plans { grid-template-columns: 1fr; }
  .project-card { grid-template-columns: 1fr; }
  .project-card-media { height: 220px; }
  .hero-actions, .final .btn, .btn { width: 100%; }
  .flow { grid-template-columns: 38px 1fr; padding: 24px; }
  .whatsapp {
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 0;
  }
  .whatsapp::before { content: "WA"; font-size: 13px; }
}

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