/* ============================================================
   ABIMBOLA AHMED — PREMIUM PORTFOLIO
   Aesthetic: Luxury Editorial · Warm Caramel · Refined Cream
   Fonts: Cormorant Garamond (display) + DM Sans (body)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  /* Brand Colors */
  --caramel:      #8B5E3C;
  --caramel-dark: #6B4425;
  --caramel-mid:  #7A5130;
  --caramel-warm: #A06B42;
  --caramel-pale: #C4956A;
  --caramel-soft: #DDB899;
  --caramel-faint:#F0DDD0;
  --cream:        #F5EDD8;
  --cream-warm:   #EFE3C8;
  --cream-light:  #FAF5EA;
  --ivory:        #FEFBF4;
  --white:        #FFFFFF;

  /* Text */
  --ink:          #1A0E06;
  --ink-deep:     #100800;
  --ink-mid:      #3D2010;
  --ink-soft:     #6B4020;
  --ink-muted:    #9A6D4A;
  --ink-faint:    #C49B78;

  /* UI */
  --border:       rgba(139,94,60,0.12);
  --border-mid:   rgba(139,94,60,0.22);
  --border-warm:  rgba(139,94,60,0.35);
  --glass:        rgba(250,245,234,0.85);
  --shadow-xs:    0 2px 8px rgba(139,94,60,0.07);
  --shadow-sm:    0 4px 20px rgba(139,94,60,0.10);
  --shadow-md:    0 8px 40px rgba(139,94,60,0.14);
  --shadow-lg:    0 20px 70px rgba(139,94,60,0.18);
  --shadow-xl:    0 40px 100px rgba(139,94,60,0.22);

  /* Fonts */
  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'DM Sans', sans-serif;
  --mono:    'DM Mono', monospace;

  /* Spacing */
  --nav-h: 76px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--body);
  background: var(--ivory);
  color: var(--ink-mid);
  overflow-x: hidden;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { text-align: justify; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--caramel); border-radius: 4px; }
::selection { background: var(--caramel); color: var(--ivory); }

/* =====================
   NOISE TEXTURE OVERLAY
===================== */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* =====================
   NAVIGATION
===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5rem;
  background: rgba(254,251,244,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: height 0.35s, box-shadow 0.35s;
}
.nav.scrolled { height: 62px; box-shadow: var(--shadow-sm); }

.nav-logo {
  font-family: var(--display);
  font-size: 1.65rem; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em;
}
.nav-logo .dot { color: var(--caramel); }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links li a {
  display: inline-block; padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.02em;
  color: var(--ink-soft); border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover { color: var(--ink); background: var(--caramel-faint); }
.nav-links li a.active { color: var(--caramel); font-weight: 500; }

.nav-cta {
  margin-left: 0.75rem !important;
  padding: 0.55rem 1.4rem !important;
  background: var(--caramel) !important;
  color: var(--ivory) !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  transition: all 0.25s !important;
  box-shadow: 0 3px 12px rgba(139,94,60,0.3) !important;
}
.nav-cta:hover {
  background: var(--caramel-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(139,94,60,0.4) !important;
}

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

.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 499;
  background: var(--ivory); border-bottom: 1px solid var(--border);
  padding: 1rem 0; opacity: 0; transform: translateY(-8px);
  pointer-events: none; transition: all 0.3s;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu li a { display: block; padding: 1rem 2rem; color: var(--ink-mid); font-size: 1rem; }

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer; font-family: var(--body);
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: 0.02em;
}

.btn-primary {
  padding: 0.9rem 2.25rem;
  background: var(--caramel); color: var(--ivory);
  font-size: 0.9rem; font-weight: 500;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(139,94,60,0.3);
}
.btn-primary:hover { background: var(--caramel-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,94,60,0.4); }

.btn-secondary {
  padding: 0.9rem 2.25rem;
  background: transparent; color: var(--caramel);
  font-size: 0.9rem; font-weight: 400;
  border-radius: 50px; border: 1.5px solid var(--border-warm);
}
.btn-secondary:hover { background: var(--caramel-faint); }

.btn-ghost {
  padding: 0.7rem 1.5rem;
  background: transparent; color: var(--caramel);
  font-size: 0.85rem; font-weight: 500;
  border-radius: 6px; border: 1px solid var(--border-mid);
}
.btn-ghost:hover { background: var(--caramel); color: var(--ivory); }

.btn-full { width: 100%; justify-content: center; }

/* =====================
   LAYOUT UTILITIES
===================== */
.section { padding: 8rem 5rem; }
.section-md { padding: 6rem 5rem; }
.section-sm { padding: 4rem 5rem; }
.container { max-width: 1280px; margin: 0 auto; width: 100%; }
.container-sm { max-width: 960px; margin: 0 auto; width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--caramel); margin-bottom: 1.25rem;
}
.eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--caramel); flex-shrink: 0; }

