/* ══════════════════════════════════════════════════════════
   FIBONACCI CRAFT® — Main Stylesheet v1.0.0
   Astrology Palette: Virgo(Mercury) + Taurus-Gemini(Venus)
   60% White/Cream | 30% Forest Green | 10% Slate Blue
   ══════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  /* 60% — Dominant White/Cream */
  --w:      #FAFAF7;
  --w2:     #F3F0E9;
  --w3:     #EAE6DC;
  --cream:  #E4DFD3;
  --cream2: #D6D0C4;

  /* 30% — Forest Green (Mercury/Virgo) */
  --g:      #1B4332;
  --g2:     #2D6A4F;
  --g3:     #40916C;
  --g4:     #74C69D;
  --g5:     #B7E4C7;
  --gl:     #D8F3DC;
  --gf:     #F0FAF3;
  --gd:     rgba(27,67,50,.08);

  /* 10% — Slate Blue (Rahu/Mercury accent) */
  --b:      #4361EE;
  --b2:     #3A0CA3;
  --bl:     #EEF0FD;
  --bd:     rgba(67,97,238,.1);

  /* Ink/Text */
  --ink:    #0E1A14;
  --i2:     #2C3A34;
  --i3:     #4B5E57;
  --i4:     #7A908A;
  --i5:     #AABDB8;

  /* Typography */
  --fd:     'Fraunces', Georgia, serif;
  --fb:     'Instrument Sans', sans-serif;
  --fm:     'JetBrains Mono', monospace;

  /* Motion */
  --ease:   cubic-bezier(.16,1,.3,1);
  --spr:    cubic-bezier(.34,1.56,.64,1);
  --snap:   cubic-bezier(.87,0,.13,1);

  /* Layout */
  --nh:     72px;
  --max:    1380px;
  --r:      12px;
  --r-sm:   8px;

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(27,67,50,.08);
  --sh-md:  0 8px 28px rgba(27,67,50,.12);
  --sh-lg:  0 20px 56px rgba(27,67,50,.16);
  --sh-xl:  0 32px 80px rgba(27,67,50,.2);

  /* Asset version */
  --av: '1.0.0';
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--w);
  color: var(--ink);
  font-family: var(--fb);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: none; font-family: inherit; border: none; background: none; }
::selection { background: var(--g); color: var(--w); }
:focus-visible { outline: 2px solid var(--g); outline-offset: 3px; border-radius: 3px; }

/* ─── GRAIN OVERLAY ─── */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9990;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.022'/%3E%3C/svg%3E");
  opacity: .45; mix-blend-mode: multiply;
}

/* ─── CURSOR ─── */
#cur-dot {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9997;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--g); mix-blend-mode: multiply;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s;
  will-change: left, top;
}
#cur-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9996;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(27,67,50,.3);
  transform: translate(-50%,-50%);
  transition: width .45s var(--ease), height .45s var(--ease), opacity .3s;
  will-change: left, top;
}
body.c-hover #cur-dot { width: 26px; height: 26px; background: var(--b); }
body.c-hover #cur-ring { width: 58px; height: 58px; border-color: rgba(67,97,238,.35); }
body.c-click #cur-dot { transform: translate(-50%,-50%) scale(.7); }

/* ─── SCROLL PROGRESS ─── */
#scroll-prog {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9995;
  background: linear-gradient(90deg, var(--g), var(--g3), var(--b));
  width: 0; transition: width .08s linear;
}

/* ─── BACK TO TOP ─── */
#back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--g); color: var(--w);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 600;
  box-shadow: 0 8px 24px rgba(27,67,50,.3); cursor: none;
  opacity: 0; transform: translateY(16px);
  transition: opacity .35s, transform .35s var(--ease), box-shadow .3s;
}
#back-top.show { opacity: 1; transform: translateY(0); }
#back-top:hover { box-shadow: var(--sh-xl); transform: translateY(-4px); }

