/* =============================================================
   ORZAN DIGITAL - Stylesheet
   Single font: Satoshi (Fontshare)
   ============================================================= */

:root {
  --c-primary: #0B1117;
  --c-slate:   #1A2430;
  --c-gold:    #BA8E5C;
  --c-gold-2:  #d6ab78;
  --c-ivory:   #F5F3EF;
  --c-grey:    #D8D4CD;
  --c-grey-2:  #ece9e3;
  --c-text:    #0B1117;
  --c-muted:   #6b7178;

  --ff: "Satoshi", "Neue Montreal", "General Sans", "Inter", "Manrope",
        system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container-max: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-py: clamp(56px, 8vw, 120px);

  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --header-h: 88px;

  /* Standardised letter-spacing tokens */
  --tracking-eyebrow: 0.22em;   /* large all-caps labels (eyebrows, footer labels) */
  --tracking-label:   0.18em;   /* mid all-caps (tags, work-item meta, form labels) */
  --tracking-button:  0.12em;   /* button text */
}

/* ============================ RESET / BASE ============================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--ff);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button {
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: inherit;
  padding: 0;
}
a, button, input, select, textarea, [role="button"] {
  touch-action: manipulation;
}

::selection { background: var(--c-gold); color: var(--c-primary); }

/* Global keyboard focus indicator */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn-orzan:focus-visible,
.consult__close:focus-visible,
.site-header__toggle:focus-visible {
  outline-offset: 4px;
}
.consult-form__field input:focus-visible,
.consult-form__field select:focus-visible,
.consult-form__field textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--c-gold);
  box-shadow: 0 1px 0 0 var(--c-gold);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-primary); color: var(--c-ivory);
  padding: 12px 16px; z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

.container-xxl { max-width: var(--container-max); padding-left: var(--gutter); padding-right: var(--gutter); margin: 0 auto; width: 100%; }

/* ============================ TYPOGRAPHY ============================ */

.eyebrow {
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-gold);
  display: inline-block;
  line-height: 1.4;
}
.eyebrow em { font-style: normal; color: var(--c-ivory); }
.eyebrow--dark { color: var(--c-gold); }
.eyebrow--dark em { color: var(--c-primary); font-style: normal; }
.eyebrow--light { color: var(--c-gold); }
.eyebrow--right { color: var(--c-grey); }

.section__title {
  font-size: clamp(36px, 6.2vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 16px 0 0;
  color: var(--c-primary);
  text-wrap: balance;
}
.section__title em {
  font-style: italic;
  font-weight: 400;
}
.section__title--invert { color: var(--c-ivory); }
.section__title .gold { color: var(--c-gold); }

.gold { color: var(--c-gold); }

/* ============================ BUTTONS ============================ */

.btn-orzan {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.2;
}
.btn-orzan svg { transition: transform .4s var(--ease-out); }
.btn-orzan:hover svg { transform: translate(3px, -3px); }

.btn-orzan--gold {
  background: var(--c-gold);
  color: var(--c-primary);
}
.btn-orzan--gold:hover {
  background: var(--c-primary);
  color: var(--c-ivory);
}

.btn-orzan--ghost {
  background: transparent;
  color: var(--c-ivory);
  border-color: rgba(245, 243, 239, 0.3);
}
.btn-orzan--ghost:hover {
  background: var(--c-ivory);
  color: var(--c-primary);
  border-color: var(--c-ivory);
}

.btn-orzan--lg {
  padding: 18px 30px;
  font-size: 14px;
}

/* ============================ HEADER (FLOATING PILL) ============================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .4s var(--ease);
  pointer-events: none;
}
.site-header.is-scrolled { padding: 12px 0; }
.site-header > * { pointer-events: auto; }

/* Scroll progress bar */
.scroll-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(245,243,239,0.06);
  z-index: 2;
  pointer-events: none;
}
.site-header.is-light .scroll-progress { background: rgba(11,17,23,0.06); }
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--c-gold);
  transform-origin: left center;
  transition: width .15s linear;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* The floating pills */
.nav-pill,
.cta-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(245,243,239,0.12);
  background: rgba(11, 17, 23, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.6);
}
.site-header.is-scrolled .nav-pill,
.site-header.is-scrolled .cta-pill {
  background: rgba(11, 17, 23, 0.78);
  border-color: rgba(245,243,239,0.16);
}
.site-header.is-light .nav-pill,
.site-header.is-light .cta-pill {
  background: rgba(245, 243, 239, 0.78);
  border-color: rgba(11,17,23,0.08);
  box-shadow: 0 12px 40px -20px rgba(11,17,23,0.18);
}
.site-header.is-scrolled.is-light .nav-pill,
.site-header.is-scrolled.is-light .cta-pill {
  background: rgba(245, 243, 239, 0.92);
}

