/* ============================================================
   AUX WING — Luxury Design System
   Obsidian · Champagne Gold · Ivory
   Type: Cormorant Garamond (display) + Manrope (text)
   ============================================================ */

:root {
  /* Surfaces */
  --ink: #0a0a0c;
  --ink-2: #0f0f13;
  --ink-3: #16161c;
  --ivory: #f2ede3;
  --ivory-2: #eae3d4;
  --paper-ink: #171511;

  /* Gold */
  --gold: #c5a45d;
  --gold-bright: #e3c98d;
  --gold-deep: #8e713a;
  --gold-grad: linear-gradient(120deg, #8e713a 0%, #c5a45d 30%, #f0dfae 50%, #c5a45d 70%, #8e713a 100%);

  /* Text on dark */
  --t-hi: #ede8dc;
  --t-mid: #b3ac9e;
  --t-low: #837d70;

  /* Text on ivory */
  --p-hi: #171511;
  --p-mid: #57524a;
  --p-low: #8a8478;

  /* Lines */
  --line: rgba(237, 232, 220, 0.1);
  --line-strong: rgba(237, 232, 220, 0.2);
  --pline: rgba(23, 21, 17, 0.12);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --sect: clamp(6rem, 12vw, 11rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --maxw: 1440px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--t-hi);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; background: none; border: none; }
button { cursor: pointer; }

::selection { background: var(--gold); color: var(--ink); }
::-moz-selection { background: var(--gold); color: var(--ink); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2a2a32; border-radius: 6px; border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ---------- Grain overlay (static — keeps the renderer light) ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 3000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold-bright); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(197, 164, 93, 0.45);
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              border-color 0.35s, background 0.35s;
}
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring {
  width: 58px; height: 58px;
  border-color: rgba(227, 201, 141, 0.9);
  background: rgba(197, 164, 93, 0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 5000;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__mark-img {
  width: 92px; height: auto;
  opacity: 0;
  transform: scale(0.88);
  animation: markIn 1.2s var(--ease) 0.1s forwards;
  filter: drop-shadow(0 10px 34px rgba(197, 164, 93, 0.25));
}
@keyframes markIn { to { opacity: 1; transform: scale(1); } }
.preloader__word {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.6em; text-indent: 0.6em;
  text-transform: uppercase;
  color: var(--t-mid);
  overflow: hidden;
}
.preloader__word span {
  display: inline-block;
  transform: translateY(120%);
  animation: riseUp 0.9s var(--ease) 0.5s forwards;
}
@keyframes riseUp { to { transform: translateY(0); } }
.preloader__line {
  width: 120px; height: 1px;
  background: var(--line-strong);
  position: relative; overflow: hidden;
}
.preloader__line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: loadBar 1.4s var(--ease-io) 0.2s forwards;
}
@keyframes loadBar { to { transform: translateX(0); } }

/* ---------- Utility ---------- */
.wrap {
  width: min(var(--maxw), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.gold { color: var(--gold); }
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }

.label {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold);
}
.label::before {
  content: ""; width: 2.6rem; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.label--center { justify-content: center; }
.label--center::after {
  content: ""; width: 2.6rem; height: 1px;
  background: var(--gold); opacity: 0.6;
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--t-hi);
}
.h-display em {
  font-style: italic; font-weight: 400;
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldSheen 7s linear infinite;
}
@keyframes goldSheen {
  to { background-position: 200% center; }
}

.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.85;
  font-weight: 300;
  color: var(--t-mid);
  max-width: 60ch;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 1.05rem 2.4rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--t-hi);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s;
  isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}
