:root {
  --ink: #12100d;
  --charcoal: #181410;
  --deep: #0d0c0a;
  --paper: #f4efe6;
  --paper-2: #e7ddcf;
  --muted: #776c5c;
  --gold: #c99a45;
  --gold-2: #f0ce82;
  --green: #35cf72;
  --line: rgba(30, 24, 16, 0.13);
  --line-light: rgba(255, 246, 224, 0.18);
  --white: #fffaf0;
  --shadow: 0 24px 80px rgba(18, 12, 4, 0.22);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
  --font-display: din, sans-serif;
  --font-body: din, sans-serif;
}

@font-face {
  font-family: "din";
  src: url("fonts/din-2014-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "din";
  src: url("fonts/din-2014-demi.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "din";
  src: url("fonts/din-2014-demi.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "din";
  src: url("fonts/din-2014-demi.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

::selection {
  background: #c99a45;
  color: black;
}

ul, ol {
  list-style: none;
}

html {
  /* scroll-behavior: smooth; */
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-dark {
  color: var(--white);
  background: var(--deep);
}

.section-light {
  background: #eee5d8;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 32px;
  padding-right: 32px;
  background-color: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  transition: padding 0.35s ease;
}

.site-header.is-scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: transparent !important;
  box-shadow: none !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  transform: translateX(clamp(34px, 5vw, 78px));
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.site-header.is-scrolled .brand {
  transform: translateX(0);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240, 206, 130, 0.72);
  border-radius: 50%;
  color: var(--gold-2);
  background: linear-gradient(145deg, #1a1714, #44311a);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  max-width: 220px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  transition: height 0.7s cubic-bezier(0.19, 1, 0.22, 1), filter 0.7s ease;
}

.site-header.is-scrolled .brand-logo {
  height: 46px;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 250, 240, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 4px;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.site-header.is-scrolled .main-nav {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px);
}

.main-nav a {
  position: relative;
  padding: 10px 13px;
  color: rgba(255, 250, 240, 0.74);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-2);
  transition: transform 0.28s ease;
}

.main-nav a:hover {
  color: var(--white);
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.header-cta,
.button.header-cta,
.button-primary {
  color: #161009;
  background: linear-gradient(135deg, #f3d78e, #c79535);
  box-shadow: 0 14px 38px rgba(201, 154, 69, 0.28);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px 0 72px;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-media video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.04);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  opacity: 1;
  z-index: 1;
}

.hero-media video.active {
  z-index: 2;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.92) 0%, rgba(8, 7, 6, 0.64) 39%, rgba(8, 7, 6, 0.18) 72%, rgba(8, 7, 6, 0.56) 100%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.35) 0%, rgba(8, 7, 6, 0.18) 48%, rgba(8, 7, 6, 0.88) 100%);
}


.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(34px, 4.8vw, 62px);
  letter-spacing: -0.035em;
}

.split-word {
  display: inline-block;
  margin-right: 0.08em;
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-line .split-word:last-child,
.hero-title .split-word:last-child {
  margin-right: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-strip span,
.feature-points span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 246, 224, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.78);
  background: rgba(255, 250, 240, 0.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.craft-rail {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: #12100d;
  border-top: 1px solid rgba(240, 206, 130, 0.22);
  border-bottom: 1px solid rgba(240, 206, 130, 0.18);
}

.craft-rail-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.craft-rail span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 246, 224, 0.12);
  color: rgba(255, 250, 240, 0.76);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.craft-rail span:last-child {
  border-right: 1px solid rgba(255, 246, 224, 0.12);
}

.hero-board {
  position: absolute;
  right: clamp(24px, 6vw, 88px);
  bottom: 92px;
  z-index: 3;
  width: min(330px, 28vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 246, 224, 0.18);
  background: rgba(13, 12, 10, 0.56);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.hero-board img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
}

.board-label,
.board-note {
  grid-column: 1 / -1;
}

.board-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.board-label::after {
  content: "";
  width: 42%;
  height: 1px;
  background: rgba(240, 206, 130, 0.45);
}

.board-note {
  padding: 12px 2px 4px;
}

.board-note strong,
.board-note span {
  display: block;
}

.board-note strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.18;
}

.board-note span {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 12px;
}

.hero-location {
  position: absolute;
  right: 36px;
  top: 142px;
  z-index: 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 250, 240, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero-location span {
  color: var(--gold-2);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  width: 28px;
  height: 48px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 250, 240, 0.4);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--gold-2);
  animation: cue 1.6s ease-in-out infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, 18px);
    opacity: 1;
  }
}

.intro,
.services,
.projects,
.story,
.feature,
.process,
.testimonial,
.final-cta {
  padding: clamp(56px, 7vw, 92px) 0;
}

