/* ==========================================================================
   ILLYRIA TALENT AGENCY — style.css
   Premium dark/gold luxury aesthetic
   Mobile-first, Cloudflare Pages ready
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & RESET
   -------------------------------------------------------------------------- */

:root {
  --ink:         #0c0b09;
  --ink-soft:    #141210;
  --parchment:   #f2ead8;
  --cream:       #faf8f3;
  --gold:        #b8893a;
  --gold-bright: #d4a855;
  --gold-pale:   #e8d4a0;
  --stone:       #8c8070;
  --stone-light: #c4baa8;
  --border:      rgba(184, 137, 58, 0.15);
  --border-soft: rgba(184, 137, 58, 0.08);
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-none: 0;
  --spacing-xs:  8px;
  --spacing-sm:  16px;
  --spacing-md:  32px;
  --spacing-lg:  64px;
  --spacing-xl:  120px;

  --transition: 0.3s ease;
  --shadow-gold: 0 4px 32px rgba(184, 137, 58, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--ink);
  color: var(--parchment);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY UTILITIES
   -------------------------------------------------------------------------- */

.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
}

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

.label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.label-stone {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone-light);
}

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--spacing-md);
}

.section {
  padding-block: var(--spacing-xl);
}

.section-tag {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background-color: var(--gold);
  flex-shrink: 0;
}

.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184, 137, 58, 0.25),
    transparent
  );
  margin-inline: var(--spacing-md);
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--ink);
  padding: 16px 36px;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--stone-light);
  border-bottom: 1px solid rgba(196, 186, 168, 0.35);
  padding-bottom: 3px;
  font-size: 10px;
  letter-spacing: 2.5px;
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--gold-bright);
  border-color: var(--gold);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--stone-light);
  padding: 12px 28px;
}

.btn-outline:hover,
.btn-outline:focus {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   5. NAVIGATION
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  background: linear-gradient(
    to bottom,
    rgba(12, 11, 9, 0.97) 0%,
    rgba(12, 11, 9, 0) 100%
  );
  transition: background var(--transition);
}

.nav.scrolled {
  background: rgba(12, 11, 9, 0.97);
  border-bottom: 1px solid var(--border-soft);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-bright);
  line-height: 1;
}

.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 300;
}

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone-light);
  transition: color var(--transition);
}

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

/* Desktop CTA */
.nav-cta {
  display: none;
  background-color: var(--gold);
  color: var(--ink);
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  background-color: var(--gold-bright);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--stone-light);
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}

/* Hamburger open state */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  z-index: 190;
  background-color: rgba(12, 11, 9, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  border-top: 1px solid var(--border-soft);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--stone-light);
  transition: color var(--transition);
  letter-spacing: -0.5px;
}

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

.nav-mobile .nav-mobile-cta {
  margin-top: var(--spacing-sm);
  background-color: var(--gold);
  color: var(--ink);
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  padding-bottom: var(--spacing-lg);
  padding-inline: var(--spacing-md);
  position: relative;
  overflow: hidden;
}

/* Geometric background pattern - Illyrian motif */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(60deg, #b8893a 0, #b8893a 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-60deg, #b8893a 0, #b8893a 1px, transparent 0, transparent 50%);
  background-size: 72px 72px;
}

.hero-bg-circle {
  position: absolute;
  right: -15%;
  top: 50%;
  transform: translateY(-50%);
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  border-radius: 50%;
  border: 1px solid rgba(184, 137, 58, 0.07);
  animation: slowSpin 50s linear infinite;
}

.hero-bg-circle::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(184, 137, 58, 0.05);
}

.hero-bg-circle::after {
  content: '';
  position: absolute;
  inset: 130px;
  border-radius: 50%;
  border: 1px solid rgba(184, 137, 58, 0.03);
}

@keyframes slowSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Hero content */
.hero-eyebrow {
  margin-bottom: 24px;
  animation: fadeUp 1s 0.2s both;
}

.hero-heading {
  font-size: clamp(52px, 10vw, 120px);
  margin-bottom: var(--spacing-lg);
  animation: fadeUp 1s 0.4s both;
}