.section-heading {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400; color: var(--ink);
  line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.section-heading em { font-style: italic; color: var(--caramel); }

.body-lead {
  font-size: 1.05rem; color: var(--ink-muted);
  line-height: 1.85; font-weight: 300;
  text-align: justify;
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 500px;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}

/* Decorative background pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(240,221,208,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(196,149,106,0.08) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  position: relative; z-index: 1;
}

.hero-status {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background: var(--ivory); border: 1px solid var(--border-warm);
  border-radius: 50px; margin-bottom: 2.5rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--caramel);
  width: fit-content;
  box-shadow: var(--shadow-xs);
}
.status-dot {
  width: 7px; height: 7px; background: #52c97a;
  border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(82,201,122,0.2);
  animation: breathe 2.5s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 3px rgba(82,201,122,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(82,201,122,0); }
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.5vw, 6rem);
  font-weight: 300; color: var(--ink);
  line-height: 1.03; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-headline .line-brown { color: var(--caramel); display: block; }
.hero-headline .line-italic { font-style: italic; display: block; }

.hero-sub {
  font-size: 1.05rem; color: var(--ink-muted);
  line-height: 1.85; max-width: 500px;
  margin-bottom: 2.5rem; font-weight: 300;
  text-align: justify;
}

.hero-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.75rem; }
.hero-chip {
  padding: 0.42rem 1rem;
  background: var(--cream); border: 1px solid var(--border-mid);
  border-radius: 50px; font-size: 0.78rem; font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.hero-chip:hover { background: var(--caramel); color: var(--ivory); border-color: var(--caramel); }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-numbers {
  display: flex; gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hn-item {}
.hn-val {
  font-family: var(--display); font-size: 2.8rem; font-weight: 600;
  color: var(--caramel); line-height: 1;
  margin-bottom: 0.4rem;
}
.hn-label { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.45; }

/* HERO RIGHT */
.hero-right {
  position: relative; overflow: hidden;
  background: var(--caramel);
}

.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  mix-blend-mode: luminosity; opacity: 0.85;
  filter: contrast(1.05) brightness(0.95);
}

.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(107,68,37,0.3) 0%,
    transparent 40%,
    rgba(107,68,37,0.7) 85%,
    rgba(107,68,37,0.95) 100%);
  z-index: 1;
}

.hero-right-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2.25rem;
  z-index: 2;
}
.hrt-name {
  font-family: var(--display); font-size: 1.6rem; font-weight: 600;
  color: var(--cream); letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.hrt-role {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,237,216,0.65);
}

.hero-right-badge {
  position: absolute; top: 2rem; right: 2rem; z-index: 2;
  background: rgba(245,237,216,0.12);
  border: 1px solid rgba(245,237,216,0.2);
  backdrop-filter: blur(8px);
  border-radius: 10px; padding: 1rem 1.25rem;
  text-align: center;
}
.hrb-num { font-family: var(--display); font-size: 2rem; font-weight: 600; color: var(--cream); line-height: 1; }
.hrb-label { font-size: 0.68rem; color: rgba(245,237,216,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

/* =====================
   TICKER
===================== */
.ticker {
  background: var(--caramel-dark); overflow: hidden;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-inner { display: flex; width: max-content; animation: ticker 35s linear infinite; }
.ticker-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 2rem; white-space: nowrap;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,237,216,0.65);
}
.ticker-sep { width: 4px; height: 4px; background: var(--caramel-soft); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* =====================
   STATEMENT SECTION
===================== */
.statement { background: var(--ivory); }
.statement-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.statement-left .section-heading { font-size: clamp(2.5rem, 4.5vw, 4.2rem); margin-bottom: 0; }
.statement-right p { font-size: 1rem; color: var(--ink-muted); line-height: 1.9; margin-bottom: 1.5rem; font-weight: 300; text-align: justify; }
.statement-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 2rem; }
.s-pill {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: var(--cream-light); border: 1px solid var(--border);
  border-radius: 8px; transition: all 0.25s;
}
.s-pill:hover { border-color: var(--border-warm); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.s-pill-icon { font-size: 1.1rem; }
.s-pill-text { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }

/* =====================
   SERVICES GRID
===================== */
.services-sec { background: var(--cream-light); }
.services-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap; }
.services-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.svc-card {
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem 2.25rem;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--caramel-pale), var(--caramel));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }

