
:root {
  --bg: #FAF8F4;
  --bg2: #F3F0EA;
  --bg3: #EDE8DE;
  --surface: rgba(255,255,255,0.85);
  --surface2: rgba(255,255,255,0.6);
  --text: #1A1612;
  --text2: #5A5248;
  --text3: #8A8076;
  --gold: #C49A4A;
  --gold2: #E8C87A;
  --gold-light: rgba(196,154,74,0.12);
  --gold-mid: rgba(196,154,74,0.25);
  --border: rgba(196,154,74,0.2);
  --border2: rgba(26,22,18,0.08);
  --shadow: rgba(26,22,18,0.08);
  --shadow2: rgba(26,22,18,0.15);
  --nav-bg: rgba(250,248,244,0.92);
  --dark-cta: #1A1612;
  --dark-cta-text: #FAF8F4;
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="dark"] {
  --bg: #141210;
  --bg2: #1C1A17;
  --bg3: #242118;
  --surface: rgba(30,28,24,0.9);
  --surface2: rgba(30,28,24,0.6);
  --text: #F5F0E8;
  --text2: #B8AFA0;
  --text3: #7A7268;
  --gold: #D4A855;
  --gold2: #EDD080;
  --gold-light: rgba(212,168,85,0.1);
  --gold-mid: rgba(212,168,85,0.2);
  --border: rgba(212,168,85,0.2);
  --border2: rgba(255,255,255,0.06);
  --shadow: rgba(0,0,0,0.3);
  --shadow2: rgba(0,0,0,0.5);
  --nav-bg: rgba(20,18,16,0.95);
  --dark-cta: #0E0C0A;
  --dark-cta-text: #F5F0E8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-inner {
  text-align: center;
}
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text);
  opacity: 0;
  animation: loaderFade 0.6s 0.3s ease forwards;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 120px; height: 1px;
  background: var(--border2);
  margin: 1.5rem auto 0;
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: loaderBar 1.2s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderBar { to { transform: translateX(0); } }

/* ── SCROLL PROGRESS ── */
#progress {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition), box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px var(--shadow); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }

.theme-toggle {
  width: 44px; height: 24px;
  background: var(--border2);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.theme-toggle::after {
  content: '';
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
[data-theme="dark"] .theme-toggle::after { transform: translateX(20px); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: var(--gold);
  color: #1A1612;
  border: none;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,154,74,0.35);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; border: none; background: none;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}



/* ── Custom Cursor ──────────────────────────── */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    margin: -5px 0 0 -5px;
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: multiply;
  }
  .cursor-dot.hover {
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    background: rgba(201,168,76,0.4);
  }


/* ── Marquee / Ticker ───────────────────────── */
.ticker {
    overflow: hidden;
    border-top: 1px solid rgba(201,168,76,0.25);
    border-bottom: 1px solid rgba(201,168,76,0.25);
    padding: 0.85rem 0;
    background: var(--charcoal);
  }
  .ticker__track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
    width: max-content;
  }
  .ticker__item {
    padding: 0 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: black;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .ticker__item::after {
    content: '◆';
    color: var(--gold);
    font-size: 0.5rem;
  }
  @keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }

    
  }
  [data-theme="dark"] .ticker__item {
    color: var(--text);
  }
/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed; inset: 72px 0 0 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── PAGES ── */
.page { display: none; min-height: 100vh; padding-top: 72px; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem clamp(1.5rem, 8vw, 8rem);
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196,154,74,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 20% 80%, rgba(196,154,74,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border2) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 80% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 80% 50%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.8s 1.4s ease forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}


.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.9s 1.6s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text2);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.8s 1.8s ease forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.8s 2s ease forwards;
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-light); }

.hero-note {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--text3);
}
.hero-note::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
}

.hero-float {
  position: absolute;
  right: clamp(2rem, 8vw, 8rem);
  top: 30%;
  transform: translateY(-50%);
  width: clamp(280px, 35vw, 500px);
  height: clamp(280px, 35vw, 500px);
  pointer-events: none;
  opacity: 0;
  animation: reveal 1s 2.2s ease forwards;
}
.hero-float canvas { width: 100% !important; height: 100% !important; }

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

/* ── SECTION BASE ── */
section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 8vw, 8rem);
  position: relative;
}

.section-label {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-title-1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
.section-title em { font-style: italic;  }

.section-title-1 em { font-style: italic;  }

.sol{
    color: var(--gold);
}

.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text2);
  max-width: 580px;
}

