/* =====================================================
   EXCELLOIT GROUP — Premium Editorial Design
   Direction: Sophisticated dark base, warm gold accents,
   Playfair Display serif headlines, photography-led,
   European consultancy luxury feel.
   ===================================================== */

:root {
  --ink:    #ffffff;
  --ink-2:  #391a3d;
  --ink-3:  #603166;
  --ink-4:  #252525;
  --stone:  #2E2E2E;
  --gold:   #c99c32;
  --gold-l: #2b182e;
  --gold-d: #A8882C;
  --cream:  #cdbf9d;
  --cream-d:#B8B0A0;
  --white:  #FFFFFF;
  --border: rgba(255,255,255,0.07);
  --border-g: rgba(201,168,76,0.2);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
  --spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}



.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;   /* perfect professional size */
  width: auto;
  object-fit: contain;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  background: var(--ink);
  color: var(--cream-d);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5 { font-family: var(--ff-serif); color: var(--cream); line-height: 1.1; }
em { font-style: italic; color: var(--gold); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }
ul,ol { list-style: none; }
input,textarea,select,button { font-family: var(--ff-sans); }

/* ─── GRAIN ─── */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.8;
}

.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: #E0DDF5;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* ─── back button ─── */
.back-btn:hover {
  background: rgba(124, 92, 255, 0.2);
  border-color: rgba(124, 92, 255, 0.4);
  transform: translateX(-3px);
}

/* ─── CURSOR ─── */
.cur {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%; pointer-events: none;
  z-index: 10000; transform: translate(-50%,-50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease),
              background 0.3s, border-color 0.3s, opacity 0.3s;
  opacity: 0;
}
.cur-dot {
  position: fixed; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 10001;
  transform: translate(-50%,-50%);
  transition: transform 0.08s;
  opacity: 0;
}
body:hover .cur, body:hover .cur-dot { opacity: 1; }

/* ─── CONTAINER ─── */
.container {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
}

/* ─── EYEBROW ─── */
.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--gold-l); }

/* ─── SECTION HEADLINE ─── */
.sec-h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 24px;
}
.sec-h2.sec-h2-light, .sec-h2.light { color: var(--white); }

.sec-header { margin-bottom: 64px; }
.sec-header .sec-h2 { max-width: 560px; }

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.25s var(--ease), transform 0.2s;
}
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); }

.btn-gold-sm {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-g);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-gold-sm:hover { color: var(--gold-l); border-color: var(--gold-l); }

