@font-face {
  font-family: "Hagia Signature";
  src: url("../assets/fonts/Hagia Signature.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-deep: #2B2C2A;
  --bg-light: #FBFBFB;
  --line-soft: #c8c8cb;
  --text-soft: #8F8F8F;
  --text-muted: #8F8F8F;
  --text-bright: #C5AE7A;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Jost", sans-serif;
  color: var(--text-soft);
  background: var(--bg-deep);
}

.anim-word {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.anim-karaoke-word {
  display: inline;
  white-space: normal;
  will-change: transform, opacity, filter, color;
}

[data-anim="lines"] .anim-line {
  display: block;
  will-change: transform, opacity, filter;
}

/* Make every section at least full viewport height (100vh) */
section {
  min-height: 100vh;
}

/* -----------------------------
   Section utility classes
   - Use `<section class="section ...">` and
     wrap content with `.section__inner` for consistent widths
   - Modifiers: .section--dark | .section--light | .section--centered | .section--split
   ----------------------------- */
.section {
  position: relative;
  min-height: inherit;
  /* follows section element's min-height */
  padding-block: 3.2rem;
  /* default vertical padding (can be overridden) */
  overflow: visible;
  box-sizing: border-box;
}

.section__inner {
  width: min(100%, 79rem);
  max-width: 100%;
  margin: 0 auto;
  padding-inline: 1.2rem;
  box-sizing: border-box;
}

/* Visual variants */
.section--dark {
  background: var(--bg-deep);
  color: var(--text-soft);
}

.section--light {
  background: var(--bg-light);
  color: var(--text-muted);
}

/* Center content vertically when required */
.section--centered .section__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
}

/* Two-column / split layout helper */
.section--split .section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

/* Split columns — left/right helpers */
.section--split .section__col--left {
  /* default: right-aligned for most split sections */
  text-align: right;
  padding-right: clamp(2rem, 4vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
}

/* Process-specific overrides: split layout with vertical divider */
.section--process .section__inner {
  display: flex !important;
  /* Force flex to manage the divider */
  justify-content: space-between;
  align-items: stretch;
  gap: 4rem;
  position: relative;
}

.process__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process__col--left {
  text-align: left;
  align-items: flex-start;
  padding-right: 0;
}

.process__col--right {
  align-items: flex-start;
  padding-left: 0;
}

/* Vertical Divider */
.process__divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  /* Subtle white divider */
  flex-shrink: 0;
  align-self: stretch;
  margin: 0 2rem;
}

/* Subtitle: "DO ANY OF THESE RESONATE?" */
.process__subtitle {
  color: var(--text-bright);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 300;
  display: block;
}

/* Title: "THEN WE SHOULD MEET" */
.process__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 2.5rem;
  line-height: 0.9;
}

.process__title span {
  font-size: 5rem;
  font-weight: 800;
  color: var(--text-bright);
  /* Gold text */
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Description paragraph */
.process__desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 32rem;
  font-weight: 300;
}

.process__desc strong {
  color: #f0f0ed;
  font-weight: 600;
}

/* Highlight box: "No pressure..." */
.process__highlight {
  color: var(--text-muted);
  font-size: 1rem;
  font-style: italic;
  margin-top: 3rem;
  width: 100%;
  max-width: 28rem;
  font-weight: 300;
}

.process__highlight strong {
  font-weight: 600;
  color: #f0f0ed;
  font-style: normal;
  display: block;
}

/* Right Column: "MY PROCESS" */
.process__heading {
  font-size: 2rem;
  font-weight: 700;
  color: #f0f0ed;
  text-transform: uppercase;
  margin: 0 0 2.5rem;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1;
}

/* Steps Groups */
.process__steps-group {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.process__steps-group--final {
  margin-bottom: 0;
}

/* Single Step */
.process__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.process__step-num {
  font-family: inherit;
  font-size: 1.25rem;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0;
  margin-right: 0.5rem;
}

.process__step-content {
  display: flex;
  flex-direction: column;
}

.process__step-name {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 300;
  color: #f0f0ed;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
}

.process__step-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 980px) {
  .section--process .section__inner {
    flex-direction: column;
    gap: 3rem;
  }

  .process__divider {
    width: 100%;
    height: 2px;
    margin: 1rem 0;
  }

  .process__subtitle,
  .process__highlight {
    max-width: 100%;
  }

  .process__title span {
    font-size: 3.5rem;
  }

  .process__heading {
    text-align: center;
    display: block;
    width: fit-content;
    margin: 0 auto 2rem;
  }
}