/* ─── LOADER ─── */
#site-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--g);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  transition: clip-path .9s var(--ease), opacity .4s;
}
#site-loader.loaded { clip-path: inset(0 0 100% 0); pointer-events: none; }
.loader-logo {
  font-family: var(--fd); font-size: 1.8rem; font-weight: 900;
  color: var(--w); letter-spacing: -.02em;
}
.loader-logo em { font-style: italic; color: var(--g4); }
.loader-bar { width: 200px; height: 2px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; background: var(--w); transform: scaleX(0); transform-origin: left; border-radius: 2px; }
.loader-pct { font-family: var(--fm); font-size: .65rem; letter-spacing: .2em; color: rgba(255,255,255,.45); }
.loader-canvas { position: absolute; inset: 0; opacity: .08; }

/* ─── NAV ─── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nh);
  display: flex; align-items: center;
  padding: 0 52px; z-index: 500;
  transition: background .5s, box-shadow .5s;
}
#main-nav.scrolled {
  background: rgba(250,250,247,.93);
  backdrop-filter: blur(28px) saturate(1.6);
  box-shadow: 0 1px 0 rgba(27,67,50,.08);
}
.n-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fd); font-weight: 700; font-size: 1.05rem;
  color: var(--ink); letter-spacing: -.015em; cursor: none;
  user-select: none;
}
.n-logo strong { font-weight: 900; }
.n-emblem {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--g); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.n-emblem img { width: 100%; height: 100%; object-fit: contain; padding: 4px; filter: brightness(10); }
.logo-fallback { font-family: var(--fd); font-style: italic; color: var(--w); font-size: 1rem; font-weight: 700; }
.n-emblem::after {
  content: ''; position: absolute; inset: -100%;
  background: conic-gradient(transparent 0deg, rgba(116,198,157,.5) 90deg, transparent 180deg);
  animation: emblem-spin 5s linear infinite;
}
@keyframes emblem-spin { to { transform: rotate(360deg); } }

.n-links {
  margin-left: auto; display: flex; align-items: center; gap: 4px;
}
.n-links > li { position: relative; }
.n-links > li > a {
  font-size: .78rem; font-weight: 500; letter-spacing: .06em;
  color: var(--i3); text-transform: uppercase;
  padding: 8px 14px; border-radius: 6px; display: block;
  transition: color .3s, background .3s; cursor: none;
  position: relative; white-space: nowrap;
}
.n-links > li > a .arrow { font-size: .6rem; transition: transform .3s; display: inline-block; margin-left: 2px; }
.n-links > li > a:hover,
.n-links > li > a.active { color: var(--g); background: var(--gf); }
.n-links > li > a:hover .arrow { transform: rotate(90deg); }

/* Dropdown */
.n-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--w); border: 1px solid var(--w3);
  border-radius: var(--r-sm); min-width: 210px;
  box-shadow: var(--sh-lg); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 100;
}
.n-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu li a {
  display: block; padding: 10px 20px;
  font-size: .8rem; color: var(--i3);
  transition: color .2s, background .2s; cursor: none;
}
.dropdown-menu li a:hover { color: var(--g); background: var(--gf); }

.n-cta {
  margin-left: 12px !important;
  padding: 10px 22px !important;
  background: var(--g) !important; color: var(--w) !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 14px rgba(27,67,50,.3);
  transition: background .3s, transform .3s var(--spr), box-shadow .3s !important;
}
.n-cta:hover { background: var(--g2) !important; transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(27,67,50,.4) !important; }