.btn-outline-w {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 13px 28px;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-outline-w:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

/* ═══════════════════════════════
   HEADER / NAVBAR
═══════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 24px 0;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  padding: 14px 0;
  background:#3B1C3E;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.hdr-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; gap: 48px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  color: var(--cream);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }
.logo-icon { color: var(--gold); line-height: 0; }
.logo strong { font-weight: 700; color: var(--gold); }
.logo-light .logo-icon { color: var(--gold-l); }

.nav {
  display: flex; align-items: center; gap: 36px;
  flex: 1;
}
.nav a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--cream-d);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.hdr-cta {
  display: flex; align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--border-g);
  padding: 10px 22px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.hdr-cta:hover { background: var(--gold); color: var(--ink); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream); border-radius: 1px;
  transition: all 0.3s var(--ease);
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: slowZoom 16s ease-out forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,12,12,0.96) 0%,
    rgba(12,12,12,0.7) 40%,
    rgba(12,12,12,0.25) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  padding: 0 48px 100px;
  width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  animation: riseUp 0.9s var(--ease) 0.2s both;
}
.dot-pulse {
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
  animation: gPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes gPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
  50% { box-shadow: 0 0 0 7px rgba(201,168,76,0.05); }
}

.hero-h1 {
  font-size: clamp(3.6rem, 9vw, 8.5rem);
  font-weight: 400;
  line-height: 0.98;
  color: var(--white);
  display: flex; flex-direction: column;
  margin-bottom: 36px;
  overflow: hidden;
}
.hero-h1 .ln {
  display: block;
  animation: lineUp 1s var(--ease) both;
}
.hero-h1 .ln:nth-child(1) { animation-delay: 0.3s; }
.hero-h1 .ln:nth-child(2) { animation-delay: 0.45s; }
.hero-h1 .ln:nth-child(3) { animation-delay: 0.6s; }
.hero-h1 .ln:nth-child(4) { animation-delay: 0.75s; }
.italic-serif { font-style: italic; color: var(--gold); }

@keyframes lineUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: riseUp 1s var(--ease) 0.85s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 20px;
  animation: riseUp 1s var(--ease) 1s both;
}

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

.hero-scroll {
  position: absolute; bottom: 40px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 2;
  animation: riseUp 1s var(--ease) 1.2s both;
}
.scroll-anim { width: 1px; height: 48px; background: rgba(255,255,255,0.12); position: relative; overflow: hidden; }
.scroll-line {
  position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -100%; } 50% { top: 100%; } 51% { top: -100%; } 100% { top: -100%; }
}

/* ═══════════════════════════════
   TICKER
═══════════════════════════════ */
.ticker {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.ticker-wrap { overflow: hidden; }
.ticker-inner {
  display: flex; align-items: center; gap: 36px;
  white-space: nowrap; width: max-content;
  animation: roll 28s linear infinite;
}
.ticker-inner span {
  font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream-d); opacity: 0.6;
}
.ticker-inner i { color: var(--gold); font-size: 0.5rem; font-style: normal; opacity: 0.7; }
@keyframes roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
.about {
  background: var(--ink);
  padding: 140px 0;
}

/* — Intro block — */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--border);
}
.about-intro-right p {
  font-size: 1rem; line-height: 1.8;
  color: var(--cream-d);
  margin-bottom: 32px;
}

/* — Founder block — */
.founder-block {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
  margin-bottom: 100px;
}
.founder-img-col { display: flex; flex-direction: column; gap: 16px; }
.founder-img-wrap { position: relative; border-radius: 4px; overflow: hidden; }
.founder-img-wrap img { width: 100%; height: 420px; }
.founder-img-tag {
  position: absolute; bottom: 20px; left: 20px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(12,12,12,0.85);
  border: 1px solid var(--border-g);
  padding: 6px 14px; border-radius: 2px;
}
.founder-office-img {
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border);
}
.founder-office-img img { width: 100%; height: 180px; }

.quote-mark {
  font-family: var(--ff-serif);
  font-size: 8rem; line-height: 0.6;
  color: var(--gold); opacity: 0.2;
  margin-bottom: 28px;
  user-select: none;
}
blockquote {
  font-family: var(--ff-serif);
  font-size: 1.35rem; font-weight: 400; font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 36px;
}
.quote-author {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 40px;
}
.qa-line { width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.quote-author strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--cream); margin-bottom: 3px; }
.quote-author span { font-size: 0.78rem; color: var(--cream-d); opacity: 0.6; }

.innovation-badge {
  display: inline-flex; flex-direction: column;
  background: var(--ink-3); border: 1px solid var(--border-g);
  border-radius: 4px; padding: 20px 28px;
}
.ib-text { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-d); opacity: 0.55; margin-bottom: 4px; }
.innovation-badge strong { font-family: var(--ff-serif); font-size: 1.3rem; color: var(--gold); font-weight: 400; }

/* — Stats — */
.stats-row {
  display: flex; align-items: center;
  background: var(--ink-3);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
}
.stat-item {
  flex: 1; padding: 48px 40px; text-align: center;
  transition: background 0.3s;
}
.stat-item:hover { background: var(--ink-4); }
.stat-n {
  display: block;
  font-family: var(--ff-serif);
  font-size: 3.5rem; font-weight: 400;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.stat-l {
  font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cream-d); opacity: 0.55;
}
.stat-sep { width: 1px; height: 80px; background: var(--border); flex-shrink: 0; }

