/* ============================================================
   EMPTY SPACE DESIGN STUDIO — GLOBAL STYLESHEET v2
   ============================================================ */

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

:root {
  --bg:        #0c0c0c;
  --bg-2:      #111111;
  --bg-3:      #161616;
  --border:    #1e1e1e;
  --border-2:  #2a2a2a;
  --text:      #f0ede8;
  --text-2:    #888880;
  --text-3:    #444440;

  /* Blue gradient accent */
  --accent-1:  #0080FF;
  --accent-2:  #00BFFF;
  --accent-grad: linear-gradient(135deg, #0080FF 0%, #00BFFF 100%);
  --accent-grad-hover: linear-gradient(135deg, #1a8fff 0%, #20caff 100%);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Syne', sans-serif;
  --radius:    6px;
  --max-w:     1200px;
  --nav-h:     72px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--accent-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-out), opacity 0.3s;
  mix-blend-mode: screen;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(0,128,255,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out) calc(var(--delay, 0s)),
              transform 0.75s var(--ease-out) calc(var(--delay, 0s));
}
.reveal-up.visible { opacity: 1; transform: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section-pad { padding: 96px 0; }
.divider-full { height: 1px; background: var(--border); width: 100%; }
.section-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 48px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 500;
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* logo has black bg, blend it away */
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.nav-est {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-3);
  text-transform: uppercase;
  font-family: var(--font-ui);
  padding-left: 12px;
  border-left: 1px solid var(--border-2);
}

.nav-links { display: flex; gap: 36px; align-items: center; }

.nav-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-1);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 450;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: none; }
.mm-link {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 300;
  color: var(--text); text-decoration: none;
  transition: color 0.2s;
}
.mm-link:hover { color: var(--accent-1); }

/* ============================================================
   BUTTONS & LINKS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent-grad);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none;
  cursor: pointer; border-radius: 2px;
  transition: background 0.25s, transform 0.2s var(--ease-out), gap 0.2s,
              box-shadow 0.25s;
  box-shadow: 0 0 0 0 rgba(0,128,255,0);
}
.btn-primary:hover {
  background: var(--accent-grad-hover);
  gap: 16px;
  box-shadow: 0 8px 30px rgba(0,128,255,0.35);
}
.btn-primary:active { transform: scale(0.98); }
.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-full { width: 100%; justify-content: center; }

.link-underline {
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block; margin-top: 24px;
}
.link-underline:hover { color: var(--text); border-color: var(--text-2); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 40px 60px;
  position: relative; overflow: hidden;
}

.hero-bg-line {
  position: absolute; top: 0; bottom: 0;
  width: 1px; background: var(--border); opacity: 0.5;
}
.line-1 { left: 33.33%; }
.line-2 { left: 66.66%; }
.line-3 { right: 40px; }

/* Subtle blue glow behind hero */
.hero-glow {
  position: absolute;
  top: 20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,128,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-2);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 300; line-height: 1.0;
  color: var(--text); letter-spacing: -0.02em;
  margin-bottom: 48px;
  display: flex; flex-direction: column; gap: 4px;
}
.ht-line { display: block; }
.ht-italic { font-style: italic; color: var(--text-2); }

.hero-footer {
  display: flex; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.hero-desc {
  font-size: 14px; color: var(--text-2);
  max-width: 300px; line-height: 1.7;
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 40px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-3);
}
.scroll-line {
  width: 1px; height: 48px;
  background: var(--border-2); position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--accent-1);
  animation: scrollDown 2s var(--ease-out) infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ============================================================
   MARQUEE — TRUE INFINITE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg-2);
}
.marquee-inner {
  display: flex;
  width: max-content;
}
.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
  flex-shrink: 0;
}
/* second track is identical — together they make seamless loop */
.marquee-track + .marquee-track {
  animation: marqueeScroll 30s linear infinite;
}
.marquee-inner:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track span {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-2);
  padding: 0 14px;
}
.mq-dot { color: var(--accent-1) !important; padding: 0 4px !important; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro-grid {
  display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start;
}
.intro-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300; line-height: 1.5; color: var(--text); margin-bottom: 8px;
}

/* ============================================================
   SELECTED WORK
   ============================================================ */
.sw-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 0;
}
.projects-list { border-top: 1px solid var(--border); margin-top: 24px; }

.project-row {
  display: grid;
  grid-template-columns: 60px 1fr 100px 40px;
  align-items: center; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.project-row::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--bg-3);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.project-row:hover::before { transform: scaleX(1); }
.project-row > * { position: relative; z-index: 1; }

