:root {
  --bg-deep: #030305;
  --bg-elevated: #0a0a0f;
  --bg-card: rgba(18, 18, 24, 0.72);
  --bg-card-solid: #121218;
  --gold: #c9a227;
  --gold-bright: #f0d060;
  --gold-soft: #e8c547;
  --gold-muted: #7a6520;
  --gold-glow: rgba(232, 197, 71, 0.35);
  --text: #f4f2ee;
  --text-muted: #9c9890;
  --border: rgba(201, 162, 39, 0.28);
  --border-strong: rgba(201, 162, 39, 0.45);
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.65);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

a:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: #0a0906;
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 3, 5, 0.72);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(201, 162, 39, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
}

.logo-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold));
  box-shadow: 0 0 20px var(--gold-glow);
}

.logo-accent {
  color: var(--gold-soft);
  font-style: italic;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav > a:not(.nav-cta) {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--text);
  background: rgba(201, 162, 39, 0.08);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.15rem !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  color: #0c0b08 !important;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  border-radius: 999px !important;
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.35);
}

.nav-cta:hover {
  color: #0c0b08 !important;
  filter: brightness(1.08);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.5rem, 10vw, 5.5rem) 0 clamp(4rem, 12vw, 7rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-mesh {
  position: absolute;
  inset: -40% -20% 20%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(201, 162, 39, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 25%, rgba(120, 90, 200, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(201, 162, 39, 0.06), transparent 45%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 15%, transparent 70%);
  opacity: 0.5;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-orb--1 {
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  top: -8%;
  right: 5%;
  background: rgba(201, 162, 39, 0.25);
}

.hero-orb--2 {
  width: min(280px, 35vw);
  height: min(280px, 35vw);
  bottom: 10%;
  left: -5%;
  background: rgba(100, 80, 200, 0.12);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.hero-copy {
  max-width: 34rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 1.25rem;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 1.35rem;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-bottom: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.65rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn svg {
  transition: transform 0.25s var(--ease-out);
}

.btn-primary {
  background: linear-gradient(145deg, #f4dc6a, var(--gold) 55%, #a68218);
  color: #120f08;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 8px 32px rgba(201, 162, 39, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow:
    0 12px 40px rgba(201, 162, 39, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--border-strong);
  color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.06);
}

.btn:active {
  transform: scale(0.98);
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  width: min(420px, 90%);
  height: min(420px, 90%);
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.12);
  animation: ring-pulse 8s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.03); opacity: 1; }
}

.hero-card {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-card--main {
  width: 100%;
  max-width: 380px;
  padding: 1.5rem 1.75rem 1.75rem;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.8);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-stat-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.hero-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-stat-value.gold {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hero-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.35), var(--gold-soft));
}

.hero-card-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.hero-card--float {
  position: absolute;
  z-index: 3;
  bottom: 8%;
  right: -2%;
  padding: 1rem 1.25rem;
  max-width: 200px;
  animation: float-y 6s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-card--float strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--gold-soft);
  margin-bottom: 0.25rem;
}

.hero-card--float span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Trust strip */
.trust {
  position: relative;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.9), rgba(5, 5, 8, 0.95));
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2.25rem 0;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 1rem;
}

.trust-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--gold-soft);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.trust-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.trust-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.75rem;
}

.section-kicker--on-dark {
  color: var(--gold-soft);
  opacity: 0.95;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.title-accent {
  font-style: italic;
  color: var(--gold-soft);
}

.section-intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 38ch;
}

.section-head--center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.services {
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-elevated) 40%, var(--bg-deep));
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.card {
  position: relative;
  padding: 1.75rem 1.75rem 1.85rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(22, 22, 30, 0.95) 0%, rgba(12, 12, 18, 0.98) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 162, 39, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.card-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-muted);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--gold-soft);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.card h2,
.card h3,
.card-title-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.card > p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: 0.8;
}

/* Process */
.process {
  border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 2rem 2rem 2rem 2.25rem;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.process-step + .process-step {
  margin-left: -1px;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0c0b08;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
}

.process-step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.about-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.5), rgba(201, 162, 39, 0.08), rgba(100, 80, 200, 0.15));
}

.about-frame-inner {
  position: relative;
  border-radius: calc(var(--radius-lg) - 1px);
  padding: 2.5rem 2.25rem;
  background: var(--bg-card-solid);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-glow {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.2), transparent 65%);
  pointer-events: none;
}

.about-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(201, 162, 39, 0.08);
  position: relative;
  z-index: 1;
}

.about-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-style: italic;
  line-height: 1.45;
  margin: 0;
  color: var(--text);
}

.about-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.about-star {
  color: var(--gold-soft);
  letter-spacing: 0.15em;
}

.about-copy .section-kicker {
  margin-bottom: 0.5rem;
}

.about-lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #0c0b08;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
}

/* Contact */
.contact {
  padding-bottom: clamp(4rem, 12vw, 7rem);
}

.contact-panel {
  position: relative;
  border-radius: calc(var(--radius-lg) + 4px);
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), #6b5420, var(--gold-soft));
  box-shadow: var(--shadow-lg), 0 0 80px rgba(201, 162, 39, 0.15);
}