/* ═══════════════════════════════
   VALUES
═══════════════════════════════ */
.values {
  background: var(--ink-2);
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.values-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 100px; align-items: start;
}
.val-img {
  width: 100%; height: 400px;
  border-radius: 4px;
  margin-top: 40px;
  border: 1px solid var(--border);
}
.val-card {
  display: flex; gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s var(--ease);
  cursor: default;
}
.val-card:first-child { padding-top: 0; }
.val-card:last-child { border-bottom: none; }
.val-card:hover { padding-left: 10px; }
.val-num {
  font-family: var(--ff-serif);
  font-size: 0.85rem; font-weight: 400;
  color: var(--gold); opacity: 0.5;
  flex-shrink: 0; padding-top: 4px;
  min-width: 28px;
}
.val-body h3 {
  font-size: 1.25rem; font-weight: 500;
  color: var(--cream); margin-bottom: 10px;
}
.val-body p { font-size: 0.9rem; color: var(--cream-d); line-height: 1.75; }

/* ═══════════════════════════════
   TEAM
═══════════════════════════════ */
.team {
  background: var(--ink);
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.team-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
}
.team-card { background: var(--ink-2); cursor: default; }
.team-card:hover .tm-img-wrap img { transform: scale(1.05); }

.tm-img-wrap { position: relative; overflow: hidden; }
.team-lead .tm-img-wrap { height: 420px; }
.team-card:not(.team-lead) .tm-img-wrap { height: 280px; }
.tm-img-wrap img {
  width: 100%; height: 100%;
  transition: transform 0.7s var(--ease);
}
.tm-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,12,12,0.6) 100%);
}

.tm-body { padding: 28px 32px 36px; }
.tm-meta { margin-bottom: 12px; }
.tm-meta h3 { font-size: 1.3rem; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
.tm-meta span {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); opacity: 0.8;
}
.tm-body p { font-size: 0.87rem; color: var(--cream-d); line-height: 1.7; }

