/* ==========================================================================
   KAMSS Digital Solutions — design system
   Palette derived from the brand mark: chrome + gold on black.
   No build step, no runtime dependencies.
   ========================================================================== */

:root {
  --bg:        #060607;
  --bg-2:      #0a0a0c;
  --bg-3:      #0e0e11;

  --surface:   rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.055);

  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.16);
  --hairline:  rgba(226, 197, 122, 0.22);

  --text:      #f1f0f2;
  --muted:     #a3a1aa;
  --dim:       #6e6c76;

  --gold:      #d3b263;
  --gold-lt:   #f4e3ac;
  --gold-dk:   #8d6d33;
  --chrome:    #d6d9df;

  --grad-gold: linear-gradient(102deg, #f4e3ac 0%, #d3b263 38%, #a8834a 68%, #f0dfa6 100%);
  --grad-chrome: linear-gradient(180deg, #ffffff 0%, #cfd3da 48%, #8e939c 100%);

  --wrap:      1200px;
  --radius:    20px;
  --radius-sm: 13px;

  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;
  --font-accent:  "Cormorant Garamond", Georgia, serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
h1 strong, h2 strong { font-weight: 600; }

h2 em, .hero__title em, .contact__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.005em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.06em;
}

p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
strong { color: #fff; font-weight: 500; }

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(211, 178, 99, 0.3); color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--gold);
  color: #0a0a0c;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  font-size: 0.9rem;
  font-weight: 500;
}
.skip-link:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 26px;
}
.wrap--narrow { max-width: 860px; }

/* ══════════════════════ CINEMATIC INTRO ══════════════════════ */
.intro { display: none; }

.js .intro {
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: #040405;
  animation: introAutoOut 0.9s var(--ease) 3.1s forwards;
}
.js .intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s var(--ease), visibility 0s linear 0.8s;
  animation: none;
}
@keyframes introAutoOut {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.intro__glow {
  position: absolute;
  width: 900px;
  height: 620px;
  background: radial-gradient(closest-side, rgba(211, 178, 99, 0.16), transparent 70%);
  filter: blur(12px);
}

.intro__inner {
  position: relative;
  width: min(560px, 82vw);
  text-align: center;
}

.intro__logo {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  animation: introLogo 1.5s var(--ease) both;
}
@keyframes introLogo {
  from { opacity: 0; transform: scale(0.94); filter: blur(14px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

.intro__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 34px;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
}
.intro__pct { font-family: var(--font-display); color: var(--gold); letter-spacing: 0.1em; }

.intro__track {
  margin-top: 12px;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.intro__bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-gold);
  transition: width 0.25s linear;
}

/* ══════════════════════ AMBIENT ══════════════════════ */
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    460px 460px at var(--mx, 60%) var(--my, 10%),
    rgba(211, 178, 99, 0.085),
    transparent 66%
  );
}

/* ══════════════════════ NAV ══════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(6, 6, 7, 0.66);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s ease, background 0.35s ease;
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(6, 6, 7, 0.9);
}

/* reading progress, drawn along the bottom edge of the bar */
.nav__progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.nav.is-stuck .nav__progress { opacity: 1; }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 78px;
}

.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand__logo {
  width: 138px;
  height: auto;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}
.brand:hover .brand__logo { opacity: 0.82; }

.nav__links { display: flex; gap: 32px; font-size: 0.9rem; font-weight: 400; }
.nav__links a {
  color: var(--muted);
  position: relative;
  padding-block: 4px;
  transition: color 0.24s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 11px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  place-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.26s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 8px 26px 24px;
  border-top: 1px solid var(--line);
  gap: 2px;
  background: rgba(6, 6, 7, 0.97);
}
.nav__mobile a {
  padding: 14px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.nav__mobile a:last-child { border-bottom: 0; color: var(--gold); }

/* ══════════════════════ BUTTONS ══════════════════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--grad-gold);
  color: #17130a;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.93rem;
  letter-spacing: 0.012em;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  box-shadow: 0 12px 34px -14px rgba(211, 178, 99, 0.75);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -16px rgba(211, 178, 99, 0.95); }

.btn--ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--text);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--hairline); color: var(--gold-lt); box-shadow: none; }

.btn--sm { padding: 11px 22px; font-size: 0.85rem; }

/* ══════════════════════ HERO ══════════════════════ */
.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  padding: clamp(70px, 11vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s ease 0.2s;
}
.hero__canvas.is-ready { opacity: 1; }

.hero__aura {
  position: absolute;
  top: -320px;
  left: 50%;
  width: 1200px;
  height: 780px;
  transform: translateX(-50%);
  background:
    radial-gradient(closest-side, rgba(211, 178, 99, 0.16), transparent 72%),
    radial-gradient(closest-side, rgba(120, 130, 160, 0.1), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 10%, transparent 78%);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 2; max-width: 960px; }
.hero__inner::before {
  content: "";
  position: absolute;
  inset: -8% -30% -8% -14%;
  background: radial-gradient(ellipse 62% 78% at 24% 50%, rgba(6, 6, 7, 0.86), transparent 72%);
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.4rem, 6.6vw, 4.5rem);
  font-weight: 500;
  display: flex;
  flex-direction: column;
}