.btn:hover { color: var(--ink); border-color: var(--gold); }
.btn:hover::before { transform: translateY(0); }
.btn .arr { transition: transform 0.5s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn--gold::before { background: var(--gold-bright); }
.btn--gold:hover { color: var(--ink); border-color: var(--gold-bright); }

.btn--paper { color: var(--p-hi); border-color: rgba(23, 21, 17, 0.28); }
.btn--paper:hover { color: var(--ivory); border-color: var(--p-hi); }
.btn--paper::before { background: var(--p-hi); }

.link-line {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.45rem;
}
.link-line::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.link-line:hover::after { transform: scaleX(0.35); transform-origin: left; }

/* Reveal animations (opacity + transform only — cheap to composite) */
.rv {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  transition-delay: var(--d, 0s);
}
.rv.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.6s var(--ease), border-color 0.6s, transform 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 12, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-color: var(--line);
}
.nav.hidden { transform: translateY(-100%); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 0;
  transition: padding 0.5s var(--ease);
}
.nav.scrolled .nav__inner { padding: 0.95rem 0; }

.nav__brand { display: inline-flex; align-items: center; gap: 0.95rem; }
.nav__brand img { height: 44px; width: auto; filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5)); }
.nav__brand-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.1; }
.nav__brand-sub {
  font-family: var(--sans);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.nav__links { display: flex; align-items: center; gap: 2.6rem; }
.nav__link {
  position: relative;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--t-mid);
  padding: 0.4rem 0;
  transition: color 0.4s;
}
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%) scale(0);
  transition: transform 0.4s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--t-hi); }
.nav__link:hover::after, .nav__link.active::after { transform: translateX(-50%) scale(1); }

.nav__cta { margin-left: 0.6rem; padding: 0.78rem 1.7rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 7px;
  width: 44px; height: 44px;
  align-items: flex-end;
}
.burger span {
  display: block; height: 1px;
  background: var(--t-hi);
  transition: transform 0.5s var(--ease), width 0.5s var(--ease), opacity 0.3s;
}
.burger span:nth-child(1) { width: 28px; }
.burger span:nth-child(2) { width: 20px; }
.burger span:nth-child(3) { width: 24px; }
.burger:hover span { width: 28px; background: var(--gold); }
body.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 28px; }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 28px; }

/* Fullscreen menu */
.menu {
  position: fixed; inset: 0; z-index: 850;
  background: var(--ink);
  display: flex; align-items: center;
  visibility: hidden; opacity: 0;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.menu::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 15%, rgba(197, 164, 93, 0.07), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(197, 164, 93, 0.05), transparent 60%);
}
body.menu-open .menu { visibility: visible; opacity: 1; }
.menu__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  width: 100%;
  align-items: center;
}
.menu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.menu__link {
  display: inline-flex; align-items: baseline; gap: 1.6rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 400;
  color: var(--t-mid);
  line-height: 1.2;
  transform: translateY(40px); opacity: 0;
  transition: color 0.4s, transform 0.8s var(--ease), opacity 0.8s var(--ease);
}
body.menu-open .menu__link { transform: translateY(0); opacity: 1; }
body.menu-open .menu__link:nth-child(1) { transition-delay: 0.15s; }
body.menu-open .menu__link:nth-child(2) { transition-delay: 0.22s; }
body.menu-open .menu__link:nth-child(3) { transition-delay: 0.29s; }
body.menu-open .menu__link:nth-child(4) { transition-delay: 0.36s; }
body.menu-open .menu__link:nth-child(5) { transition-delay: 0.43s; }
.menu__link i {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.menu__link:hover, .menu__link.active { color: var(--t-hi); }
.menu__link:hover em { font-style: italic; color: var(--gold-bright); }
.menu__aside {
  display: flex; flex-direction: column; gap: 2.2rem;
  padding-left: 3rem;
  border-left: 1px solid var(--line);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s var(--ease) 0.5s, transform 0.8s var(--ease) 0.5s;
}
body.menu-open .menu__aside { opacity: 1; transform: translateY(0); }
.menu__aside-block h5 {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.menu__aside-block p, .menu__aside-block a {
  font-size: 0.95rem; color: var(--t-mid);
  font-weight: 300; line-height: 1.9;
  transition: color 0.3s;
}
.menu__aside-block a:hover { color: var(--gold-bright); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding-top: 6rem;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(52% 44% at 78% 18%, rgba(197, 164, 93, 0.13), transparent 62%),
    radial-gradient(40% 40% at 12% 80%, rgba(142, 113, 58, 0.1), transparent 60%),
    radial-gradient(70% 70% at 50% 120%, rgba(20, 20, 26, 0.9), transparent 70%),
    var(--ink);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(237, 232, 220, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 232, 220, 0.028) 1px, transparent 1px);
  background-size: 110px 110px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(75% 75% at 50% 40%, #000 30%, transparent 100%);
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.orb--1 {
  width: 480px; height: 480px;
  right: -6%; top: -10%;
  background: radial-gradient(circle at 40% 40%, rgba(197, 164, 93, 0.16), transparent 65%);
  animation: drift1 16s ease-in-out infinite alternate;
}
.orb--2 {
  width: 380px; height: 380px;
  left: -8%; bottom: 4%;
  background: radial-gradient(circle at 60% 60%, rgba(142, 113, 58, 0.13), transparent 65%);
  animation: drift2 20s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(-60px, 50px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(50px, -40px) scale(1.08); } }

.hero__arc {
  position: absolute;
  right: -12vw; top: 50%;
  width: 58vw; max-width: 900px;
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
}

.hero__inner { position: relative; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 1.1rem;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--t-mid);
  margin-bottom: 2.6rem;
}
.hero__eyebrow::before { content: ""; width: 3.4rem; height: 1px; background: var(--gold); }
.hero__eyebrow b { color: var(--gold); font-weight: 600; }

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 8.6vw, 8.2rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.3s var(--ease);
}
body.loaded .hero__title .line > span { transform: translateY(0); }
body.loaded .hero__title .line:nth-child(2) > span { transition-delay: 0.12s; }
body.loaded .hero__title .line:nth-child(3) > span { transition-delay: 0.24s; }
.hero__title em {
  font-style: italic; font-weight: 400;
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldSheen 8s linear infinite;
}

.hero__foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 3rem;
  margin-top: clamp(3rem, 6vh, 5rem);
}
.hero__sub {
  max-width: 46ch;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.9;
  color: var(--t-mid);
}
.hero__actions { display: flex; align-items: center; gap: 1.4rem; flex-shrink: 0; flex-wrap: wrap; }