.ham {
  display: none; flex-direction: column; gap: 5px;
  width: 22px; margin-left: auto; cursor: none; padding: 4px;
}
.ham span { height: 1.5px; background: var(--ink); display: block; border-radius: 2px; transition: all .3s; }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mob-overlay {
  display: none; position: fixed; inset: 0; z-index: 490;
  background: rgba(14,26,20,.5); backdrop-filter: blur(4px);
}
.mob-overlay.show { display: block; }
.mob-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 495;
  background: var(--g); width: min(340px, 90vw);
  transform: translateX(100%); transition: transform .4s var(--ease);
  padding: 88px 40px 40px;
  display: flex; flex-direction: column; gap: 0;
  overflow-y: auto;
}
.mob-menu.open { transform: none; }
.mob-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--w);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: none; transition: background .3s;
}
.mob-close:hover { background: rgba(255,255,255,.2); }
.mob-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mob-menu nav a {
  font-family: var(--fd); font-size: 1.4rem; font-weight: 700;
  color: rgba(255,255,255,.55); padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .3s; cursor: none;
}
.mob-menu nav a:hover { color: var(--w); }
.mob-cta {
  margin-top: 8px !important;
  background: var(--w) !important; color: var(--g) !important;
  border-radius: 100px !important; padding: 14px 28px !important;
  font-size: 1rem !important; text-align: center !important; display: block !important;
}
.mob-contact { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; }
.mob-contact a { font-family: var(--fm); font-size: .7rem; color: rgba(255,255,255,.5); letter-spacing: .06em; }
.mob-contact a:hover { color: var(--g4); }

/* ─── SECTION COMMONS ─── */
.section { padding: 110px 52px; }
.section-sm { padding: 80px 52px; }
.section-bg { background: var(--w2); }
.section-green { background: var(--g); }
.container { max-width: var(--max); margin: 0 auto; }

.s-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fm); font-size: .65rem; letter-spacing: .2em;
  color: var(--g); text-transform: uppercase; margin-bottom: 14px;
}
.s-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--g); border-radius: 2px; flex-shrink: 0; }
.s-eyebrow.light { color: var(--g4); }
.s-eyebrow.light::before { background: var(--g4); }
.s-eyebrow.center { display: flex; justify-content: center; }

.s-title {
  font-family: var(--fd); font-size: clamp(1.9rem, 4vw, 3.5rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.025em; color: var(--ink);
}
.s-title em { font-style: italic; color: var(--g); }
.s-title.white { color: var(--w); }
.s-title.center { text-align: center; }
.s-sub { font-size: .96rem; color: var(--i3); font-weight: 300; line-height: 1.9; max-width: 500px; margin-top: 16px; }
.s-sub.center { text-align: center; margin-left: auto; margin-right: auto; }
.s-sub.white { color: rgba(255,255,255,.6); }

.section-header { margin-bottom: 64px; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }

/* ─── BUTTONS ─── */
.btn-g {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; background: var(--g); color: var(--w);
  font-family: var(--fb); font-size: .84rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  border-radius: 100px; box-shadow: 0 6px 20px rgba(27,67,50,.28);
  transition: background .3s, transform .3s var(--spr), box-shadow .3s; cursor: none;
}
.btn-g:hover { background: var(--g2); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(27,67,50,.38); }
.btn-g .arr { display: inline-block; transition: transform .3s var(--spr); }
.btn-g:hover .arr { transform: translateX(5px); }

.btn-o {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border: 1.5px solid var(--cream);
  color: var(--i3); font-size: .84rem; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  border-radius: 100px; cursor: none;
  transition: border-color .3s, color .3s, transform .3s var(--spr);
}
.btn-o:hover { border-color: var(--g); color: var(--g); transform: translateY(-3px); }

.btn-w {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: var(--w); color: var(--g);
  font-size: .875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 100px; box-shadow: 0 8px 28px rgba(0,0,0,.12); cursor: none;
  transition: transform .3s var(--spr), box-shadow .3s;
}
.btn-w:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,.18); }