.two-column,
.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.section-title {
  max-width: 760px;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.section-title + .section-copy {
  margin-top: 16px;
}

.section-copy,
.intro-copy p,
.final-copy p,
.quiet-text {
  color: var(--muted);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.65;
  font-weight: 400;
}

.section-dark .section-copy,
.section-dark .quiet-text,
.section-dark .final-copy p {
  color: rgba(255, 250, 240, 0.72);
}

.intro-copy p {
  margin: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #33291c;
  font-size: 14px;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.about-band {
  position: relative;
  width: min(1320px, calc(100vw - 28px));
  margin: 52px auto 0;
}

.about-band img {
  width: 100%;
  height: clamp(360px, 52vw, 700px);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.about-card {
  position: absolute;
  right: min(7vw, 90px);
  bottom: -34px;
  width: min(420px, calc(100% - 34px));
  padding: 22px;
  color: var(--white);
  background: var(--charcoal);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.about-card span {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section-head.compact {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  column-gap: 60px;
}

.section-head.compact .eyebrow {
  grid-column: 1 / -1;
}

.section-head.compact .section-copy {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 440px;
  display: grid;
  align-content: end;
  overflow: hidden;
  background: var(--deep);
  isolation: isolate;
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(13, 12, 10, 0.05), rgba(13, 12, 10, 0.88));
}

.service-card div {
  min-height: auto;
  padding: 32px 26px 48px 26px;
  color: var(--white);
  border-top: 1px solid rgba(255, 250, 240, 0.16);
  background: linear-gradient(180deg, rgba(13, 12, 10, 0), rgba(13, 12, 10, 0.8));
  transform: translateY(24px);
  transition: transform 0.45s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card:hover div {
  transform: translateY(0);
}

.service-card > span,
.process-item > span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card h3,
.process-item h3,
.project-tile h3 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.65vw, 25px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.service-card p,
.process-item p,
.project-tile p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
}

.projects {
  background: var(--paper);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 300px 300px 300px;
  gap: 8px;
  padding: 0 max(8px, calc((100vw - 1180px) / 2));
}

.project-tile--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.project-grid .project-tile {
  min-height: 0;
}

.project-tile--video video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-index {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-index div {
  height: 1px;
  background: var(--line);
}

.project-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 34vw);
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  padding: 0 max(20px, calc((100vw - 1180px) / 2)) 18px;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.project-rail.is-dragging {
  cursor: grabbing;
}

.project-tile {
  position: relative;
  min-height: clamp(360px, 46vw, 520px);
  overflow: hidden;
  color: var(--white);
  scroll-snap-align: center;
  background: var(--deep);
}

.project-tile img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.72));
}

.project-tile div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.3);
}

.project-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.04);
}

.story {
  position: relative;
  overflow: hidden;
}



.story-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.story-content {
  position: relative;
  padding-bottom: clamp(80px, 12vw, 160px);
}

.story-copy {
  position: sticky;
  top: 140px;
  max-width: 520px;
  margin-bottom: clamp(34px, 6vw, 74px);
}

.story-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.4vw, 26px);
  padding-top: clamp(180px, 28vh, 260px);
}

.story-step {
  position: relative;
  width: 100%;
  min-height: 178px;
  padding: 28px 30px 30px 92px;
  color: rgba(255, 250, 240, 0.54);
  text-align: left;
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.055), rgba(255, 250, 240, 0.018));
  transition: color 0.45s ease, border-color 0.45s ease, background 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
  transform: translateX(0);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.story-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  transition: transform 0.45s ease;
}

.story-step::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(240, 206, 130, 0.08);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.story-step span {
  position: absolute;
  left: 28px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story-step h3 {
  margin: 0 0 10px;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.story-step p {
  margin: 0;
  max-width: 390px;
  font-size: 15px;
  line-height: 1.6;
}

.story-step.is-active {
  color: var(--white);
  border-color: rgba(240, 206, 130, 0.44);
  background: linear-gradient(135deg, rgba(201, 154, 69, 0.18), rgba(255, 250, 240, 0.05));
  transform: translateX(16px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.story-step.is-active::before {
  transform: scaleY(1);
}

.story-step.is-active::after {
  opacity: 1;
  transform: scale(1.08);
}

.story-stage-wrapper {
  position: sticky;
  top: 140px;
  height: min(72vh, 720px);
  min-height: 460px;
}

.story-stage {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(240, 206, 130, 0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #080706;
}

.story-stage img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(0.86) contrast(1.02);
  transition: opacity 0.7s ease, transform 1.1s ease, filter 1.1s ease;
}

.story-stage img.active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1) contrast(1.04);
}

.story-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.1), rgba(8, 7, 6, 0.72)),
    linear-gradient(90deg, rgba(8, 7, 6, 0.58), transparent 56%);
  pointer-events: none;
}

.story-progress {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  z-index: 4;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.22);
}

.story-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.12);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