/* ═══════════════════════════════
   STRATEGIC OBJECTIVES
═══════════════════════════════ */
.objectives {
  position: relative; padding: 140px 0; overflow: hidden;
}
.obj-bg { position: absolute; inset: 0; }
.obj-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.obj-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12,12,12,0.96) 45%, rgba(12,12,12,0.75) 100%);
}
.obj-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 100px; align-items: center;
}
.obj-sub {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  line-height: 1.75; margin-top: 8px;
}
.obj-item {
  display: flex; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left 0.3s var(--ease);
}
.obj-item:first-child { padding-top: 0; }
.obj-item:last-child { border-bottom: none; }
.obj-item:hover { padding-left: 8px; }
.obj-num {
  font-family: var(--ff-serif);
  font-size: 1.2rem; font-weight: 400;
  color: var(--gold); flex-shrink: 0;
  padding-top: 1px;
}
.obj-item p {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ═══════════════════════════════
   INDUSTRIES / EXPERTISE
═══════════════════════════════ */
.industries {
  background: var(--ink-2);
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
}
.ind-card {
  position: relative; overflow: hidden;
  height: 300px; cursor: pointer;
}
.ind-large { grid-column: span 2; height: 380px; }
.ind-wide  { grid-column: span 2; height: 300px; }

.ind-card img {
  width: 100%; height: 100%;
  transition: transform 0.7s var(--ease);
}
.ind-card:hover img { transform: scale(1.06); }

.ind-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0.2) 0%, rgba(12,12,12,0.85) 100%);
  transition: background 0.4s;
}
.ind-card:hover .ind-overlay {
  background: linear-gradient(180deg, rgba(12,12,12,0.3) 0%, rgba(12,12,12,0.9) 100%);
}
.ind-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
}
.ind-tag {
  display: block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.ind-body h3 { font-size: 1.4rem; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.ind-body p {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  line-height: 1.65; max-width: 400px;
  transform: translateY(8px); opacity: 0;
  transition: all 0.35s var(--ease);
}
.ind-card:hover .ind-body p { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact {
  background: var(--ink);
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 100px; align-items: start;
}
.contact-left .sec-h2 { margin-bottom: 20px; }
.contact-left > p {
  font-size: 0.95rem; color: var(--cream-d);
  line-height: 1.78; margin-bottom: 48px;
}
.c-details { display: flex; flex-direction: column; gap: 24px; }
.c-detail { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 38px; height: 38px;
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.c-label { display: block; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-d); opacity: 0.45; margin-bottom: 5px; }
.c-value { display: block; font-size: 0.92rem; color: var(--cream); line-height: 1.5; }
.c-link:hover { color: var(--gold); }

.contact-form {
  background: var(--ink-3);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 48px;
}
.contact-form h3 {
  font-size: 1.6rem; font-weight: 400;
  color: var(--cream); margin-bottom: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 20px; }
.fg label {
  display: block; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cream-d);
  opacity: 0.5; margin-bottom: 8px;
}
.fi {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  font-size: 0.9rem; color: var(--cream);
  outline: none; resize: vertical;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
}
.fi::placeholder { color: rgba(200,191,176,0.25); }
.fi:focus { border-color: var(--gold); background: rgba(201,168,76,0.03); }
.fi option { background: var(--ink-3); color: var(--cream); }
.form-submit {
  display: flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--ink);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 36px; border: none; border-radius: 2px;
  cursor: pointer; margin-top: 8px;
  transition: background 0.25s, transform 0.2s;
}
.form-submit:hover { background: var(--gold-l); transform: translateY(-2px); }
.form-submit span { transition: transform 0.2s; }
.form-submit:hover span { transform: translateX(4px); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.f-brand-col .logo { margin-bottom: 20px; display: inline-flex; }
.f-brand-col p {
  font-size: 0.87rem; color: var(--cream-d);
  opacity: 0.5; line-height: 1.7; max-width: 280px;
  margin-bottom: 20px;
}
.f-address small {
  display: block; font-size: 0.78rem;
  color: var(--cream-d); opacity: 0.35;
  line-height: 1.8;
}
.f-links-col h4 {
  font-family: var(--ff-sans);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
  margin-bottom: 20px;
}
.f-links-col {
  display: flex; flex-direction: column; gap: 2px;
}
.f-links-col a {
  font-size: 0.88rem; color: var(--cream-d);
  opacity: 0.55; padding: 7px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, opacity 0.2s, border-color 0.2s;
}
.f-links-col a:hover { color: var(--gold); opacity: 1; border-bottom-color: var(--border-g); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-size: 0.78rem; color: var(--cream-d); opacity: 0.3;
}
.f-contact-quick { display: flex; align-items: center; gap: 12px; }
.f-contact-quick a { opacity: 1; }
.f-contact-quick a:hover { color: var(--gold); }

/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.rd-1 { transition-delay: 0.1s; }
.rd-2 { transition-delay: 0.2s; }
.rd-3 { transition-delay: 0.3s; }
.rd-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .hdr-inner { padding: 0 32px; }
  .hero-content { padding: 0 32px 80px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; margin-bottom: 72px; padding-bottom: 72px; }
  .founder-block { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr; gap: 48px; }
  .obj-inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hdr-cta { display: none; }
  .burger { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(12,12,12,0.99);
    backdrop-filter: blur(24px);
    align-items: center; justify-content: center;
    z-index: 199;
    animation: fadeIn 0.3s ease;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .nav.open a {
    font-size: 2.2rem; font-family: var(--ff-serif);
    font-weight: 400; color: var(--cream);
    padding: 16px 0; border-bottom: none;
    letter-spacing: 0.02em;
  }
  .nav.open a:hover { color: var(--gold); }
  .nav.open a::after { display: none; }

  .team-grid { grid-template-columns: 1fr; }
  .team-lead .tm-img-wrap { height: 320px; }
  .ind-grid { grid-template-columns: 1fr; }
  .ind-large, .ind-wide { grid-column: span 1; height: 260px; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; }
  .stat-sep:nth-child(4) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hdr-inner { padding: 0 20px; }
  .hero-content { padding: 0 20px 72px; }
  .hero-h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .about { padding: 80px 0; }
  .values, .team, .objectives, .industries, .contact { padding: 80px 0; }
  .stats-row { flex-direction: column; }
  .stat-sep { width: 60%; height: 1px; }
  .contact-form { padding: 32px 24px; }
}
