/* ============================================================
   Verto Uno — Stylesheet
   Palette : navy #0D1B2A · gold #C9A84C · gray #F5F5F5 · white
   Typefaces: Instrument Serif (display) · Manrope (body) · JetBrains Mono (kicker)
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --navy:      #0D1B2A;
  --navy-2:    #142a40;
  --navy-3:    #1d3557;
  --gold:      #C9A84C;
  --gold-soft: #e6c876;
  --paper:     #F5F5F5;
  --paper-2:   #efeae0;
  --white:     #FFFFFF;
  --ink:       #0D1B2A;
  --muted:     #5a6470;
  --line:      rgba(13, 27, 42, 0.08);

  /* Typefaces */
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-sans:    "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);

  /* Easing */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*               { box-sizing: border-box; margin: 0; padding: 0; }
html            { scroll-behavior: smooth; }
a               { color: inherit; text-decoration: none; }
img, svg        { display: block; max-width: 100%; }
em              { font-family: var(--font-display); font-style: italic; font-weight: 400; }
h1, h2, h3     { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar       { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; }

/* ============================================================
   SPOTLIGHT CURSOR
   ============================================================ */
.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
  opacity: 0;
  mix-blend-mode: screen;
}

body.has-cursor .spotlight { opacity: 1; }

@media (max-width: 900px) {
  .spotlight { display: none; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, padding 0.4s;
}

.nav.is-scrolled {
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: transform 0.4s var(--ease-out);
}

.logo:hover { transform: translateY(-1px); }

.logo__img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(13, 27, 42, 0.35));
  transition: transform 0.6s var(--ease-out);
}

.logo:hover .logo__img     { transform: rotate(-6deg); }
.nav.is-scrolled .logo__img { width: 38px; height: 38px; }

.logo__word {
  font-family: var(--font-sans);
  line-height: 1;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.logo__word b { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--white); }
.logo__word i { font-style: normal; font-weight: 300; font-size: 18px; color: rgba(255, 255, 255, 0.85); }

.logo__word i::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 6px;
  transform: translateY(-3px);
}

.logo--lg .logo__img { width: 72px; height: 72px; }

@media (max-width: 420px) {
  .logo__word { display: none; }
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav__links a:hover         { color: var(--white); }
.nav__links a:hover::after  { width: 100%; }

/* CTA pill in nav */
.nav__cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 18px !important;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.3s;
}

.nav__cta:hover { background: var(--gold-soft); transform: translateY(-1px); }
.nav__cta::after { display: none; }

/* Hamburger (mobile) */
.nav__burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile drawer */
.nav__mobile {
  display: none;
  background: var(--navy);
  padding: 20px var(--pad);
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__mobile a        { color: var(--white); font-size: 18px; font-family: var(--font-display); }
.nav__mobile.is-open  { display: flex; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }

  /* Animate burger → X */
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform     0.3s var(--ease-out),
    background    0.3s,
    color         0.3s,
    border-color  0.3s,
    box-shadow    0.3s;
  position: relative;
  white-space: nowrap;
  will-change: transform;
}

.btn svg               { transition: transform 0.3s var(--ease-out); }
.btn:hover svg         { transform: translateX(4px); }

/* Gold (primary) */
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px -10px rgba(201, 168, 76, 0.7);
}

.btn--gold:hover {
  background: var(--gold-soft);
  box-shadow: 0 12px 30px -10px rgba(201, 168, 76, 0.8);
  transform: translateY(-2px);
}

/* Pulse ring on primary button */
.btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* Ghost (transparent on dark bg) */
.btn--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}

.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Outline (transparent on light bg) */
.btn--outline {
  color: var(--navy);
  border: 1px solid var(--navy);
  background: transparent;
}

.btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* Modifiers */
.btn--full { width: 100%; justify-content: center; padding: 18px; }
.btn--sm   { padding: 10px 16px; font-size: 13px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px var(--pad) 40px;
}

/* Background grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

/* Animated wave SVGs */
.hero__waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.wave {
  position: absolute;
  width: 200%;
  height: 100%;
  left: 0;
  bottom: 0;
}

.wave--1 { animation: drift 18s linear infinite; }
.wave--2 { animation: drift 26s linear infinite reverse; }
.wave--3 { animation: drift 34s linear infinite; }

@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Soft glow orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.orb--a { width: 380px; height: 380px; background: var(--gold);      top: 8%;  right: -100px; animation: float 12s ease-in-out infinite; }
.orb--b { width: 280px; height: 280px; background: #2a5e80;          bottom: 18%; left: -60px; animation: float 14s ease-in-out infinite reverse; }
.orb--c { width: 200px; height: 200px; background: var(--gold-soft); top: 50%; left: 50%;     opacity: 0.15; animation: float 16s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(40px, -30px); }
}

/* Content */
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

/* Eyebrow chip */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.hero__eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
  animation: blip 2s ease-in-out infinite;
}