/* ─── REVEAL ANIMATIONS ─── */
.rv {
  opacity: 0; transform: translateY(30px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.rv-left  { opacity: 0; transform: translateX(-30px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rv-left.in { opacity: 1; transform: none; }
.rv-right { opacity: 0; transform: translateX(30px);  transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rv-right.in { opacity: 1; transform: none; }
.rv-scale { opacity: 0; transform: scale(.94);         transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rv-scale.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--g); overflow: hidden; padding: 15px 0;
}
.marquee-inner {
  display: flex; gap: 52px;
  animation: mq-run 32s linear infinite; white-space: nowrap;
}
.marquee-inner span {
  font-family: var(--fm); font-size: .7rem; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.6); flex-shrink: 0;
}
.marquee-inner .mq-dot { color: var(--g4); font-size: .4rem; }
@keyframes mq-run { to { transform: translateX(-50%); } }

/* ─── SERVICE CARDS ─── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.svc-card {
  border-radius: var(--r); overflow: hidden;
  background: var(--w2); border: 1px solid var(--w3);
  transition: transform .5s var(--ease), box-shadow .5s; cursor: none;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.svc-card-img { height: 220px; position: relative; overflow: hidden; }
.svc-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.svc-card:hover .svc-card-img img { transform: scale(1.08); }
.svc-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(27,67,50,.35) 100%);
}
.svc-card-num {
  position: absolute; top: 16px; right: 16px;
  background: rgba(250,250,247,.88); backdrop-filter: blur(12px);
  padding: 4px 10px; border-radius: 100px;
  font-family: var(--fm); font-size: .58rem; color: var(--g); letter-spacing: .1em;
}
.svc-card-body { padding: 28px 28px 32px; }
.svc-card-body h3 {
  font-family: var(--fd); font-size: 1.2rem; font-weight: 700;
  color: var(--ink); margin-bottom: 10px;
}
.svc-card-body p { font-size: .84rem; color: var(--i3); line-height: 1.8; margin-bottom: 20px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fm); font-size: .65rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--g);
  transition: gap .3s var(--spr); cursor: none;
}
.svc-link::after { content: '→'; }
.svc-card:hover .svc-link { gap: 12px; }

/* ─── BENTO PORTFOLIO ─── */
.bento {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-template-rows: 340px 280px;
  gap: 12px;
}
.bi { border-radius: var(--r); overflow: hidden; position: relative; cursor: none; }
.bi1 { grid-column: span 7; }
.bi2 { grid-column: span 5; }
.bi3 { grid-column: span 4; }
.bi4 { grid-column: span 4; }
.bi5 { grid-column: span 4; }
.bi img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .7s var(--ease);
}
.bi:hover img { transform: scale(1.07); }
.bi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,26,20,.88) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.bi:hover .bi-overlay { opacity: 1; }
.bi-label {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s var(--ease);
}
.bi:hover .bi-label { opacity: 1; transform: none; }
.bi-cat { font-family: var(--fm); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--g4); margin-bottom: 5px; }
.bi-name { font-family: var(--fd); font-size: 1rem; font-weight: 700; color: var(--w); }
.bi-bg { position: absolute; inset: 0; }

/* ─── TESTIMONIALS ─── */
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tcard {
  background: var(--w); border-radius: var(--r); padding: 32px;
  border: 1px solid var(--w3);
  transition: box-shadow .4s, transform .4s var(--ease), border-color .4s;
}
.tcard:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); border-color: var(--g4); }
.tc-stars { color: var(--g3); font-size: .78rem; letter-spacing: 3px; margin-bottom: 14px; }
.tc-text { font-size: .875rem; color: var(--i3); line-height: 1.9; margin-bottom: 22px; font-style: italic; font-weight: 300; }
.tc-auth { display: flex; align-items: center; gap: 12px; }
.tc-av {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  background: var(--gl); flex-shrink: 0; display: flex;
  align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 700; color: var(--g); font-size: .9rem;
}
.tc-av img { width: 100%; height: 100%; object-fit: cover; }
.tc-name { font-family: var(--fd); font-size: .9rem; font-weight: 700; color: var(--ink); }
.tc-role { font-family: var(--fm); font-size: .6rem; color: var(--i4); letter-spacing: .08em; }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--w3); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: none;
  font-family: var(--fd); font-size: .975rem; font-weight: 600;
  color: var(--ink); transition: color .3s;
}
.faq-q:hover { color: var(--g); }
.faq-ico {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--w3);
  display: flex; align-items: center; justify-content: center;
  color: var(--i4); font-size: 1rem; flex-shrink: 0;
  transition: all .3s; line-height: 1;
}
.faq-item.open .faq-ico { transform: rotate(45deg); border-color: var(--g); color: var(--g); background: var(--gl); }
.faq-a {
  font-size: .875rem; color: var(--i3); line-height: 1.85; font-weight: 300;
  max-height: 0; overflow: hidden; transition: max-height .5s var(--ease), padding .3s;
}
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 20px; }