.nav-pill {
  padding: 10px 22px 10px 14px;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-pill__divider {
  width: 1px;
  height: 28px;
  background: rgba(245,243,239,0.14);
  flex: 0 0 auto;
}
.site-header.is-light .nav-pill__divider { background: rgba(11,17,23,0.1); }

.cta-pill {
  padding: 8px 8px 8px 22px;
  gap: 18px;
  flex: 0 0 auto;
}
.cta-pill__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--c-ivory);
  font-weight: 500;
  line-height: 1;
  transition: color .4s var(--ease);
}
.site-header.is-light .cta-pill__status { color: var(--c-primary); }
.cta-pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-gold);
  position: relative;
}
.cta-pill__dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--c-gold);
  opacity: 0.5;
  animation: pulseDot 2.4s ease-out infinite;
}
@keyframes pulseDot {
  0%   { transform: scale(.6); opacity: .8; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-pill__dot::before { animation: none; }
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  position: relative;
  flex: 0 0 auto;
}
.site-header__logo {
  display: block;
  width: auto;
  height: 44px;
  transition: opacity .4s var(--ease), height .4s var(--ease);
}
.site-header__logo--dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.site-header.is-light .site-header__logo--light { opacity: 0; }
.site-header.is-light .site-header__logo--dark  { opacity: 1; }
.site-header.is-scrolled .site-header__logo { height: 38px; }

.site-header__nav {
  position: relative;
}
.site-header__nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.site-header__nav a {
  position: relative;
  color: var(--c-ivory);
  font-size: 13px;
  letter-spacing: .06em;
  padding: 8px 4px;
  transition: color .3s var(--ease);
  font-weight: 500;
}
.site-header.is-light .site-header__nav a { color: var(--c-primary); }
.site-header__nav a:hover { color: var(--c-gold); }
.site-header__nav a.active { color: var(--c-gold); }

/* Animated active indicator (gold dot) */
.nav-pill__indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-gold);
  opacity: 0;
  transform: translateX(0);
  transition: transform .55s var(--ease-out), opacity .35s var(--ease), width .35s var(--ease);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(186,142,92,0.6);
}
.nav-pill__indicator.is-visible { opacity: 1; }

.site-header__cta { padding: 14px 22px; }

.site-header__toggle {
  display: none;
  width: 52px; height: 52px;
  background: rgba(11,17,23,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(245,243,239,0.12);
  border-radius: 999px;
  align-items: center; justify-content: center;
  position: relative;
  flex: 0 0 auto;
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.6);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.site-header.is-light .site-header__toggle {
  background: rgba(245,243,239,0.78);
  border-color: rgba(11,17,23,0.08);
}
.site-header__toggle span {
  display: block;
  position: absolute;
  left: 16px; right: 16px;
  height: 1.2px;
  background: var(--c-ivory);
  transition: transform .35s var(--ease), top .35s var(--ease), background .35s var(--ease);
}
.site-header.is-light .site-header__toggle span { background: var(--c-primary); }
.site-header__toggle span:nth-child(1) { top: 21px; }
.site-header__toggle span:nth-child(2) { top: 29px; }
.site-header__toggle[aria-expanded="true"] span:nth-child(1) { top: 25px; transform: rotate(45deg); }
.site-header__toggle[aria-expanded="true"] span:nth-child(2) { top: 25px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  background: var(--c-primary);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 18px;
  padding: 100px 24px 60px;
  z-index: 90;
  transform: translateY(-100%);
  transition: transform .55s var(--ease-out);
  visibility: hidden;
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
}
.mobile-menu ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 24px;
  align-items: center; text-align: center;
}
.mobile-menu a {
  color: var(--c-ivory);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mobile-menu a:hover { color: var(--c-gold); }

/* ============================ HERO ============================ */

.hero {
  position: relative;
  background: var(--c-primary);
  color: var(--c-ivory);
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 56px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(245,243,239,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,243,239,0.04) 1px, transparent 1px);
  background-size: 8.333% 100px;
  mask-image: radial-gradient(ellipse at 50% 60%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 60%, black 0%, transparent 75%);
}

