/* ============================================
   SOFTEQUITIES — Dark Luxury Editorial
   ============================================ */

/* --- Self-hosted Fonts --- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('../fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Custom Properties --- */
:root {
  /* Palette */
  --bg-primary: #08080d;
  --bg-surface: #0f0f16;
  --bg-elevated: #16161f;
  --bg-card: #1a1a25;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dim: #8a7533;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --text-primary: #f0ede6;
  --text-secondary: #b0ada6;
  --text-muted: #6b6878;
  --border: rgba(201, 168, 76, 0.12);
  --border-strong: rgba(201, 168, 76, 0.25);

  /* Typography (self-hosted, no external dependencies) */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad: clamp(5rem, 12vh, 9rem);
  --container-max: 1280px;
  --container-wide: 1440px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-slow: 1.2s;
  --duration-med: 0.6s;
  --duration-fast: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Noise texture overlay for depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

/* --- Utility --- */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.container--wide {
  max-width: var(--container-wide);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Reveal Animation System --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--duration-fast) ease,
              padding var(--duration-fast) ease,
              backdrop-filter var(--duration-fast) ease;
}

.nav.is-scrolled {
  background: rgba(8, 8, 13, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.nav__logo span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--duration-fast) ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-med) var(--ease-out-expo);
}

.nav__link:hover {
  color: var(--gold-light);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--gold);
  padding: 0.7rem 1.8rem;
  transition: background var(--duration-fast) ease,
              transform var(--duration-fast) ease;
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile menu — hidden by default */
.nav__mobile-menu {
  display: none;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform var(--duration-fast) ease,
              opacity var(--duration-fast) ease;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 var(--section-pad);
  overflow: hidden;
}

/* Radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: hero-glow 8s ease-in-out infinite alternate;
}

@keyframes hero-glow {
  0% { opacity: 0.6; transform: translate(0, 0) scale(1); }
  100% { opacity: 1; transform: translate(-30px, 20px) scale(1.05); }
}

/* Diagonal accent line */
.hero::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 1px;
  height: 40vh;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  transform: rotate(15deg);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fade-up 1s var(--ease-out-expo) 0.3s forwards;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  max-width: 14ch;
}

.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__title .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: line-reveal 1.2s var(--ease-out-expo) forwards;
}

.hero__title .line:nth-child(2) .line-inner { animation-delay: 0.15s; }
.hero__title .line:nth-child(3) .line-inner { animation-delay: 0.3s; }

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

@keyframes line-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__desc {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fade-up 1s var(--ease-out-expo) 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: fade-up 1s var(--ease-out-expo) 0.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  transition: all var(--duration-fast) ease;
}

.btn--primary {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
}

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

.btn__arrow {
  transition: transform var(--duration-fast) ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fade-up 1s var(--ease-out-expo) 1.2s forwards;
}

.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Section Shared --- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section__label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-dim);
}

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.section__heading em {
  font-style: italic;
  color: var(--gold);
}

.section__desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

/* --- About --- */
.about {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about__visual-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Geometric pattern inside frame */
.about__pattern {
  width: 60%;
  height: 60%;
  position: relative;
}

.about__pattern::before,
.about__pattern::after {
  content: '';
  position: absolute;
  border: 1px solid var(--border-strong);
}

.about__pattern::before {
  inset: 0;
  transform: rotate(45deg);
}

.about__pattern::after {
  inset: 15%;
  transform: rotate(22.5deg);
}

.about__pattern-inner {
  position: absolute;
  inset: 30%;
  border: 1px solid var(--gold-dim);
  animation: pattern-rotate 20s linear infinite;
}

@keyframes pattern-rotate {
  to { transform: rotate(360deg); }
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Services --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
  background: var(--border);
}

.services__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--bg-primary);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--duration-fast) ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-med) var(--ease-out-expo);
}

.service-card:hover {
  background: var(--bg-surface);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--bg-elevated);
  line-height: 1;
  margin-bottom: 2rem;
  transition: color var(--duration-fast) ease;
}

.service-card:hover .service-card__number {
  color: var(--gold-dim);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.service-card__desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-card__icon {
  margin-top: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold-dim);
  transition: border-color var(--duration-fast) ease,
              color var(--duration-fast) ease;
}

.service-card:hover .service-card__icon {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Differentiators --- */
.diff {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}

.diff__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.diff__item {
  padding-left: 2rem;
  position: relative;
}

.diff__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.diff__item-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.diff__item-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

.diff__quote {
  position: relative;
  padding: 3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.diff__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold-dim);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.diff__quote blockquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.diff__quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Contact --- */
.contact {
  position: relative;
}

/* Ambient glow */
.contact::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact__info {
  position: relative;
  z-index: 1;
}

.contact__detail {
  margin-top: 3rem;
}

.contact__detail-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.contact__detail-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.contact__detail-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
}

.contact__detail-value a {
  transition: color var(--duration-fast) ease;
}

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

/* Form */
.form {
  position: relative;
  z-index: 1;
}

.form__group {
  margin-bottom: 2rem;
  position: relative;
}

.form__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.form__input,
.form__textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 1rem 1.25rem;
  transition: border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.form__textarea {
  resize: vertical;
  min-height: 160px;
}

.form__error {
  font-size: 0.78rem;
  color: #d4614b;
  margin-top: 0.5rem;
  display: none;
}

.form__group.has-error .form__error {
  display: block;
}

.form__group.has-error .form__input,
.form__group.has-error .form__textarea {
  border-color: #d4614b;
}

/* Honeypot */
.form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form__submit {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 1.2rem 2rem;
  position: relative;
  overflow: hidden;
}

.form__submit .btn__text {
  position: relative;
  z-index: 1;
  transition: opacity var(--duration-fast) ease;
}