.hero__lede {
  margin-top: 28px;
  max-width: 58ch;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--muted);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--muted);
}
.hero__points li { display: flex; align-items: center; gap: 10px; }
.hero__points span { color: var(--gold); font-size: 0.5rem; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0.2); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1);   transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.2); transform-origin: bottom; opacity: 0; }
}

/* ══════════════════════ MARQUEE ══════════════════════ */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 20px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: slide 42s linear infinite;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-size: 0.5rem; font-style: normal; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════ SECTIONS ══════════════════════ */
.section { padding: clamp(76px, 11vw, 140px) 0; position: relative; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }

section[id], span[id] { scroll-margin-top: 96px; }

.section__head { max-width: 800px; margin-bottom: clamp(44px, 6vw, 72px); }
.section__head h2 { font-size: clamp(1.7rem, 3.9vw, 2.7rem); }

/* ══════════════════════ WORK ══════════════════════ */
.work { display: grid; gap: 28px; }

.case {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--surface), rgba(255, 255, 255, 0.012));
  transition: border-color 0.4s ease, transform 0.5s var(--ease);
}
.case:hover { border-color: var(--hairline); transform: translateY(-4px); }
.case--reverse .case__visual { order: 2; }

.case__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.case__visual--benzer {
  background:
    radial-gradient(120% 100% at 30% 15%, rgba(211, 178, 99, 0.28), transparent 62%),
    linear-gradient(160deg, #171208, #08080a 72%);
}
.case__visual--arafa {
  background:
    radial-gradient(120% 100% at 70% 20%, rgba(140, 160, 190, 0.2), transparent 64%),
    linear-gradient(160deg, #0c0f14, #08080a 72%);
}

.case__glyph {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 5.6rem);
  letter-spacing: 0.02em;
}
.case__visual--benzer .case__glyph {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.case__visual--arafa .case__glyph {
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.case__ring {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(211, 178, 99, 0.4);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation: spin 30s linear infinite;
}
.case__ring--2 { width: 84%; border-color: rgba(211, 178, 99, 0.16); animation-duration: 46s; animation-direction: reverse; }
.case__ring--3 { width: 44%; border-color: rgba(211, 178, 99, 0.55); animation-duration: 20s; }
@keyframes spin { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }

.case__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 50%, #000 32%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 32%, transparent 76%);
}

.case__body h3 { font-size: clamp(1.5rem, 3.3vw, 2.1rem); margin-bottom: 15px; letter-spacing: -0.01em; }
.case__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
}
.case__meta span {
  font-family: var(--font-display);
  color: var(--gold);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  flex: none;
}
.case__body p { color: var(--muted); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tags li {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--muted);
}

.work__note { margin-top: 32px; font-size: 0.84rem; color: var(--dim); }

/* ══════════════════════ CARDS ══════════════════════ */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(292px, 1fr)); gap: 20px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
  position: relative;
  padding: 34px 28px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.45s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--line-2); background: var(--surface-2); }
.card:hover::before { transform: scaleX(1); }

.card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.card__icon { display: block; font-size: 1.05rem; color: var(--gold); margin-bottom: 20px; }
.card h3 { font-size: 1.12rem; margin-bottom: 13px; font-weight: 500; }
.card p { color: var(--muted); font-size: 0.92rem; }

/* ══════════════════════ PROCESS ══════════════════════ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(234px, 1fr)); gap: 24px; }

.step { position: relative; padding-top: 32px; border-top: 1px solid var(--line-2); }
.step::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 42px;
  height: 1px;
  background: var(--grad-gold);
}
.step__num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.04rem; margin-bottom: 11px; font-weight: 500; }
.step p { color: var(--muted); font-size: 0.91rem; }

/* ══════════════════════ ABOUT ══════════════════════ */
.about {
  background:
    radial-gradient(70% 100% at 78% 30%, rgba(211, 178, 99, 0.07), transparent 62%),
    var(--bg);
  border-top: 1px solid var(--line);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: start;
}