.hero__orb {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(560px, 70vw, 1100px);
  height: clamp(560px, 70vw, 1100px);
  filter: drop-shadow(0 0 80px rgba(186,142,92,0.18));
}
.hero__ring {
  transform-origin: 400px 400px;
  animation: spin 60s linear infinite;
}
.hero__ring--2 { animation-duration: 90s; animation-direction: reverse; stroke-opacity: 0.3 !important; }
.hero__ring--3 { animation-duration: 130s; stroke-opacity: 0.22 !important; }
.hero__ring--4 { animation-duration: 200s; animation-direction: reverse; stroke-opacity: 0.14 !important; }
.hero__dot-group {
  transform-origin: 400px 400px;
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero__ring, .hero__dot-group { animation: none; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(245,243,239,0.1);
  padding-top: 16px;
}
.hero__meta .eyebrow--right { float: none; }

.hero__title {
  margin: clamp(24px, 5vw, 56px) 0 0;
  font-size: clamp(32px, 5.2vw, 80px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;  /* prevents italic descender clipping */
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 243, 239, 0.62);
}
.hero__dot {
  display: inline-block;
  color: var(--c-gold);
  transform: translateY(-0.08em);
  margin-left: 0.04em;
}

.hero__bottom {
  margin-top: auto;
  padding-top: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero__sub {
  max-width: 520px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(245,243,239,0.78);
  margin: 0;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.55);
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(245,243,239,0.5), rgba(245,243,239,0));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--c-gold);
  animation: scrollDrip 2.6s var(--ease-out) infinite;
}
@keyframes scrollDrip {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* ============================ TICKER ============================ */

.ticker {
  background: var(--c-primary);
  color: var(--c-ivory);
  border-top: 1px solid rgba(245,243,239,0.08);
  border-bottom: 1px solid rgba(245,243,239,0.08);
  overflow: hidden;
  padding: 22px 0;
}
.ticker__track {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.ticker__track span {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ticker__track .ticker__dot { color: var(--c-gold); font-size: 10px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ============================ SECTIONS ============================ */

.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section__header {
  margin-bottom: clamp(32px, 4vw, 60px);
}
.section__header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.section__lede {
  max-width: 380px;
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.section__body {
  margin-top: clamp(20px, 2.8vw, 32px);
}
.section__body p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: #3a4048;
  margin: 0 0 14px;
  max-width: 60ch;
}
.section__body p:last-child { margin-bottom: 0; }

/* ============================ ABOUT ============================ */

.section--about {
  background: var(--c-ivory);
  border-bottom: 1px solid rgba(11,17,23,0.06);
  padding-bottom: clamp(40px, 6vw, 80px);
}

/* ============================ SERVICES ============================ */

.section--services {
  background: var(--c-ivory);
  border-bottom: 1px solid rgba(11,17,23,0.06);
  padding-top: clamp(40px, 6vw, 80px);
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(11,17,23,0.12);
  border-left: 1px solid rgba(11,17,23,0.12);
}
.service {
  position: relative;
  padding: 36px 32px 40px;
  border-right: 1px solid rgba(11,17,23,0.12);
  border-bottom: 1px solid rgba(11,17,23,0.12);
  background: var(--c-ivory);
  overflow: hidden;
  transition: background .5s var(--ease), color .5s var(--ease);
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-primary);
  transform: translateY(101%);
  transition: transform .6s var(--ease-out);
  z-index: 0;
}
.service:hover::before { transform: translateY(0); }
.service:hover { color: var(--c-ivory); }
.service > * { position: relative; z-index: 1; }

.service__num {
  font-size: 12px;
  letter-spacing: var(--tracking-label);
  color: var(--c-gold);
  font-weight: 500;
}
.service__title {
  margin: 20px 0 12px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.service__copy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
  max-width: 36ch;
  transition: color .5s var(--ease);
}
.service:hover .service__copy { color: rgba(245,243,239,0.78); }

.service__arrow {
  position: absolute;
  right: 28px; top: 32px;
  color: var(--c-primary);
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .5s var(--ease);
  z-index: 2;
}
.service:hover .service__arrow {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--c-gold);
}

/* ============================ WORK ============================ */

.section--work {
  background: var(--c-primary);
  color: var(--c-ivory);
}
.section--work .section__title { color: var(--c-ivory); }
.section--work .section__lede { color: rgba(245,243,239,0.6); }

.work-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(245,243,239,0.12);
}

.work-item {
  border-bottom: 1px solid rgba(245,243,239,0.12);
  position: relative;
}
.work-item__link {
  display: block;
  padding: 26px 0;
  position: relative;
  overflow: hidden;
}
.work-item__row {
  display: grid;
  grid-template-columns: 60px 1.4fr 1fr auto;
  gap: 28px;
  align-items: center;
}
.work-item__num {
  font-size: 12px;
  letter-spacing: var(--tracking-label);
  color: var(--c-gold);
  font-weight: 500;
}
.work-item__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  transition: transform .5s var(--ease-out), color .4s var(--ease);
  text-wrap: balance;
}
.work-item__tag {
  font-size: 12px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: rgba(245,243,239,0.55);
  font-weight: 500;
  line-height: 1.4;
}
.work-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
  color: var(--c-ivory);
  border: 1px solid rgba(245,243,239,0.25);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.work-item__cta svg { transition: transform .4s var(--ease-out); }