.svc-num {
  font-family: var(--display); font-size: 4rem; font-weight: 700;
  color: var(--caramel-faint); line-height: 1;
  margin-bottom: 1.5rem; transition: color 0.3s;
}
.svc-card:hover .svc-num { color: var(--caramel-soft); }
.svc-emoji { font-size: 2.25rem; margin-bottom: 1.1rem; }
.svc-title {
  font-family: var(--display); font-size: 1.5rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.75rem; line-height: 1.2;
}
.svc-desc {
  font-size: 0.875rem; color: var(--ink-muted); line-height: 1.8;
  margin-bottom: 1.75rem; flex: 1; text-align: justify;
}
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.svc-tag { padding: 0.2rem 0.65rem; background: var(--caramel-faint); border-radius: 4px; font-size: 0.72rem; color: var(--caramel-mid); font-weight: 500; }

/* =====================
   PROOF NUMBERS
===================== */
.proof-sec { background: var(--caramel); position: relative; overflow: hidden; }
.proof-sec::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.proof-layout { display: grid; grid-template-columns: 420px 1fr; gap: 7rem; align-items: center; }
.proof-left .eyebrow { color: var(--cream-warm); }
.proof-left .eyebrow::before { background: var(--cream-warm); }
.proof-left .section-heading { color: var(--cream); }
.proof-left .section-heading em { color: var(--cream-warm); }
.proof-left p { color: rgba(245,237,216,0.7); text-align: justify; line-height: 1.85; font-size: 0.97rem; }
.proof-left a { margin-top: 2rem; display: inline-flex; background: var(--cream); color: var(--caramel); padding: 0.875rem 2rem; border-radius: 50px; font-weight: 500; font-size: 0.9rem; transition: all 0.25s; }
.proof-left a:hover { background: var(--ivory); transform: translateY(-2px); }

.proof-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: rgba(255,255,255,0.12); border-radius: 20px; overflow: hidden; }
.proof-box {
  background: rgba(107,68,37,0.55);
  padding: 2.75rem; text-align: center;
  transition: background 0.3s;
  backdrop-filter: blur(10px);
}
.proof-box:hover { background: rgba(107,68,37,0.75); }
.proof-val {
  font-family: var(--display); font-size: 3.8rem; font-weight: 600;
  color: var(--cream); line-height: 1; display: block; margin-bottom: 0.75rem;
}
.proof-desc { font-size: 0.85rem; color: rgba(245,237,216,0.68); line-height: 1.65; text-align: center; }

/* =====================
   PROJECT CARDS (HOME)
===================== */
.projects-home { background: var(--ivory); }
.projects-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.proj-card {
  background: var(--cream-light); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.proj-visual {
  background: var(--cream-warm); padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border); min-height: 220px;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.pv-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caramel); margin-bottom: 0.25rem; }
.pv-bar-row { display: flex; align-items: center; gap: 0.75rem; }
.pv-bar-name { font-size: 0.75rem; color: var(--ink-muted); min-width: 80px; }
.pv-track { flex: 1; height: 9px; background: var(--border); border-radius: 50px; overflow: hidden; box-shadow: inset 0 1px 3px rgba(0,0,0,0.06); }
.pv-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--caramel-soft), var(--caramel));
  border-radius: 50px; width: var(--w);
  transform: scaleX(0); transform-origin: left;
}
.pv-val { font-family: var(--mono); font-size: 0.72rem; font-weight: 500; color: var(--caramel); min-width: 40px; text-align: right; }