.about__portrait { margin: 0; }
.about__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
}
.about__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 6, 7, 0.75) 100%);
  pointer-events: none;
}
.about__frame { aspect-ratio: 4 / 5; }
.about__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }

.about__portrait figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 18px;
}
.about__portrait figcaption strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.005em;
}
.about__portrait figcaption span {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

.about__text h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 24px; }
.about__text > p { color: var(--muted); margin-bottom: 18px; max-width: 60ch; }

.about__quote {
  margin: 30px 0;
  padding: 4px 0 4px 24px;
  border-left: 1px solid var(--hairline);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.5;
  color: var(--gold-lt);
}

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px 28px; margin-top: 34px; }
.facts > div { padding-top: 16px; border-top: 1px solid var(--line); }
.facts dt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}
.facts dd { font-size: 0.94rem; color: var(--text); }

/* ══════════════════════ FAQ ══════════════════════ */
.faq { border-top: 1px solid var(--line); }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  font-weight: 400;
  color: var(--text);
  transition: color 0.25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-lt); }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq__item p {
  padding: 0 60px 26px 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 72ch;
}

/* ══════════════════════ CONTACT ══════════════════════ */
.contact {
  background:
    radial-gradient(72% 110% at 50% 0%, rgba(211, 178, 99, 0.12), transparent 62%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.contact__inner { max-width: 940px; }
.contact__title { font-size: clamp(1.75rem, 4.4vw, 3rem); margin-bottom: 22px; }
.contact__lede { color: var(--muted); max-width: 56ch; margin-bottom: 48px; }

.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(236px, 1fr)); gap: 16px; }

.contact__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.3s ease, transform 0.4s var(--ease), background 0.3s ease;
}
.contact__card:not(.contact__card--static):hover {
  border-color: var(--hairline);
  transform: translateY(-4px);
  background: var(--surface-2);
}
.contact__label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
.contact__value { font-family: var(--font-display); font-size: 1.02rem; font-weight: 400; }
.contact__arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}
.contact__card:hover .contact__arrow { opacity: 1; transform: translate(4px, -50%); }

/* ══════════════════════ SOCIAL ══════════════════════ */
.social { margin-top: clamp(38px, 5vw, 56px); }
.social__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}

.social__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 14px;
}

.social__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.4s var(--ease);
}
.social__link:hover {
  border-color: var(--hairline);
  background: var(--surface-2);
  transform: translateY(-3px);
}

.social__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  color: var(--gold);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.social__link:hover .social__icon { color: var(--gold-lt); border-color: var(--hairline); }

.social__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.social__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
}
.social__handle {
  font-size: 0.78rem;
  color: var(--dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social__arrow {
  margin-left: auto;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}
.social__link:hover .social__arrow { opacity: 1; transform: translateX(0); }

/* icon-only row used in the footer */
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  transition: color 0.28s ease, border-color 0.28s ease, transform 0.35s var(--ease);
}
.footer__social a:hover {
  color: var(--gold-lt);
  border-color: var(--hairline);
  transform: translateY(-2px);
}

/* ══════════════════════ LINK HUB (/links) ══════════════════════ */
.hub {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 64px 0;
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(211, 178, 99, 0.1), transparent 62%),
    var(--bg);
}
.hub__inner { width: min(520px, 100%); text-align: center; }

.hub__brand img { width: 178px; height: auto; margin: 0 auto 26px; mix-blend-mode: screen; }
.hub__tagline { color: var(--muted); font-size: 0.95rem; max-width: 42ch; margin: 0 auto 40px; }

.hub__list { display: grid; gap: 12px; text-align: left; }