.section--split .section__col--right {
  padding-left: clamp(2rem, 4vw, 5rem);
  border-left: 1px solid rgba(197, 174, 122, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section__minor-title {
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  text-transform: uppercase;
  color: #f0f0ed;
  margin: 0 0 2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.section__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.section__steps li {
  margin-bottom: 2.6rem;
}

.section__step-num {
  font-family: "Jost", sans-serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-muted);
  margin-right: 1rem;
  font-weight: 300;
}

.section__step-name {
  font-size: 1.05rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 400;
  color: #f0f0ed;
  letter-spacing: 0.05em;
  display: block;
}

.section__steps p {
  margin: 0.4rem 0 0 2.6rem;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
  max-width: 30rem;
}

.section__note {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2rem;
  text-align: right;
  font-style: italic;
}

.section__cta {
  margin-top: 1rem;
  align-self: flex-start;
}

@media (max-width: 980px) {
  .section--split .section__col--left {
    text-align: center;
    padding-right: 0;
  }

  .section--split .section__col--right {
    padding-left: 0;
    border-left: none;
    text-align: center;
  }

  .section__steps p {
    margin: 0.4rem auto 0;
    text-align: center;
  }

  .section__steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section__step-num {
    margin-right: 0;
    margin-bottom: 0.2rem;
    display: block;
  }
}

/* Spacing utility */
.section--spacious {
  padding-block: 6rem;
}

/* Adaptive adjustments for the project breakpoints */
@media (max-width: 980px) {
  .section__inner {
    padding-inline: 1rem;
  }

  .section--split .section__inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .section--spacious {
    padding-block: 4rem;
  }
}

@media (max-width: 680px) {
  .section {
    padding-block: 3rem;
  }

  .section__inner {
    padding-inline: 0.9rem;
  }
}


.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  perspective: 1200px;
  transform-style: preserve-3d;
  --hero-scroll-progress: 0;
  --hero-white-progress: 0;
}

.hero__content {
  position: relative;
  min-height: inherit;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

.hero__bg,
.hero__grain {
  position: absolute;
  inset: 0;
}

.hero__whiteout {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: #FBFBFB;
  opacity: var(--hero-white-progress);
  transition: opacity 100ms linear;
  pointer-events: none;
}

.hero__bg {
  z-index: -4;
  /* responsive / DPR-aware background (fallback first) */
  background-image: url("../assets/images/New Background-1600.webp");
  background-image: -webkit-image-set(url("../assets/images/New Background-1600.webp") 1x, url("../assets/images/New Background-2400.webp") 2x);
  background-image: image-set(url("../assets/images/New Background-1600.webp") 1x, url("../assets/images/New Background-2400.webp") 2x);
  background-position: center;
  background-size: cover;
  filter: grayscale(100%) contrast(1.12) brightness(calc(0.84 + (var(--hero-scroll-progress) * 0.32))) saturate(0.88);
  transform-origin: center;
  will-change: transform;
  animation: hero-bg-pan 24s ease-in-out infinite alternate;
}

/* Use the largest source for very wide viewports */
@media (min-width: 1200px) {
  /* use lighter desktop source */
  .hero__bg {
    background-image: url("../assets/images/New Background-opt-opt.webp");
    /* DPR-aware fallback */
    background-image: -webkit-image-set(url("../assets/images/New Background-opt-opt.webp") 1x, url("../assets/images/New Background-opt-opt.webp") 2x);
    background-image: image-set(url("../assets/images/New Background-opt-opt.webp") 1x, url("../assets/images/New Background-opt-opt.webp") 2x);
  }
}

@media (max-width: 980px) {
  .hero__bg {
    background-image: url("../assets/images/New Background-800.webp");
    background-image: -webkit-image-set(url("../assets/images/New Background-800.webp") 1x, url("../assets/images/New Background-1600.webp") 2x);
    background-image: image-set(url("../assets/images/New Background-800.webp") 1x, url("../assets/images/New Background-1600.webp") 2x);
  }
}
@media (max-width: 480px) {
  .hero__bg {
    background-image: url("../assets/images/New Background-400.webp");
    background-image: -webkit-image-set(url("../assets/images/New Background-400.webp") 1x, url("../assets/images/New Background-800.webp") 2x);
    background-image: image-set(url("../assets/images/New Background-400.webp") 1x, url("../assets/images/New Background-800.webp") 2x);
  }
} 

.hero__grain {
  z-index: -3;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.1;
  animation: hero-grain-shift 14s steps(8) infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -2;
  background:
    radial-gradient(68% 54% at 78% 22%, rgba(224, 191, 114, 0.3) 0%, rgba(224, 191, 114, 0) 64%),
    radial-gradient(56% 42% at 84% 86%, rgba(224, 191, 114, 0.12) 0%, rgba(224, 191, 114, 0) 70%),
    radial-gradient(55% 50% at 18% 88%, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0) 68%),
    linear-gradient(118deg, rgba(31, 27, 18, 0.22) 0%, rgba(31, 27, 18, 0) 44%);
  animation: hero-light-sweep 18s ease-in-out infinite alternate;
  will-change: transform, opacity;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
      radial-gradient(circle at center, rgba(15, 15, 14, 0) 38%, rgba(15, 15, 14, 0.72) 100%),
      linear-gradient(to bottom, rgba(10, 10, 9, 0.18) 0%, rgba(10, 10, 9, 0) 24%, rgba(10, 10, 9, 0.3) 100%);
  opacity: calc(1 - (var(--hero-scroll-progress) * 0.72));
  transition: opacity 100ms linear;
  pointer-events: none;
}

@keyframes hero-bg-pan {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes hero-light-sweep {
  from {
    transform: translate3d(-1.2%, 0, 0) scale(1.015);
    opacity: 0.75;
  }

  to {
    transform: translate3d(1.2%, -0.4%, 0) scale(1.03);
    opacity: 0.96;
  }
}

@keyframes hero-grain-shift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(0.8%, -0.6%, 0);
  }

  50% {
    transform: translate3d(-0.6%, 0.9%, 0);
  }

  75% {
    transform: translate3d(0.7%, 0.4%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-slide-out-fwd-center {
  0% {
    transform: translateZ(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }

  100% {
    transform: translateZ(520px) scale(1.04);
    opacity: 0;
    filter: blur(1.4px);
  }
}

@keyframes hero-whiteout-fill {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero.hero--snap-out .hero__content {
  animation: hero-slide-out-fwd-center 760ms cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.hero.hero--snap-out .hero__whiteout {
  animation: hero-whiteout-fill 760ms cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  transform: translateY(calc(var(--hero-scroll-progress) * -2.2rem));
  opacity: calc(1 - (var(--hero-scroll-progress) * 0.92));
  transition: transform 100ms linear, opacity 100ms linear;
}

.hero__mark {
  text-decoration: none;
  color: var(--text-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.hero__mark-icon {
  display: block;
  width: 3.35rem;
  height: auto;
}

.hero__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__menu a {
  text-decoration: none;
  color: var(--text-bright);
  font-size: 0.88rem;
  font-weight: 400;
}

.hero__center {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(1400px, 96vw);
  transform: translate(-50%, calc(-50% - (var(--hero-scroll-progress) * 1.8rem)));
  text-align: center;
  opacity: calc(1 - (var(--hero-scroll-progress) * 0.95));
  transition: transform 100ms linear, opacity 100ms linear;
}

.hero__signature {
  margin: 0;
  font-family: "Hagia Signature", cursive;
  font-weight: 400;
  color: var(--text-bright);
  font-size: 13.0rem;
  line-height: 0.82;
  text-wrap: balance;
  text-shadow:
    0 6px 18px rgba(0, 0, 0, 0.56),
    0 2px 5px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(211, 183, 119, 0.22),
    0 0 55px rgba(211, 183, 119, 0.1);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
  transform: translateY(calc(0.02em - (var(--hero-scroll-progress) * 0.08em)));
}

.hero__meta {
  position: absolute;
  bottom: 2.0rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  font-weight: 300;
  transform: translateY(calc(var(--hero-scroll-progress) * -1.6rem));
  opacity: calc(1 - (var(--hero-scroll-progress) * 0.94));
  transition: transform 100ms linear, opacity 100ms linear;
}

.hero__meta p {
  margin: 0;
  line-height: 1.2;
}

.hero__meta--left {
  left: 2.0rem;
}

.hero__meta--right {
  right: 2.0rem;
  text-align: right;
}

.hero__meta--right strong {
  font-style: italic;
  color: var(--text-bright);
  font-size: 1.08em;
  letter-spacing: 0.18em;
}

.clarity {
  position: relative;
  padding: 8.5rem 8.5rem 8.5rem;
  background: var(--bg-light);
  color: var(--text-muted);
}

.clarity__note {
  margin: 0 0 3.8rem auto;
  max-width: 18rem;
  text-align: right;
  font-size: 1.0rem;
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
}

.clarity__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--text-bright);
}

.clarity__title-strong,
.clarity__title-light {
  display: block;
}

.clarity__title-strong {
  font-size: 4.0rem;
  line-height: 0.9;
  letter-spacing: 0.4em;
  font-weight: 700;
}

.clarity__title-light {
  margin-top: 2.2rem;
  font-size: 4.0rem;
  line-height: 0.95;
  letter-spacing: 0.4em;
  font-weight: 200;
}

.clarity__copy {
  margin: 4.5rem auto 0;
  width: min(100%, 33rem);
  font-size: 1.42rem;
  line-height: 1.5;
  text-align: justify;
  font-weight: 300;
}

.clarity__copy p {
  margin: 0;
}

.clarity__copy strong {
  color: #808082;
  font-weight: 500;
}

.clarity__tagline {
  margin-top: 3.4rem !important;
  text-align: center;
  font-size: 1.52rem;
  font-style: italic;
  font-weight: 600;
}

.clarity__tagline::after {
  content: "";
  display: block;
  margin: 2.8rem auto 0;
  width: min(22rem, 70%);
  border-top: 1px solid var(--line-soft);
}

.services {
  position: relative;
  padding: 7.5rem 0 7.5rem;
  background:
    linear-gradient(95deg, #2b2c2a 0%, #2a2b29 45%, #242523 100%),
    radial-gradient(circle at 80% 0%, rgba(197, 174, 122, 0.12) 0%, rgba(197, 174, 122, 0) 34%);
  color: #f0f0ed;
  overflow: hidden;
}

.services__header {
  margin: 0 auto 4.8rem;
  width: min(96%, 82rem);
}

.services__title {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-bright);
}

.services__title-strong,
.services__title-light {
  display: block;
  letter-spacing: 0.4em;
}

.services__title-strong {
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 0.9;
}

.services__title-light {
  margin-top: 0.85rem;
  font-size: 4.0rem;
  font-weight: 200;
  line-height: 0.9;
}

.services__item {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.12fr) minmax(16rem, 34%);
  gap: 1.6rem;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.9rem 0 0.9rem 0.9rem;
  border-top: 1px solid rgba(197, 174, 122, 0.28);
}

.services__item:last-child {
  border-bottom: 1px solid rgba(197, 174, 122, 0.28);
}

.services__lead {
  padding-left: 0;
  padding-block: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services__lead h3 {
  margin: 0 0 0.55rem;
  color: #f4f4f1;
  text-transform: uppercase;
  font-size: 2.9rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.services__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services__tags li {
  border: 1px solid rgba(197, 174, 122, 0.78);
  border-radius: 999px;
  color: rgba(197, 174, 122, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  padding: 0.34rem 1.2rem;
}

.services__tags .services__tag--active {
  /* active tag uses same gold tone as other tags */
  border-color: rgba(197, 174, 122, 0.78);
  color: rgba(197, 174, 122, 0.95);
  box-shadow: 0 0 0 1px rgba(197, 174, 122, 0.35) inset;
}

.services__copy {
  margin: 0;
  color: #bebeb9;
  font-size: 1.22rem;
  font-weight: 300;
  line-height: 1.45;
  width: 100%;
  max-width: 35rem;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  min-height: calc(1.45em * 3);
  padding-block: 0;
  align-self: center;
}

.services__copy br {
  content: "";
}

.services__media {
  position: relative;
  height: 10.2rem;
  min-height: 0;
  align-self: center;
  overflow: hidden;
}

.services__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08) brightness(0.86);
}

.services__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(43, 44, 42, 0.05) 0%, rgba(43, 44, 42, 0.88) 100%);
  pointer-events: none;
}

.services__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(43, 44, 42, 0.4) 0%, rgba(43, 44, 42, 0) 45%);
  pointer-events: none;
}

.services__item--brand .services__media img {
  object-position: 50% 26%;
}

.services__item--web .services__media img {
  object-position: 52% 37%;
}

.services__item--growth .services__media img {
  object-position: 50% 72%;
}

.signs {
  background: var(--bg-light);
  color: var(--text-muted);
  padding: 7.0rem 0 7.0rem;
}

.signs__inner {
  width: min(100%, 79rem);
  max-width: 79rem;
  margin: 0 auto;
  padding-inline: 0;
}

.signs__intro {
  margin: 0 0 0 0.9rem;
  font-size: 1.55rem;
  line-height: 1.35;
  font-weight: 300;
  max-width: 34rem;
}

.signs__title {
  margin: 6.3rem 6.3rem 0 auto;
  max-width: 100%;
  text-transform: uppercase;
  color: var(--text-bright);
  font-size: 3.0rem;
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: 0.03em;
  text-align: right;
}

.signs__title strong {
  font-weight: 700;
}

.signs__title-prefix,
.signs__title-anchor,
.signs__title-bottom {
  display: block;
  white-space: nowrap;
}

.signs__list {
  list-style: none;
  margin: 6.6rem 0 0;
  padding: 0;
}

.signs__item {
  margin: 0;
  color: #979797;
  font-size: 1.45rem;
  line-height: 1.34;
  font-weight: 300;
}

.signs__item+.signs__item {
  margin-top: 2.6rem;
}

.signs__item--1 {
  margin-left: 3.8rem;
}

.signs__item--2 {
  margin-left: 13.0rem;
  font-style: italic;
  font-weight: 600;
}

.signs__item--3 {
  margin-left: 23.0rem;
}

.signs__item--4 {
  margin-left: 35.0rem;
  font-style: italic;
  font-weight: 600;
}

.signs__item--5 {
  margin-left: 23.0rem;
}

.signs__item--6 {
  margin-left: 13.0rem;
  font-style: italic;
  font-weight: 600;
}

.signs__item--7 {
  margin-left: 7.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8em 2.4em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 400;
}

.btn--outline {
  border: 1px solid var(--text-bright);
  color: var(--text-bright);
  background: transparent;
  border-radius: 50px;
  padding: 0.7em 2.8em;
}

.btn--outline:hover {
  background: rgba(197, 174, 122, 0.1);
  color: #fff;
  border-color: #fff;
}

@media (min-width: 981px) {
  .hero__signature {
    font-size: clamp(7.2rem, 13.5vw, 14.5rem);
    white-space: nowrap;
    text-wrap: nowrap;
    transform: translateY(-0.05em);
  }

  .hero__meta {
    font-size: 1.6rem;
  }

  .clarity__copy {
    margin-left: auto;
    margin-right: auto;
  }

  .clarity__title {
    margin-left: 8.5rem;
  }

  .services__item {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.12fr) minmax(16rem, 34%);
    gap: 1.2rem;
    padding-left: 2.0rem;
    padding-right: 0;
  }

  .services__copy {
    max-width: 31rem;
    justify-self: end;
    padding-right: 0.65rem;
  }

  .services__media {
    height: 10.8rem;
  }

  .services__title-light {
    margin-top: 0.45rem;
  }

  .services__tags {
    flex-wrap: nowrap;
  }

  .signs__intro {
    margin-left: -3.4rem;
  }

  .signs__title-line {
    display: block;
  }

  .signs__title {
    margin-right: -3.4rem;
    text-align: right;
  }

  /* Unused classes removed: .signs__title-prefix, .signs__title-anchor, .signs__title-bottom */
}

@media (max-width: 980px) {
  .hero__topbar {
    padding-top: 1rem;
  }

  .hero__menu {
    gap: 1rem;
  }

  .hero__menu a {
    font-size: 0.75rem;
  }

  .hero__center {
    width: min(900px, 96vw);
  }

  .hero__meta {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
  }

  .clarity {
    padding-top: 4.5rem;
  }

  .clarity__title-strong {
    letter-spacing: 0.4em;
  }

  .clarity__title-light {
    letter-spacing: 0.4em;
  }

  .clarity__copy {
    width: min(100%, 34rem);
    font-size: 1.18rem;
  }

  .services {
    padding-top: 4.1rem;
  }

  .services__title-strong,
  .services__title-light {
    letter-spacing: 0.4em;
  }

  .services__item {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(12rem, 29%);
    gap: 0.9rem;
    padding-inline: 1rem;
  }

  .services__lead h3 {
    font-size: 2.2rem;
  }

  .services__copy {
    font-size: 1.02rem;
    max-width: 32rem;
  }

  .services__tags {
    flex-wrap: nowrap;
  }

  .signs__intro {
    margin-left: 0;
    font-size: 1.3rem;
    max-width: 24rem;
  }

  .signs__title {
    margin-right: 2.0rem;
    max-width: 42rem;
    font-size: 2.3rem;
  }

  .signs__item {
    font-size: 1.2rem;
  }

  .signs__item--1 {
    margin-left: 0.9rem;
  }

  .signs__item--2 {
    margin-left: 10vw;
  }

  .signs__item--3 {
    margin-left: 22vw;
  }

  .signs__item--4 {
    margin-left: 34vw;
  }

  .signs__item--5 {
    margin-left: 22vw;
  }

  .signs__item--6 {
    margin-left: 10vw;
  }

  .signs__item--7 {
    margin-left: 2.5rem;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 100svh;
  }

  .hero__bg {
    background-image: url("../assets/images/Hero Background-800.webp");
    background-image: -webkit-image-set(url("../assets/images/Hero Background-800.webp") 1x, url("../assets/images/Hero Background-1600.webp") 2x);
    background-image: image-set(url("../assets/images/Hero Background-800.webp") 1x, url("../assets/images/Hero Background-1600.webp") 2x);
    background-position: center center;
  }

  .hero::after {
    background:
      linear-gradient(to top,
        rgba(15, 15, 14, 0.58) 0%,
        rgba(15, 15, 14, 0.28) 28%,
        rgba(15, 15, 14, 0.1) 52%,
        rgba(15, 15, 14, 0) 72%),
      radial-gradient(circle at center, rgba(15, 15, 14, 0) 46%, rgba(15, 15, 14, 0.5) 100%);
  }

  .hero__grain {
    opacity: 0.06;
  }

  @media (max-width: 480px) {
    .hero__bg { background-image: url("../assets/images/Hero Background-400.webp"); }
  }


  .hero__topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1rem 0;
  }

  .hero__mark-icon {
    width: 3.05rem;
  }

  .hero__menu {
    position: relative;
    width: 2rem;
    height: 1.2rem;
    margin: 0;
  }

  .hero__menu li {
    display: none;
  }

  .hero__menu::before {
    content: "\2630";
    position: absolute;
    inset: 50% 0 auto auto;
    transform: translateY(-50%);
    color: var(--text-bright);
    font-size: 1.9rem;
    line-height: 1;
    letter-spacing: 0;
  }

  .hero__center {
    inset: 66% auto auto 50%;
    width: min(620px, 96vw);
    transform: translate(-50%, calc(-50% - (var(--hero-scroll-progress) * 1.2rem)));
  }

  .hero__center::before {
    content: "EXPERIENCE\A DESIGNER";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    white-space: pre;
    text-transform: uppercase;
    font-size: 3.1rem;
    line-height: 0.9;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: rgba(184, 180, 164, 0.26);
    pointer-events: none;
  }

  .hero__signature {
    position: relative;
    z-index: 1;
    font-size: 5.6rem;
    margin: 0;
    white-space: nowrap;
    transform: translateY(calc(var(--hero-scroll-progress) * -0.05em));
  }

  .hero__meta {
    font-size: 1.32rem;
    letter-spacing: 0.16em;
  }

  .hero__meta--left {
    top: 5.8rem;
    left: 1rem;
    bottom: auto;
    max-width: none;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
  }

  .hero__meta--right {
    left: 50%;
    right: auto;
    bottom: 3.5rem;
    transform: translateX(-50%);
    text-align: center;
    width: calc(100% - 2rem);
    max-width: 22rem;
  }

  .hero__meta--right strong {
    font-size: 1.48em;
    letter-spacing: 0.14em;
  }

  .clarity {
    padding: 4.8rem 1.35rem 4.4rem;
  }

  .clarity__note {
    margin-bottom: 3rem;
    max-width: 14.5rem;
    font-size: 0.86rem;
  }

  .clarity__title-strong {
    font-size: 2.3rem;
    letter-spacing: 0.4em;
  }

  .clarity__title-light {
    margin-top: 1.35rem;
    font-size: 1.48rem;
    letter-spacing: 0.22em;
    white-space: nowrap;
  }

  .clarity__copy {
    margin-top: 2.7rem;
    width: 94%;
    font-size: 1.04rem;
    line-height: 1.5;
  }

  .clarity__tagline {
    margin-top: 2.5rem !important;
    font-size: 1.04rem;
  }

  .clarity__tagline::after {
    margin-top: 2rem;
    width: min(18.5rem, 86%);
  }

  .services {
    padding: 3.8rem 0 3.4rem;
  }

  .services__header {
    margin-bottom: 2.2rem;
    width: calc(100% - 2rem);
  }

  .services__title-strong {
    font-size: 2.5rem;
    letter-spacing: 0.4em;
  }

  .services__title-light {
    margin-top: 0.45rem;
    font-size: 2.1rem;
    letter-spacing: 0.4em;
  }

  .services__item {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    padding: 1.3rem 0 1.5rem;
  }

  .services__lead {
    padding-left: 0.2rem;
    padding-block: 0;
  }

  .services__lead h3 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .services__tags li {
    font-size: 0.68rem;
    padding: 0.33rem 0.9rem;
  }

  .services__copy {
    max-width: none;
    font-size: 1rem;
    line-height: 1.5;
    min-height: auto;
    text-align: left;
    padding: 0 0.15rem;
  }

  .services__media {
    height: 9.3rem;
    border-radius: 0;
  }

  .signs {
    padding: 4.1rem 1.2rem 4.5rem;
  }

  .signs__intro {
    font-size: 1.95rem;
    line-height: 1.35;
  }

  .signs__title {
    margin-top: 2.8rem;
    font-size: 2.55rem;
    line-height: 1.28;
    text-align: right;
  }

  .signs__list {
    margin-top: 3.1rem;
  }

  .signs__item {
    margin-left: 0;
    font-size: 1.35rem;
    line-height: 1.4;
  }

  .signs__item+.signs__item {
    margin-top: 1.6rem;
  }

  .signs__item--1,
  .signs__item--2,
  .signs__item--3,
  .signs__item--4,
  .signs__item--5,
  .signs__item--6,
  .signs__item--7 {
    margin-left: 0;
  }
}