.form__submit.is-loading .btn__text {
  opacity: 0;
}

.form__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--bg-primary);
  border-radius: 50%;
  opacity: 0;
  animation: spin 0.6s linear infinite;
  transition: opacity var(--duration-fast) ease;
}

.form__submit.is-loading .form__spinner {
  opacity: 1;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Form feedback */
.form__feedback {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  display: none;
}

.form__feedback.is-success {
  display: block;
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #81c784;
}

.form__feedback.is-error {
  display: block;
  background: rgba(212, 97, 75, 0.08);
  border: 1px solid rgba(212, 97, 75, 0.25);
  color: #d4614b;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 3rem;
  background: var(--bg-surface);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 4rem;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.footer__logo span {
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  gap: 5rem;
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__col a {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color var(--duration-fast) ease;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color var(--duration-fast) ease,
              color var(--duration-fast) ease;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

/* --- Skip to content (ADA) --- */
.sr-only--focusable {
  transition: all var(--duration-fast) ease;
}

.sr-only--focusable:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10000;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Active nav link --- */
.nav__link--active {
  color: var(--gold) !important;
}

.nav__link--active::after {
  width: 100% !important;
}

/* --- Select / dropdown styling --- */
.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6878' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.form__select:focus {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c9a84c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* --- Portfolio Cards --- */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
  background: var(--border);
}

.portfolio-card {
  background: var(--bg-surface);
  padding: 2.5rem;
  position: relative;
  transition: background var(--duration-fast) ease;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-med) var(--ease-out-expo);
}

.portfolio-card:hover {
  background: var(--bg-elevated);
}

.portfolio-card:hover::before {
  transform: scaleX(1);
}

.portfolio-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.portfolio-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.portfolio-card__tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
}

.portfolio-card__desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.portfolio-card__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.portfolio-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.portfolio-card__dot--active {
  background: #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}

.portfolio-card__dot--stealth {
  background: var(--gold-dim);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* --- India Thesis Section --- */
.india {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.india::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.india__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.india__highlights {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.india__highlight-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color var(--duration-fast) ease;
}

.india__highlight-card:hover {
  border-color: var(--border-strong);
}

.india__highlight-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.india__highlight-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.india__highlight-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Article / Long-form Content --- */
.article__hero {
  padding: 10rem 0 4rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.article__hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.article__tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  padding: 0.3rem 0.8rem;
}

.article__date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.article__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.article__title em {
  font-style: italic;
  color: var(--gold);
}

.article__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 640px;
}

.article__body {
  padding: var(--section-pad) 0;
}

.container--article {
  max-width: 780px;
}

.article__section {
  margin-bottom: 3.5rem;
}

.article__lede {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.article__section p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.article__section p:last-child {
  margin-bottom: 0;
}

.article__heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  color: var(--text-primary);
}

.article__subheading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.article__list {
  list-style: none;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.article__list--numbered {
  counter-reset: steps;
}

.article__list--numbered li {
  padding-left: 2.5rem;
}

.article__list--numbered li::before {
  all: unset;
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1.8;
}

.article__table-highlight {
  color: var(--gold) !important;
  font-weight: 500 !important;
}

.article__list li strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* Table */
.article__table-wrap {
  margin: 1.5rem 0;
  overflow-x: auto;
}

.article__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.article__table th,
.article__table td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.article__table th {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-surface);
}

.article__table td {
  font-weight: 300;
  color: var(--text-secondary);
}

.article__table td strong {
  color: var(--gold);
  font-weight: 500;
}

/* Callout box */
.article__callout {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
}

.article__callout-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.article__callout p {
  margin-bottom: 0;
}

/* Article grid (2-col feature boxes) */
.article__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 2rem 0;
  background: var(--border);
}

.article__grid-item {
  background: var(--bg-primary);
  padding: 2rem;
}

.article__grid-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.article__grid-item p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* Disclaimer */
.article__disclaimer {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  font-size: 0.85rem;
}

.article__disclaimer p {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
  line-height: 1.7;
}

.article__disclaimer strong {
  color: var(--text-secondary);
}

/* Article CTA */
.article__cta-section {
  margin-top: 4rem;
}

.article__cta-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  padding: 3rem;
  text-align: center;
}

.article__cta-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.article__cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem !important;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.article__cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

  .article__cta-box {
    padding: 2rem 1.5rem;
  }

  .article__cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* --- Partners Hero --- */
.partners-hero {
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.partners-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: hero-glow 8s ease-in-out infinite alternate;
}

.partners-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.partners-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.partners-hero__desc {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 620px;
}

/* --- Partners Value Props --- */
.partners-value {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

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

.partners-value__item {
  padding-top: 2rem;
  border-top: 2px solid var(--border);
  transition: border-color var(--duration-fast) ease;
}

.partners-value__item:hover {
  border-top-color: var(--gold);
}

.partners-value__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--bg-elevated);
  margin-bottom: 1.5rem;
}

.partners-value__item:hover .partners-value__number {
  color: var(--gold-dim);
}

.partners-value__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.partners-value__desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .about__grid,
  .contact__grid,
  .diff__grid,
  .india__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__visual {
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-value__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  /* Mobile menu overlay */
  .nav__mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 13, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-fast) ease;
  }

  .nav__mobile-menu.is-open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-primary);
    transition: color var(--duration-fast) ease;
  }

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

  .services__grid,
  .services__grid--three {
    grid-template-columns: 1fr;
  }

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

  .partners-value__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .stat__number {
    font-size: 1.8rem;
  }

  .footer__nav {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .hero__scroll {
    display: none;
  }

  .diff__quote {
    order: -1;
  }
}

@media (max-width: 480px) {
  .about__stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}