@keyframes blip {
  0%, 100% { box-shadow: 0 0 0 0  rgba(201, 168, 76, 0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}

/* Headline */
.hero__title {
  font-size: clamp(36px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 1100px;
}

.hero__title span { display: block; }
.hero__title em   { color: var(--gold); }

/* Sub-headline */
.hero__sub {
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
  line-height: 1.55;
}

/* CTA row */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

/* Stats bar */
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.hero__meta > div:not(.sep) { display: flex; flex-direction: column; gap: 2px; }
.hero__meta b    { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--gold); }
.hero__meta span { font-size: 11px; color: rgba(255, 255, 255, 0.55); font-family: var(--font-mono); letter-spacing: 0.04em; }
.hero__meta .sep { width: 1px; height: 30px; background: rgba(255, 255, 255, 0.12); }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background: var(--gold);
  top: -12px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { top: -12px; opacity: 0; }
  50%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 760px) {
  .hero__scroll { display: none; }
}

/* Hero reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee {
  background: var(--navy);
  color: var(--gold);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 22px 0;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
}

.marquee__track span { display: inline-flex; align-items: center; gap: 50px; }
.marquee__track i    { color: rgba(201, 168, 76, 0.4); font-style: normal; margin-left: 50px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION — SHARED LAYOUT
   ============================================================ */
.section {
  padding: clamp(80px, 12vh, 140px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

/* Section header */
.section__head {
  max-width: 760px;
  margin-bottom: 60px;
}

/* Split header (text left, para right) */
.section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

@media (max-width: 800px) {
  .section__head--split { grid-template-columns: 1fr; }
}

.section__head h2,
.section h2 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}

.section__head p,
.section > p {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.6;
}

/* Monospace section label */
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Scroll-triggered reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-on-scroll.is-in             { opacity: 1; transform: none; }
[data-side="left"].reveal-on-scroll  { transform: translateX(-60px); }
[data-side="right"].reveal-on-scroll { transform: translateX(60px); }
[data-side].reveal-on-scroll.is-in  { transform: none; }

/* ============================================================
   SERVICES / PRICING
   ============================================================ */
.services { padding-top: clamp(100px, 14vh, 160px); }

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; }
}

/* Plan card */
.plan {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition:
    transform     0.45s var(--ease-out),
    box-shadow    0.45s,
    border-color  0.45s;
  will-change: transform;
}

.plan[data-link] { cursor: pointer; }

.plan:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -30px rgba(201, 168, 76, 0.45), 0 0 0 1px var(--gold);
}

/* Featured (center) plan */
.plan--featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px -25px rgba(13, 27, 42, 0.5);
}

.plan--featured:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 40px 80px -25px rgba(201, 168, 76, 0.5);
}

@media (max-width: 900px) {
  .plan--featured          { transform: none; }
  .plan--featured:hover    { transform: translateY(-6px); }
}

/* "Most Popular" badge */
.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.plan h3 { font-size: 28px; margin: 14px 0 28px; line-height: 1.1; }

/* Price display */
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.plan__price .cur {
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  margin-right: 4px;
}

.plan__price .num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.plan__note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.plan--featured .plan__note { color: rgba(255, 255, 255, 0.55); }

/* Feature list */
.plan__list {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.plan__list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan--featured .plan__list li { border-color: rgba(255, 255, 255, 0.08); }

/* Checkmark via CSS mask */
.plan__list li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: var(--gold);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="20 6 9 17 4 12" fill="none" stroke="black" stroke-width="3"/></svg>') center / contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="20 6 9 17 4 12" fill="none" stroke="black" stroke-width="3"/></svg>') center / contain no-repeat;
}

/* Featured plan button overrides */
.plan--featured .btn--gold          { background: var(--gold); color: var(--navy); }
.plan--featured .btn--outline       { color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.plan--featured .btn--outline:hover { background: var(--white); color: var(--navy); }

.services__foot { text-align: center; color: var(--muted); font-size: 15px; }
.services__foot a { color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { background: var(--paper); }

.works { display: flex; flex-direction: column; gap: 24px; }

.work {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy);
}

.work__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  cursor: pointer;
}

/* Live indicator chip */
.work__chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  transition: opacity 0.4s var(--ease-out);
}

.work__chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7);
  animation: blip 2s ease-in-out infinite;
}

.work:hover .work__chip { opacity: 0; }

/* SVG placeholder thumbnail */
.work__placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 0.8s var(--ease-out);
}

.work__placeholder svg { width: 100%; height: 100%; object-fit: cover; }

.work__placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(13, 27, 42, 0.6);
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.work:hover .work__placeholder { transform: scale(1.05); }

/* Hover overlay with project info */
.work__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.94), rgba(13, 27, 42, 0.78));
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px clamp(28px, 5vw, 80px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.work__overlay .kicker { margin-bottom: 12px; }
.work__overlay h3      { font-size: clamp(28px, 4vw, 52px); margin-bottom: 14px; }
.work__overlay p       { max-width: 520px; font-size: 17px; color: rgba(255, 255, 255, 0.78); margin-bottom: 28px; }
.work__overlay .btn    { align-self: flex-start; }

.work:hover .work__overlay { opacity: 1; transform: none; }

/* Card footer */
.work__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 28px;
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work__foot h3   { font-size: 22px; }
.work__foot span { font-family: var(--font-mono); font-size: 11px; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.05em; }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why {
  background: var(--navy);
  color: var(--white);
  max-width: none;
  border-radius: 0;
}

.why .section__head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 var(--pad);
}

