/**
 * World2Blinded - Page Styles
 * Home, service pages, dashboard, auth
 */

/* ═══════════════════════════════════════════
   HOME: HERO SECTION
═══════════════════════════════════════════ */

#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Background Layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(241, 208, 110, 0.08) 0%, transparent 60%),
    #050505;
}

.hero-pulse1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 60%, rgba(212, 175, 55, 0.1) 100%);
  animation: heroPulse 6s ease-in-out infinite;
}

.hero-pulse2 {
  position: absolute;
  top: 25%;
  right: 0;
  width: 600px;
  height: 600px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  filter: blur(150px);
  animation: heroPulse 8s ease-in-out infinite;
}

.hero-pulse3 {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 500px;
  height: 500px;
  background: rgba(241, 208, 110, 0.10);
  border-radius: 50%;
  filter: blur(120px);
  animation: heroPulse 7s ease-in-out 2s infinite;
}

/* Floating Lines */
.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.hero-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.8), transparent);
  animation: floatLine 8s ease-in-out infinite;
}

.hero-line:nth-child(1) { left: 25%; }
.hero-line:nth-child(2) { left: 50%; opacity: 0.5; animation-delay: 2s; }
.hero-line:nth-child(3) { left: 75%; animation-delay: 4s; }

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.6) 0%, transparent 40%, rgba(5, 5, 5, 1) 100%);
}

/* Content */
.hero-content {
  position: relative;
  z-index: var(--z-base);
  max-width: 860px;
  padding: 0 var(--space-xl);
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.8rem;
  animation: fadeUp 0.8s ease 0.25s both;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(212, 175, 55, 0.9);
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--gold);
  line-height: var(--leading-relaxed);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.65s both;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-base);
  animation: fadeUp 1s ease 1s both;
}

.scroll-mouse {
  width: 26px;
  height: 44px;
  border: 2px solid var(--border-gold-medium);
  border-radius: 13px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.6s ease infinite;
}

/* ═══════════════════════════════════════════
   HOME: STATS SECTION
═══════════════════════════════════════════ */

#stats {
  padding: 5rem var(--space-xl);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  background: #050505;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-block {
  padding: var(--space-lg);
  transition: transform var(--transition-medium);
}

.stat-block:hover {
  transform: translateY(-4px);
}

.stat-icon {
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.7);
}

/* ═══════════════════════════════════════════
   HOME: SERVICES BENTO GRID
═══════════════════════════════════════════ */

#services {
  padding: var(--space-4xl) var(--space-xl);
  background: #050505;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}

.svc-card {
  background: #0A0A0A;
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-slower), 
              box-shadow var(--transition-slower), 
              transform var(--transition-slow);
  cursor: pointer;
  text-decoration: none;
  color: var(--fg);
  display: block;
}

.svc-card:hover {
  border-color: var(--border-gold-strong);
  box-shadow: var(--glow-gold);
  transform: translateY(-4px);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-slower);
}

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

.svc-card.wide   { grid-column: span 7; }
.svc-card.narrow { grid-column: span 5; }

.svc-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.svc-icon-box {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-gold-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background var(--transition-medium);
}

.svc-card:hover .svc-icon-box {
  background: rgba(212, 175, 55, 0.08);
}

.svc-arrow {
  color: var(--muted);
  transition: color var(--transition-medium), transform var(--transition-medium);
  font-size: 1.1rem;
}

.svc-card:hover .svc-arrow {
  color: var(--gold);
  transform: translate(3px, -3px);
}

.svc-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
  transition: color var(--transition-medium);
}

.svc-card:hover h3 {
  color: var(--gold);
}

.svc-card p {
  color: rgba(212, 175, 55, 0.75);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.svc-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  background: rgba(212, 175, 55, 0.15);
  color: rgba(212, 175, 55, 0.9);
  border: none;
}

/* ═══════════════════════════════════════════
   HOME: RESULTATS SECTION
═══════════════════════════════════════════ */

#resultats {
  padding: var(--space-4xl) var(--space-xl);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  background: #050505;
}

.resultats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.resultats-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.resultats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.res-card {
  background: #0A0A0A;
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2.8rem var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-slow), transform var(--transition-medium);
}

.res-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.res-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}

.res-number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.res-label {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.7);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   HOME: ETUDES DE CAS
═══════════════════════════════════════════ */

#etudes-de-cas {
  padding: var(--space-4xl) var(--space-xl);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  background: #050505;
}

.etudes-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.etudes-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.etudes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.etude-card {
  background: #0A0A0A;
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  transition: border-color var(--transition-slow), transform var(--transition-medium);
}

.etude-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

.etude-mockup {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, #0d0d0d 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.etude-mockup img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.etude-mockup img:hover {
  transform: scale(1.02);
  box-shadow: var(--glow-gold);
}

.etude-body {
  padding: var(--space-xl);
}

.etude-secteur {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.etude-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  color: var(--gold);
}

.etude-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}

.etude-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: var(--text-base);
}

.etude-row-label {
  flex-shrink: 0;
  width: 80px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
}

.etude-row-text {
  color: rgba(212, 175, 55, 0.8);
  line-height: var(--leading-normal);
}

.etude-result {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 0.85rem var(--space-md);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--fg);
}

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