.hero__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--line);
}
.hero__meta-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0;
  font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--t-low);
}
.hero__meta-inner .scroll-cue {
  display: inline-flex; align-items: center; gap: 0.8rem;
  color: var(--t-mid);
}
.scroll-cue .stem {
  width: 1px; height: 34px;
  background: linear-gradient(var(--gold), transparent);
  position: relative; overflow: hidden;
}
.scroll-cue .stem::after {
  content: ""; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(var(--gold-bright), transparent);
  animation: cueDrop 2.2s var(--ease-io) infinite;
}
@keyframes cueDrop { 60%, 100% { top: 100%; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line);
  padding: 1.6rem 0;
  overflow: hidden;
  background: var(--ink-2);
  position: relative;
}
.marquee__track {
  display: flex; gap: 4.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__item {
  display: inline-flex; align-items: center; gap: 4.5rem;
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--t-low);
  white-space: nowrap;
}
.marquee__item em { color: var(--gold); font-style: italic; text-transform: none; letter-spacing: 0.04em; }
.marquee__item .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); opacity: 0.7;
  display: inline-block;
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { padding-block: var(--sect); position: relative; }
.section--paper { background: var(--ivory); color: var(--p-hi); }
.section--paper .label { color: var(--gold-deep); }
.section--paper .label::before, .section--paper .label--center::after { background: var(--gold-deep); }
.section--paper .h-display { color: var(--p-hi); }
.section--paper .lead { color: var(--p-mid); }
.section--raised { background: var(--ink-2); }

.sect-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem 5rem;
  align-items: end;
  margin-bottom: clamp(3.4rem, 7vw, 6rem);
}
.sect-head .label { margin-bottom: 1.6rem; }
.sect-head__side {
  display: flex; flex-direction: column; gap: 1.6rem;
  align-items: flex-start;
  padding-bottom: 0.5rem;
}
.sect-head--center {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 1.6rem;
  margin-bottom: clamp(3.4rem, 7vw, 6rem);
}
.sect-head--center .label { margin-bottom: 0; }