.story-stage-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.story-stage-label small {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-stage-label strong {
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.feature-media {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(240, 206, 130, 0) 47%, rgba(240, 206, 130, 0.35) 50%, rgba(240, 206, 130, 0) 53%, transparent 100%);
  transform: translateY(-100%);
  animation: scan 4.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan {
  0%,
  30% {
    transform: translateY(-100%);
  }
  70%,
  100% {
    transform: translateY(100%);
  }
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.feature-points span {
  color: #33291c;
  border-color: rgba(30, 24, 16, 0.14);
  background: rgba(255, 255, 255, 0.42);
}

.quiet-text {
  margin-top: 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-item {
  min-height: 240px;
  padding: 32px 24px;
  border: 1px solid rgba(30, 24, 16, 0.12);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.process-item > span {
  font-size: 32px;
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
}

.process-item h3 {
  margin: 0 0 12px;
}

.process-item p {
  color: var(--muted);
}

.testimonial {
  background:
    linear-gradient(rgba(244, 239, 230, 0.82), rgba(244, 239, 230, 0.82)),
    url("cozinha.png") center / cover fixed;
  position: relative;
  z-index: 2;
}

.testimonial-box {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background: rgba(18, 16, 13, 0.95);
  border: 1px solid rgba(240, 206, 130, 0.24);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-box .eyebrow {
  justify-content: center;
}

.testimonial-box h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

blockquote {
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 24px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.client {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.client span {
  font-weight: 800;
}

.client small {
  color: rgba(255, 250, 240, 0.62);
}

.final-cta {
  position: relative;
  overflow: hidden;
}



.final-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 16px;
}

.final-copy small {
  color: rgba(255, 250, 240, 0.6);
  font-weight: 700;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 250, 240, 0.72);
  background: #080706;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 38px;
}

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

.site-footer p {
  max-width: 430px;
  margin: 20px 0 0;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer a:hover {
  color: var(--gold-2);
}

.footer-contact span {
  margin-top: 12px;
  color: rgba(255, 250, 240, 0.45);
  font-size: 13px;
}

.footer-brand-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.mobile-menu {
  display: none;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  color: #111;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(255, 250, 240, 0.72)) padding-box,
    linear-gradient(135deg, var(--green), var(--gold-2)) border-box;
  border: 2px solid transparent;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(240, 206, 130, 0.18), transparent 64%);
  transition: opacity 0.25s ease;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 980px) {

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-board,
  .hero-location {
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    width: var(--container);
    margin: 36px auto 0;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .two-column,
  .story-layout,
  .feature-layout,
  .final-layout,
  .footer-layout,
  .section-head.compact {
    grid-template-columns: 1fr;
  }

  .story-copy {
    position: static;
    max-width: none;
    margin-bottom: 28px;
  }

  .story-copy .section-title,
  .story-copy .section-copy {
    max-width: 680px;
  }

  .story-content {
    display: contents;
    padding-bottom: 0;
  }

  .story-steps {
    order: 3;
    padding-top: 0;
  }

  .story-stage-wrapper {
    order: 2;
    position: sticky;
    top: 84px;
    z-index: 2;
    height: min(62vh, 620px);
    margin-bottom: 24px;
  }

  .story-copy {
    order: 1;
  }

  .craft-rail-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 280px 280px 280px;
  }

  .project-tile--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .site-header.is-scrolled {
    padding-right: 20px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    padding: 104px 0 38px;
  }

  .hero-frame {
    inset: 88px 14px 14px;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.06;
  }

  .craft-rail-inner {
    grid-template-columns: 1fr;
  }

  .craft-rail span {
    min-height: 48px;
    border-right: 1px solid rgba(255, 246, 224, 0.12);
    font-size: 18px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-board {
    grid-template-columns: 1fr;
  }

  .hero-board img {
    aspect-ratio: 16 / 10;
  }

  .about-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -38px 14px 0;
  }

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

  .service-card {
    min-height: 360px;
  }

  .service-card div {
    transform: none;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-tile--featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .project-grid .project-tile {
    min-height: 280px;
  }

  .story-copy {
    position: static;
  }

  .story-step {
    min-height: 0;
    padding: 24px 22px 24px 76px;
  }

  .story-step span {
    left: 22px;
    top: 24px;
    width: 36px;
    height: 36px;
  }

  .story-step.is-active {
    transform: translateX(0);
  }

  .story-stage-wrapper {
    min-height: 360px;
  }

  .story-stage {
    height: 58vh;
  }

  .float-whatsapp {
    left: auto;
    right: 14px;
    justify-content: center;
  }
}

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


/* --- NOVO STORY EPIC PIN --- */
#story-pin {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 !important;
  background: var(--deep);
}
#story-main {
  position: relative;
  z-index: 5;
  width: 100%;
}
.story-content-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.story-title-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  will-change: transform, opacity;
}
#story-steps-container {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}
.story-step {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.story-step .step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.story-stage-wrapper {
  position: relative;
}
.story-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.story-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  will-change: transform, clip-path;
}
.story-img.active {
  opacity: 1;
}

.greensign-card { will-change: transform, opacity; }
.story-intro-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
  will-change: transform, opacity;
}


.story-content-full { display: flex; width: 100vw; height: 100vh; }
.story-left-column { width: 50vw; height: 100vh; position: relative; display: flex; align-items: center; padding: 8vw; }
.story-step { position: absolute; top: 50%; left: 8vw; transform: translateY(-50%); width: calc(100% - 16vw); opacity: 0; visibility: hidden; }
.story-subtitle { font-size: clamp(14px, 1vw, 18px); color: var(--white); letter-spacing: 0.1em; margin-bottom: 12px; opacity: 0.7; }
.story-title { font-size: clamp(40px, 4vw, 70px); line-height: 1.1; margin-bottom: 24px; }
.story-copy { font-size: clamp(16px, 1.2vw, 20px); color: rgba(255,255,255,0.8); max-width: 450px; }
.story-right-column { width: 50vw; height: 100vh; position: relative; }
.story-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; will-change: transform, clip-path; }

.measure-story {
  position: relative;
  height: 300vh;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: #0d0c0a;
  color: var(--white);
}

.measure-story__pin {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  width: 100%;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: #0d0c0a;
}

.measure-story__copy {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: clamp(72px, 8vw, 128px);
  background: #0d0c0a;
}

.measure-story__copy-inner {
  display: flex;
  flex-direction: column;
  width: min(100%, 560px);
}

.measure-story__eyebrow {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.measure-story__title {
  margin-bottom: 26px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 82px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.measure-story__text {
  max-width: 460px;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.55;
}

.measure-story__action {
  margin-top: 34px;
}

.measure-story__media {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #12100d;
}

.measure-story__frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.measure-story__frame--wipe {
  z-index: 2;
  will-change: clip-path;
}

.measure-story__frame--top {
  z-index: 3;
}

.measure-story__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.process {
  background: #fffaf0;
  color: #0d0c0a;
}

.process-head {
  display: grid;
  justify-items: center;
  max-width: 860px;
  margin-bottom: clamp(36px, 5vw, 64px);
  text-align: center;
}

.process-head .eyebrow {
  color: var(--gold);
}

.process-head .section-copy {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: #675d50;
}

.process-grid.container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.process-grid .process-item {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px 28px;
  overflow: hidden;
  border: 1px solid rgba(30, 24, 16, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(18, 12, 4, 0.06);
}

.process-grid .process-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  transition: transform 0.35s ease;
}

.process-grid .process-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(18, 12, 4, 0.1);
}

.process-grid .process-item:hover::after {
  transform: scaleX(1);
}

.process-grid .process-item > span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0.74;
}

.process-grid .process-item h3 {
  margin: 0 0 14px;
  color: #0d0c0a;
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.process-grid .process-item p {
  margin: 0;
  color: #6f6558;
  font-size: 14px;
  line-height: 1.58;
}

@media (max-width: 980px) {
  .measure-story {
    height: auto;
  }

  .measure-story__pin {
    position: relative;
    display: flex;
    min-height: auto;
    height: auto;
    flex-direction: column;
  }

  .measure-story__copy {
    min-height: 56svh;
    padding: 96px 24px 42px;
  }

  .measure-story__media {
    height: 64svh;
    min-height: 420px;
  }

  .measure-story__title {
    max-width: 680px;
  }

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

@media (max-width: 640px) {
  .measure-story__copy {
    padding: 84px 18px 34px;
  }

  .measure-story__media {
    height: 58svh;
    min-height: 340px;
  }

  .measure-story__title {
    font-size: clamp(34px, 12vw, 54px);
  }

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

  .process-grid .process-item {
    min-height: 0;
  }
}

/* Focused overrides for the scroll-driven measure and process sections. */
body::before {
  opacity: 0.02;
}

.service-grid {
  background: transparent;
}

.measure-story {
  min-height: 300vh;
  height: auto;
  overflow: clip;
  scroll-margin-top: 92px;
}

.measure-story__pin {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 100svh;
}

.measure-story__copy {
  z-index: 6;
  padding: clamp(58px, 7vw, 104px);
}

.measure-story__title {
  max-width: 760px;
  font-size: clamp(46px, 5vw, 86px);
}

.measure-story__action {
  min-height: 48px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.measure-story__action.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.measure-story__cta {
  position: relative;
  isolation: isolate;
  overflow: visible;
  box-shadow: 0 0 24px rgba(240, 206, 130, 0.36), 0 18px 52px rgba(201, 154, 69, 0.28);
  animation: budget-glow 1.8s ease-in-out infinite;
}

.measure-story__cta::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(240, 206, 130, 0.34), transparent 68%);
  filter: blur(10px);
}

.measure-story__stage {
  position: relative;
  z-index: 2;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(13, 12, 10, 0.94), rgba(13, 12, 10, 0.42) 26%, rgba(13, 12, 10, 0) 62%),
    #0d0c0a;
}

.measure-story__stage-line {
  position: absolute;
  top: 50%;
  right: clamp(80px, 10vw, 170px);
  width: min(34vw, 460px);
  height: 1px;
  background: rgba(255, 250, 240, 0.16);
}

.measure-story__steps {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.measure-story__step {
  display: flex;
  width: 100%;
  height: 100svh;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(44px, 10vw, 150px);
}

.measure-story__image-card {
  width: clamp(220px, 30vw, 430px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 0;
  background: #15110d;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
}

.measure-story__image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes budget-glow {
  0%,
  100% {
    box-shadow: 0 0 22px rgba(240, 206, 130, 0.34), 0 18px 52px rgba(201, 154, 69, 0.28);
  }
  50% {
    box-shadow: 0 0 42px rgba(240, 206, 130, 0.58), 0 22px 70px rgba(201, 154, 69, 0.38);
  }
}

.process-scroll {
  padding: clamp(78px, 8vw, 120px) 0;
  background: #fffaf0;
}

.process-scroll__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.process-scroll__copy {
  position: sticky;
  top: 132px;
  justify-items: start;
  margin: 0;
  text-align: left;
}

.process-scroll__copy .section-copy {
  margin-left: 0;
}

.process-scroll__cards {
  display: grid;
  gap: 34px;
  padding-bottom: 5vh;
}

.process-stack-card {
  position: sticky;
  top: 112px;
  min-height: 310px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(30, 24, 16, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(18, 12, 4, 0.1);
  transform-origin: center top;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-stack-card:nth-child(1) { top: calc(112px + 0px); }
.process-stack-card:nth-child(2) { top: calc(112px + 18px); }
.process-stack-card:nth-child(3) { top: calc(112px + 36px); }
.process-stack-card:nth-child(4) { top: calc(112px + 54px); }

.process-stack-card:nth-child(2) {
  transform: rotate(-1.2deg);
}

.process-stack-card:nth-child(3) {
  transform: rotate(1deg);
}

.process-stack-card:nth-child(4) {
  transform: rotate(-0.7deg);
}

.process-stack-card:hover {
  transform: translateY(-8px) rotate(0);
  box-shadow: 0 32px 84px rgba(18, 12, 4, 0.14);
}

.process-stack-card > span {
  display: block;
  margin-bottom: clamp(34px, 5vw, 64px);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process-stack-card h3 {
  max-width: 520px;
  margin: 0 0 14px;
  color: #0d0c0a;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.process-stack-card p {
  max-width: 440px;
  margin: 0;
  color: #6f6558;
  font-size: 15px;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .measure-story {
    /* Keep desktop 300vh height for pinning */
  }

  .measure-story__pin {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
  }

  .measure-story__copy {
    padding: 24px;
    width: 100%;
    align-items: flex-start;
  }

  .measure-story__stage {
    display: none;
  }

  .measure-story__steps {
    /* Keep absolute positioning from desktop */
  }

  .measure-story__step {
    /* Keep 100svh to trigger properly */
    padding: 0 20px;
    opacity: 0; /* Hide the desktop image block entirely, keep it as an invisible scroll trigger! */
    pointer-events: none;
  }

  .measure-story__image-card {
    display: none;
  }

  .process-scroll__layout {
    display: block;
  }

  .process-scroll__copy {
    position: sticky;
    top: 76px;
    z-index: 8;
    background: transparent;
  }
  
  /* Na tela de tablet/iPad, onde quebra pra 1 coluna, os cards DEVEM travar bem abaixo do título! */
  .process-stack-card {
    top: 300px;
  }
  .process-stack-card:nth-child(1) { top: 300px; }
  .process-stack-card:nth-child(2) { top: 300px; }
  .process-stack-card:nth-child(3) { top: 300px; }
  .process-stack-card:nth-child(4) { top: 300px; }

  .process-scroll__cards {
    padding-bottom: 100vh;
  }
}

.intro,
.feature {
  background-color: #f4efe6;
  background-image:
    linear-gradient(90deg, rgba(30, 24, 16, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(30, 24, 16, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.measure-story__eyebrow {
  font-size: clamp(11px, 0.78vw, 13px);
  letter-spacing: 0.16em;
}

.measure-story__title {
  max-width: 620px;
  font-size: clamp(34px, 3.35vw, 58px);
  line-height: 1.02;
}

.measure-story__text {
  max-width: 390px;
  font-size: clamp(14px, 0.95vw, 16px);
}

.measure-story__stage-line {
  display: none;
}

.measure-story__image-card {
  width: clamp(232px, 29vw, 400px);
  border: 0.5px solid rgba(240, 206, 130, 0.62);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.measure-story__cta {
  min-width: 0;
  padding-inline: 18px;
  font-size: 12px;
  text-transform: none;
}

.site-footer {
  padding: clamp(48px, 6vw, 78px) 0;
  border-top: 1px solid rgba(255, 250, 240, 0.08);
}

.footer-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.5fr) minmax(180px, 0.55fr);
  align-items: start;
}

.footer-brand {
  transform: none;
}

.footer-brand .brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-footer p {
  color: rgba(255, 250, 240, 0.62);
  line-height: 1.65;
}

.site-footer nav a,
.footer-contact a {
  color: rgba(255, 250, 240, 0.7);
  font-size: 14px;
}

.footer-contact span {
  max-width: 220px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .measure-story__copy {
    padding-top: 84px;
  }

  .measure-story__title {
    max-width: 520px;
    font-size: clamp(30px, 8vw, 48px);
  }

  .measure-story__steps {
    padding-top: 4px;
  }

  .measure-story__image-card {
    width: min(90vw, 390px);
    border-color: rgba(240, 206, 130, 0.58);
  }

  .footer-layout {
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .intro,
  .feature {
    background-size: 48px 48px;
  }

  .measure-story__copy {
    padding: 94px 18px 24px;
  }

  .measure-story__title {
    font-size: clamp(28px, 9.5vw, 40px);
  }

  .measure-story__text {
    font-size: 14px;
  }

  .measure-story__action {
    margin-top: 24px;
  }

  .site-footer {
    padding: 42px 0;
  }

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

  .site-footer nav,
  .footer-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .footer-contact span {
    grid-column: 1 / -1;
    max-width: none;
  }
}

.word-mask {
  display: inline-flex;
  overflow: hidden;
  padding-top: 0.05em;
  padding-bottom: 0.12em;
  margin-top: -0.05em;
  margin-bottom: -0.12em;
  vertical-align: top;
}

.word-mask > span {
  display: inline-block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  will-change: transform;
}

.hero-title .word-mask,
.section-title .word-mask,
.final-cta-title .word-mask {
  padding-bottom: 0.08em;
}

.header-cta:hover,
.button:hover,
.service-card:hover img,
.service-card:hover div,
.project-tile:hover img,
.process-stack-card:hover,
.process-grid .process-item:hover,
#contato a:hover {
  transform: none !important;
}

.service-card:hover img,
.project-tile:hover img {
  filter: inherit !important;
}

.process-stack-card:hover {
  box-shadow: 0 26px 70px rgba(18, 12, 4, 0.1);
}

.measure-story__image-card {
  width: clamp(260px, 31vw, 450px);
  will-change: transform, opacity, filter;
}

.measure-story__mobile-current {
  display: none;
}

.measure-story__mobile-inline {
  display: none;
}

.measure-story__mobile-list {
  display: none;
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    padding-top: 18px;
  }

  .brand-logo {
    height: 44px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 118px;
    padding-bottom: 34px;
  }

  .hero-content {
    width: var(--container);
  }

  .hero-title {
    max-width: 11ch;
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero-copy {
    max-width: 32ch;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 330px);
  }

  .trust-strip {
    grid-template-columns: 1fr;
    width: min(100%, 330px);
  }

  .intro,
  .services,
  .projects,
  .feature,
  .process,
  .testimonial,
  #contato {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .two-column,
  .feature-layout {
    gap: 28px;
  }

  .section-title {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
  }

  .section-copy,
  .intro-copy p,
  .quiet-text {
    font-size: 15px;
  }

  .about-band {
    margin-top: 38px;
  }

  .about-band img,
  .feature-media img {
    aspect-ratio: 4 / 4.8;
  }

  .service-grid {
    gap: 10px;
  }

  .service-card {
    min-height: 430px;
    border-radius: 8px;
  }

  .project-grid {
    gap: 10px;
  }

  .project-grid .project-tile {
    min-height: 340px;
    border-radius: 8px;
  }

  .measure-story {
    background: #0d0c0a;
  }

  .measure-story__copy {
    padding-top: 92px;
  }

  .measure-story__copy-inner {
    width: 100%;
  }

  .measure-story__title {
    max-width: 9.5ch;
    font-size: clamp(34px, 11vw, 48px);
  }

  .measure-story__image-card {
    width: min(92vw, 410px);
  }

  .process-scroll__layout {
    /* display is block now */
  }

  .process-stack-card {
    min-height: 245px;
    padding: 28px 24px;
  }

  .process-stack-card h3 {
    font-size: clamp(27px, 8vw, 38px);
  }

  #contato h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
    max-width: 11ch;
  }

  #contato a {
    width: 100%;
    max-width: 340px;
    padding-inline: 18px;
    text-align: center;
  }

  #contato {
    min-height: auto;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    padding-left: 24px;
    padding-right: 24px;
  }

  #contato .container {
    width: 100%;
  }

  #contato h2 {
    max-width: 13ch;
    margin-bottom: 22px;
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.08;
  }

  #contato h2 + p {
    max-width: 30ch;
    margin-bottom: 34px;
    font-size: 15px;
    line-height: 1.55;
  }

  #contato .mt-12 {
    display: none;
  }
}

@media (max-width: 980px) {
  .measure-story {
    height: 300svh;
    min-height: auto;
    overflow: visible;
  }

  .measure-story__pin {
    position: sticky;
    top: 0;
    z-index: 1;
    display: block;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
  }

  .measure-story__copy {
    min-height: 100%;
    align-items: flex-start;
    padding: 88px 18px 0;
    background:
      linear-gradient(180deg, rgba(13, 12, 10, 0.98), rgba(13, 12, 10, 0.92) 45%, rgba(13, 12, 10, 0.12) 100%),
      #0d0c0a;
  }

  .measure-story__copy-inner {
    width: min(100%, 430px);
  }

  .measure-story__title {
    max-width: 10ch;
  }

  .measure-story__steps {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: block;
    padding: 0;
    background: transparent;
    pointer-events: none;
  }

  .measure-story__step {
    height: 100svh;
    align-items: flex-end;
    justify-content: center;
    padding: 0 18px 34px;
  }

  .measure-story__image-card {
    display: none;
    width: min(88vw, 430px);
    height: min(46svh, 430px);
    aspect-ratio: auto;
  }

  .measure-story__mobile-current {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 4;
    display: block;
    width: min(88vw, 430px);
    height: min(46svh, 430px);
    overflow: hidden;
    border: 0.5px solid rgba(240, 206, 130, 0.62);
    background: #15110d;
    box-shadow: 0 26px 68px rgba(0, 0, 0, 0.36);
    will-change: transform, opacity, filter;
  }

  .measure-story__mobile-current img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 680px) {
  .measure-story__pin {
    min-height: 600px;
  }

  .measure-story__copy {
    padding-top: 82px;
  }

  .measure-story__eyebrow {
    font-size: 10px;
    line-height: 1.35;
  }

  .measure-story__title {
    font-size: clamp(27px, 8.8vw, 39px);
    line-height: 1.01;
  }

  .measure-story__text {
    max-width: 32ch;
    font-size: 13.5px;
    line-height: 1.48;
  }

  .measure-story__image-card {
    width: min(90vw, 390px);
    height: min(43svh, 390px);
  }

  .measure-story__mobile-current {
    bottom: 30px;
    width: min(90vw, 390px);
    height: min(43svh, 390px);
  }

  .process-scroll {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .process-scroll__cards {
    gap: 14px;
  }

  .process-stack-card {
    min-height: 220px;
    padding: 24px 20px;
  }

  .process-stack-card > span {
    margin-bottom: 28px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 48px, 1180px);
  }

  .cursor-glow {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    align-items: center;
    padding: 18px 24px 0;
    pointer-events: none;
  }

  .brand,
  .site-header.is-scrolled .brand {
    transform: none;
    pointer-events: auto;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    height: 50px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    pointer-events: auto;
  }

  .mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 250, 240, 0.92);
  }

  .mobile-menu span + span {
    margin-top: 0;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding: 92px 0 30px;
    text-align: center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.54), rgba(8, 7, 6, 0.36) 34%, rgba(8, 7, 6, 0.8) 100%),
      linear-gradient(90deg, rgba(8, 7, 6, 0.36), rgba(8, 7, 6, 0.18), rgba(8, 7, 6, 0.36));
  }

  .hero-content {
    display: grid;
    justify-items: center;
    width: var(--container);
    max-width: none;
    margin: 0 auto;
  }

  .hero .eyebrow {
    max-width: 26ch;
    margin-bottom: 14px;
    text-align: center;
  }

  .hero-title {
    max-width: 10.5ch;
    font-size: clamp(38px, 12.5vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-align: center;
  }

  .hero-copy {
    max-width: 31ch;
    margin-top: 18px;
    font-size: 14.5px;
    line-height: 1.58;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    width: min(100%, 300px);
    margin-top: 24px;
  }

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

  .trust-strip,
  .scroll-cue {
    display: none;
  }

  .intro,
  .services,
  .projects,
  .feature,
  .process,
  .testimonial,
  #contato {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .two-column,
  .feature-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-title {
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1;
    letter-spacing: -0.04em;
    text-align: center;
  }

  .section-copy,
  .intro-copy p,
  .quiet-text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(25, 25, 25, 0.68);
    text-align: center;
  }
  
  .eyebrow {
    text-align: center;
  }
  
  .intro .eyebrow,
  .services .eyebrow,
  .projects .eyebrow,
  .feature .eyebrow,
  .process .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .check-list {
    gap: 14px;
    margin-top: 24px;
    margin-bottom: 30px;
  }

  .check-list li {
    line-height: 1.5;
  }

  .about-band {
    width: calc(100vw - 48px);
    margin-top: 32px;
  }

  .about-band img {
    height: auto;
    aspect-ratio: 4 / 4.7;
    border-radius: 12px;
  }

  .about-card {
    margin-inline: 10px;
    padding: 18px;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 34px;
    text-align: left;
  }

  .services .section-title {
    line-height: 1.02;
  }

  .services .section-copy {
    margin-top: 6px;
  }

  .service-grid {
    gap: 14px;
    border: 0;
    background: transparent;
  }

  .service-card {
    min-height: 440px;
    max-height: 480px;
    border-radius: 12px;
  }

  .service-card::after {
    background: linear-gradient(180deg, rgba(13, 12, 10, 0) 36%, rgba(13, 12, 10, 0.82) 100%);
  }

  .service-card div {
    padding: 24px 24px 34px;
    border-top: 0;
    background: linear-gradient(180deg, rgba(13, 12, 10, 0), rgba(13, 12, 10, 0.58));
    transform: none;
  }

  .service-card p {
    color: rgba(255, 250, 240, 0.84);
  }

  .projects .section-head {
    margin-bottom: 30px;
  }

  .projects .section-copy {
    margin-top: 8px;
  }

  .project-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 16px;
    overflow-x: auto;
    padding: 0 24px 12px 44px;
    scroll-padding-left: 44px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .project-grid::-webkit-scrollbar {
    display: none;
  }

  .project-tile,
  .project-grid .project-tile,
  .project-tile--featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    height: clamp(340px, 95vw, 390px);
    border-radius: 12px;
    scroll-snap-align: start;
  }

  .project-tile::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.76) 100%);
  }

  .project-tile div {
    left: 24px;
    right: 24px;
    bottom: 26px;
    padding-top: 18px;
  }

  .measure-story__copy {
    justify-content: center;
    padding: 52px 24px 0;
    text-align: center;
  }

  .measure-story {
    background: #050504;
  }

  .measure-story__mobile-list {
    display: none;
  }

  .measure-story__mobile-panel {
    min-height: 100svh;
    display: grid;
    align-content: start;
    justify-items: center;
    padding: 74px 20px 78px;
    color: var(--white);
    background: #050504;
    text-align: center;
  }

  .measure-story__copy-inner {
    display: grid;
    justify-items: center;
    align-content: start;
  }

  .measure-story__eyebrow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    font-size: 11px;
    text-align: center;
  }

  .measure-story__eyebrow > div {
    justify-content: center;
  }

  .measure-story__title {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 11ch;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.98;
    text-align: center;
  }

  .measure-story__title > div {
    justify-content: center;
  }

  .measure-story__mobile-inline {
    display: block;
    width: min(84vw, 380px);
    height: min(40svh, 330px);
    margin: -14px auto 8px;
    overflow: hidden;
    border: 0.5px solid rgba(240, 206, 130, 0.62);
    background: #15110d;
    box-shadow: 0 26px 68px rgba(0, 0, 0, 0.36);
    will-change: transform, opacity, filter;
  }

  .measure-story__mobile-inline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .measure-story__mobile-current {
    display: none;
  }

  .measure-story__text {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: static;
    max-width: 34ch;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.62;
    text-align: center;
  }

  .measure-story__text > div {
    justify-content: center;
  }

  .measure-story__action {
    display: none;
  }

  .feature-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .feature-media {
    order: 1;
    border-radius: 12px;
  }

  .feature-copy {
    order: 2;
  }

  .feature .eyebrow,
  .feature .section-title {
    text-align: center;
  }

  .feature-points {
    justify-content: center;
  }

  .quiet-text {
    max-width: 34ch;
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }

  .process-scroll {
    padding-top: 30px;
    min-height: 100svh;
  }

  .process-scroll__copy {
    position: relative;
    justify-items: center;
    margin-bottom: 30px;
    padding: 10px 0 18px;
    text-align: center;
  }

  .process-scroll__copy .section-copy {
    margin-inline: auto;
  }

  .process-scroll__cards {
    gap: 22px;
    margin-top: 16vh;
    padding-bottom: 5vh;
  }

  .process-stack-card {
    position: relative;
    min-height: 228px;
    margin-bottom: 0;
    padding: 26px 22px;
  }

  .process-stack-card + .process-stack-card {
    margin-top: 0;
  }

  .process-stack-card h3 {
    font-size: clamp(26px, 7.2vw, 34px);
    line-height: 1.04;
  }

  .process-stack-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .site-footer {
    padding: 34px 0 42px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    transform: none;
  }

  .footer-brand-image {
    width: 104px;
    height: 104px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    width: 100%;
  }

  .footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    color: rgba(255, 250, 240, 0.82);
    font-size: 13px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .footer-contact svg {
    color: var(--gold-2);
    stroke-width: 1.8;
  }
}