.work-item:hover .work-item__cta {
  background: var(--c-gold);
  color: var(--c-primary);
  border-color: var(--c-gold);
}
.work-item:hover .work-item__cta svg { transform: translate(2px,-2px); }

.work-item__desc {
  margin: 14px 0 0;
  padding-left: 88px;
  max-width: 70ch;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245,243,239,0.62);
}

.work-item:hover .work-item__title {
  color: var(--c-gold);
  transform: translateX(8px);
}

.work-item__media {
  position: absolute;
  right: 14%;
  top: 50%;
  transform: translate(40px, -50%) scale(0.85);
  width: 320px;
  height: 200px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s var(--ease), transform .6s var(--ease-out);
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(245,243,239,0.12);
  background: var(--c-slate);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.work-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.work-item:hover .work-item__media {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

@media (max-width: 991.98px) {
  .work-item__media { display: none; }
}

/* ============================ PROCESS ============================ */

.section--process {
  background: var(--c-grey-2);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(11,17,23,0.15);
}
.process__step {
  padding: 28px 24px 36px;
  border-right: 1px solid rgba(11,17,23,0.1);
  position: relative;
  transition: transform .5s var(--ease);
}
.process__step:first-child { padding-left: 0; }
.process__step:last-child  { border-right: none; padding-right: 0; }
.process__step::before {
  content: "";
  position: absolute;
  top: -1px; left: 28px;
  width: 28px; height: 1px;
  background: var(--c-gold);
}
.process__step:first-child::before { left: 0; }
.process__num {
  display: inline-block;
  font-size: 12px;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--c-gold);
  font-weight: 500;
}
.process__title {
  margin: 44px 0 12px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--c-primary);
}
.process__copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-muted);
  max-width: 32ch;
}

/* ============================ DIFFERENTIATOR ============================ */

.section--differ {
  background: var(--c-slate);
  color: var(--c-ivory);
  position: relative;
  overflow: hidden;
}
.section--differ::before {
  content: "";
  position: absolute;
  right: -180px; top: 50%;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(186,142,92,0.15);
  transform: translateY(-50%);
}
.section--differ::after {
  content: "";
  position: absolute;
  right: -120px; top: 50%;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(186,142,92,0.22);
  transform: translateY(-50%);
}
.section--differ > * { position: relative; z-index: 1; }

.section--differ .eyebrow em { color: var(--c-ivory); }

.differ__body {
  padding-top: 20px;
}
.differ__body p {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: rgba(245,243,239,0.78);
  margin: 0 0 20px;
  max-width: 56ch;
}
.differ__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  border-top: 1px solid rgba(245,243,239,0.12);
}
.differ__list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,243,239,0.12);
  font-size: clamp(17px, 1.4vw, 20px);
  letter-spacing: -0.005em;
  line-height: 1.5;
  color: var(--c-ivory);
}
.differ__list li::first-letter {
  color: var(--c-gold);
  font-weight: 500;
}
.differ__close { color: var(--c-grey); font-style: italic; }

/* ============================ TESTIMONIALS ============================ */

.section--testimonials {
  background: var(--c-primary);
  color: var(--c-ivory);
  position: relative;
  overflow: hidden;
}
.section--testimonials::before {
  content: "";
  position: absolute;
  left: -120px; top: 20%;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(186,142,92,0.12);
  pointer-events: none;
}
.section--testimonials::after {
  content: "";
  position: absolute;
  left: -60px; top: 20%;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(186,142,92,0.18);
  pointer-events: none;
}
.section--testimonials > * { position: relative; z-index: 1; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245,243,239,0.12);
}
.testimonial {
  margin: 0;
  padding: 40px 32px 36px 0;
  border-right: 1px solid rgba(245,243,239,0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .5s var(--ease);
}
.testimonial:last-child { border-right: none; padding-right: 0; }
.testimonial:not(:first-child) { padding-left: 36px; }
.testimonial::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 28px; height: 1px;
  background: var(--c-gold);
}
.testimonial:not(:first-child)::before { left: 36px; }