.hairline { width: 100%; height: 1px; background: var(--line); border: none; }
.section--paper .hairline { background: var(--pline); }

/* ============================================================
   INTRO (home)
   ============================================================ */
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.intro__statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.9vw, 2.7rem);
  line-height: 1.42;
  color: var(--p-hi);
}
.intro__statement em { font-style: italic; color: var(--gold-deep); }
.intro__body { display: flex; flex-direction: column; gap: 1.6rem; }
.intro__body p { color: var(--p-mid); line-height: 1.95; font-size: 1rem; }
.intro__sig {
  margin-top: 1rem;
  display: flex; align-items: center; gap: 1.4rem;
}
.intro__sig-name {
  font-family: var(--serif); font-style: italic;
  font-size: 1.5rem; color: var(--p-hi);
}
.intro__sig-role {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--p-low);
}

/* Pillars strip */
.pillars {
  margin-top: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--pline);
}
.pillar {
  padding: 2.6rem 2.4rem 0 0;
  display: flex; flex-direction: column; gap: 1rem;
}
.pillar + .pillar { padding-left: 2.4rem; border-left: 1px solid var(--pline); }
.pillar__num {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--gold-deep);
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.45rem; font-weight: 500;
  color: var(--p-hi);
}
.pillar p { font-size: 0.92rem; line-height: 1.85; color: var(--p-mid); }

/* ============================================================
   SERVICES — editorial index rows
   ============================================================ */
.svc-rows { border-top: 1px solid var(--line); }
.svc-row {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1.15fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 2.5rem;
  padding: 2.9rem 1.2rem;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  transition: padding 0.5s var(--ease);
}
.svc-row::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(197, 164, 93, 0.07), rgba(197, 164, 93, 0.015));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.svc-row:hover::before { opacity: 1; }
.svc-row:hover { padding-left: 2rem; }
.svc-row__num {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem;
  color: var(--t-low);
  transition: color 0.4s;
}
.svc-row:hover .svc-row__num { color: var(--gold); }
.svc-row__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 400;
  color: var(--t-hi);
  line-height: 1.15;
  transition: color 0.4s;
}
.svc-row:hover .svc-row__title { color: var(--gold-bright); }
.svc-row__desc {
  font-size: 0.93rem; line-height: 1.8;
  color: var(--t-mid);
  max-width: 46ch;
}
.svc-row__arrow {
  width: 52px; height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--t-mid);
  flex-shrink: 0;
  transition: background 0.45s var(--ease), color 0.45s, border-color 0.45s, transform 0.45s var(--ease);
}
.svc-row:hover .svc-row__arrow {
  background: var(--gold); border-color: var(--gold);
  color: var(--ink);
  transform: rotate(-45deg);
}

/* ============================================================
   STATS
   ============================================================ */
.stats { border-block: 1px solid var(--line); background: var(--ink-2); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 3.4rem 2rem;
  text-align: center;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 4.6vw, 4.3rem);
  line-height: 1;
  color: var(--t-hi);
}
.stat__num sup {
  font-size: 0.45em;
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif);
  margin-left: 0.1em;
}
.stat__cap {
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--t-low);
}