.pr-number { font-size: 11px; color: var(--text-3); letter-spacing: 0.1em; }
.pr-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 300;
  transition: color 0.2s;
}
.project-row:hover .pr-title { color: var(--accent-1); }
.pr-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.pr-tags span { font-size: 10px; letter-spacing: 0.1em; color: var(--text-2); text-transform: uppercase; }
.pr-thumb { width: 100px; height: 60px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.pt-inner { width: 100%; height: 100%; transition: transform 0.4s var(--ease-out); }
.project-row:hover .pt-inner { transform: scale(1.08); }
.pt-1 { background: linear-gradient(135deg, #5c1010 0%, #c9a84c 100%); }
.pt-2 { background: linear-gradient(135deg, #e8d5c4 0%, #c4a882 100%); }
.pt-3 { background: linear-gradient(135deg, #001a3a 0%, #0080FF 100%); }
.pr-arrow {
  font-size: 18px; color: var(--text-3);
  transition: transform 0.3s var(--ease-out), color 0.2s;
}
.project-row:hover .pr-arrow {
  transform: translate(4px, -4px);
  color: var(--accent-1);
}

/* ============================================================
   SERVICES — HOME
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg); padding: 36px 28px;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent-grad);
  transition: width 0.4s var(--ease-out);
}
.service-card:hover { background: var(--bg-3); }
.service-card:hover::after { width: 100%; }
.sc-num { font-size: 10px; letter-spacing: 0.14em; color: var(--text-3); margin-bottom: 20px; }
.sc-title { font-family: var(--font-display); font-size: 22px; font-weight: 300; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.sc-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 100px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 40px; flex-wrap: wrap;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300; line-height: 1.2; color: var(--text); max-width: 600px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 56px 0 36px; background: var(--bg); }
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-logo-wrap {
  display: flex; align-items: center; gap: 12px;
}
.footer-logo-img {
  height: 32px; width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.footer-est {
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--text-3); text-transform: uppercase;
  padding-left: 12px; border-left: 1px solid var(--border-2);
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 11px; color: var(--text-3); letter-spacing: 0.06em; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding: calc(var(--nav-h) + 80px) 40px 80px; border-bottom: 1px solid var(--border); }
.ph-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-2); margin-bottom: 24px; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300; line-height: 1.05; color: var(--text); letter-spacing: -0.02em;
}
.page-title em { font-style: italic; color: var(--text-2); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.manifesto-grid { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; }
.manifesto-p { font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 24px); font-weight: 300; line-height: 1.65; color: var(--text); margin-bottom: 24px; }
.manifesto-p:last-child { margin-bottom: 0; }

.values-list { border-top: 1px solid var(--border); margin-top: 48px; }
.value-row {
  display: grid; grid-template-columns: 60px 1fr 1fr;
  align-items: center; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s var(--ease-out);
}
.value-row:hover { padding-left: 12px; }
.vr-num { font-size: 11px; color: var(--text-3); letter-spacing: 0.1em; }
.vr-title { font-family: var(--font-display); font-size: 28px; font-weight: 300; color: var(--text); }
.vr-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; }

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 48px;
}
.process-step { background: var(--bg); padding: 36px 28px; transition: background 0.3s; }
.process-step:hover { background: var(--bg-3); }
.ps-num { font-size: 11px; color: var(--accent-1); letter-spacing: 0.1em; margin-bottom: 20px; }
.ps-title { font-family: var(--font-display); font-size: 24px; font-weight: 300; margin-bottom: 14px; }
.ps-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; }

.stats-band { padding: 80px 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.stat-item { background: var(--bg-2); padding: 40px 28px; text-align: center; transition: background 0.3s; }
.stat-item:hover { background: var(--bg-3); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px); font-weight: 300;
  background: var(--accent-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 10px;
}
.stat-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-2); }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.pf-meta { display: flex; align-items: baseline; gap: 16px; margin-bottom: 48px; }
.pf-num { font-family: var(--font-display); font-size: 80px; font-weight: 300; color: var(--border-2); line-height: 1; }
.pf-year { font-size: 12px; color: var(--text-3); letter-spacing: 0.1em; }

.pf-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.pf-grid-reverse { direction: rtl; }
.pf-grid-reverse > * { direction: ltr; }

.pf-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 58px); font-weight: 300; color: var(--text); margin-bottom: 20px; line-height: 1.1; }
.pf-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.pf-tags span {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-2); border: 1px solid var(--border-2);
  padding: 5px 10px; border-radius: 2px;
}
.pf-desc { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.pf-deliverables { margin-top: 32px; }
.pd-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.pd-list { font-size: 12px; color: var(--text-2); line-height: 1.8; }

/* ── PROJECT CANVAS SHARED ── */
.project-canvas { position: relative; width: 100%; aspect-ratio: 4/3; }
.pc-card {
  position: absolute; border-radius: var(--radius); overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.pc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }

/* ── RITUALS OF INDIA ── */
.pc-rituals .pc-card-1 { top: 0; left: 0; width: 60%; height: 55%; background: #1a0a05; }
.pc-rituals .pc-card-2 { top: 0; right: 0; width: 36%; height: 40%; background: #2c1810; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.pc-rituals .pc-card-3 { bottom: 0; left: 10%; width: 65%; height: 46%; background: #f5edd6; padding: 14px; }

.rituals-brand { width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }
.rb-pattern {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(201,168,76,0.06) 10px, rgba(201,168,76,0.06) 11px);
}
.rb-logo { position: relative; z-index: 1; text-align: center; }
.rb-ornament { font-size: 20px; color: #c9a84c; display: block; margin-bottom: 6px; }
.rb-name { font-family: var(--font-display); font-size: 15px; color: #f5edd6; letter-spacing: 0.12em; }
.rb-sub { font-size: 8px; color: #c9a84c; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }

.rituals-palette { display: flex; gap: 5px; margin-bottom: 10px; }
.rp-swatch { width: 20px; height: 20px; border-radius: 50%; }
.rp-label { font-size: 8px; color: #888; letter-spacing: 0.12em; text-transform: uppercase; }

.rituals-post { height: 100%; display: flex; flex-direction: column; gap: 8px; }
.rpost-bar { height: 4px; border-radius: 2px; background: #8B1A1A; }
.rpost-img { flex: 1; background: linear-gradient(135deg, #f0dcc8, #e8c99a); border-radius: 3px; display: flex; align-items: center; justify-content: center; }
.rpost-ornament { font-size: 24px; color: #8B1A1A; opacity: 0.6; }
.rpost-caption { display: flex; flex-direction: column; gap: 4px; }
.rpc-line { height: 4px; background: #d4b896; border-radius: 2px; }
.rpc-line-long { width: 80%; }
.rpc-line-short { width: 50%; }

/* ── AMARY BEAUTÉ ── */
.pc-amary .pc-card-1 { top: 0; left: 0; width: 58%; height: 60%; background: linear-gradient(160deg, #fdf6f0, #f5e8d8); padding: 20px; }
.pc-amary .pc-card-2 { top: 8%; right: 0; width: 38%; height: 40%; background: #fff; padding: 16px; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.pc-amary .pc-card-3 { bottom: 0; right: 6%; width: 55%; height: 42%; background: linear-gradient(135deg, #f9f0e8, #ecdcc8); padding: 16px; }

.amary-hero { width: 100%; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.amary-product { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ap-bottle { width: 28px; height: 70px; background: linear-gradient(to bottom, #e8d5b8, #c4a882); border-radius: 6px 6px 4px 4px; }
.ap-shadow { width: 24px; height: 4px; background: rgba(0,0,0,0.12); border-radius: 50%; }
.amary-brand-name { font-family: var(--font-display); font-size: 16px; color: #5a3a1a; line-height: 1.3; }
.amary-brand-name em { color: #9a6a3a; }

.amary-amazon { height: 100%; display: flex; flex-direction: column; gap: 8px; }
.aa-badge { font-size: 8px; font-weight: 700; color: #ff9900; letter-spacing: 0.06em; }
.aa-stars { font-size: 10px; color: #ff9900; }
.aa-title { display: flex; flex-direction: column; gap: 4px; }
.aa-line { height: 4px; background: #e0e0e0; border-radius: 2px; }
.aa-l1 { width: 90%; }
.aa-l2 { width: 65%; }
.aa-price { font-size: 14px; font-weight: 700; color: #111; margin-top: 4px; }

.amary-lifestyle { height: 100%; display: flex; align-items: center; gap: 14px; }
.al-circle { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #e8c9a8, #c4a070); flex-shrink: 0; }
.al-text { display: flex; flex-direction: column; gap: 6px; }
.alt-line { height: 4px; background: rgba(90,58,26,0.2); border-radius: 2px; width: 80px; }
.alt-short { width: 50px; }

/* ── SOLCEX ── */
.pc-solcex .pc-card-1 { top: 0; left: 0; width: 60%; height: 55%; background: #050d1a; padding: 18px; }
.pc-solcex .pc-card-2 { top: 5%; right: 0; width: 36%; height: 45%; background: linear-gradient(135deg, #001a3a, #003a7a); padding: 18px; }
.pc-solcex .pc-card-3 { bottom: 0; left: 8%; width: 60%; height: 46%; background: #080f1c; padding: 16px; }

.solcex-dash { height: 100%; display: flex; flex-direction: column; gap: 8px; }
.sd-header { display: flex; justify-content: space-between; align-items: center; }
.sd-logo { font-family: var(--font-display); font-size: 14px; background: var(--accent-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sd-pill { font-size: 7px; letter-spacing: 0.1em; padding: 2px 6px; border-radius: 10px; background: rgba(0,191,255,0.15); color: #00BFFF; border: 1px solid rgba(0,191,255,0.3); }
.sd-price { font-family: var(--font-display); font-size: 20px; color: #fff; }
.sd-change { font-size: 10px; color: #00BFFF; }
.sd-chart { flex: 1; display: flex; align-items: flex-end; }

.solcex-banner { height: 100%; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; }
.sb-tag { font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.sb-title { font-family: var(--font-display); font-size: 24px; font-weight: 300; color: #fff; line-height: 1.1; }
.sb-cta { width: 50px; height: 4px; border-radius: 2px; background: var(--accent-grad); }

.solcex-social { height: 100%; display: flex; flex-direction: column; gap: 10px; }
.ss-icon { font-size: 16px; color: rgba(255,255,255,0.6); }
.ss-post { display: flex; flex-direction: column; gap: 5px; }
.ssp-line { height: 4px; background: #1a2a3a; border-radius: 2px; }
.ssp-l1 { width: 90%; }
.ssp-l2 { width: 75%; }
.ssp-l3 { width: 55%; }
.ss-metrics { display: flex; gap: 14px; font-size: 9px; color: #00BFFF; margin-top: 4px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.ci-intro { font-family: var(--font-display); font-size: clamp(18px, 2vw, 22px); font-weight: 300; line-height: 1.65; color: var(--text); margin-bottom: 40px; }
.ci-details { margin-bottom: 40px; }
.cid-row { display: flex; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cid-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); min-width: 110px; padding-top: 2px; }
.cid-value { font-size: 13px; color: var(--text-2); text-decoration: none; transition: color 0.2s; }
a.cid-value:hover { color: var(--accent-1); }

.cs-links { display: flex; flex-direction: column; gap: 0; }
.cs-link {
  font-size: 13px; color: var(--text-2); text-decoration: none;
  transition: color 0.2s, padding-left 0.3s var(--ease-out);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.cs-link::after { content: '↗'; font-size: 12px; }
.cs-link:hover { color: var(--accent-1); padding-left: 6px; border-color: var(--border-2); }

/* Form */
.contact-form-wrap { position: relative; }
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); }
.form-input {
  background: var(--bg-2); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-ui); font-size: 14px;
  padding: 14px 16px; border-radius: 2px; outline: none;
  transition: border-color 0.2s, background 0.2s; resize: none;
}
.form-input::placeholder { color: var(--text-3); }
.form-input:focus { border-color: var(--accent-1); background: var(--bg-3); }
.form-textarea { min-height: 120px; line-height: 1.7; }

.form-checkboxes { display: flex; flex-wrap: wrap; gap: 10px; }
.form-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-2); cursor: pointer;
  padding: 8px 14px; border: 1px solid var(--border); border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.form-check:hover { border-color: var(--accent-1); color: var(--text); }
.form-check input { accent-color: var(--accent-1); }

.form-success {
  display: none; position: absolute; inset: 0;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 4px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 40px;
  opacity: 0; transition: opacity 0.4s;
}
.form-success.visible { display: flex; opacity: 1; }
.fs-icon {
  font-size: 36px;
  background: var(--accent-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fs-title { font-family: var(--font-display); font-size: 28px; font-weight: 300; }
.fs-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; max-width: 260px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-grid { grid-template-columns: 1fr; gap: 48px; }
  .pf-grid-reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 64px 0; }
  .hero { padding: calc(var(--nav-h) + 32px) 24px 48px; }
  .hero-bg-line { display: none; }
  .hero-footer { flex-direction: column; align-items: flex-start; gap: 24px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 56px; }
  .intro-grid { grid-template-columns: 1fr; gap: 0; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 50px 1fr; }
  .vr-desc { display: none; }
  .project-row { grid-template-columns: 48px 1fr 32px; gap: 12px; }
  .pr-thumb { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-direction: column; gap: 24px; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(48px, 14vw, 64px); }
  .page-title { font-size: clamp(40px, 12vw, 64px); }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