/* ── PHILOSOPHY / ABOUT TEASER ── */
/* ── PHILOSOPHY / ABOUT TEASER ── */
.philosophy {
  background: var(--bg2);
  transition: background var(--transition);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .philosophy-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.philosophy-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.philosophy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 8px 40px var(--shadow);
  backdrop-filter: blur(12px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.philosophy-card .card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.philosophy-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.philosophy-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text2);
}
.gold-line {
  width: 40px; height: 2px;
  background: var(--gold);
  margin-bottom: 1.2rem;
}
 

/* ── SERVICES ── */
.services-hero-section {
  background: var(--bg);
  transition: background var(--transition);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 4rem auto 0;
  border: 1px solid var(--border2);
  border-radius: 6px;
  overflow: hidden;
}
.service-card {
  padding: 2.5rem;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--bg2); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: var(--gold-mid); }
.service-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text2);
}
.service-tag {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.3rem 0.8rem;
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── INDUSTRIES ── */
.industries {
  background: var(--bg3);
  transition: background var(--transition);
}
.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.industries-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .industries-list { grid-template-columns: repeat(4, 1fr); }
}
.industry-item {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.industry-item:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
  background: var(--surface);
}
.industry-emoji { font-size: 2rem; margin-bottom: 1rem; }
.industry-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* ── METHODOLOGY ── */
.methodology {
  background: var(--bg2);
  transition: background var(--transition);
}
.methodology-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.steps-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.steps-flow::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: calc(16.67% + 1.5rem); right: calc(16.67% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-mid), var(--gold));
  display: none;
}
@media (min-width: 768px) { .steps-flow::before { display: block; } }
.step {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #1A1612;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--bg2), 0 0 0 7px var(--border);
}
.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text2);
}

/* ── STATS ── */
.stats-strip {
  padding: 5rem clamp(1.5rem, 8vw, 8rem);
  background: var(--dark-cta);
  transition: background var(--transition);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-cta-text);
  opacity: 0.7;
}
[data-theme="dark"] .stat-label { color: var(--text2); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--bg);
  text-align: center;
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 8vw, 8rem);
  transition: background var(--transition);
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section p {
  font-size: 1rem;
  color: var(--text2);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.btn-lg {
  padding: 0.9rem 2.5rem;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

/* ── ABOUT PAGE ── */
.about-hero {
  min-height: 60vh;
  display: flex; align-items: center;
  padding: 6rem clamp(1.5rem, 8vw, 8rem) 4rem;
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(196,154,74,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  max-width: 700px;
}
.about-hero h1 em { font-style: italic; color: var(--gold); }
.about-hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text2);
  max-width: 600px;
  margin-top: 1.5rem;
}

.name-section {
  background: var(--bg2);
  transition: background var(--transition);
}
.name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.name-card {
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition);
}
.name-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.name-card .tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.name-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.name-card .sub {
  font-size: 0.82rem;
  color: var(--text3);
  font-style: italic;
  margin-bottom: 1rem;
}
.name-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text2);
}

.dual-identity {
  background: var(--bg);
  text-align: center;
  transition: background var(--transition);
}
.dual-inner {
  max-width: 780px;
  margin: 0 auto;
}
.dual-inner .section-body {
  max-width: 100%;
  margin: 0 auto;
}
.identity-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 2.5rem auto;
}

.vision-section {
  background: var(--dark-cta);
  text-align: center;
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 8vw, 8rem);
  transition: background var(--transition);
}
.vision-section .section-label { justify-content: center; }
.vision-section .section-title { color: var(--dark-cta-text); }
.vision-section .section-title-1 { color: var(--dark-cta-text); }
[data-theme="dark"] .vision-section .section-title { color: var(--text); }
[data-theme="dark"] .vision-section .section-title-1 { color: var(--text); }
.vision-section .section-body {
  color: rgba(250,248,244,0.65);
  max-width: 620px;
  margin: 0 auto;
}
[data-theme="dark"] .vision-section .section-body { color: var(--text2); }

/* ── SERVICES PAGE ── */
.services-detail {
  background: var(--bg);
  transition: background var(--transition);
}
.service-detail-item {
  max-width: 1100px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-detail-item.featured {
  background: var(--gold-light);
  border-color: var(--border);
}
.service-detail-item:nth-child(even) .service-detail-text { order: 2; }
.service-detail-item:nth-child(even) .service-detail-visual { order: 1; }
.service-detail-item .big-icon {
  font-size: 5rem;
  text-align: center;
  opacity: 0.7;
}
.service-detail-item .feature-promise {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: #1A1612;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.focus-areas {
  margin-top: 1.5rem;
}
.focus-area {
  display: flex; gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border2);
}
.focus-area:last-child { border-bottom: none; }
.focus-area .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.focus-area div { font-size: 0.9rem; color: var(--text2); line-height: 1.6; }
.focus-area strong { display: block; color: var(--text); font-size: 0.85rem; font-weight: 600; }