/* ============================================================
   PROJECTS — showcase cards
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.proj-card { grid-column: span 6; }
.proj-card--wide { grid-column: span 12; }

.proj-card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  background: var(--ink-3);
  overflow: hidden;
  transition: border-color 0.5s;
}
.proj-card:hover { border-color: rgba(197, 164, 93, 0.4); }
.proj-card__art {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.proj-card--wide .proj-card__art { aspect-ratio: 21 / 9; }
.proj-card__art > .art {
  position: absolute; inset: 0;
  transition: transform 1.2s var(--ease);
  transform: scale(1.015);
}
.proj-card:hover .proj-card__art > .art { transform: scale(1.07); }
.proj-card__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 12, 0.55) 100%);
}
.proj-card__tag {
  position: absolute; top: 1.5rem; left: 1.5rem; z-index: 2;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-bright);
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(227, 201, 141, 0.35);
  border-radius: 100px;
  background: rgba(10, 10, 12, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.proj-card__body {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 1.9rem 1.9rem;
  border-top: 1px solid var(--line);
}
.proj-card__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 400;
  color: var(--t-hi);
  line-height: 1.2;
  transition: color 0.4s;
}
.proj-card:hover .proj-card__title { color: var(--gold-bright); }
.proj-card__meta {
  margin-top: 0.55rem;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--t-low);
}
.proj-card__go {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--t-mid);
  transition: background 0.45s, color 0.45s, border-color 0.45s, transform 0.45s var(--ease);
}
.proj-card:hover .proj-card__go {
  background: var(--gold); color: var(--ink);
  border-color: var(--gold);
  transform: rotate(-45deg);
}

/* Abstract art panels */
.art { background: var(--ink-3); position: relative; overflow: hidden; }
.art::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.07; mix-blend-mode: overlay;
}
.art--1 {
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(197, 164, 93, 0.34), transparent 55%),
    radial-gradient(70% 90% at 10% 100%, rgba(70, 60, 40, 0.55), transparent 60%),
    linear-gradient(160deg, #1b1a1f 0%, #101014 60%, #0c0c10 100%);
}
.art--2 {
  background:
    radial-gradient(75% 100% at 15% 10%, rgba(227, 201, 141, 0.2), transparent 55%),
    radial-gradient(80% 90% at 90% 90%, rgba(90, 74, 44, 0.45), transparent 62%),
    linear-gradient(200deg, #17161b 0%, #0e0e12 70%);
}
.art--3 {
  background:
    radial-gradient(100% 130% at 50% 120%, rgba(197, 164, 93, 0.26), transparent 58%),
    linear-gradient(150deg, #191820 0%, #0d0d11 65%);
}
.art--4 {
  background:
    conic-gradient(from 210deg at 70% 30%, rgba(197, 164, 93, 0.2), transparent 32%, rgba(142, 113, 58, 0.24) 60%, transparent 78%),
    linear-gradient(170deg, #16151a 0%, #0d0d11 70%);
}
.art--5 {
  background:
    radial-gradient(60% 80% at 80% 75%, rgba(227, 201, 141, 0.17), transparent 55%),
    radial-gradient(50% 60% at 18% 20%, rgba(90, 74, 44, 0.4), transparent 60%),
    linear-gradient(190deg, #18171c 0%, #0e0e12 75%);
}
.art svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ============================================================
   PROCESS
   ============================================================ */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--pline);
}
.step {
  padding: 2.8rem 2.2rem 0.6rem 0;
  position: relative;
}
.step + .step { padding-left: 2.2rem; border-left: 1px solid var(--pline); }
.step__num {
  font-family: var(--serif);
  font-size: 3.4rem; font-weight: 300; font-style: italic;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(142, 113, 58, 0.75);
  margin-bottom: 1.6rem;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 500;
  color: var(--p-hi);
  margin-bottom: 0.9rem;
}
.step p { font-size: 0.92rem; line-height: 1.85; color: var(--p-mid); }

/* ============================================================
   QUOTE band
   ============================================================ */
.quote-band {
  position: relative;
  text-align: center;
  padding-block: var(--sect);
  overflow: hidden;
  background: var(--ink-2);
  border-block: 1px solid var(--line);
}
.quote-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(55% 70% at 50% 0%, rgba(197, 164, 93, 0.08), transparent 65%);
  pointer-events: none;
}
.quote-band blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.4;
  max-width: 26ch;
  margin-inline: auto;
  color: var(--t-hi);
  position: relative;
}
.quote-band blockquote em { font-style: italic; color: var(--gold-bright); }
.quote-band figcaption {
  margin-top: 2.4rem;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--t-low);
}
.quote-band .qmark {
  font-family: var(--serif); font-style: italic;
  font-size: 5.5rem; line-height: 0.6;
  color: var(--gold);
  opacity: 0.55;
  display: block;
  margin: 0 auto 2rem;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  padding-block: clamp(7rem, 14vw, 12rem);
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 90% at 50% 110%, rgba(197, 164, 93, 0.14), transparent 60%),
    var(--ink);
}
.cta .label { justify-content: center; margin-bottom: 2rem; }
.cta .label::after { content: ""; width: 2.6rem; height: 1px; background: var(--gold); opacity: 0.6; }
.cta h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 6.4vw, 6rem);
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto 3.2rem;
}
.cta h2 em {
  font-style: italic;
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldSheen 7s linear infinite;
}
.cta__actions { display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding-top: clamp(4rem, 8vw, 6.5rem);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 3.5rem;
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}
.footer__brand { display: flex; flex-direction: column; gap: 1.8rem; align-items: flex-start; }
.footer__brand img { height: 58px; width: auto; }
.footer__brand .ar {
  font-size: 1.02rem; color: var(--t-mid);
  letter-spacing: 0.02em;
}
.footer__brand p {
  font-size: 0.94rem; line-height: 1.9;
  color: var(--t-mid);
  max-width: 34ch;
}
.footer__col h5 {
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.85rem; }
.footer__col a, .footer__col p {
  font-size: 0.92rem; font-weight: 300;
  color: var(--t-mid);
  line-height: 1.7;
  transition: color 0.35s, padding-left 0.35s var(--ease);
}
.footer__col a:hover { color: var(--gold-bright); padding-left: 6px; }