.pv-donut-row { display: flex; gap: 1.25rem; align-items: center; justify-content: center; margin-top: 0.5rem; }
.pv-donut { position: relative; width: 70px; height: 70px; }
.pv-donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.pv-donut-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1rem; font-weight: 600; color: var(--caramel); }
.pv-donut-caption { font-size: 0.68rem; color: var(--ink-muted); text-align: center; margin-top: 0.35rem; }

.pv-line { height: 60px; position: relative; }
.pv-line svg { width: 100%; height: 100%; overflow: visible; }

.proj-body { padding: 2rem 2.25rem 2.25rem; flex: 1; display: flex; flex-direction: column; }
.proj-tag-chip {
  display: inline-block; margin-bottom: 1rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--caramel); background: var(--caramel-faint);
  padding: 0.3rem 0.85rem; border-radius: 50px;
}
.proj-title {
  font-family: var(--display); font-size: 1.5rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.85rem; line-height: 1.25;
}
.proj-desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.8; margin-bottom: 1.75rem; flex: 1; text-align: justify; }
.proj-metrics { display: flex; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); margin-bottom: 1.5rem; }
.pm-item strong { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--caramel); }
.pm-item span { font-size: 0.7rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.proj-tool-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ptool { padding: 0.22rem 0.7rem; background: var(--cream-warm); border: 1px solid var(--border); border-radius: 4px; font-size: 0.72rem; color: var(--ink-soft); }

/* =====================
   TOOLS SECTION
===================== */
.tools-sec { background: var(--cream-warm); }
.tools-layout { display: grid; grid-template-columns: 380px 1fr; gap: 7rem; align-items: center; }
.tool-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.tool-card {
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.85rem;
  transition: all 0.3s; cursor: default;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tc-icon { font-size: 2rem; margin-bottom: 0.9rem; }
.tc-name { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.tc-desc { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.7; margin-bottom: 1.1rem; text-align: justify; }
.tc-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.tc-fill { height: 100%; background: linear-gradient(90deg, var(--caramel-soft), var(--caramel)); border-radius: 2px; width: var(--w); transform: scaleX(0); transform-origin: left; }
.tc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.tc-level { font-family: var(--mono); font-size: 0.68rem; color: var(--caramel); letter-spacing: 0.06em; text-transform: uppercase; }

/* =====================
   ABOUT TEASER
===================== */
.about-teaser { background: var(--ivory); }
.about-layout { display: grid; grid-template-columns: 460px 1fr; gap: 7rem; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-wrap img {
  width: 100%; border-radius: 16px;
  box-shadow: var(--shadow-xl);
  filter: sepia(6%) contrast(1.02);
}
.about-photo-tag {
  position: absolute; bottom: -18px; left: 28px;
  background: var(--caramel); color: var(--ivory);
  padding: 0.65rem 1.4rem; border-radius: 8px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(139,94,60,0.4); z-index: 1;
}
.about-photo-wrap::before {
  content: '';
  position: absolute; top: -14px; right: -14px;
  width: 90px; height: 90px;
  border: 2px solid var(--border-mid); border-radius: 10px; z-index: -1;
}

.about-text .section-heading { margin-bottom: 1.75rem; }
.about-text p { font-size: 0.97rem; color: var(--ink-muted); line-height: 1.9; margin-bottom: 1.25rem; font-weight: 300; text-align: justify; }
.approach-steps { display: flex; flex-direction: column; gap: 0.85rem; margin: 2.5rem 0; }
.a-step {
  display: flex; gap: 1.25rem; padding: 1.1rem 1.4rem;
  background: var(--cream-light); border: 1px solid var(--border);
  border-radius: 10px; transition: all 0.25s; align-items: flex-start;
}
.a-step:hover { border-color: var(--border-mid); box-shadow: var(--shadow-sm); }
.a-step-n { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--caramel-soft); min-width: 32px; }
.a-step-t strong { display: block; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.2rem; }
.a-step-t span { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.6; }

/* =====================
   QUOTE BAND
===================== */
.quote-band { background: var(--ink-deep); padding: 6rem 5rem; }
.quote-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.quote-open { font-family: var(--display); font-size: 7rem; color: var(--caramel); line-height: 0.3; display: block; margin-bottom: 2.5rem; }
.quote-text {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 300;
  color: var(--cream); line-height: 1.45; margin-bottom: 2rem;
  text-align: center;
}
.quote-attr { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }

/* =====================
   CTA BANNER
===================== */
.cta-band { background: var(--caramel-faint); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 6rem 5rem; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-band h2 {
  font-family: var(--display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--ink); max-width: 580px; line-height: 1.18;
}
.cta-band h2 em { font-style: italic; color: var(--caramel); }
.cta-band-btns { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* =====================
   FOOTER
===================== */
.footer { background: var(--ink-deep); }
.footer-main {
  display: grid; grid-template-columns: 300px 1fr 1fr 1fr;
  gap: 4.5rem; padding: 5.5rem 5rem 4.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-logo { font-family: var(--display); font-size: 1.75rem; font-weight: 600; color: var(--cream); display: block; margin-bottom: 1rem; }
.footer-brand-logo .dot { color: var(--caramel); }
.footer-brand p { font-size: 0.85rem; color: rgba(245,237,216,0.45); line-height: 1.85; margin-bottom: 2rem; text-align: justify; }
.footer-socials { display: flex; gap: 0.65rem; }
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; color: rgba(245,237,216,0.55);
  transition: all 0.25s;
}
.footer-social-link:hover { background: var(--caramel); border-color: var(--caramel); color: var(--ivory); transform: translateY(-2px); }

.footer-col h5 {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 1.75rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(245,237,216,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }

.footer-contact-items { display: flex; flex-direction: column; gap: 0.9rem; }
.fc-item { display: flex; align-items: center; gap: 0.85rem; }
.fc-icon {
  width: 34px; height: 34px; background: rgba(139,94,60,0.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: var(--caramel-pale); flex-shrink: 0;
}
.fc-item a, .fc-item span { font-size: 0.83rem; color: rgba(245,237,216,0.45); transition: color 0.2s; }
.fc-item a:hover { color: var(--cream); }

.footer-bottom {
  padding: 1.75rem 5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(245,237,216,0.25); }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(245,237,216,0.25); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(245,237,216,0.55); }

/* =====================
   PAGE HERO (INNER)
===================== */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 5rem 5.5rem;
  background: var(--cream-light);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(196,149,106,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.ph-inner { max-width: 1280px; margin: 0 auto; }
.ph-title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 300; color: var(--ink);
  line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 1.25rem;
}
.ph-title em { font-style: italic; color: var(--caramel); }
.ph-sub { font-size: 1.05rem; color: var(--ink-muted); max-width: 580px; line-height: 1.8; font-weight: 300; text-align: justify; }

/* =====================
   ABOUT PAGE
===================== */
.about-story { background: var(--ivory); }
.story-grid { display: grid; grid-template-columns: 400px 1fr; gap: 7rem; align-items: start; }
.story-photo-col { position: sticky; top: calc(var(--nav-h) + 2rem); }
.story-photo-col img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-xl); margin-bottom: 1.5rem; }
.story-badges { display: flex; flex-direction: column; gap: 0.7rem; }
.story-badge { display: flex; align-items: center; gap: 0.8rem; padding: 0.9rem 1.1rem; background: var(--cream-light); border: 1px solid var(--border); border-radius: 10px; }
.sb-icon { font-size: 1rem; }
.sb-text { font-size: 0.83rem; color: var(--ink-soft); }

.story-text h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 2rem; }
.story-text p { font-size: 0.97rem; color: var(--ink-muted); line-height: 1.9; margin-bottom: 1.5rem; font-weight: 300; text-align: justify; }

.highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin: 2.5rem 0; }
.hl-card { padding: 1.5rem; background: var(--cream-light); border: 1px solid var(--border); border-radius: 12px; transition: all 0.3s; }
.hl-card:hover { border-color: var(--border-mid); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.hl-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.hl-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.hl-card p { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.7; text-align: justify; }

/* TIMELINE */
.timeline-sec { background: var(--cream-light); }
.timeline { padding-left: 2.5rem; position: relative; max-width: 780px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(to bottom, var(--caramel), var(--caramel-soft), transparent); }
.tl-item { position: relative; padding-left: 3rem; padding-bottom: 4rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -2.4rem; top: 5px; width: 14px; height: 14px; background: var(--caramel); border-radius: 50%; border: 3px solid var(--cream-light); box-shadow: 0 0 0 2px var(--caramel); }
.tl-date { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caramel); margin-bottom: 0.6rem; }
.tl-role { font-family: var(--display); font-size: 1.6rem; font-weight: 400; color: var(--ink); margin-bottom: 0.2rem; }
.tl-org { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-faint); letter-spacing: 0.06em; margin-bottom: 1.25rem; }
.tl-points { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.25rem; }
.tl-points li { font-size: 0.9rem; color: var(--ink-muted); padding-left: 1.4rem; position: relative; line-height: 1.75; text-align: justify; }
.tl-points li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 8px; height: 1.5px; background: var(--caramel); }
.tl-points li strong { color: var(--ink); font-weight: 500; }
.tl-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tl-chip { padding: 0.22rem 0.7rem; background: var(--cream-warm); border: 1px solid var(--border); border-radius: 4px; font-size: 0.7rem; color: var(--ink-soft); }