.etude-cta {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.etude-card:hover .etude-cta {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   CASE STUDY MODAL
═══════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.95);
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--card);
  border: 1px solid var(--border-gold);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: panelFade 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
}

.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.modal-header {
  padding: 2.5rem 2.5rem 0;
}

.modal-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.modal-body {
  padding: 2rem 2.5rem 2.5rem;
}

.modal-section {
  margin-bottom: 2rem;
}

.modal-section-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-section p,
.modal-section li {
  color: rgba(212, 175, 55, 0.85);
  font-size: 0.9rem;
  line-height: 1.75;
}

.modal-section ul {
  list-style: none;
  margin-top: 0.5rem;
}

.modal-section li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.modal-section li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
}

.modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.modal-stat {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-gold);
  padding: 1.25rem;
  text-align: center;
}

.modal-stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.modal-stat-label {
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.modal-cta {
  margin-top: 2rem;
  text-align: center;
}

/* ═══════════════════════════════════════════
   HOME: WHY US
═══════════════════════════════════════════ */

#why {
  padding: var(--space-4xl) var(--space-xl);
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.why-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.why-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.why-text .section-tag {
  text-align: left;
}

.why-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
}

.why-text > p {
  color: rgba(212, 175, 55, 0.75);
  font-size: 0.95rem;
  line-height: var(--leading-relaxed);
  margin-bottom: 2.5rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: 2.5rem;
}

.why-point {
  display: flex;
  gap: 1.2rem;
}

.why-point-bar {
  width: 3px;
  flex-shrink: 0;
  background: var(--gold);
  margin-top: 3px;
}

.why-point h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.why-point p {
  color: rgba(212, 175, 55, 0.75);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   HOME: DIFFERENTIATORS
═══════════════════════════════════════════ */

#different {
  padding: var(--space-4xl) var(--space-xl);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  background: #050505;
}

.diff-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.diff-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.diff-card {
  background: #0A0A0A;
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-slow), transform var(--transition-medium);
}

.diff-card:hover {
  border-color: var(--border-gold-medium);
  transform: translateY(-4px);
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

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

.diff-emoji {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.diff-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.diff-card p {
  color: rgba(212, 175, 55, 0.75);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* PRO Card */
.diff-card-pro {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(10, 10, 10, 1) 60%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.diff-card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.diff-card-pro::after {
  content: 'PRO';
  position: absolute;
  top: 1.2rem;
  right: var(--space-lg);
  background: var(--gold);
  color: #050505;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 0.2rem 0.6rem;
}

.diff-pro-left h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.diff-pro-left p {
  color: rgba(212, 175, 55, 0.75);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.diff-pro-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.diff-pro-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-base);
  color: rgba(212, 175, 55, 0.8);
}

.diff-pro-feat::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-pro-right {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.diff-pro-tag {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  padding: 0.75rem var(--space-md);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.diff-pro-tag-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.diff-pro-tag span {
  color: var(--gold);
  font-weight: 500;
}

.diff-pro-tag small {
  color: rgba(212, 175, 55, 0.7);
  font-size: var(--text-sm);
  display: block;
  margin-top: 0.1rem;
}

/* ═══════════════════════════════════════════
   HOME: CTA SECTION
═══════════════════════════════════════════ */

#cta {
  padding: 8rem var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: #050505;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: #050505;
}

.cta-inner {
  position: relative;
  z-index: var(--z-base);
  max-width: var(--max-width-sm);
  margin: 0 auto;
}

.cta-inner .section-tag {
  display: block;
  text-align: center;
  margin-bottom: 1.2rem;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
}

.cta-inner p {
  color: rgba(212, 175, 55, 0.75);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  max-width: var(--max-width-xs);
  margin: 0 auto 2.5rem;
}

/* ═══════════════════════════════════════════
   HOME: MANIFESTO
═══════════════════════════════════════════ */

#manifesto {
  padding: 7rem var(--space-xl);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 65%),
    radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.manifesto-inner {
  position: relative;
  z-index: var(--z-base);
  max-width: 820px;
  margin: 0 auto;
}

.manifesto-quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.18;
  display: block;
  margin-bottom: var(--space-lg);
}

.manifesto-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: var(--leading-normal);
  margin-bottom: 2.5rem;
}

.manifesto-text strong {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto-sig {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   HOME: CONTACT
═══════════════════════════════════════════ */

#contact {
  padding: var(--space-4xl) var(--space-xl);
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-left .section-tag {
  text-align: left;
  margin-bottom: var(--space-md);
}

.contact-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.contact-left > p {
  color: rgba(212, 175, 55, 0.75);
  font-size: 0.95rem;
  line-height: var(--leading-relaxed);
  margin-bottom: 2.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: var(--space-md) 1.4rem;
  transition: border-color var(--transition-medium);
  background: #0A0A0A;
}

.contact-item:hover {
  border-color: var(--border-gold);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-text small {
  display: block;
  font-size: var(--text-xs);
  color: rgba(212, 175, 55, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.contact-text span {
  font-size: 0.92rem;
  color: var(--gold);
}

.contact-right img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════
   CURSOR LABEL (Subtle hover text)
═══════════════════════════════════════════ */

.cursor-label {
  position: fixed;
  pointer-events: none;
  z-index: var(--z-modal);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition-slow);
  white-space: nowrap;
  transform: translate(18px, -6px);
}

.cursor-label.visible {
  opacity: 0.28;
}
