/* ============================================================
   Net World Service · nws.llc
   Sistema de diseño "Premium Corporate Dark + Gold"
   ============================================================ */

:root {
  /* Paleta */
  --bg: #0a0a0d;
  --bg-soft: #0f0f14;
  --bg-card: #14141b;
  --bg-card-hi: #1a1a23;
  --border: rgba(255, 255, 255, 0.07);
  --border-hi: rgba(212, 169, 104, 0.32);

  /* Dorado: tomado del logo (#9E762B) pero ajustado para legibilidad
     sobre fondo oscuro. Tono más claro y cálido. */
  --gold: #d4a968;
  --gold-soft: #e2c084;
  --gold-deep: #9e762b;
  --gold-shadow: rgba(212, 169, 104, 0.25);

  --text: #ece8de;
  --text-soft: #c8c4ba;
  --text-mute: #8d8a82;
  --text-dim: #5a5953;

  /* Tipografía */
  --font-display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1200px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Reservamos espacio para nuestro cursor custom — el sistema sigue funcionando */
}
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
  a,
  button,
  input,
  select,
  textarea,
  [role="button"] {
    cursor: none;
  }
}

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

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul,
ol {
  list-style: none;
}

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}
.section--dark {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}
.section--contact {
  background: var(--bg-soft);
}

/* ---------- Tipografía base ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold-shadow);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-shadow); }
  70%      { box-shadow: 0 0 0 12px transparent; }
}

.section__head {
  max-width: 760px;
  margin-bottom: 4rem;
}
.section__no {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--text);
}
.section__title em {
  font-style: italic;
  color: var(--gold);
}
.section__sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-mute);
  max-width: 58ch;
}

/* ---------- Botones ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.25s ease,
    color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.68rem;
}
.btn--block {
  width: 100%;
  padding: 1.1rem 1.8rem;
}
.btn--gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 10px 32px -8px var(--gold-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.btn--gold:hover {
  background: var(--gold-soft);
  box-shadow: 0 16px 42px -8px var(--gold-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.btn--line {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}
.btn--line:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Animaciones reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
  }
}
.cursor__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease;
}
.cursor__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 169, 104, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, width 0.22s ease, height 0.22s ease,
    border-color 0.2s ease;
}
.cursor.is-hover .cursor__ring {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
  background: rgba(212, 169, 104, 0.12);
}
.cursor.is-hover .cursor__dot {
  width: 3px;
  height: 3px;
}

/* ============================================================
   SIDE INDEX (vertical sticky nav)
   ============================================================ */
.side-index {
  position: fixed;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 1.1rem;
}
@media (min-width: 1280px) {
  .side-index {
    display: flex;
  }
}
.side-index a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s ease;
}
.side-index a::before {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease, background-color 0.25s ease;
}
.side-index a.is-active {
  color: var(--gold);
}
.side-index a.is-active::before {
  width: 32px;
  background: var(--gold);
}
.side-index a:hover {
  color: var(--text);
}
.side-index__no { color: inherit; }
.side-index__label { color: inherit; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 13, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.nav.is-stuck {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 13, 0.86);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.1rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav__brand img {
  height: 38px;
  width: auto;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
}
.nav__brand-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav__links a:hover {
  color: var(--text);
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
}
.nav__mobile a {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nav.is-mobile-open .nav__mobile {
  display: flex;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  padding: 8rem 0 4rem;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -25%;
  left: 50%;
  width: 130%;
  max-width: 1400px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(212, 169, 104, 0.22) 0%, transparent 60%);
  filter: blur(20px);
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 80%);
}
.hero__inner {
  position: relative;
  text-align: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 7.2rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-top: 1.5rem;
  color: var(--text);
}
.hero__line {
  display: block;
}
.hero__line em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  margin: 2rem auto 0;
  max-width: 640px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--text-mute);
}
.hero__cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__plate {
  margin: 5rem auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(20, 20, 27, 0.55);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__plate > div {
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hero__plate > div:last-child {
  border-right: 0;
}
.plate__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--text);
}
.plate__num sup {
  color: var(--gold);
  font-size: 0.65em;
  margin-left: 2px;
  vertical-align: super;
}
.plate__label {
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mute);
  z-index: 1;
}
.hero__scroll svg {
  width: 12px;
  height: 16px;
  animation: scroll-hint 2.2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(4px); opacity: 1; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--bg);
  padding-block: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-style: italic;
  color: var(--text-mute);
}
.marquee__track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee__track span:nth-child(odd) {
  color: var(--gold);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   LEGACY
   ============================================================ */
.legacy__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2rem;
}
.legacy__copy .lede {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.legacy__copy p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mute);
  margin-bottom: 1rem;
  max-width: 50ch;
}
.legacy__copy strong {
  color: var(--gold);
  font-weight: 600;
}

.frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.frame img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.frame:hover img {
  transform: scale(1.04);
}
.frame figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    to top,
    rgba(10, 10, 13, 0.9) 0%,
    rgba(10, 10, 13, 0) 100%
  );
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.caption__no {
  display: block;
  color: var(--gold);
  font-size: 0.62rem;
  margin-bottom: 0.35rem;
}

.timeline {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.timeline li {
  position: relative;
  padding: 2rem 1.5rem 0;
  border-right: 1px solid var(--border);
}
.timeline li:last-child {
  border-right: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline__year {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.timeline h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0.6rem 0 0.4rem;
  color: var(--text);
}
.timeline p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-mute);
}