/* ── CONTACT PAGE ── */
.contact-hero {
  padding: 6rem clamp(1.5rem, 8vw, 8rem) 3rem;
  background: var(--bg);
  transition: background var(--transition);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info > p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text2);
  margin-bottom: 3rem;
}
.contact-item {
  display: flex; gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border2);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text { font-size: 0.85rem; }
.contact-item-text .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-item-text a, .contact-item-text p {
  color: var(--text);
  text-decoration: none;
  line-height: 1.6;
}
.contact-item-text a:hover { color: var(--gold); }

/* FORM */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 3rem;
  box-shadow: 0 8px 40px var(--shadow);
  transition: background var(--transition);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.form-sub {
  font-size: 0.85rem;
  color: var(--text3);
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--surface);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
::placeholder { color: var(--text3); }

.candidates-box {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
}
.candidates-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.candidates-box p {
  font-size: 0.87rem;
  color: var(--text2);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--dark-cta);
  padding: 4rem clamp(1.5rem, 8vw, 8rem) 2rem;
  transition: background var(--transition);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
[data-theme="dark"] footer .footer-top { border-bottom-color: var(--border2); }
.footer-brand .nav-logo { color: var(--dark-cta-text); }
[data-theme="dark"] .footer-brand .nav-logo { color: var(--text); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(250,248,244,0.5);
  max-width: 280px;
  line-height: 1.7;
  margin-top: 0.8rem;
}
[data-theme="dark"] .footer-brand p { color: var(--text3); }
.footer-links h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(250,248,244,0.6);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}
[data-theme="dark"] .footer-links a { color: var(--text2); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(250,248,244,0.35);
}
[data-theme="dark"] .footer-copy { color: var(--text3); }
.footer-social { display: flex; gap: 1rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(250,248,244,0.6);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
[data-theme="dark"] .social-btn { background: var(--bg2); border-color: var(--border2); color: var(--text2); }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #1A1612; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════
   RESPONSIVE — Mobile First
   ══════════════════════════════════════════════════ */

/* ── Tablet: ≤900px ── */
@media (max-width: 900px) {

  /* Nav */
  .nav-links { display: none; }
  .nav-right .btn-primary { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero {
    padding: 3rem 1.5rem;
    min-height: auto;
    padding-bottom: 4rem;
  }
  .hero-content { max-width: 100%; }
  .hero-float { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-badge { margin-bottom: 1.2rem; }

  /* Sections */
  section { padding: 3rem 1.5rem; }

  /* Philosophy */
  .philosophy-visual { gap: 1rem; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; margin-top: 2rem; }

  /* Industries */
  .industries-list { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

  /* About name grid */
  .name-grid { grid-template-columns: 1fr; }

  /* Services detail */
  .service-detail-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
  }
  .service-detail-item:nth-child(even) .service-detail-text { order: 1; }
  .service-detail-item:nth-child(even) .service-detail-visual { order: 2; }

  /* Methodology steps */
  .steps-flow { grid-template-columns: 1fr; }
  .steps-flow::before { display: none; }
  .step { padding: 1.5rem 1rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-hero { padding: 3rem 1.5rem 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 1.5rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }

  /* CTA */
  .cta-section { padding: 3rem 1.5rem; }
  .vision-section { padding: 3rem 1.5rem; }
}

/* ── Mobile: ≤640px ── */
@media (max-width: 640px) {

  /* Nav logo smaller */
  .nav-logo { font-size: 1.8rem; }

  /* Hero */
  .hero { padding: 2rem 1.2rem 3rem; }
  .hero-badge { font-size: 0.68rem; padding: 0.35rem 0.8rem; margin-bottom: 1rem; }
  .hero p { font-size: 0.95rem; }
  .hero-note { font-size: 0.75rem; }
  .btn-lg { padding: 0.8rem 1.6rem; font-size: 0.82rem; }
  .btn-outline { padding: 0.65rem 1.2rem; font-size: 0.82rem; }

  /* Sections */
  section { padding: 2.5rem 1.2rem; }

  /* Philosophy cards */
  .philosophy-card { padding: 1.5rem; }

  /* Service cards */
  .service-card { padding: 1.8rem; }
  .service-detail-item { padding: 1.5rem; }

  /* Industries */
  .industries-list { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .industry-item { padding: 1.2rem 1rem; }
  .industry-emoji { font-size: 1.5rem; margin-bottom: 0.6rem; }
  .industry-item h4 { font-size: 0.85rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stats-strip { padding: 3rem 1.2rem; }

  /* Name cards */
  .name-card { padding: 1.5rem; }

  /* Contact form */
  .contact-form-wrap { padding: 1.5rem; }
  .candidates-box { padding: 1.5rem; }
  .resume-dropzone { padding: 1.5rem 1rem; }
  .resume-file-name { max-width: 180px; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .footer-brand p { max-width: 100%; }

  /* Ticker */
  .ticker__item { padding: 0 1.5rem; font-size: 0.7rem; }

  /* Steps */
  .step { padding: 1.2rem 0.8rem; }
  .step-num { width: 40px; height: 40px; font-size: 1.1rem; }

  /* Mobile menu links size */
  .mobile-menu a { font-size: 1.6rem; }
}

/* ── Small mobile: ≤380px ── */
@media (max-width: 380px) {
  .hero { padding: 1.5rem 1rem 2.5rem; }
  section { padding: 2rem 1rem; }
  .industries-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .contact-form-wrap { padding: 1.2rem; }
  .candidates-box { padding: 1.2rem; }
  .service-detail-item { padding: 1.2rem; }
  .name-card { padding: 1.2rem; }
  .philosophy-card { padding: 1.2rem; }
  .footer-links { width: 100%; }
}

/* ══════════════════════════════════════════════════
   CONTACT FORM — Spinner & Feedback
   ══════════════════════════════════════════════════ */

.form-success-msg {
  padding: 0.85rem 1.1rem;
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 0.8rem;
}

.form-error-msg {
  padding: 0.75rem 1rem;
  background: rgba(180, 50, 50, 0.07);
  border: 1px solid rgba(180, 50, 50, 0.25);
  border-radius: 4px;
  font-size: 0.83rem;
  color: #b43232;
  margin-top: 0.5rem;
}

@keyframes formSuccessAnim {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-success-anim { animation: formSuccessAnim 0.4s ease forwards; }

@keyframes errorShake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}
.form-error-shake { animation: errorShake 0.4s ease; }

/* Spinner inside button */
.btn-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(26,22,18,0.25);
  border-top-color: #1A1612;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.4rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════
   RESUME UPLOAD WIDGET
   ══════════════════════════════════════════════════ */

.candidates-box {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.candidates-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.candidates-box > p {
  font-size: 0.87rem;
  color: var(--text2);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

/* Name + email fields inside candidates box */
.resume-fields {
  margin-bottom: 1.2rem;
}
.resume-fields .form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  display: block;
  margin-bottom: 0.3rem;
}
.resume-fields .form-group input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.resume-fields .form-group input:focus {
  border-color: var(--gold);
  background: var(--surface);
}

/* Drop zone */
.resume-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  text-align: center;
  user-select: none;
}
.resume-dropzone:hover,
.resume-dropzone.dragover {
  border-color: var(--gold);
  background: var(--bg);
  transform: scale(1.01);
}
.resume-dropzone-icon { font-size: 2rem; }
.resume-dropzone-text {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.resume-dropzone-text strong { font-size: 0.9rem; color: var(--text); }
.resume-dropzone-text span   { font-size: 0.8rem; color: var(--text3); }
.resume-dropzone-hint {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

/* File status card */
@keyframes resumeStatusIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.resume-status {
  margin-top: 1rem;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
}
.resume-status-anim { animation: resumeStatusIn 0.4s ease forwards; }

.resume-file-info {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1rem;
}
.resume-file-icon { font-size: 1.8rem; line-height: 1; }
.resume-file-details {
  display: flex; flex-direction: column; gap: 0.15rem;
  min-width: 0;
}
.resume-file-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.resume-file-size {
  font-size: 0.75rem;
  color: var(--text3);
}

/* Progress track */
.resume-progress-wrap { display: flex; flex-direction: column; gap: 0.4rem; }
.resume-progress-track {
  width: 100%; height: 4px;
  background: var(--border2);
  border-radius: 999px;
  overflow: hidden;
}
.resume-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 999px;
  width: 0%;
  transition: width 0.25s ease, background 0.5s ease;
}
.resume-status-text {
  font-size: 0.78rem;
  color: var(--text3);
}