.why .section__head .kicker,
.why .section__head h2,
.why .section__head p  { color: var(--white); }
.why .section__head p  { color: rgba(255, 255, 255, 0.7); margin-left: auto; margin-right: auto; }
.why .section__head em { color: var(--gold); }

/* Three-column grid with dividers */
.reasons {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .reasons { grid-template-columns: 1fr; }
}

.reason {
  background: var(--navy);
  padding: 48px 36px;
  position: relative;
  transition: background 0.4s var(--ease-out);
}

.reason:hover { background: var(--navy-2); }

.reason__num  { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 24px; }

.reason__icon {
  color: var(--gold);
  margin-bottom: 28px;
  display: inline-flex;
  padding: 14px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 14px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}

.reason:hover .reason__icon { transform: scale(1.05) rotate(-3deg); border-color: var(--gold); }

.reason h3 { font-size: 32px; margin-bottom: 16px; color: var(--white); }
.reason p  { color: rgba(255, 255, 255, 0.65); font-size: 15.5px; line-height: 1.65; }
.reason em { color: var(--gold); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding-top: clamp(100px, 14vh, 160px); }

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
}

.about__left h2  { font-size: clamp(48px, 7vw, 96px); margin: 16px 0 32px; }
.about__lead     { font-size: 19px; line-height: 1.6; margin-bottom: 24px; }
.about__left p   { color: var(--muted); font-size: 16px; line-height: 1.7; }
.about__left em  { color: var(--navy); font-style: italic; }

/* Signature block */
.about__sign {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about__sig {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 42px;
  color: var(--navy);
  line-height: 1;
}

.about__sigsub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Stats column */
.stats { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 24px; }

.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: baseline;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}

.stat:hover { border-color: var(--gold); transform: translateX(6px); }

.stat__num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
  min-width: 140px;
}

.stat__num--text { font-size: 48px; color: var(--gold); font-style: italic; }

.stat__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
}

/* Gold underline that expands on scroll-in */
.stat__line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 1.4s var(--ease-out) 0.2s;
}

.stat.is-in .stat__line { width: 100%; }

/* Availability card */
.about__card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about__card-head .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7);
  animation: blip 2s ease-in-out infinite;
}

.about__card p { color: rgba(255, 255, 255, 0.8); font-size: 15px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--navy);
  color: var(--white);
  max-width: none;
  padding: clamp(100px, 14vh, 160px) var(--pad);
  position: relative;
  overflow: hidden;
}

.contact__bg { position: absolute; inset: 0; pointer-events: none; }
.contact__bg svg { width: 100%; height: 100%; }

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; gap: 50px; }
}

.contact__left .kicker { color: var(--gold); }

.contact__left h2 { font-size: clamp(48px, 7vw, 96px); margin: 16px 0 28px; }
.contact__left em { color: var(--gold); }

.contact__left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 460px;
}

/* Contact info list */
.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__list li {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.contact__list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.contact__list b  { font-weight: 500; color: var(--white); margin-right: 4px; }
.contact__fb      { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* Contact form */
.contact__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Floating-label field */
.field { position: relative; padding-top: 22px; }

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 0 12px;
  font-family: inherit;
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.field label {
  position: absolute;
  left: 0;
  top: 36px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: top 0.3s var(--ease-out), font-size 0.3s var(--ease-out), color 0.3s ease;
}

/* Float label up when field has content or focus */
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Invisible placeholder keeps :not(:placeholder-shown) working */
.field input::placeholder,
.field textarea::placeholder { color: transparent; }

/* Gold underline on focus */
.field__line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.field input:focus ~ .field__line,
.field textarea:focus ~ .field__line { width: 100%; }

.field--textarea label    { top: 36px; }
.field--textarea textarea { min-height: 100px; }

.contact__form .btn--gold { margin-top: 20px; }

/* Success message */
.form__success {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-align: center;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease;
}

.form__success.is-visible { opacity: 1; height: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060e18;
  color: rgba(255, 255, 255, 0.65);
  padding: 80px var(--pad) 30px;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

.footer__brand .logo { color: var(--white); }

.footer__tag { margin-top: 16px; font-family: var(--font-display); font-size: 22px; color: var(--gold); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 500px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

.footer__cols h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.footer__cols a,
.footer__cols span {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer__cols a:hover { color: var(--gold); }

.footer__bot {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

@media (max-width: 500px) {
  .footer__bot { flex-direction: column; gap: 6px; }
  .hero__meta  { flex-wrap: wrap; gap: 16px; }
  .hero__meta .sep { display: none; }
}

/* ============================================================
   ACCESSIBILITY — REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