.testimonial__mark {
  color: var(--c-gold);
  opacity: 0.9;
}
.testimonial__quote {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--c-ivory);
  max-width: 36ch;
  flex: 1;
  font-weight: 400;
}
.testimonial__person {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(245,243,239,0.12);
}
.testimonial__name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-ivory);
  line-height: 1.4;
}
.testimonial__role {
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================ FAQ ============================ */

.section--faq {
  background: var(--c-ivory);
  border-bottom: 1px solid rgba(11, 17, 23, 0.06);
}

.faq {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(11, 17, 23, 0.12);
}
.faq__item {
  border-bottom: 1px solid rgba(11, 17, 23, 0.12);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  padding: 26px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--c-primary);
  transition: color .3s var(--ease), padding-left .4s var(--ease-out);
  font-family: var(--ff);
}
.faq__question:hover {
  color: var(--c-gold);
  padding-left: 4px;
}
.faq__item.is-open .faq__question {
  color: var(--c-gold);
}

.faq__q-text {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.35;
}

.faq__toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-block;
}
.faq__toggle-h,
.faq__toggle-v {
  position: absolute;
  background: currentColor;
  transition: transform .4s var(--ease-out), opacity .35s var(--ease);
}
.faq__toggle-h {
  top: 50%; left: 0; right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq__toggle-v {
  left: 50%; top: 0; bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
  transform-origin: center;
}
.faq__item.is-open .faq__toggle-v {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
.faq__item.is-open .faq__toggle-h {
  transform: translateY(-50%) rotate(180deg);
}

.faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease-out);
}
.faq__item.is-open .faq__answer-wrap {
  grid-template-rows: 1fr;
}
.faq__answer {
  overflow: hidden;
}
.faq__answer p {
  margin: 0;
  padding: 4px 56px 28px 0;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: var(--c-muted);
  max-width: 70ch;
}

@media (max-width: 599.98px) {
  .faq__question { padding: 22px 0; }
  .faq__answer p { padding-right: 32px; padding-bottom: 22px; }
}

/* ============================ CONTACT ============================ */

.section--contact {
  background: var(--c-ivory);
  position: relative;
  overflow: hidden;
  padding-bottom: calc(var(--section-py) + 16px);
}
.section--contact::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: clamp(500px, 60vw, 900px);
  height: clamp(500px, 60vw, 900px);
  border-radius: 50%;
  border: 1px solid rgba(186,142,92,0.18);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.section--contact::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: clamp(280px, 36vw, 540px);
  height: clamp(280px, 36vw, 540px);
  border-radius: 50%;
  border: 1px solid rgba(186,142,92,0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact__title {
  margin: 24px 0 24px;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--c-primary);
  text-wrap: balance;
}
.contact__title em { font-style: italic; font-weight: 400; }
.contact__copy {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--c-muted);
  max-width: 56ch;
  margin: 0 auto 32px;
}
.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.012em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11,17,23,0.2);
  margin-bottom: 32px;
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.contact__email svg { transition: transform .4s var(--ease-out); }
.contact__email:hover {
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.contact__email:hover svg { transform: translate(3px, -3px); }

/* ============================ FOOTER ============================ */

.site-footer {
  background: var(--c-primary);
  color: var(--c-ivory);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(245,243,239,0.06);
}
.site-footer__mark {
  display: inline-block;
  margin-bottom: 22px;
  line-height: 0;
  transition: transform .5s var(--ease-out), opacity .3s var(--ease);
}
.site-footer__mark:hover { transform: translateY(-3px); }
.site-footer__mark:active { opacity: 0.9; }
.site-footer__mark img {
  display: block;
  height: clamp(56px, 5.5vw, 76px);
  width: auto;
  max-width: 100%;
}
.site-footer__tag {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--c-gold);
  line-height: 1.4;
}
.site-footer__sub {
  margin: 0;
  color: rgba(245,243,239,0.55);
  font-size: 14px;
  line-height: 1.55;
  max-width: 36ch;
}

.site-footer__label {
  display: block;
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(245,243,239,0.45);
  margin-bottom: 18px;
  line-height: 1.4;
}
.site-footer__nav {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(245,243,239,0.85);
  transition: color .3s var(--ease);
}
.site-footer__nav a:hover { color: var(--c-gold); }
.site-footer__nav .ext-arrow {
  transition: transform .4s var(--ease-out);
  opacity: 0.7;
}
.site-footer__nav a:hover .ext-arrow {
  transform: translate(2px, -2px);
  opacity: 1;
}