.footer__word {
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding-top: clamp(1.2rem, 3vw, 2.2rem);
}
.footer__word span {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(3.2rem, 12vw, 11.5rem);
  line-height: 0.95;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(237, 232, 220, 0.13), rgba(237, 232, 220, 0.02));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(14%);
}
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 1.8rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--t-low);
}
.footer__bottom a { color: var(--t-low); transition: color 0.3s; }
.footer__bottom a:hover { color: var(--gold-bright); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(11rem, 20vh, 15rem) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(46% 60% at 82% 0%, rgba(197, 164, 93, 0.11), transparent 60%),
    radial-gradient(40% 50% at 8% 100%, rgba(142, 113, 58, 0.07), transparent 60%),
    var(--ink);
}
.page-hero__crumb {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--t-low);
  margin-bottom: 2.2rem;
}
.page-hero__crumb a { color: var(--t-low); transition: color 0.3s; }
.page-hero__crumb a:hover { color: var(--gold-bright); }
.page-hero__crumb .sep { color: var(--gold); }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 7.2vw, 6.4rem);
  line-height: 1.05;
  max-width: 14ch;
}
.page-hero h1 em {
  font-style: italic;
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldSheen 8s linear infinite;
}
.page-hero__intro {
  margin-top: 2.4rem;
  max-width: 56ch;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.9;
  color: var(--t-mid);
}

/* ============================================================
   ABOUT page
   ============================================================ */
.duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.duo__art {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  overflow: hidden;
}
.duo__art .art { position: absolute; inset: 0; }
.duo__art::before {
  content: "";
  position: absolute; inset: 1.4rem; z-index: 2;
  border: 1px solid rgba(197, 164, 93, 0.28);
  pointer-events: none;
}
.duo__copy { display: flex; flex-direction: column; gap: 1.7rem; align-items: flex-start; }
.duo__copy p { color: var(--t-mid); line-height: 1.95; }
.section--paper .duo__copy p { color: var(--p-mid); }
.section--paper .duo__art { border-color: var(--pline); }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.value-card {
  border: 1px solid var(--line);
  background: var(--ink-3);
  padding: 2.6rem 2.2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color 0.5s, transform 0.6s var(--ease), background 0.5s;
}
.value-card:hover {
  border-color: rgba(197, 164, 93, 0.45);
  transform: translateY(-6px);
  background: #191820;
}
.value-card__glyph {
  width: 50px; height: 50px;
  border: 1px solid rgba(197, 164, 93, 0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 500;
  color: var(--t-hi);
}
.value-card p { font-size: 0.92rem; line-height: 1.85; color: var(--t-mid); }

/* Timeline */
.timeline { position: relative; padding-left: 2.5rem; max-width: 760px; }
.timeline::before {
  content: "";
  position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(197, 164, 93, 0.1));
}
.tl-item { position: relative; padding-bottom: 3rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute; left: calc(-2.5rem - 4.5px); top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
}
.tl-item__year {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--gold);
  margin-bottom: 0.5rem;
}
.tl-item h3 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 500;
  color: var(--t-hi);
  margin-bottom: 0.6rem;
}
.tl-item p { font-size: 0.94rem; color: var(--t-mid); line-height: 1.85; max-width: 58ch; }