/* SKILLS PAGE GRID */
.skills-sec { background: var(--ivory); }
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.skill-tile { background: var(--cream-light); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; transition: all 0.3s; }
.skill-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.st-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.skill-tile h3 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.skill-tile p { font-size: 0.83rem; color: var(--ink-muted); line-height: 1.7; margin-bottom: 1.25rem; text-align: justify; }
.st-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.st-fill { height: 100%; background: linear-gradient(90deg, var(--caramel-soft), var(--caramel)); border-radius: 2px; width: var(--w); transform: scaleX(0); transform-origin: left; }

/* =====================
   PROJECTS PAGE
===================== */
.projects-full { background: var(--ivory); }
.ps-wrap { display: flex; flex-direction: column; gap: 3rem; }

.ps-item {
  background: var(--cream-light); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: box-shadow 0.4s;
}
.ps-item:hover { box-shadow: var(--shadow-xl); }

.ps-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.75rem 2.5rem;
  background: var(--cream-warm); border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 1rem;
}
.ps-head-left { display: flex; align-items: center; gap: 1.25rem; }
.ps-n { font-family: var(--display); font-size: 2.8rem; font-weight: 700; color: var(--caramel-soft); line-height: 1; }
.ps-chip { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caramel); background: var(--ivory); padding: 0.3rem 0.9rem; border-radius: 50px; border: 1px solid var(--border-mid); }
.ps-badge { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 50px; }
.ps-badge.done { background: rgba(82,201,122,0.1); color: #1a7a40; border: 1px solid rgba(82,201,122,0.3); }
.ps-badge.wip { background: rgba(139,94,60,0.1); color: var(--caramel); border: 1px solid var(--border-warm); }

.ps-body { display: grid; grid-template-columns: 1fr 400px; }
.ps-content { padding: 2.5rem; }
.ps-title { font-family: var(--display); font-size: 2.2rem; font-weight: 400; color: var(--ink); margin-bottom: 2.25rem; line-height: 1.2; }
.ps-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.ps-col-label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--caramel); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; }
.ps-col-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.ps-col p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.8; text-align: justify; }
.ps-tools-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }
.ps-tool { padding: 0.28rem 0.8rem; background: var(--ivory); border: 1px solid var(--border-mid); border-radius: 6px; font-size: 0.75rem; color: var(--ink-soft); }