.site-footer__bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(245,243,239,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: rgba(245,243,239,0.45);
  line-height: 1.5;
}
.site-footer__top {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--c-ivory);
  transition: color .3s var(--ease);
}
.site-footer__top svg { transition: transform .4s var(--ease-out); }
.site-footer__top:hover { color: var(--c-gold); }
.site-footer__top:hover svg { transform: translateY(-3px); }

@media (max-width: 599.98px) {
  .site-footer__mark img { height: 52px; }
}

/* ============================ REVEAL ANIMATIONS ============================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
/* Hold reveal animations until the loader has faded out */
body.is-loading .reveal {
  opacity: 0 !important;
  transform: translateY(28px) !important;
  transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================ CONSULTATION MODAL ============================ */

.consult {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.consult.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity .35s var(--ease), visibility 0s linear 0s;
}
.consult__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,17,23,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.consult__panel {
  position: relative;
  width: 100%;
  max-width: 980px;
  max-height: calc(100vh - 48px);
  max-height: calc(100svh - 48px);
  max-height: calc(100dvh - 48px);
  background: var(--c-ivory);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 360px 1fr;
  overflow: hidden;
  box-shadow: 0 40px 120px -20px rgba(0,0,0,0.6);
  transform: translateY(24px) scale(.98);
  transition: transform .5s var(--ease-out);
}
.consult.is-open .consult__panel {
  transform: translateY(0) scale(1);
}

.consult__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px; height: 40px;
  background: rgba(245,243,239,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(11,17,23,0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  z-index: 5;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.consult__close:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-primary);
  transform: rotate(90deg);
}

/* Left aside */
.consult__aside {
  position: relative;
  background: var(--c-primary);
  color: var(--c-ivory);
  padding: 48px 40px;
  overflow: hidden;
  display: flex;
}
.consult__rings {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
}
.consult__ring {
  transform-origin: 200px 200px;
  animation: spin 90s linear infinite;
}
.consult__ring:nth-child(2) { animation-duration: 140s; animation-direction: reverse; }
.consult__ring:nth-child(3) { animation-duration: 200s; }
@media (prefers-reduced-motion: reduce) {
  .consult__ring { animation: none; }
}
.consult__aside-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.consult__aside .eyebrow { color: var(--c-gold); }
.consult__aside-title {
  margin: 18px 0 32px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 14ch;
}
.consult__list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.consult__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245,243,239,0.84);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245,243,239,0.1);
}
.consult__list li:last-child { border-bottom: none; }
.consult__list span {
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  color: var(--c-gold);
  font-weight: 500;
  padding-top: 3px;
  min-width: 20px;
  line-height: 1.4;
}
.consult__contact {
  margin: 24px 0 0;
  font-size: 13px;
  color: rgba(245,243,239,0.6);
}
.consult__contact a {
  color: var(--c-gold);
  border-bottom: 1px solid rgba(186,142,92,0.4);
}
.consult__contact a:hover { border-bottom-color: var(--c-gold); }

/* Right main */
.consult__main {
  padding: 48px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.consult__header { margin-bottom: 28px; }
.consult__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--c-primary);
}
.consult__sub {
  margin: 0;
  color: var(--c-muted);
  font-size: 15px;
}

/* Form */
.consult-form { display: flex; flex-direction: column; gap: 18px; }
.consult-form__honey { position: absolute; left: -9999px; opacity: 0; }
.consult-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.consult-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.consult-form__label {
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  line-height: 1.4;
}
.consult-form__field input,
.consult-form__field select,
.consult-form__field textarea {
  font: inherit;
  font-size: 16px;   /* 16px+ prevents iOS auto-zoom on focus */
  line-height: 1.4;
  color: var(--c-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(11,17,23,0.18);
  padding: 12px 0;
  border-radius: 0;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--ff);
}
.consult-form__field input:focus,
.consult-form__field select:focus,
.consult-form__field textarea:focus {
  border-bottom-color: var(--c-gold);
  outline: none;
}
.consult-form__field input:invalid:not(:placeholder-shown),
.consult-form__field textarea:invalid:not(:placeholder-shown) {
  border-bottom-color: #b14b3e;
}
.consult-form__field textarea {
  resize: vertical;
  min-height: 110px;
}
.consult-form__field textarea::placeholder,
.consult-form__field input::placeholder {
  color: rgba(11,17,23,0.35);
  opacity: 1;
}

.consult-form__select-wrap {
  position: relative;
}
.consult-form__select-wrap select {
  padding-right: 28px;
  cursor: pointer;
}
.consult-form__select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-muted);
  pointer-events: none;
}

