:root {
  /* tweakable */
  --accent: #E7C15A;
  --accent-deep: #A67C00;
  --accent-soft: rgba(231, 193, 90, 0.14);

  --bg: #07090C;
  --bg-2: #0D1117;
  --surface: #12171F;
  --surface-2: #1A2028;
  --line: rgba(255,255,255,0.06);
  --line-strong: rgba(255,255,255,0.12);
  --text: #F4F3EE;
  --muted: #8A8F99;
  --muted-2: #5A5F69;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in: cubic-bezier(.7,0,.84,0);

  --maxw: 1320px;

  /* Fluid type scale — calibrated 375px→1440px */
  --fs-body: clamp(15px, 0.95rem + 0.2vw, 17px);
  --fs-body-sm: clamp(13px, 0.82rem + 0.1vw, 14px);
  --fs-mono: clamp(11px, 0.7rem + 0.1vw, 12px);
  --fs-display-xl: clamp(44px, 2.1rem + 7.5vw, 140px);   /* hero */
  --fs-display-lg: clamp(38px, 1.8rem + 5.5vw, 104px);   /* big cta */
  --fs-display-md: clamp(34px, 1.7rem + 3.6vw, 72px);    /* section title */
  --fs-display-sm: clamp(30px, 1.5rem + 2.6vw, 56px);    /* service row / about */
  --fs-headline: clamp(24px, 1.2rem + 1.4vw, 34px);      /* quote-style about */
  --fs-h3: clamp(20px, 1.1rem + 0.5vw, 24px);            /* card title */
  --fs-h4: clamp(18px, 1rem + 0.4vw, 22px);
  --fs-lead: clamp(15px, 0.9rem + 0.35vw, 18px);
  --fs-stat: clamp(40px, 2rem + 2.4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }

::selection { background: var(--accent); color: #1a1400; }

h1, h2, h3, h4 {
  font-family: 'Instrument Serif', 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 3vw, 32px); }

/* ============ CUSTOM CURSOR ============ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute;
  top: -3px; left: -3px;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
}
.cursor__ring {
  position: absolute;
  top: -20px; left: -20px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  transition: transform .25s var(--ease-out), border-color .25s, background .25s;
}
.cursor.is-hover .cursor__ring {
  transform: scale(1.8);
  background: rgba(255,255,255,0.1);
}
.cursor.is-hover-accent .cursor__ring {
  transform: scale(2.4);
  background: var(--accent);
  border-color: var(--accent);
}
.cursor.is-hover-accent .cursor__dot { opacity: 0; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: var(--maxw);
  transition: top .4s var(--ease-out);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 22px;
  background: rgba(13, 17, 23, 0.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 1.2rem + 0.3vw, 26px);
  letter-spacing: -0.02em;
}
.logo__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.logo em {
  font-style: italic;
  color: var(--accent);
}

.nav__links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav__links a {
  font-size: var(--fs-body-sm);
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 100px;
  transition: color .25s, background .25s;
}
.nav__links a:not(.btn):hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: var(--fs-body-sm);
  font-weight: 500;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), color .3s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #1a1400;
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
  z-index: 0;
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary > * { position: relative; z-index: 1; }

.btn--ghost {
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn__arrow {
  width: 20px; height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  transition: transform .4s var(--ease-out);
  font-size: 10px;
}
.btn:hover .btn__arrow { transform: translateX(3px) rotate(-45deg); }

.btn--large {
  padding: clamp(14px, 1rem + 0.3vw, 18px) clamp(20px, 1.3rem + 0.5vw, 28px);
  font-size: clamp(14px, 0.9rem + 0.1vw, 15px);
}

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.nav__toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  position: relative;
}
.nav__toggle span::before, .nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0; width: 100%; height: 100%;
  background: inherit;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(120px, 14vh, 160px) 0 clamp(80px, 8vh, 100px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -8%;
  z-index: -2;
  will-change: transform;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 60%;
  filter: brightness(0.7) saturate(0.9) contrast(1.1);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(7,9,12,0.95), transparent 60%),
    radial-gradient(ellipse 70% 70% at 90% 10%, rgba(231,193,90,0.12), transparent 55%),
    linear-gradient(180deg, rgba(7,9,12,0.5) 0%, transparent 35%, rgba(7,9,12,0.9) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  background-image:
    linear-gradient(var(--line-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-strong) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 80%);
}

.hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 40px;
}

.hero__headline {
  font-size: var(--fs-display-xl);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 1200px;
}
.hero__headline .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.08em;
}
.hero__headline .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineIn 1.1s var(--ease-out) forwards;
}
.hero__headline .line:nth-child(2) span { animation-delay: 0.12s; }
.hero__headline .line:nth-child(3) span { animation-delay: 0.24s; }

.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

@keyframes lineIn {
  to { transform: translateY(0); }
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  min-width: 280px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}
.hero__sub {
  font-size: var(--fs-lead);
  color: var(--muted);
  max-width: 340px;
  text-align: right;
}
.hero__ctas {
  display: flex;
  gap: 10px;
}

.hero__ticker {
  position: absolute;
  bottom: 22px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  padding: 0 clamp(20px, 3vw, 32px);
  font-size: var(--fs-mono);
}
.hero__ticker span { display: inline-flex; align-items: center; gap: 8px; }
.hero__ticker .blink {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1px solid var(--muted-2);
  border-radius: 20px;
  display: none;
}
.hero__scroll::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  width: 2px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translate(-50%, 0); opacity: 1; }
  80% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE ============ */
.marquee {
  padding: clamp(18px, 2.5vw, 28px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  position: relative;
}
.marquee__track {
  display: flex;
  gap: clamp(32px, 5vw, 60px);
  animation: scroll 36s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  color: var(--text);
}
.marquee__item em { font-style: italic; color: var(--accent); }
.marquee__item .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION SHELL ============ */
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(40px, 6vw, 70px);
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
}
.section__eyebrow {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.section__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.section__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: var(--fs-display-md);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.section__title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.section__kicker {
  font-size: var(--fs-body);
  color: var(--muted);
  max-width: 320px;
  text-align: right;
  line-height: 1.5;
}

/* ============ SERVICES SHOWCASE ============ */
.services {
  background: var(--bg-2);
  padding: clamp(80px, 11vw, 140px) 0 0;
}
.services__list {
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 64px 1fr auto 60px;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding: clamp(22px, 2.6vw, 32px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  transition: padding .5s var(--ease-out);
}
.service:hover {
  padding: clamp(26px, 3vw, 38px) 0;
}
.service__num {
  color: var(--muted-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono);
  letter-spacing: 0.1em;
}
.service__name {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: var(--fs-display-sm);
  letter-spacing: -0.025em;
  line-height: 1.02;
  transition: transform .6s var(--ease-out), color .4s;
}
.service__name em { font-family: 'Instrument Serif', serif; font-weight: 400; font-style: italic; }
.service:hover .service__name {
  transform: translateX(20px);
  color: var(--accent);
}
.service__name em { font-style: italic; }
.service__tags {
  display: flex;
  gap: 8px;
  opacity: 0.7;
  transition: opacity .3s;
}
.service:hover .service__tags { opacity: 1; }
.service__tag {
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: var(--fs-mono);
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service__arrow {
  width: clamp(48px, 5vw, 60px); height: clamp(48px, 5vw, 60px);
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 18px;
  color: var(--muted);
  transition: all .5s var(--ease-out);
}
.service:hover .service__arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1400;
  transform: rotate(-45deg);
}

.service__preview {
  position: fixed;
  top: 0; left: 0;
  width: clamp(260px, 26vw, 380px);
  aspect-ratio: 4/5;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity .25s, transform .5s var(--ease-out);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.service__preview img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service__preview.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ============ ABOUT ============ */
.about {
  padding: clamp(100px, 13vw, 180px) 0;
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
.about__text {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: var(--fs-display-sm);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}
.about__text em {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}
.about__text em {
  font-style: italic;
  color: var(--accent);
}
.about__text .highlight {
  position: relative;
  white-space: nowrap;
}
.about__text .highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 8px;
  background: var(--accent-soft);
  z-index: -1;
}

.about__side {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
  padding-top: 20px;
}
.stat {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
}
.stat__num {
  font-family: 'Instrument Serif', serif;
  font-size: var(--fs-stat);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}
.stat__sub { color: var(--muted); font-size: var(--fs-mono); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.stat__label {
  color: var(--muted);
  font-size: var(--fs-body-sm);
  max-width: 160px;
  text-align: right;
  line-height: 1.4;
}

/* ============ PROCESS ============ */
.process {
  background: var(--bg-2);
  padding: clamp(90px, 12vw, 160px) 0;
  border-top: 1px solid var(--line);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg);
}
.pstep {
  padding: clamp(32px, 4vw, 50px) clamp(24px, 3vw, 40px) clamp(44px, 5vw, 70px);
  position: relative;
  min-height: clamp(240px, 30vw, 320px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .5s var(--ease);
  overflow: hidden;
}
.pstep:last-child { border-right: 0; }
.pstep::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity .5s;
}
.pstep:hover::before { opacity: 1; }
.pstep__num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(56px, 7vw, 80px);
  color: var(--muted-2);
  line-height: 1;
  transition: color .4s, transform .5s var(--ease-out);
}
.pstep:hover .pstep__num {
  color: var(--accent);
  transform: translateY(-6px);
}
.pstep__body { position: relative; z-index: 1; }
.pstep h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pstep p {
  color: var(--muted);
  font-size: var(--fs-body);
  max-width: 320px;
  line-height: 1.5;
}
.pstep__time {
  position: absolute;
  top: clamp(32px, 4vw, 50px); right: clamp(24px, 3vw, 40px);
  color: var(--muted-2);
}

/* ============ WHY ============ */
.why {
  padding: clamp(90px, 12vw, 160px) 0;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.why__card {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 2.6vw, 32px);
  min-height: clamp(220px, 24vw, 280px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  transition: background .4s;
  position: relative;
  overflow: hidden;
}
.why__card:hover { background: var(--surface); }
.why__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease-out);
}
.why__card:hover::after { transform: translateX(0); }
.why__icon {
  width: clamp(42px, 4vw, 48px); height: clamp(42px, 4vw, 48px);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 20px;
  transition: transform .5s var(--ease-out), background .4s;
}
.why__card:hover .why__icon {
  background: var(--accent);
  color: #1a1400;
  transform: rotate(45deg);
}
.why__card h3 { font-family: 'Inter', system-ui, sans-serif; font-weight: 500; font-size: var(--fs-h3); margin-bottom: 10px; letter-spacing: -0.02em; }
.why__card p { color: var(--muted); font-size: var(--fs-body-sm); line-height: 1.5; }

/* ============ BIG CTA ============ */
.big-cta {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  overflow: hidden;
  isolation: isolate;
}
.big-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.big-cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.1);
}
.big-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%),
    radial-gradient(ellipse at center, transparent, rgba(7,9,12,0.6));
}
.big-cta__inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.big-cta h2 {
  font-size: var(--fs-display-lg);
  line-height: 0.98;
  margin-bottom: clamp(28px, 4vw, 40px);
  letter-spacing: -0.035em;
}
.big-cta h2 em {
  font-style: italic;
  color: var(--accent);
}
.big-cta__ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============ CONTACT ============ */
.contact {
  padding: clamp(80px, 11vw, 140px) 0;
  border-top: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact__left {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 40px);
}
.contact__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: var(--fs-display-md);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.contact__title em {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}