/* ===== TEXT ROTATE (vanilla) ===== */
.text-rotate-wrapper {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  vertical-align: top;
}

.text-rotate-item {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.text-rotate-item.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.text-rotate-item.is-exiting {
  opacity: 0;
  transform: translateY(-120%);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
  background: #12100d;
  color: white;
}

.final-cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-cta-glow-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: rgba(201, 154, 69, 0.05);
  border-radius: 50%;
  filter: blur(120px);
}

.final-cta-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
}

.final-cta-eyebrow {
  color: #c99a45;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.final-cta-title {
  font-size: clamp(30px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  line-height: 1.1;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.final-cta-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.2vw, 20px);
  max-width: 640px;
  margin-bottom: 48px;
}

.final-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  background: linear-gradient(135deg, #f3d78e, #c79535);
  color: #12100d;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(201, 154, 69, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(201, 154, 69, 0.35);
}

.final-cta-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.final-cta-tags span {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 680px) {
  .final-cta-section {
    min-height: auto;
    padding: 70px 24px !important;
  }

  .final-cta-container {
    width: 100%;
  }

  .final-cta-title {
    max-width: 13ch;
    margin-bottom: 22px;
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.08;
  }

  .final-cta-desc {
    max-width: 30ch;
    margin-bottom: 34px;
    font-size: 15px;
    line-height: 1.55;
  }

  .final-cta-tags {
    display: none;
  }

  .final-cta-btn {
    width: 100%;
    max-width: 340px;
    padding-inline: 18px;
    text-align: center;
  }
}