/* ============================================================
   SERVICES page
   ============================================================ */
.svc-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
}
.svc-detail:last-of-type { border-bottom: 1px solid var(--line); }
.svc-detail__head { position: sticky; top: 7rem; align-self: start; }
.svc-detail__num {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--gold);
  margin-bottom: 1.2rem; display: block;
}
.svc-detail__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.15;
  color: var(--t-hi);
}
.svc-detail__body { display: flex; flex-direction: column; gap: 1.8rem; }
.svc-detail__body > p { color: var(--t-mid); line-height: 1.95; max-width: 64ch; }
.svc-detail__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.5rem;
  margin-top: 0.4rem;
}
.svc-detail__list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.8rem;
  font-size: 0.93rem;
  color: var(--t-mid);
  border-bottom: 1px solid var(--line);
}
.svc-detail__list li::before {
  content: "";
  position: absolute; left: 0; top: 1.42rem;
  width: 7px; height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ============================================================
   PROJECTS page
   ============================================================ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.filter-btn {
  padding: 0.7rem 1.6rem;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--t-mid);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  transition: all 0.4s var(--ease);
}
.filter-btn:hover { color: var(--t-hi); border-color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.proj-card.hide { display: none; }

/* ============================================================
   CONTACT page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2.6rem; }
.contact-block h4 {
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.contact-block p, .contact-block a {
  font-family: var(--sans);
  font-size: 1.1rem; font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--t-hi);
  line-height: 1.65;
  transition: color 0.35s;
  display: inline-block;
}
.contact-block a:hover { color: var(--gold-bright); }
.contact-block small {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem; color: var(--t-low);
  margin-top: 0.4rem; letter-spacing: 0.04em;
}

.form-card {
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(2rem, 4.5vw, 3.5rem);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 64px; height: 64px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.7;
}
.form-card::after {
  content: "";
  position: absolute; bottom: 0; right: 0;
  width: 64px; height: 64px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.7;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.8rem;
}
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--t-low);
  margin-bottom: 0.7rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.9rem 0.2rem;
  background: transparent;
  border-bottom: 1px solid var(--line-strong);
  color: var(--t-hi);
  font-size: 1rem; font-weight: 300;
  transition: border-color 0.4s;
  border-radius: 0;
}
.field select { cursor: pointer; }
.field select option { background: var(--ink-2); color: var(--t-hi); }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field input::placeholder, .field textarea::placeholder { color: #565248; }
.form-note {
  font-size: 0.8rem; color: var(--t-low);
  line-height: 1.7;
}
.form-status {
  font-size: 0.86rem;
  color: var(--gold-bright);
  min-height: 1.4em;
}

/* ============================================================
   404
   ============================================================ */
.err {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem var(--gutter) 4rem;
  position: relative; overflow: hidden;
}
.err::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 60% at 50% 30%, rgba(197, 164, 93, 0.09), transparent 60%),
    var(--ink);
}
.err__code {
  font-family: var(--serif);
  font-weight: 300; font-style: italic;
  font-size: clamp(7rem, 22vw, 15rem);
  line-height: 1;
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldSheen 7s linear infinite;
}
.err h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 1.5rem 0 1rem;
}
.err p { color: var(--t-mid); max-width: 44ch; margin-bottom: 2.8rem; }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 940;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(12, 12, 15, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 164, 93, 0.55);
  color: var(--gold-bright);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s var(--ease), background 0.4s, color 0.4s, border-color 0.4s;
}
.wa-fab::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(197, 164, 93, 0.5);
  animation: waPulse 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}