.hero-heading .indent {
  display: block;
  padding-left: clamp(48px, 12vw, 180px);
}

.hero-heading .indent2 {
  display: block;
  padding-left: clamp(96px, 22vw, 340px);
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  animation: fadeUp 1s 0.6s both;
}

.hero-desc {
  max-width: 420px;
  font-size: 15px;
  color: var(--stone-light);
  line-height: 1.8;
}

.hero-desc strong {
  color: var(--parchment);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  align-items: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  pointer-events: none;
  animation: fadeUp 1s 1.2s both;
}

.hero-scroll-label {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.8;  transform: scaleY(1.15); }
}

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

/* --------------------------------------------------------------------------
   7. ABOUT SECTION
   -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.about-heading {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: var(--spacing-md);
}

.about-body p {
  font-size: 15px;
  color: var(--stone-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

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

.about-body strong {
  color: var(--parchment);
  font-weight: 400;
}

/* Stats */
.stats-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  padding: 22px 24px;
  background-color: rgba(242, 234, 216, 0.025);
  border: 1px solid var(--border-soft);
  transition: background-color var(--transition);
}

.stat-item:hover {
  background-color: rgba(184, 137, 58, 0.05);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold-bright);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-number sup {
  font-size: 20px;
  vertical-align: super;
}

.stat-desc {
  font-size: 12px;
  color: var(--stone-light);
  text-align: right;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. HOW IT WORKS
   -------------------------------------------------------------------------- */

.how-section {
  background-color: rgba(242, 234, 216, 0.015);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.how-heading {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: var(--spacing-lg);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: rgba(184, 137, 58, 0.08);
}

.step-card {
  background-color: var(--ink);
  padding: 36px 28px;
  transition: background-color var(--transition);
}

.step-card:hover {
  background-color: rgba(184, 137, 58, 0.04);
}

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: rgba(184, 137, 58, 0.1);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--parchment);
}

.step-card p {
  font-size: 13px;
  color: var(--stone-light);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   9. TALENT ROSTER
   -------------------------------------------------------------------------- */

.talent-intro {
  margin-bottom: var(--spacing-lg);
}

.talent-heading {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 12px;
}

.talent-subheading {
  font-size: 14px;
  color: var(--stone);
  max-width: 480px;
  line-height: 1.7;
}

/* Talent grid - rendered by JS */
.roster-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

/* Individual talent card */
.talent-card {
  position: relative;
  background-color: rgba(242, 234, 216, 0.025);
  border: 1px solid var(--border-soft);
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color var(--transition), background-color var(--transition);
  cursor: default;
}

.talent-card:hover {
  border-color: rgba(184, 137, 58, 0.3);
  background-color: rgba(184, 137, 58, 0.04);
}

/* Gold left bar on hover */
.talent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--gold);
  transition: height 0.4s ease;
}

.talent-card:hover::before {
  height: 100%;
}

/* Avatar - shows initials if image missing */
.talent-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(184, 137, 58, 0.25);
  background-color: rgba(184, 137, 58, 0.1);
  margin-bottom: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.talent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.talent-avatar-initials {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  user-select: none;
}

.talent-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--parchment);
}

.talent-niche {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}

.talent-stats {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

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

.talent-stat-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--parchment);
  line-height: 1;
}

.talent-stat-label {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
}

.talent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.talent-tag {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone-light);
  border: 1px solid rgba(196, 186, 168, 0.2);
  padding: 4px 10px;
}

/* Apply card */
.talent-card-apply {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
  border-style: dashed !important;
}

.talent-card-apply p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--stone);
  margin-bottom: 16px;
  line-height: 1.4;
}

/* Roster CTA */
.roster-cta {
  margin-top: var(--spacing-md);
  text-align: center;
  padding: var(--spacing-md);
  border: 1px dashed rgba(184, 137, 58, 0.2);
}

.roster-cta p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--stone-light);
  margin-bottom: var(--spacing-sm);
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   10. FOR BRANDS SECTION
   -------------------------------------------------------------------------- */