@media (max-width: 980px) {
  .hero__mark-icon {
    width: 2.65rem;
  }

  .hero__signature {
    font-size: 4.425rem;
  }

  .hero__meta {
    bottom: 1.5rem;
    font-size: 0.9rem;
  }

  .hero__meta--left {
    left: 1.625rem;
  }

  .hero__meta--right {
    right: 1.625rem;
  }

  .clarity {
    padding: 6.75rem;
  }

  .clarity__note {
    margin: 3.1rem;
    font-size: 0.93rem;
  }

  .clarity__title-strong {
    font-size: 2.025rem;
  }

  .clarity__title-light {
    margin-top: 1.775rem;
    font-size: 1.31rem;
  }

  .clarity__copy {
    margin: 3.35rem;
    font-size: 1.08rem;
  }

  .clarity__tagline {
    margin-top: 2.7rem;
    font-size: 1.3rem;
  }

  .clarity__tagline::after {
    margin: 2.3rem;
  }

  .services {
    padding: 6.15rem;
  }

  .services__header {
    margin: 3.8rem;
  }

  .services__title-strong {
    font-size: 2.125rem;
  }

  .services__title-light {
    margin-top: 0.325rem;
    font-size: 1.8rem;
  }

  .services__item {
    gap: 0.9rem;
    padding: 0.675rem;
    padding-left: 1.5rem;
  }

  .services__lead h3 {
    font-size: 2.2rem;
  }

  .services__tags li {
    font-size: 0.8rem;
  }

  .services__copy {
    font-size: 0.95rem;
    padding-right: 0.425rem;
  }

  .services__media {
    height: 9.7rem;
  }

  .signs {
    padding: 5.9rem;
  }

  .signs__intro {
    margin: 0.45rem;
    font-size: 1.15rem;
    margin-left: -4.7rem;
  }

  .signs__title {
    margin: 5.25rem;
    font-size: 2.2rem;
    margin-right: 1.5rem;
  }

  .signs__list {
    margin: 5.4rem;
  }

  .signs__item {
    font-size: 1.075rem;
  }

  .signs__item+.signs__item {
    margin-top: 2.05rem;
  }

  .signs__item--1 {
    margin-left: 2.85rem;
  }

  .signs__item--2 {
    margin-left: 11rem;
  }

  .signs__item--3 {
    margin-left: 20rem;
  }

  .signs__item--4 {
    margin-left: 31.5rem;
  }

  .signs__item--5 {
    margin-left: 20rem;
  }

  .signs__item--6 {
    margin-left: 11rem;
  }

  .signs__item--7 {
    margin-left: 6.15rem;
  }

  .clarity__title {
    margin-left: 5.35rem;
  }

}