.contact-panel-bg {
  position: absolute;
  inset: 2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #16151a 0%, #0a0a0f 50%, #121018 100%);
  overflow: hidden;
}

.contact-panel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 90% 20%, rgba(201, 162, 39, 0.15), transparent 55%);
}

.contact-panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4rem);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.contact-lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 38ch;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-block {
  display: block;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.25);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.contact-block:hover {
  background: rgba(201, 162, 39, 0.1);
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateX(4px);
}

.contact-block-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

.contact-block-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  padding: 3rem 0 0;
  background: #020203;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.footer-tagline {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 28ch;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin: 0 0 1rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--gold-bright);
}

.footer-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0 2rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    filter 0.7s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Mobile */
@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 320px;
    margin-bottom: 1rem;
  }

  .hero-card--float {
    right: 0;
    bottom: 0;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-step + .process-step {
    margin-left: 0;
    margin-top: -1px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(8, 8, 12, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 0.9rem 1rem;
    border-radius: 10px;
  }

  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
  }

  .site-header .header-inner {
    position: relative;
  }
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Current page in nav */
.site-nav a[aria-current="page"] {
  color: var(--gold-bright) !important;
  background: rgba(201, 162, 39, 0.12);
}

.site-nav .nav-cta[aria-current="page"] {
  background: linear-gradient(145deg, #f4dc6a, var(--gold)) !important;
  color: #0c0b08 !important;
}

/* Page templates */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.06), transparent 55%);
}

.page-hero--compact {
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.page-hero-kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.75rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.page-hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero-lead {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 52ch;
}

.section--flush-top {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
}

.process-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.process-detail-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.process-detail-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--gold-soft);
}

.process-detail-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.page-closing-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(201, 162, 39, 0.05);
}

.page-closing-cta p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.narrow-prose {
  max-width: 42rem;
  margin-inline: auto;
}

.contact-hours {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-hours li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-hours strong {
  color: var(--text);
}

.contact-panel-inner--contact-page {
  grid-template-columns: 1fr 1fr;
}

.contact-block--link .contact-block-value {
  font-size: 1rem;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-elevated) 50%, var(--bg-deep));
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(22, 22, 30, 0.95), rgba(10, 10, 14, 0.98));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card blockquote {
  margin: 0 0 1.25rem;
  flex: 1;
}

.testimonial-card blockquote p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
}

.testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}

.testimonial-meta {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* AI section */
.ai-section {
  border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

.ai-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.ai-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-left: 2px solid rgba(201, 162, 39, 0.35);
}

.ai-list strong {
  color: var(--text);
  font-weight: 600;
}

.ai-panel {
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.45), rgba(201, 162, 39, 0.08));
}

.ai-panel-inner {
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 1.75rem;
  background: var(--bg-card-solid);
}

.ai-panel-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 1rem;
}

.ai-chips {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ai-chips li {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(201, 162, 39, 0.06);
  color: var(--text);
}

.ai-panel-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Tech stack */
.tech-section {
  background: var(--bg-elevated);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 900px;
  margin-inline: auto;
}

.tech-pill {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.tech-pill:hover {
  border-color: var(--border-strong);
  color: var(--text);
  background: rgba(201, 162, 39, 0.08);
}

/* Partners */
.partners-section {
  border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin-inline: auto;
}

.partner-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.partner-name {
  display: block;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.partner-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Process compact on home */
.process--compact .process-track--compact .process-step p {
  font-size: 0.9375rem;
}

.about-teaser {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.04), transparent);
}

.about-teaser-inner {
  max-width: 36rem;
  text-align: center;
  margin-inline: auto;
}

.about-teaser-inner .about-lead {
  text-align: left;
}

.about-teaser-inner .btn {
  margin-top: 0.5rem;
}

.contact--home {
  padding-bottom: clamp(5rem, 14vw, 8rem);
}

/* Mobile quick-action bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  gap: 0.5rem;
  background: rgba(6, 6, 10, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

.mobile-cta-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mobile-cta-bar__btn:hover {
  color: var(--gold-bright);
  border-color: var(--gold-muted);
}

.mobile-cta-bar__btn--primary {
  color: #0c0b08 !important;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  border-color: transparent;
}

.mobile-cta-bar__btn--primary:hover {
  color: #0c0b08 !important;
  filter: brightness(1.06);
}

body.has-mobile-cta {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  body.has-mobile-cta {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-cta-bar {
    display: flex;
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (min-width: 769px) {
  body.nav-open {
    overflow: auto;
    touch-action: auto;
  }
}

/* Service page: center last card when odd count */
@media (min-width: 993px) {
  .page-sub .card-grid .card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: min(560px, 100%);
    margin-inline: auto;
  }
}

/* Responsive: new sections */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .ai-layout {
    grid-template-columns: 1fr;
  }

  .partner-row {
    grid-template-columns: 1fr;
  }

  .process-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel-inner--contact-page {
    grid-template-columns: 1fr;
  }

  .page-hero-title {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(1140px, calc(100vw - 1.5rem));
  }

  .site-nav > a:not(.nav-cta) {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-card--float {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    max-width: none;
    animation: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-ring {
    display: none;
  }

  .contact-block:hover {
    transform: none;
  }

  .footer-bottom {
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }
}