.info-line {
  padding: clamp(16px, 2vw, 22px) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: clamp(90px, 12vw, 120px) 1fr;
  gap: 20px;
  align-items: center;
}
.info-line:last-child { border-bottom: 1px solid var(--line); }
.info-line .mono { color: var(--muted); }
.info-line__value {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.info-line a:hover .info-line__value { color: var(--accent); }

.contact__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.map {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.2);
}

.quick-card {
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.quick-card h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.quick-card p { color: var(--muted); font-size: var(--fs-body-sm); line-height: 1.5; }

/* ============ FOOTER ============ */
.footer {
  padding: clamp(60px, 8vw, 80px) 0 36px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: clamp(36px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.footer__brand .logo { font-size: clamp(30px, 3vw, 40px); }
.footer__tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  margin-top: 18px;
  max-width: 400px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.footer__tag em { font-family: 'Instrument Serif', serif; font-weight: 400; font-style: italic; color: var(--accent); }
.footer__col h5 {
  color: var(--muted);
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: var(--fs-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  color: var(--text);
  font-size: var(--fs-body-sm);
  transition: color .25s, padding .3s;
}
.footer__col a:hover { color: var(--accent); padding-left: 8px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: var(--fs-mono);
  font-family: 'JetBrains Mono', monospace;
}

/* ============ TWEAKS PANEL ============ */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 20px;
  z-index: 500;
  display: none;
  color: var(--text);
  font-size: 13px;
}
.tweaks.is-open { display: block; }
.tweaks h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks h5 button { color: var(--muted); font-size: 16px; }
.tweak { margin-bottom: 16px; }
.tweak__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.swatches { display: flex; gap: 8px; }
.swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s;
}
.swatch.active { border-color: #fff; }
.swatch:hover { transform: scale(1.1); }

/* ============ REVEALS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1040px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__side { padding-top: 0; }
  .process__steps { grid-template-columns: 1fr; }
  .pstep { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .pstep:last-child { border-bottom: 0; }
  .footer__top { grid-template-columns: 1.3fr 1fr 1fr; }
}
@media (max-width: 760px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .nav { top: 10px; width: calc(100% - 20px); }
  .nav__inner { padding: 8px 8px 8px 16px; }
  .nav__links { gap: 4px; }
  .nav__links a:not(.btn) { display: none; }
  .hero__ticker { font-size: 10px; }
  .hero__meta { align-items: flex-start; min-width: 0; }
  .hero__sub { text-align: left; max-width: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .section__header { grid-template-columns: 1fr; }
  .section__kicker { text-align: left; max-width: none; }
  .service { grid-template-columns: 40px 1fr 48px; gap: 14px; }
  .service__tags { display: none; }
  .service__preview { display: none !important; }
  .contact__grid { grid-template-columns: 1fr; }
  .info-line { grid-template-columns: 80px 1fr; gap: 14px; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { justify-content: flex-start; }
  .tweaks { right: 10px; bottom: 10px; left: 10px; width: auto; }
}
@media (max-width: 420px) {
  .service { grid-template-columns: 32px 1fr 40px; }
  .service__arrow { width: 40px; height: 40px; font-size: 14px; }
  .btn--large { padding: 14px 20px; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1; justify-content: center; }
  .hero__ticker { font-size: 9px; padding: 0 16px; }
  .nav__links .btn { padding: 10px 14px; font-size: 13px; }
  .logo__dot { width: 6px; height: 6px; }
}