.wa-fab:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.wa-fab svg { width: 27px; height: 27px; }

/* ============================================================
   TECHNOLOGY PARTNERS
   ============================================================ */
.partners {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.partners__head {
  display: flex; justify-content: center;
  margin-bottom: 2.6rem;
}
.partners__row {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: baseline;
  gap: 1.3rem 2.2rem;
  max-width: 1060px;
  margin-inline: auto;
}
.partners__row span {
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--t-low);
  transition: color 0.35s;
  white-space: nowrap;
}
.partners__row span:hover { color: var(--gold-bright); }
.partners__row i {
  font-style: normal;
  color: var(--gold);
  opacity: 0.55;
  font-size: 0.7rem;
}

/* ============================================================
   PHOTOGRAPHY TREATMENT
   ============================================================ */
.art--photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.art--photo::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(10, 10, 12, 0.04), rgba(10, 10, 12, 0.22));
  pointer-events: none;
}
.art--product {
  background: var(--ivory);
  display: grid; place-items: center;
  padding: 1.8rem;
}
.art--product img {
  max-height: 100%; max-width: 70%;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(23, 21, 17, 0.28));
}

.svc-figure {
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: 0.6rem;
}
.svc-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.svc-figure--product {
  background: var(--ivory);
  display: grid; place-items: center;
  padding: 2rem;
  aspect-ratio: 16 / 10;
}
.svc-figure--product img {
  height: 100%; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(23, 21, 17, 0.25));
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .svc-row { grid-template-columns: 3.5rem minmax(0, 1fr) auto; }
  .svc-row__desc { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat { border-left: none; }
  .stat:nth-child(2n) { border-left: 1px solid var(--line); }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 940px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  .menu__inner { grid-template-columns: 1fr; gap: 3rem; align-content: center; width: 100%; }
  .menu { overflow-y: auto; padding: 7rem var(--gutter) 3rem; }
  .menu__aside { padding-left: 0; border-left: none; border-top: 1px solid var(--line); padding-top: 2.2rem; flex-direction: row; flex-wrap: wrap; gap: 2rem 3.5rem; }
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .intro__grid, .duo, .contact-grid { grid-template-columns: 1fr; }
  .duo__art { max-width: 520px; }
  .pillars { grid-template-columns: 1fr; border-top: none; }
  .pillar { border-top: 1px solid var(--pline); padding: 2rem 0 0.6rem; }
  .pillar + .pillar { padding-left: 0; border-left: none; }
  .sect-head { grid-template-columns: 1fr; align-items: start; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .step + .step { padding-left: 0; border-left: none; }
  .step:nth-child(2n) { padding-left: 2.2rem; border-left: 1px solid var(--pline); }
  .step { border-top: 1px solid var(--pline); margin-top: -1px; padding-top: 2.2rem; }
  .projects-grid > .proj-card,
  .projects-grid > .proj-card--wide { grid-column: span 12; }
  .svc-detail { grid-template-columns: 1fr; gap: 2rem; }
  .svc-detail__head { position: static; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --sect: 5.5rem; }
  .wa-fab { width: 52px; height: 52px; }
  .wa-fab svg { width: 24px; height: 24px; }
  .nav__brand img { height: 36px; }
  .hero { min-height: 0; padding-top: 8.5rem; }
  .hero__meta { position: static; margin-top: 3.5rem; }
  .hero__meta-inner span[style] { padding-right: 0 !important; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__title { font-size: clamp(2.9rem, 13vw, 4.2rem); }
  .hero__meta-inner { flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .svc-detail__list { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .nav__brand-sub { display: none; }
  .proj-card__body { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .marquee__item { font-size: 1.05rem; gap: 2.6rem; }
  .marquee__track { gap: 2.6rem; }
  .process__grid { grid-template-columns: 1fr; }
  .step:nth-child(2n) { padding-left: 0; border-left: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; filter: none; }
  .hero__title .line > span { transform: none; }
  .grain { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  .marquee__track { animation: none; }
  .preloader { display: none; }
}