.brands-section {
  background-color: var(--parchment);
  color: var(--ink);
}

.brands-section .section-tag {
  color: var(--gold);
}

.brands-section .section-tag::before {
  background-color: var(--gold);
}

.brands-heading {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: var(--spacing-lg);
  color: var(--ink);
}

.brands-heading em {
  color: var(--gold);
}

.brand-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-bottom: var(--spacing-md);
}

.brand-card {
  background-color: #ece4d0;
  padding: 32px 28px;
  border-left: 3px solid transparent;
  transition: border-color var(--transition), background-color var(--transition);
}

.brand-card:hover {
  border-left-color: var(--gold);
  background-color: #e5dcc6;
}

.brand-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}

.brand-card p {
  font-size: 13px;
  color: #4a4030;
  line-height: 1.75;
}

/* Diaspora callout box */
.diaspora-box {
  background-color: var(--ink);
  color: var(--parchment);
  padding: var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  align-items: start;
}

.diaspora-text h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 14px;
}

.diaspora-text h3 em {
  font-style: italic;
  color: var(--gold-bright);
}

.diaspora-text p {
  font-size: 14px;
  color: var(--stone-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.diaspora-stats {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.diaspora-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background-color: rgba(242, 234, 216, 0.03);
  border: 1px solid var(--border-soft);
}

.diaspora-stat-number {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--gold-bright);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

.diaspora-stat-label {
  font-size: 11px;
  color: var(--stone-light);
  text-align: right;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   11. CONTACT SECTION
   -------------------------------------------------------------------------- */

.contact-inner {
  max-width: 660px;
  margin-inline: auto;
  text-align: center;
}

.contact-heading {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 15px;
  color: var(--stone-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

/* Tabs */
.contact-tabs {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--spacing-md);
}

.tab-btn {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone);
  background-color: rgba(242, 234, 216, 0.03);
  border: 1px solid var(--border-soft);
  padding: 12px 24px;
  transition: var(--transition);
  cursor: pointer;
}

.tab-btn:hover,
.tab-btn[aria-selected="true"] {
  background-color: rgba(184, 137, 58, 0.1);
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* Forms */
.contact-form {
  display: none;
  text-align: left;
}

.contact-form.active {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: rgba(242, 234, 216, 0.04);
  border: 1px solid var(--border);
  color: var(--parchment);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--stone);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c8070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background-color: #1a1814;
  color: var(--parchment);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group.full {
  margin-bottom: 12px;
}

.form-submit {
  width: 100%;
  background-color: var(--gold);
  color: var(--ink);
  padding: 18px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  font-family: var(--font-body);
}

.form-submit:hover {
  background-color: var(--gold-bright);
  transform: translateY(-2px);
}

/* Direct email fallback */
.contact-direct {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.contact-direct p {
  font-size: 12px;
  color: var(--stone);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.contact-direct a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-bright);
  transition: color var(--transition);
}

.contact-direct a:hover {
  color: var(--parchment);
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */

.footer {
  padding: 40px var(--spacing-md);
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 11px;
  color: var(--stone);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   13. UTILITY & ANIMATION
   -------------------------------------------------------------------------- */

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s;    opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s;  opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s;  opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s;  opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s;  opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s;  opacity: 1; transform: none; }

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE — TABLET (640px+)
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-heading .indent2 {
    padding-left: clamp(120px, 20vw, 280px);
  }

  .brand-cards {
    grid-template-columns: 1fr 1fr;
  }

  .diaspora-box {
    padding: var(--spacing-lg);
  }

  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE — DESKTOP (900px+)
   -------------------------------------------------------------------------- */

@media (min-width: 900px) {
  /* Show desktop nav items */
  .nav-links { display: flex; }
  .nav-cta   { display: inline-flex; }
  .nav-hamburger { display: none; }
  .nav-mobile    { display: none !important; }

  /* Hero */
  .hero-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-end;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Talent roster */
  .roster-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Diaspora box */
  .diaspora-box {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
  }
}

/* --------------------------------------------------------------------------
   16. REDUCED MOTION
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