.hub__link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.4s var(--ease);
  animation: hubIn 0.6s var(--ease) both;
}
.hub__link:nth-child(2) { animation-delay: 0.06s; }
.hub__link:nth-child(3) { animation-delay: 0.12s; }
.hub__link:nth-child(4) { animation-delay: 0.18s; }
.hub__link:nth-child(5) { animation-delay: 0.24s; }
.hub__link:nth-child(6) { animation-delay: 0.3s; }
@keyframes hubIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.hub__link:hover {
  border-color: var(--hairline);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.hub__link--primary {
  background: var(--grad-gold);
  border-color: transparent;
  color: #17130a;
  box-shadow: 0 14px 36px -16px rgba(211, 178, 99, 0.8);
}
.hub__link--primary .hub__icon { border-color: rgba(23, 19, 10, 0.28); color: #17130a; }
.hub__link--primary .hub__name { color: #17130a; font-weight: 500; }
.hub__link--primary .hub__note { color: rgba(23, 19, 10, 0.72); }

.hub__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border: 1px solid var(--line-2);
  border-radius: 11px;
  color: var(--gold);
}
.hub__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hub__name { font-family: var(--font-display); font-size: 0.98rem; }
.hub__note { font-size: 0.78rem; color: var(--dim); }
.hub__arrow { margin-left: auto; opacity: 0.55; transition: transform 0.3s var(--ease); }
.hub__link:hover .hub__arrow { transform: translateX(3px); opacity: 1; }

.hub__foot { margin-top: 40px; font-size: 0.78rem; color: var(--dim); }
.hub__foot a { color: var(--muted); border-bottom: 1px solid var(--line-2); }
.hub__foot a:hover { color: var(--gold-lt); }

/* ══════════════════════ 404 ══════════════════════ */
.error {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 72px 0;
}
.error__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.error__brand img { width: 186px; height: auto; mix-blend-mode: screen; margin-bottom: 52px; }
.error .hero__lede { margin-inline: auto; }
.error .hero__actions { justify-content: center; }
.error__meta { margin-top: 42px; font-size: 0.84rem; color: var(--dim); }
.error__meta a { color: var(--gold-lt); border-bottom: 1px solid var(--hairline); }
.error__meta a:hover { color: #fff; }

/* ══════════════════════ FOOTER ══════════════════════ */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 52px 0 42px; }

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 44px;
  justify-content: space-between;
}

.footer__brand { display: flex; align-items: center; gap: 20px; }
.footer__brand img { width: 128px; height: auto; mix-blend-mode: screen; }
.footer__brand p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; letter-spacing: 0.02em; }
.footer__brand p span { color: var(--dim); }

.footer__nav { display: flex; flex-wrap: wrap; gap: 24px; font-size: 0.86rem; }
.footer__nav a { color: var(--muted); transition: color 0.24s ease; }
.footer__nav a:hover { color: var(--gold-lt); }

.footer__meta { width: 100%; font-size: 0.78rem; color: var(--dim); }
.footer__meta a { color: var(--muted); border-bottom: 1px solid var(--line-2); }
.footer__meta a:hover { color: var(--gold-lt); }

/* ══════════════════════ REVEAL (GSAP-enhanced, CSS-safe) ══════════════════════ */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* When GSAP takes over it owns the tween, so the CSS transition steps aside. */
html.anim-gsap .reveal { transition: none; }

/* Elements GSAP parallaxes need their own paint layer. */
.hero__aura, .hero__grid, .case__visual, .about__frame img { will-change: transform; }

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width: 1000px) {
  .case { grid-template-columns: 1fr; }
  .case--reverse .case__visual { order: 0; }
  .about__grid { grid-template-columns: 1fr; }
  .about__portrait { max-width: 420px; }
}

@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: grid; }
  .nav__mobile:not([hidden]) { display: flex; }
  .cursor-glow { display: none; }
  .hero { min-height: auto; padding-top: clamp(84px, 16vw, 130px); }
  /* The headline has to stay legible over the WebGL layer, so a scrim sits
     between them on narrow screens. */
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(6, 6, 7, 0.42) 0%,
      rgba(6, 6, 7, 0.62) 42%,
      rgba(6, 6, 7, 0.78) 100%
    );
    pointer-events: none;
  }
  .hero__inner::before { inset: -6% -16% -6% -10%; }
  .hero__scroll { display: none; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .wrap { padding-inline: 20px; }
  .social__links { grid-template-columns: 1fr; }
  .hub { padding: 48px 0; }
  .brand__logo { width: 116px; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__points { gap: 12px 22px; margin-top: 42px; }
  .facts { grid-template-columns: 1fr; }
  .faq__item p { padding-right: 20px; }
}

/* ══════════════════════ MOTION / ACCESSIBILITY ══════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .intro { display: none !important; }
  .hero__canvas { opacity: 1; }
}

@media (prefers-contrast: more) {
  :root { --muted: #d0cdd6; --dim: #aeabb6; --line: rgba(255, 255, 255, 0.24); }
}

@media print {
  .nav, .cursor-glow, .marquee, .intro, .hero__canvas, .hero__scroll, .footer__nav { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .case, .faq__item { border-color: #ccc; }
}