.ps-result {
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem; margin-top: 0.5rem;
}
.ps-result-label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--caramel); margin-bottom: 1.25rem; }
.ps-result-nums { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 1.25rem; }
.prn strong { display: block; font-family: var(--display); font-size: 2rem; font-weight: 600; color: var(--caramel); }
.prn span { font-size: 0.68rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.ps-result p { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.8; padding-top: 1.25rem; border-top: 1px solid var(--border); text-align: justify; }

.ps-viz {
  border-left: 1px solid var(--border);
  background: var(--cream-warm); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem; justify-content: center;
}
.pviz-label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caramel); }
.pviz-divider { height: 1px; background: var(--border); }

/* =====================
   SERVICES PAGE
===================== */
.services-page { background: var(--ivory); }
.svc-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden; }
.svc-row { background: var(--ivory); padding: 3.5rem 4rem; transition: background 0.25s; }
.svc-row:hover { background: var(--cream-light); }
.svc-row-top { display: flex; gap: 3rem; }
.svc-row-num { font-family: var(--display); font-size: 3.5rem; font-weight: 700; color: var(--caramel-faint); min-width: 60px; line-height: 1; flex-shrink: 0; }
.svc-row-main {}
.svc-row-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1rem; flex-wrap: wrap; }
.svc-row-title { font-family: var(--display); font-size: 2rem; font-weight: 400; color: var(--ink); }
.svc-row-icon { font-size: 1.8rem; }
.svc-row-desc { font-size: 0.97rem; color: var(--ink-muted); line-height: 1.88; max-width: 700px; text-align: justify; }
.svc-row-body { padding-left: calc(60px + 3rem); display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); margin-top: 2rem; }
.srb-title { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--caramel); margin-bottom: 0.9rem; }
.srb-list { display: flex; flex-direction: column; gap: 0.55rem; }
.srb-list li { font-size: 0.875rem; color: var(--ink-muted); padding-left: 1.3rem; position: relative; line-height: 1.65; }
.srb-list li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 8px; height: 1.5px; background: var(--caramel); }

