/* INITIUM Shared Styles — v2.0 */
/* Generated by Hermes. Shared across all pages. */

/* ── CSS Variables ── */
:root {
  --ig: #50C878;
  --ig-dark: #3DA35F;
  --ig-light: #E8F5EE;
  --ig-surface: #F7F8F5;
  --ig-ink: #1A1A1A;
  --ig-ink-2: #6B7B6E;
  --ig-ink-3: #A8B5AC;
  --font-editorial: 'Playfair Display', serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Base ── */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ig-ink);
  background: var(--ig-surface);
  overflow-x: hidden;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(247,249,248,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(80,200,120,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
}
nav.scrolled .nav-logo { color: var(--ig); }
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
nav.scrolled .nav-links a { color: var(--ig-ink-2); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom:0; left:0;
  width: 0; height: 1.5px;
  background: var(--ig);
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover { color: var(--ig); }
.nav-links a:hover::after { width: 100%; }

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
nav.scrolled .nav-toggle span { background: var(--ig-ink); }

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(247,249,248,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(80,200,120,0.08);
  }
  .nav-links.active { display: flex; }
  .nav-links a { color: var(--ig-ink-2) !important; font-size: 15px; }
  .nav-toggle { display: flex; }
  nav { padding: 16px 24px; }
}

/* ── Section Base ── */
section {
  position: relative;
  padding: 140px 48px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ig);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--ig);
}
.section-label-center { justify-content: center; }
.section-label-center::before { display: none; }
.section-title {
  font-family: var(--font-editorial);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 24px;
}
.section-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ig-ink-2);
  max-width: 540px;
}

@media (max-width: 900px) {
  section { padding: 100px 24px; }
}

/* ── Page Hero (shared across Services, Team, Contact, About) ── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: var(--ig-ink);
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 48px 80px;
  width: 100%;
  color: #fff;
}
.page-hero-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ig);
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--font-editorial);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero-text {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .page-hero-content { padding: 120px 24px 60px; }
  .page-hero-title { font-size: clamp(32px, 8vw, 48px); }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--ig);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  border: 1.5px solid var(--ig);
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: var(--ig);
}
.btn-primary-light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.4s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ── Footer ── */
footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 80px 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--ig); }
.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  footer { padding: 60px 24px 32px; }
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ig), var(--ig-light));
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── Sticky WhatsApp CTA Bar ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid rgba(80,200,120,0.1);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9997;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-size: 14px; font-weight: 500; color: var(--ig-ink); }
.sticky-cta-text strong { color: var(--ig); }
.sticky-cta-btn {
  padding: 10px 24px;
  background: var(--ig);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.sticky-cta-btn:hover { background: var(--ig-dark); transform: translateY(-1px); }
@media (max-width: 600px) {
  .sticky-cta { padding: 10px 16px; gap: 10px; }
  .sticky-cta-text { font-size: 12px; }
  .sticky-cta-btn { padding: 8px 16px; font-size: 11px; }
}