/* ─── CTA BAND ─── */
.cta-band { background: var(--g); position: relative; overflow: hidden; text-align: center; }
.cta-band-img { position: absolute; inset: 0; }
.cta-band-img img { width: 100%; height: 100%; object-fit: cover; opacity: .12; }
.cta-band-content { position: relative; z-index: 2; padding: 110px 52px; }

/* ─── PROCESS ─── */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.proc-card {
  background: rgba(255,255,255,.04); padding: 44px 32px;
  border: 1px solid rgba(255,255,255,.07);
  position: relative; transition: background .4s;
}
.proc-card:hover { background: rgba(255,255,255,.09); }
.proc-n {
  font-family: var(--fd); font-size: 6rem; font-weight: 900;
  line-height: 1; color: rgba(255,255,255,.05);
  display: block; margin-bottom: 24px; position: relative;
}
.proc-n::before {
  content: attr(data-v); position: absolute; top: 0; left: 0;
  font-size: .9rem; font-family: var(--fm); font-weight: 400;
  color: var(--g4); letter-spacing: .12em; line-height: 1.8;
}
.proc-card:not(:last-child)::after {
  content: ''; position: absolute; top: 50%; right: -1px;
  width: 2px; height: 40px; background: var(--g3);
  transform: translateY(-50%);
}
.proc-card h3 { font-family: var(--fd); font-size: 1.15rem; font-weight: 700; color: var(--w); margin-bottom: 12px; }
.proc-card p { font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.8; }

/* ─── WHY US ─── */
.why-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
.wf {
  background: var(--w2); border-radius: 10px; padding: 22px 20px;
  border: 1px solid var(--w3);
  transition: border-color .3s, transform .3s var(--ease);
}
.wf:hover { border-color: var(--g3); transform: translateY(-4px); }
.wf-ico { font-size: 1.4rem; margin-bottom: 10px; }
.wf h4 { font-family: var(--fd); font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.wf p { font-size: .78rem; color: var(--i3); line-height: 1.7; }

/* ─── TECH PILLS ─── */
.tech-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.tp {
  padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--w3); color: var(--i3);
  font-family: var(--fm); font-size: .68rem; letter-spacing: .06em;
  transition: all .3s var(--ease); cursor: none;
}
.tp:hover { border-color: var(--g); color: var(--g); background: var(--gf); transform: translateY(-2px); }

/* ─── SUB PAGE HERO ─── */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 420px; display: flex; align-items: flex-end;
  padding: 60px 52px 64px;
}
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,26,20,.88) 0%, rgba(14,26,20,.4) 60%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 680px; }