.consult-form__footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.consult-form__note {
  margin: 0;
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--c-muted);
  line-height: 1.4;
}
.consult-form__submit { min-width: 180px; justify-content: center; }
.consult-form__submit.is-loading {
  pointer-events: none;
  opacity: 0.7;
}
.consult-form__submit.is-loading .consult-form__submit-text::after {
  content: "…";
  animation: dots 1.2s steps(3, end) infinite;
}
@keyframes dots {
  0%, 20%   { opacity: 0; }
  50%       { opacity: 1; }
  100%      { opacity: 0; }
}
.consult-form__error {
  margin: 12px 0 0;
  color: #b14b3e;
  font-size: 13px;
  min-height: 1.2em;
}

/* Success state */
.consult-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 14px;
  flex: 1;
}
.consult.is-success .consult-form { display: none; }
.consult.is-success .consult__header { display: none; }
.consult.is-success .consult-success { display: flex; }
.consult-success h3 {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-primary);
}
.consult-success p {
  margin: 0;
  color: var(--c-muted);
  max-width: 38ch;
}
.consult-success .btn-orzan {
  margin-top: 14px;
  color: var(--c-primary);
  border-color: rgba(11,17,23,0.25);
}
.consult-success .btn-orzan:hover {
  background: var(--c-primary);
  color: var(--c-ivory);
  border-color: var(--c-primary);
}

body.consult-open,
body.is-loading { overflow: hidden; }

@media (max-width: 768px) {
  .consult { padding: 12px; align-items: flex-start; padding-top: 24px; }
  .consult__panel {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 24px);
    max-height: calc(100dvh - 24px);
  }
  .consult__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
  .consult__aside {
    padding: 28px 24px 24px;
    border-bottom: 1px solid rgba(245,243,239,0.08);
  }
  .consult__aside-title { font-size: 22px; margin-bottom: 18px; }
  .consult__list { display: none; }
  .consult__contact { margin: 14px 0 0; }
  .consult__main { padding: 24px; }
  .consult__title { font-size: 24px; }
  .consult-form { gap: 16px; }
  .consult-form__row { grid-template-columns: 1fr; gap: 16px; }
  .consult-form__footer { flex-direction: column-reverse; align-items: stretch; gap: 12px; }
  .consult-form__submit { width: 100%; }
}

/* ============================ RESPONSIVE ============================ */

@media (max-width: 1199.98px) {
  .work-item__row {
    grid-template-columns: 50px 1.2fr 1fr auto;
    column-gap: 20px;
    row-gap: 0;
  }
  .work-item__desc { padding-left: 70px; }   /* 50 + 20 */

  .cta-pill__status { display: none; }
  .cta-pill { padding: 8px 8px 8px 14px; gap: 10px; }
  .site-header__nav ul { gap: 22px; }
}

@media (max-width: 991.98px) {
  :root { --header-h: 80px; }

  .site-header__nav,
  .nav-pill__divider,
  .cta-pill { display: none; }
  .nav-pill { padding: 8px 14px; flex: 0 0 auto; gap: 0; margin-right: auto; }
  .site-header__toggle { display: inline-flex; }

  .hero__bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero__ctas { justify-content: flex-start; }
  .hero__scroll { display: none; }
  .hero__meta .eyebrow--right { display: none; }

  .services { grid-template-columns: 1fr; }
  .process  { grid-template-columns: repeat(2, 1fr); }
  .process__step:nth-child(2) { padding-right: 0; border-right: none; }
  .process__step:nth-child(3) { padding-left: 0; }
  .process__step:nth-child(3)::before { left: 0; }

  .testimonials { grid-template-columns: 1fr; }
  .testimonial { padding: 48px 0 40px !important; border-right: none; border-bottom: 1px solid rgba(245,243,239,0.12); }
  .testimonial:last-child { border-bottom: none; }
  .testimonial:not(:first-child)::before { left: 0; }

  .work-item__row {
    grid-template-columns: 40px 1fr auto;
    grid-template-areas:
      "num title cta"
      "num tag   cta";
    column-gap: 16px;
    row-gap: 6px;
  }
  .work-item__num   { grid-area: num; }
  .work-item__title { grid-area: title; }
  .work-item__tag   { grid-area: tag; }
  .work-item__cta   { grid-area: cta; }
  .work-item__desc  { padding-left: 56px; }   /* 40 + 16 */

  .consult__title { font-size: 26px; }
}

/* ============================ IMMERSIVE LAYER ============================ */