@media (max-width: 680px) {
  .hero__mark-icon {
    width: 2.35rem;
  }

  .hero__signature {
    font-size: 3.25rem;
  }

  .hero__meta {
    bottom: 1.0rem;
    font-size: 0.78rem;
  }

  .hero__meta--left {
    left: 1.25rem;
  }

  .hero__meta--right {
    right: 1.25rem;
  }

  .clarity {
    padding: 5.0rem;
  }

  .clarity__note {
    margin: 2.4rem;
    font-size: 0.86rem;
  }

  .clarity__title-strong {
    font-size: 1.75rem;
  }

  .clarity__title-light {
    margin-top: 1.35rem;
    font-size: 1.14rem;
  }

  .clarity__copy {
    margin: 2.2rem;
    font-size: 0.98rem;
  }

  .clarity__tagline {
    margin-top: 2.0rem;
    font-size: 1.08rem;
  }

  .clarity__tagline::after {
    margin: 1.8rem;
  }

  .services {
    padding: 4.8rem;
  }

  .services__header {
    margin: 2.8rem;
  }

  .services__title-strong {
    font-size: 1.75rem;
  }

  .services__title-light {
    margin-top: 0.2rem;
    font-size: 1.5rem;
  }

  .services__item {
    gap: 0.6rem;
    padding: 0.45rem;
    padding-left: 1.0rem;
  }

  .services__lead h3 {
    font-size: 1.9rem;
  }

  .services__tags li {
    font-size: 0.7rem;
  }

  .services__copy {
    font-size: 0.88rem;
    padding-right: 0.2rem;
  }

  .services__media {
    height: 8.6rem;
  }

  .signs {
    padding: 4.8rem;
  }

  .signs__intro {
    margin: 0.0rem;
    font-size: 1.0rem;
    margin-left: -6.0rem;
  }

  .signs__title {
    margin: 4.2rem;
    font-size: 1.85rem;
    margin-right: 1.0rem;
  }

  .signs__list {
    margin: 4.2rem;
  }

  .signs__item {
    font-size: 0.95rem;
  }

  .signs__item+.signs__item {
    margin-top: 1.5rem;
  }

  .signs__item--1 {
    margin-left: 1.9rem;
  }

  .signs__item--2 {
    margin-left: 9.0rem;
  }

  .signs__item--3 {
    margin-left: 17.0rem;
  }

  .signs__item--4 {
    margin-left: 28.0rem;
  }

  .signs__item--5 {
    margin-left: 17.0rem;
  }

  .signs__item--6 {
    margin-left: 9.0rem;
  }

  .signs__item--7 {
    margin-left: 4.8rem;
  }

  .clarity__title {
    margin-left: 2.2rem;
  }

}