/* ─── SERVICE ROWS ─── */
.srow {
  display: grid; grid-template-columns: 90px 1fr 1fr;
  gap: 48px; align-items: start;
  padding: 52px 0; border-top: 1px solid var(--w3);
}
.srow:last-child { border-bottom: 1px solid var(--w3); }
.srow-lbl { font-family: var(--fm); font-size: .62rem; letter-spacing: .15em; color: var(--i5); padding-top: 8px; text-transform: uppercase; }
.srow h3 { font-family: var(--fd); font-size: 1.35rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.srow p { font-size: .875rem; color: var(--i3); line-height: 1.85; max-width: 520px; }
.s-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.stg { padding: 4px 12px; background: var(--gl); color: var(--g); border-radius: 100px; font-family: var(--fm); font-size: .6rem; letter-spacing: .07em; }
.srow-img { border-radius: 10px; overflow: hidden; height: 180px; }
.srow-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.srow:hover .srow-img img { transform: scale(1.06); }

/* ─── PORTFOLIO PAGE ─── */
.pf-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.pfb {
  padding: 8px 20px; border-radius: 100px; cursor: none;
  border: 1.5px solid var(--w3); color: var(--i3);
  font-family: var(--fm); font-size: .65rem; letter-spacing: .1em;
  transition: all .3s;
}
.pfb.active, .pfb:hover { border-color: var(--g); color: var(--g); background: var(--gf); }
.pf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pf-card {
  border-radius: var(--r); overflow: hidden;
  background: var(--w2); border: 1px solid var(--w3);
  cursor: none; transition: box-shadow .4s, transform .4s var(--ease);
}
.pf-card:hover { box-shadow: var(--sh-lg); transform: scale(1.03); }
.pf-card-img { height: 220px; position: relative; overflow: hidden; }
.pf-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pf-card:hover .pf-card-img img { transform: scale(1.08); }
.pf-hover {
  position: absolute; inset: 0;
  background: rgba(27,67,50,.88);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transition: opacity .4s;
}
.pf-card:hover .pf-hover { opacity: 1; }
.pf-card-body { padding: 22px 24px 26px; }
.pf-card-body h3 { font-family: var(--fd); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.pf-card-body span { font-family: var(--fm); font-size: .6rem; color: var(--g); letter-spacing: .1em; text-transform: uppercase; }

/* ─── CONTACT FORM ─── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--fm); font-size: .62rem; letter-spacing: .15em; color: var(--i4); text-transform: uppercase; margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--w2); border: 1.5px solid var(--w3);
  color: var(--ink); font-family: var(--fb); font-size: .875rem;
  padding: 12px 16px; border-radius: var(--r-sm); outline: none;
  appearance: none; transition: border-color .3s, background .3s, box-shadow .3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--g); background: var(--w); box-shadow: 0 0 0 4px rgba(27,67,50,.07);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--w); }
.form-success {
  display: none; margin-top: 14px; padding: 16px 20px;
  background: var(--gf); border: 1px solid var(--gl);
  border-radius: var(--r-sm); color: var(--g);
  font-family: var(--fm); font-size: .75rem; letter-spacing: .05em;
}

/* ─── FOOTER ─── */
#main-footer { background: var(--ink); color: var(--w); padding: 80px 52px 40px; }
.ft-top { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 32px; }
.ft-logo { display: flex; align-items: center; gap: 10px; font-family: var(--fd); font-weight: 700; font-size: .95rem; color: var(--w); margin-bottom: 16px; cursor: none; }
.ft-logo strong { font-weight: 900; }
.ft-logo-fallback { font-family: var(--fd); font-weight: 900; font-size: 1rem; color: var(--w); }
.ft-logo-fallback strong { color: var(--g4); }
#main-footer > .ft-top > .ft-brand > p { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.9; max-width: 260px; margin-bottom: 24px; }
.ft-brand p { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.9; max-width: 260px; margin-bottom: 24px; }
.ft-social { display: flex; gap: 8px; }
.ft-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .3s; cursor: none;
}
.ft-social a:hover { border-color: var(--g4); color: var(--g4); background: rgba(64,145,108,.12); }
.ft-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.ft-col h3 { font-family: var(--fd); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.ft-col ul { display: flex; flex-direction: column; gap: 9px; }
.ft-col ul li { font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.ft-col ul a { color: rgba(255,255,255,.5); transition: color .3s; cursor: none; }
.ft-col ul a:hover { color: var(--g4); }
.ft-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 100px; padding: 8px 14px; }
.ft-badge-dot { width: 8px; height: 8px; background: var(--g3); border-radius: 50%; animation: ft-pulse 2s ease-in-out infinite; }
@keyframes ft-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(64,145,108,.4)}50%{box-shadow:0 0 0 6px rgba(64,145,108,0)} }
.ft-badge span { font-family: var(--fm); font-size: .62rem; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-copy { font-family: var(--fm); font-size: .6rem; color: rgba(255,255,255,.25); letter-spacing: .08em; }
.ft-links-legal { display: flex; gap: 20px; }
.ft-links-legal a { font-family: var(--fm); font-size: .6rem; color: rgba(255,255,255,.3); letter-spacing: .08em; transition: color .3s; cursor: none; }
.ft-links-legal a:hover { color: var(--g4); }
.ft-tagline { font-family: var(--fd); font-size: .75rem; font-style: italic; color: var(--g4); }

/* ─── ABOUT PAGE IMAGE SPLIT ─── */
.img-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.img-split-visual { position: relative; overflow: hidden; min-height: 560px; }
.img-split-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-split-content { background: var(--w2); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.img-badge {
  position: absolute; bottom: 32px; left: 32px; z-index: 2;
  background: rgba(250,250,247,.92); backdrop-filter: blur(16px);
  border: 1px solid rgba(27,67,50,.1); border-radius: 10px; padding: 20px 24px;
}
.img-badge-n { font-family: var(--fd); font-size: 2rem; font-weight: 900; color: var(--g); line-height: 1; display: block; }
.img-badge-l { font-family: var(--fm); font-size: .6rem; color: var(--i4); letter-spacing: .1em; text-transform: uppercase; display: block; margin-top: 2px; }
.vals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 44px; }
.val-card { background: var(--w); border-radius: 10px; padding: 24px 20px; border: 1px solid var(--w3); transition: border-color .3s, transform .3s var(--ease); }
.val-card:hover { border-color: var(--g3); transform: translateY(-4px); }
.val-card h4 { font-family: var(--fd); font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.val-card p { font-size: .8rem; color: var(--i3); line-height: 1.7; }

/* ─── COUNTER STATS ─── */
.stats-row { display: flex; flex-wrap: wrap; gap: 0; }
.stat-item { padding: 28px 32px; border-right: 1px solid rgba(27,67,50,.1); flex: 1; min-width: 140px; }
.stat-item:first-child { border-left: 1px solid rgba(27,67,50,.1); }
.stat-n { font-family: var(--fd); font-size: 2.8rem; font-weight: 900; color: var(--g); line-height: 1; display: block; letter-spacing: -.04em; }
.stat-l { font-family: var(--fm); font-size: .6rem; letter-spacing: .12em; color: var(--i4); text-transform: uppercase; display: block; margin-top: 4px; }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mt-64 { margin-top: 64px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gap-16 { gap: 16px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .proc-card:not(:last-child)::after { display: none; }
  .tgrid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bi1, .bi2, .bi3, .bi4, .bi5 { grid-column: span 1; height: 260px; }
  .ft-top { grid-template-columns: 1fr; gap: 40px; }
  .ft-cols { grid-template-columns: repeat(3,1fr); }
  .srow { grid-template-columns: 80px 1fr; }
  .srow-img { display: none; }
  .img-split { grid-template-columns: 1fr; }
  .img-split-visual { min-height: 360px; }
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  :root { --nh: 60px; }
  .section { padding: 80px 28px; }
  .section-sm { padding: 60px 28px; }
  #main-nav { padding: 0 28px; }
  .n-links { display: none; }
  .ham { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; gap: 2px; }
  .tgrid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bi1, .bi2, .bi3, .bi4, .bi5 { grid-column: span 1; height: 220px; }
  .pf-grid { grid-template-columns: 1fr 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .why-feat-grid { grid-template-columns: 1fr; }
  .ft-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band-content { padding: 80px 28px; }
  .page-hero { padding: 52px 28px 52px; min-height: 340px; }
  .srow { grid-template-columns: 1fr; gap: 16px; }
  .srow-lbl { display: none; }
  .img-split-content { padding: 56px 28px; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(27,67,50,.1); }
  #main-footer { padding: 60px 28px 32px; }
}

@media (max-width: 600px) {
  .pf-grid { grid-template-columns: 1fr; }
  .ft-cols { grid-template-columns: 1fr; }
  .cta-band-content { padding: 64px 24px; }
  .page-hero { min-height: 300px; }
}

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