.pricing-card { background: var(--caramel); border-radius: 20px; padding: 4.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pc-left .section-heading { color: var(--cream); }
.pc-left .section-heading em { color: var(--cream-warm); }
.pc-left p { color: rgba(245,237,216,0.72); font-size: 0.97rem; line-height: 1.88; margin-bottom: 1.25rem; text-align: justify; }
.pc-left a { display: inline-flex; align-items: center; padding: 0.875rem 2rem; background: var(--cream); color: var(--caramel); border-radius: 50px; font-weight: 500; font-size: 0.9rem; transition: all 0.25s; }
.pc-left a:hover { background: var(--ivory); transform: translateY(-2px); }
.pc-points { display: flex; flex-direction: column; gap: 1.1rem; }
.pcp { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: rgba(255,252,245,0.08); border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
.pcp-icon { font-size: 1.35rem; flex-shrink: 0; }
.pcp strong { display: block; color: var(--cream); font-size: 0.9rem; margin-bottom: 0.25rem; }
.pcp span { font-size: 0.82rem; color: rgba(245,237,216,0.6); line-height: 1.55; }

/* =====================
   CONTACT PAGE
===================== */
.contact-pg { background: var(--ivory); }
.contact-layout { display: grid; grid-template-columns: 420px 1fr; gap: 6rem; align-items: start; }
.ci-title { font-family: var(--display); font-size: 1.9rem; font-weight: 400; color: var(--ink); margin-bottom: 0.85rem; }
.ci-sub { font-size: 0.97rem; color: var(--ink-muted); line-height: 1.85; margin-bottom: 2.5rem; text-align: justify; }
.cm-links { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.5rem; }
.cm-link {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.2rem 1.4rem; background: var(--cream-light);
  border: 1px solid var(--border); border-radius: 12px;
  text-decoration: none; transition: all 0.25s;
}
.cm-link:hover { border-color: var(--border-warm); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.cm-link-icon { width: 44px; height: 44px; background: var(--caramel); color: var(--ivory); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.cm-link strong { display: block; font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caramel); margin-bottom: 0.15rem; }
.cm-link span { font-size: 0.875rem; color: var(--ink); }
.avail-pill { display: flex; align-items: center; gap: 0.85rem; padding: 1.1rem 1.4rem; background: rgba(82,201,122,0.06); border: 1px solid rgba(82,201,122,0.2); border-radius: 12px; }
.avail-dot { width: 9px; height: 9px; background: #52c97a; border-radius: 50%; box-shadow: 0 0 0 3px rgba(82,201,122,0.2); animation: breathe 2.5s ease-in-out infinite; flex-shrink: 0; }
.avail-pill strong { display: block; font-size: 0.875rem; color: var(--ink); }
.avail-pill p { font-size: 0.8rem; color: var(--ink-muted); margin: 0; text-align: left; }

.cform-wrap { background: var(--cream-light); border: 1px solid var(--border); border-radius: 20px; padding: 3.5rem; }
.cform-wrap h3 { font-family: var(--display); font-size: 2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
.cform-wrap > p { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 2.5rem; text-align: justify; }
.c-form { display: flex; flex-direction: column; gap: 1.25rem; }
.fg2 { display: flex; flex-direction: column; gap: 0.45rem; }
.fg2 label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.fg2 input, .fg2 textarea, .fg2 select {
  background: var(--ivory); border: 1.5px solid var(--border-mid);
  border-radius: 10px; padding: 0.9rem 1.1rem;
  color: var(--ink); font-family: var(--body); font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s; resize: vertical; width: 100%;
}
.fg2 input:focus, .fg2 textarea:focus, .fg2 select:focus { outline: none; border-color: var(--caramel); box-shadow: 0 0 0 4px rgba(139,94,60,0.08); }
.fg2 input::placeholder, .fg2 textarea::placeholder { color: rgba(154,109,74,0.4); }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-ok { display: none; padding: 1.1rem; background: rgba(82,201,122,0.08); border: 1px solid rgba(82,201,122,0.22); border-radius: 8px; font-size: 0.9rem; color: #1a6b3a; text-align: center; }
.form-ok.show { display: block; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 14px; overflow: hidden; }
.faq-row { background: var(--ivory); padding: 1.6rem 2rem; cursor: pointer; transition: background 0.2s; }
.faq-row:hover { background: var(--cream-light); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.97rem; font-weight: 500; color: var(--ink); }
.faq-icon { font-size: 1.3rem; color: var(--caramel); transition: transform 0.3s; flex-shrink: 0; }
.faq-row.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.3s; text-align: justify; }
.faq-row.open .faq-a { max-height: 220px; margin-top: 0.9rem; }

/* =====================
   ANIMATIONS
===================== */
.fade-up { opacity: 0; transform: translateY(32px); animation: fuAnim 0.85s cubic-bezier(0,0,0.2,1) forwards; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.34s; }
.d4 { animation-delay: 0.46s; }
.d5 { animation-delay: 0.58s; }
@keyframes fuAnim { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-20px); transition: opacity 0.7s, transform 0.7s; }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal-r.in { opacity: 1; transform: translateX(0); }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 400px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; }
  .story-grid { grid-template-columns: 320px 1fr; gap: 4rem; }
  .tools-layout { grid-template-columns: 1fr; gap: 4rem; }
  .about-layout { grid-template-columns: 380px 1fr; gap: 4rem; }
  .proof-layout { grid-template-columns: 1fr; gap: 4rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
  .ps-body { grid-template-columns: 1fr; }
  .ps-viz { border-left: none; border-top: 1px solid var(--border); }
  .pricing-card { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  :root { --nav-h: 66px; }
  .nav { padding: 0 1.75rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section, .section-md { padding: 5rem 2rem; }
  .section-sm { padding: 3rem 2rem; }
  .page-hero { padding: calc(var(--nav-h) + 3rem) 2rem 3.5rem; }
  .cta-band { padding: 4.5rem 2rem; }
  .quote-band { padding: 5rem 2rem; }
  .footer-main { padding: 4rem 2rem 3.5rem; }
  .footer-bottom { padding: 1.5rem 2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 420px; }
  .services-cards { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 380px; }
  .statement-grid { grid-template-columns: 1fr; gap: 4rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-photo-col { position: static; }
  .story-photo-col img { max-width: 380px; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; }
  .svc-row-body { padding-left: 0; grid-template-columns: 1fr; }
  .ps-cols { grid-template-columns: 1fr; }
  .ps-result-nums { grid-template-columns: repeat(2, 1fr); }
  .highlights { grid-template-columns: 1fr; }
  .hero-numbers { gap: 2rem; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .hero-numbers { flex-direction: column; gap: 1.5rem; }
  .skills-grid { grid-template-columns: 1fr; }
  .tool-cards { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .cform-row { grid-template-columns: 1fr; }
  .ps-result-nums { grid-template-columns: 1fr 1fr; }
  .svc-row { padding: 2rem 1.5rem; }
  .svc-row-top { gap: 1.5rem; }
}