/* ---- LOADER ---- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--c-primary);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .9s var(--ease), visibility 0s linear .9s;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
}
.loader__rings {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 8px;
}
.loader__rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--c-gold);
  opacity: 0;
  transform: scale(0.4);
  animation: loaderRing 1.8s var(--ease-out) forwards;
}
.loader__rings span:nth-child(1) { animation-delay: 0.1s; }
.loader__rings span:nth-child(2) { animation-delay: 0.3s; }
.loader__rings span:nth-child(3) { animation-delay: 0.5s; }
@keyframes loaderRing {
  0%   { transform: scale(0.4); opacity: 0; }
  55%  { opacity: 0.55; }
  100% { transform: scale(1); opacity: 0.28; }
}
.loader__logo {
  width: 200px;
  height: auto;
  opacity: 0;
  transform: translateY(10px);
  animation: loaderFade 1s var(--ease-out) 0.95s forwards;
}
.loader__tagline {
  color: var(--c-gold);
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  animation: loaderFade 1s var(--ease-out) 1.45s forwards;
}
@keyframes loaderFade {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .loader { transition: opacity .2s linear; }
  .loader__rings span,
  .loader__logo,
  .loader__tagline { animation: none; opacity: 1; transform: none; }
  .loader__rings span { opacity: 0.3; }
}

/* ---- AMBIENT GRAIN ---- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .grain { opacity: 0.025; }
}

/* ---- HERO MOUSE GLOW ---- */
.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 560px at var(--mx, 75%) var(--my, 50%),
    rgba(186, 142, 92, 0.16),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}
.hero.is-glow-active .hero__glow { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__glow { display: none; }
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(186, 142, 92, 0.65);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: width .35s var(--ease), height .35s var(--ease),
              border-color .35s var(--ease), background .35s var(--ease),
              opacity .35s var(--ease);
  will-change: transform;
}
.cursor::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 3px;
  height: 3px;
  background: var(--c-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.cursor.is-visible { opacity: 1; }
.cursor.is-hover {
  width: 52px;
  height: 52px;
  background: rgba(186, 142, 92, 0.08);
  border-color: var(--c-gold);
}
.cursor.is-hover::after { opacity: 0; }
.cursor.is-text {
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: rgba(186, 142, 92, 0.7);
  border-color: transparent;
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor { transition: opacity .2s linear; }
}

/* ---- WORK PREVIEW BIGGER + PARALLAX ---- */
.work-item__media {
  width: 380px;
  height: 240px;
}
.work-item__media img {
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

/* ---- TESTIMONIAL SPOTLIGHT ---- */
.testimonial__quote { transition: color 1s var(--ease); }
@media (min-width: 992px) {
  .testimonials.is-cycling .testimonial { transition: opacity 1s var(--ease); }
  .testimonials.is-cycling .testimonial:not(.is-spotlight) { opacity: 0.5; }
  .testimonials.is-cycling .testimonial.is-spotlight { opacity: 1; }
  .testimonials.is-cycling .testimonial:not(.is-spotlight) .testimonial__quote {
    color: rgba(245, 243, 239, 0.55);
  }
}

/* ---- BUTTON MAGNETIC HINT ---- */
.btn-orzan { will-change: transform; }

@media (max-width: 599.98px) {
  :root { --section-py: 56px; --header-h: 76px; }

  .site-header__logo { height: 38px; }
  .site-header.is-scrolled .site-header__logo { height: 34px; }

  .hero { padding-top: calc(var(--header-h) + 32px); padding-bottom: 64px; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero__ctas .btn-orzan { flex: 1 1 100%; justify-content: center; }

  .service { padding: 36px 24px 40px; min-height: auto; }
  .service__arrow { right: 22px; top: 28px; }

  .process { grid-template-columns: 1fr; }
  .process__step { padding: 32px 0; border-right: none; border-bottom: 1px solid rgba(11,17,23,0.1); }
  .process__step:last-child  { border-bottom: none; padding-bottom: 0; }
  .process__step:first-child { padding-top: 32px; }
  .process__step::before     { left: 0 !important; }
  .process__title { margin-top: 40px; }

  .work-item__link { padding: 28px 0; }
  .work-item__row {
    grid-template-columns: 32px 1fr;
    grid-template-areas:
      "num title"
      "num tag"
      "cta cta";
    column-gap: 14px;
    row-gap: 6px;
  }
  .work-item__cta { justify-self: flex-start; margin-top: 14px; }
  .work-item__desc { padding-left: 46px; margin-top: 14px; }   /* 32 + 14 */

  .ticker { padding: 16px 0; }
  .ticker__track { gap: 36px; }

  .differ__list li { font-size: 16px; }

  .site-footer { padding: 60px 0 32px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }

  .mobile-menu a { font-size: 28px; }
}