/* ============================================================
   GRID BIG (numbers)
   ============================================================ */
.grid-big {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}
/* Variante para 3 celdas (cuando hay 3 métricas en vez de 4). */
.grid-big--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-big__cell {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  transition: background-color 0.3s ease;
}
.grid-big__cell:hover {
  background: var(--bg-card-hi);
}
.grid-big__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 1rem;
}
.grid-big__num sup {
  color: var(--gold);
  font-size: 0.55em;
  margin-left: 4px;
  vertical-align: super;
}
.grid-big__cell h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.grid-big__cell p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-mute);
}

.banner {
  position: relative;
  margin-top: 5rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.banner img {
  width: 100%;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  opacity: 0.55;
}
.banner figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 13, 0.5) 0%,
    rgba(10, 10, 13, 0.85) 100%
  );
}
.banner__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  max-width: 700px;
  color: var(--text);
}
.banner__quote span {
  color: var(--gold);
  font-size: 1.4em;
  vertical-align: -0.2em;
}
.banner__source {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   BENTO (services)
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.2rem;
}
.bento__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease,
    background-color 0.3s ease, box-shadow 0.3s ease;
}
.bento__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  background: var(--bg-card-hi);
  box-shadow: 0 20px 50px -20px var(--gold-shadow);
}
.bento__card--tall {
  grid-row: span 2;
}
.bento__card--wide {
  grid-column: span 2;
}
.bento__card--feature {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    rgba(212, 169, 104, 0.08) 0%,
    var(--bg-card) 60%
  );
  border-color: var(--border-hi);
}
.bento__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 169, 104, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.bento__icon svg {
  width: 24px;
  height: 24px;
}
.bento__no {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}
.bento__card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.7rem;
}
.bento__card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 42ch;
}
.bento__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.5rem;
}
.bento__tags li {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-mute);
}
.bento__link {
  margin-top: auto;
  padding-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CHAR STRIP (characteristics — Fast attention / Flexibility / …)
   Fila editorial debajo de Footprint. Estilo enumerado con
   numeración itálica en oro, separadores sutiles entre items.
   ============================================================ */
.char-strip {
  list-style: none;
  margin: 4rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.char-strip li {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.char-strip li span {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 0.95rem;
  margin-right: 0.55rem;
  display: inline-block;
}
@media (max-width: 1020px) {
  .char-strip { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1.5rem; }
}
@media (max-width: 560px) {
  .char-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   VALUES (three pillars · six benefits)
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.values--six {
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2.5rem;
}
.value {
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--gold);
}
.value__no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.value p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-mute);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  max-width: 980px;
  margin: 0 auto;
}
.contact__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}
.contact__head .section__sub {
  margin-left: auto;
  margin-right: auto;
}

.contact__panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.contact__panels--single {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}
.contact__card {
  position: relative;
  padding: 1.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.contact__card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.contact__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.contact__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
}
.contact__arrow {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  color: var(--gold);
  font-size: 1.3rem;
  transition: transform 0.25s ease;
}
.contact__card:hover .contact__arrow {
  transform: translate(3px, -3px);
}

/* Brief form */
.brief {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
}
.brief__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}
.brief__row .field {
  margin-bottom: 0;
}
.field label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field input,
.field select,
.field textarea {
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: rgba(212, 169, 104, 0.04);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #c74646;
}
.btn__spinner {
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn__label {
  opacity: 0;
}
.btn.is-loading .btn__spinner {
  display: block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.brief__status {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  min-height: 1.3rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.brief__status.is-success { color: var(--gold); }
.brief__status.is-error { color: #ff8a82; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer__brand img {
  height: 50px;
  margin-bottom: 1.2rem;
}
.footer__brand p {
  color: var(--text-mute);
  font-size: 0.9rem;
}
.footer__tag {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-mute);
}
.footer a:hover {
  color: var(--text);
}
.badge {
  margin-left: 0.4rem;
  padding: 0.18rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(212, 169, 104, 0.12);
  color: var(--gold);
  border-radius: 999px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease,
    background-color 0.2s ease;
  box-shadow: 0 10px 24px -8px var(--gold-shadow);
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.to-top svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .legacy__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .timeline li:nth-child(2n) {
    border-right: 0;
  }
  .grid-big {
    grid-template-columns: 1fr 1fr;
  }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .bento__card--tall,
  .bento__card--wide,
  .bento__card--feature {
    grid-column: span 2;
    grid-row: auto;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .values--six {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__panels {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .section { padding: 5rem 0; }
  .hero { padding: 4rem 0 3rem; min-height: auto; }
  .hero__plate {
    grid-template-columns: 1fr;
  }
  .values--six {
    grid-template-columns: 1fr;
  }
  .hero__plate > div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .hero__plate > div:last-child {
    border-bottom: 0;
  }
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__actions .btn--sm {
    display: none;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline li {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
  }
  .timeline li:last-child {
    border-bottom: 0;
  }
  .grid-big {
    grid-template-columns: 1fr;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .bento__card--tall,
  .bento__card--wide,
  .bento__card--feature {
    grid-column: auto;
  }
  .brief__row {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .eyebrow__dot,
  .marquee__track,
  .hero__scroll svg { animation: none; }
  html { scroll-behavior: auto; }
}