@media (min-width: 681px) and (max-width: 980px) {
  .hero__bg {
    background-image: url("../assets/images/Hero Background-800.webp");
    background-image: -webkit-image-set(url("../assets/images/Hero Background-800.webp") 1x, url("../assets/images/Hero Background-1600.webp") 2x);
    background-image: image-set(url("../assets/images/Hero Background-800.webp") 1x, url("../assets/images/Hero Background-1600.webp") 2x);
    background-position: center center;
  }

  .hero::after {
    background:
      linear-gradient(to top,
        rgba(15, 15, 14, 0.58) 0%,
        rgba(15, 15, 14, 0.28) 28%,
        rgba(15, 15, 14, 0.1) 52%,
        rgba(15, 15, 14, 0) 72%),
      radial-gradient(circle at center, rgba(15, 15, 14, 0) 46%, rgba(15, 15, 14, 0.5) 100%);
  }

  .hero__grain {
    opacity: 0.06;
  }

  .hero__center {
    inset: 63% auto auto 50%;
    width: min(820px, 95vw);
  }

  .hero__center::before {
    content: "EXPERIENCE\A DESIGNER";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    white-space: pre;
    text-transform: uppercase;
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: 0.17em;
    font-weight: 700;
    color: rgba(184, 180, 164, 0.28);
    pointer-events: none;
  }

  .hero__signature {
    position: relative;
    z-index: 1;
    font-size: 7.2rem;
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .hero__signature {
    font-size: clamp(3.1rem, 13.5vw, 5.2rem);
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .hero__center::before {
    font-size: clamp(2.7rem, 12.5vw, 4.2rem);
    letter-spacing: 0.15em;
    color: rgba(184, 180, 164, 0.28);
  }

  .hero__meta {
    font-size: 0.9rem;
  }

  .hero__meta--right {
    bottom: 5.1rem;
  }

  .hero__meta--right strong {
    font-size: 1.62em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg,
  .hero__grain,
  .hero::before {
    animation: none;
  }

  .hero.hero--snap-out .hero__content {
    animation: none;
  }

  .hero.hero--snap-out .hero__whiteout {
    animation: none;
  }
}

/* Final desktop override to avoid legacy rule collisions */
@media (min-width: 981px) {
  .hero__bg {
    background-image: url("../assets/images/New Background-opt-opt.webp");
    background-image: -webkit-image-set(url("../assets/images/New Background-opt-opt.webp") 1x, url("../assets/images/New Background-opt-opt.webp") 2x);
    background-image: image-set(url("../assets/images/New Background-opt-opt.webp") 1x, url("../assets/images/New Background-opt-opt.webp") 2x);
  }
}

