@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== TOKENS ===== */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #152236;
  --navy-light:  #1E2D42;
  --gold:        #B8922E;
  --gold-light:  #D4AB52;
  --gold-pale:   rgba(184,146,46,0.10);
  --gold-rule:   rgba(184,146,46,0.30);

  /* Predominantly light palette */
  --bg:          #F8F5F0;       /* warm off-white - almost all sections */
  --bg-white:    #FFFFFF;
  --bg-alt:      #F0EBE2;       /* slightly deeper warm cream */
  --ink:         #1A1A2E;       /* near-black, not pure */
  --ink-mid:     #3D4460;       /* secondary text */
  --ink-light:   #6B7490;       /* tertiary */
  --border:      #E2DAD0;       /* warm border */
  --border-dark: rgba(255,255,255,0.10);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:   3px;
  --radius-md:   10px;
  --radius-lg:   18px;

  --shadow-sm:   0 1px 4px rgba(26,26,46,0.06);
  --shadow-md:   0 4px 20px rgba(26,26,46,0.09);
  --shadow-lg:   0 12px 48px rgba(26,26,46,0.13);
  --shadow-card: 0 2px 8px rgba(26,26,46,0.07), 0 8px 32px rgba(26,26,46,0.06);

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.0, 0, 0.2, 1);
  --t:           0.28s;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg-white); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ===== TYPE UTILITIES ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.no-rule::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-title.light { color: #FFFFFF; }

.section-desc {
  font-size: 1.02rem;
  color: var(--ink-mid);
  max-width: 560px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,146,46,0.30);
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--t) var(--ease), padding var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.navbar.scrolled {
  background: rgba(13, 27, 42, 0.96);
  padding: 14px 0;
  box-shadow: 0 1px 32px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.navbar-logo span { color: var(--gold); }
.navbar-links { display: flex; align-items: center; gap: 32px; }
.navbar-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.01em;
  transition: color var(--t) var(--ease);
}
.navbar-links a:hover, .navbar-links a.active { color: var(--gold); }
.navbar-cta {
  font-size: 0.8rem !important;
  padding: 8px 20px;
  border: 1.5px solid rgba(184,146,46,0.55);
  border-radius: var(--radius-sm);
  color: var(--gold) !important;
  transition: var(--t) var(--ease) !important;
}
.navbar-cta:hover { background: var(--gold) !important; color: #FFFFFF !important; border-color: var(--gold) !important; }
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.navbar-hamburger span { display: block; width: 22px; height: 1.5px; background: #FFFFFF; transition: var(--t) var(--ease); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
#dottedSurface { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
#dottedSurface canvas { display: block; width: 100% !important; height: 100% !important; }
.hs { position: absolute; border-radius: 50%; will-change: transform; }
.hs-1 { width: 650px; height: 650px; background: radial-gradient(circle, rgba(184,146,46,0.20) 0%, transparent 68%); top: -200px; right: -140px; }
.hs-2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(30,80,160,0.25) 0%, transparent 68%); bottom: -160px; left: -160px; }
.hs-3 { width: 240px; height: 240px; background: radial-gradient(circle, rgba(184,146,46,0.13) 0%, transparent 68%); top: 40%; left: 5%; }
.hs-4 { width: 72px; height: 72px; border: 1px solid rgba(184,146,46,0.28); top: 16%; right: 24%; }
.hs-5 { width: 36px; height: 36px; border: 1px solid rgba(184,146,46,0.20); bottom: 28%; right: 38%; }
.hs-6 { width: 10px; height: 10px; background: var(--gold); opacity: 0.45; top: 62%; left: 22%; border-radius: 50%; }
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* Split hero layout */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 72px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.92;
  color: #FFFFFF;
  margin-bottom: 26px;
  letter-spacing: -0.025em;
}
.title-word { display: inline-block; opacity: 0; margin-right: 0.18em; }
@media (min-width: 1025px) { .title-word { width: 100%; } }
.title-accent { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: rgba(255,255,255,0.52);
  margin-bottom: 18px;
  opacity: 0;
  letter-spacing: 0.01em;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.78;
  margin-bottom: 36px;
  opacity: 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; }

/* Hero title rule — animated gold line drawn below title */
.hero-title-rule {
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(184,146,46,0.25) 70%, transparent 100%);
  margin-bottom: 28px;
  transform: scaleX(0);
  transform-origin: left center;
}

/* Floating service tags (atmospheric background decoration) */
.hero-service-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hst {
  position: absolute;
  padding: 5px 13px;
  border: 1px solid rgba(184,146,46,0.18);
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184,146,46,0.32);
  background: rgba(13,27,42,0.28);
  opacity: 0;
  white-space: nowrap;
  will-change: transform;
  user-select: none;
}
.hst:nth-child(1) { top: 13%;  left: 52%; }
.hst:nth-child(2) { top: 30%;  right: 2%; }
.hst:nth-child(3) { top: 56%;  left: 50%; }
.hst:nth-child(4) { bottom: 20%; right: 5%; }
.hst:nth-child(5) { top: 20%;  right: 16%; }
.hst:nth-child(6) { bottom: 36%; left: 54%; }
.hst:nth-child(7) { top: 70%;  right: 12%; }
.hst:nth-child(8) { bottom: 50%; right: 20%; }

/* Right stats panel */
.hero-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
}

/* Hero video */
.hero-video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  width: 100%;
  align-self: center;
  background: #000;
}
.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero credentials table */
.hero-credentials-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  backdrop-filter: blur(8px);
}
.hero-credentials-table thead tr th {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 18px 24px;
  text-transform: uppercase;
}
.hero-credentials-table tbody tr {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(13,27,42,0.55);
  transition: background 0.2s;
}
.hero-credentials-table tbody tr:hover {
  background: rgba(255,255,255,0.06);
}
.hero-credentials-table td {
  padding: 16px 20px;
}
.hero-credentials-table td.cred-metric {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  width: 30%;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-credentials-table td.cred-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-stat {
  padding: 24px 20px;
  background: rgba(13,27,42,0.55);
  backdrop-filter: blur(8px);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-lbl {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.46);
  font-weight: 500;
  line-height: 1.4;
}

/* ===== GOLD RULE DIVIDER ===== */
.gold-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 48px;
}
.gold-rule.left { margin-left: 0; }

/* ===== ABOUT ===== */
.about { padding: 112px 0; background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.about-visual { position: relative; }
.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-light);
  aspect-ratio: 4/5;
}
.about-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem; font-weight: 900;
  color: var(--gold);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.about-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
  border: 1px solid var(--border);
}
.about-badge-number { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.about-badge-label { display: block; font-size: 0.72rem; color: var(--ink-light); font-weight: 500; margin-top: 4px; }
.about-content { padding-top: 8px; }
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.about-content p { font-size: 1rem; color: var(--ink-mid); line-height: 1.82; margin-bottom: 16px; }

/* ===== HIGHLIGHT EFFECT ("Just Numbers") ===== */
.highlight-text {
  background: linear-gradient(to right, #a5b4fc, #d8b4fe);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 8px;
  padding: 0 4px 4px;
  display: inline;
}
.highlight-text.revealed {
  transition: background-size 2s linear 0.5s;
  background-size: 100% 100%;
}
.about-stats-row {
  display: flex;
  gap: 0;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1.5px solid var(--border);
}
.stat-item {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.stat-item:first-child { padding-left: 0; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-lbl { display: block; font-size: 0.76rem; color: var(--ink-light); font-weight: 500; margin-top: 5px; line-height: 1.35; }
.about-interests { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.interest-tag {
  padding: 6px 14px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  font-size: 0.78rem; font-weight: 500; color: var(--ink-mid);
  transition: border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.interest-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ===== EXPERTISE ===== */
.expertise { padding: 112px 0; background: var(--bg-white); }
.expertise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 52px;
}
.exp-card {
  background: var(--bg-white);
  padding: 40px 36px;
  transition: background var(--t) var(--ease);
  cursor: default;
}
.exp-card:hover { background: var(--bg); }
.exp-icon {
  width: 44px; height: 44px;
  color: var(--navy);
  margin-bottom: 20px;
  transition: color var(--t) var(--ease);
}
.exp-card:hover .exp-icon { color: var(--gold); }
.exp-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.exp-card p { font-size: 0.875rem; color: var(--ink-mid); line-height: 1.75; }

/* ===== FEATURED PROJECTS (LIGHT) ===== */
.featured-projects {
  padding: 112px 0;
  background: var(--bg);  /* LIGHT - not dark navy */
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}
.section-header-row .section-title { margin-bottom: 0; }

/* Dark project cards work beautifully on the light bg */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.project-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.project-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(13,27,42,0.25); border-color: rgba(184,146,46,0.3); }
.project-card:hover::before { transform: scaleX(1); }
.project-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.project-tag {
  padding: 3px 9px;
  background: rgba(184,146,46,0.12);
  border: 1px solid rgba(184,146,46,0.22);
  border-radius: 99px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-light);
}
.project-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #FFFFFF; margin-bottom: 10px; line-height: 1.3; }
.project-card p { font-size: 0.875rem; color: rgba(255,255,255,0.50); line-height: 1.75; margin-bottom: 22px; }
.project-outcome {
  padding: 11px 14px;
  background: rgba(184,146,46,0.07);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8rem; color: var(--gold-light); font-style: italic; line-height: 1.5;
}
.project-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 18px;
  font-size: 0.82rem; font-weight: 600; color: var(--gold);
  transition: gap var(--t) var(--ease);
}
.project-link:hover { gap: 9px; }

/* ===== BLOG PREVIEW - 2/3 + 1/3 layout ===== */
.blog-preview { padding: 112px 0; background: var(--bg-white); }
.blog-split { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; margin-bottom: 48px; }
.blog-hero-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  display: flex; flex-direction: column;
}
.blog-hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-hero-img {
  height: 240px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(184,146,46,0.2), transparent);
}
.blog-hero-img svg { width: 52px; height: 52px; color: rgba(255,255,255,0.35); }
.blog-hero-body { padding: 28px 26px; flex: 1; }
.blog-hero-body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.blog-hero-body p { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.75; }
.blog-hero-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }

.blog-stack { display: flex; flex-direction: column; gap: 20px; }
.blog-mini-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 24px 22px;
  display: flex; flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  flex: 1;
}
.blog-mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-mini-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.35; }
.blog-mini-card p { font-size: 0.84rem; color: var(--ink-mid); line-height: 1.7; flex: 1; }
.blog-mini-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }

.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-cat { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.blog-date { font-size: 0.76rem; color: var(--ink-light); }
.read-time { font-size: 0.74rem; color: var(--ink-light); }
.read-more { font-size: 0.8rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--t) var(--ease); }
.read-more:hover { gap: 8px; }

/* ===== AFFILIATIONS - horizontal strip ===== */
.affiliations { padding: 96px 0; background: var(--bg); }
.affiliations-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 52px;
}
.affil-item {
  padding: 32px 26px;
  background: var(--bg-white);
  border-right: 1.5px solid var(--border);
  transition: background var(--t) var(--ease);
}
.affil-item:last-child { border-right: none; }
.affil-item:hover { background: var(--bg); }
.affil-icon { width: 36px; height: 36px; color: var(--navy); margin-bottom: 16px; }
.affil-item:hover .affil-icon { color: var(--gold); }
.affil-item h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.affil-item p { font-size: 0.78rem; color: var(--ink-light); line-height: 1.6; }

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,146,46,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.contact-cta-inner { position: relative; z-index: 2; }
.contact-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.55); margin-bottom: 40px; max-width: 440px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.contact-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-links { display: flex; gap: 28px; justify-content: center; margin-top: 40px; }
.contact-link { font-size: 0.82rem; color: rgba(255,255,255,0.42); font-weight: 500; transition: color var(--t) var(--ease); display: flex; align-items: center; gap: 6px; }
.contact-link:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: #080F18; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand { max-width: 260px; }
.footer-logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: #FFFFFF; margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.38); line-height: 1.75; }
.footer-col h5 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; transition: color var(--t) var(--ease); }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.42);
  transition: border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(184,146,46,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .section-title { color: #FFFFFF; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 16px; }
.page-hero .section-desc { color: rgba(255,255,255,0.52); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color var(--t) var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); font-weight: 500; }

/* ===== PROJECTS PAGE ===== */
.projects-section { padding: 88px 0; background: var(--bg-white); }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500; color: var(--ink-mid);
  cursor: pointer;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--navy); background: var(--navy); color: #FFFFFF; }
.projects-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-full-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-white);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  display: flex; flex-direction: column;
}
.project-full-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.project-full-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.project-full-img svg { width: 52px; height: 52px; color: rgba(255,255,255,0.3); }
.project-full-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top right, rgba(184,146,46,0.18), transparent); }
.project-full-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.project-full-body .project-tags { margin-bottom: 12px; }
.project-full-body .project-tag { background: var(--gold-pale); color: #7A5E18; border-color: rgba(184,146,46,0.18); }
.project-full-body h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.35; }
.project-full-body p { font-size: 0.875rem; color: var(--ink-mid); line-height: 1.75; flex: 1; margin-bottom: 18px; }
.project-full-outcome { padding: 11px 14px; background: var(--bg); border-left: 2px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.8rem; color: var(--ink-mid); font-style: italic; }

/* ===== BLOG PAGE ===== */
.blog-section { padding: 88px 0; background: var(--bg-white); }
.blog-featured-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; margin-bottom: 64px; }
.blog-featured-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-md);
  height: 360px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-featured-img svg { width: 60px; height: 60px; color: rgba(255,255,255,0.28); }
.blog-featured-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top right, rgba(184,146,46,0.22), transparent); }
.blog-featured-content { display: flex; flex-direction: column; justify-content: center; padding: 8px 0; }
.featured-badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 99px;
  margin-bottom: 18px; width: fit-content;
}
.blog-featured-content h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; line-height: 1.3; }
.blog-featured-content p { font-size: 0.94rem; color: var(--ink-mid); line-height: 1.78; margin-bottom: 24px; }
.blog-articles-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.blog-articles-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.blog-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Blog card (shared) */
.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-card-img svg { width: 44px; height: 44px; color: rgba(255,255,255,0.30); }
.blog-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top right, rgba(184,146,46,0.18), transparent); }
.blog-card-body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: 0.86rem; color: var(--ink-mid); line-height: 1.72; flex: 1; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }

/* Newsletter */
.newsletter-section { padding: 88px 0; background: var(--navy); text-align: center; }
.newsletter-inner { max-width: 520px; margin: 0 auto; }
.newsletter-section .section-title { color: #FFFFFF; }
.newsletter-section p { color: rgba(255,255,255,0.52); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input {
  padding: 13px 18px;
  border: 1.5px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  color: #FFFFFF;
  font-family: var(--font-body); font-size: 0.88rem;
  min-width: 260px; outline: none;
  transition: border-color var(--t) var(--ease);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.32); }
.newsletter-form input:focus { border-color: var(--gold); }

/* ===== AOS ===== */
.aos { opacity: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg-white);
  padding: 96px 0;
  border-top: 1.5px solid var(--border);
}
.testimonials .section-title { margin-bottom: 10px; }
.testimonials .section-desc {
  max-width: 560px;
  margin-bottom: 60px;
}

/* Stage — overlapping image + card */
.t-stage {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 0;
  max-width: 900px;
  min-height: 420px;
  position: relative;
}
.t-img-wrap {
  width: 420px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}
.t-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Gold gradient overlay on image */
.t-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(184,146,46,0.18) 100%);
  pointer-events: none;
}

.t-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 44px 44px 80px;
  margin-left: -60px;
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

/* Large decorative quote mark */
.t-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: 22px; left: 36px;
  pointer-events: none;
  user-select: none;
}

.t-quote {
  font-family: var(--font-body);
  font-size: 1.0rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin: 0 0 28px 0;
  font-style: italic;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-person-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.t-person-title {
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-top: 2px;
}
.t-person-rule {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Social link */
.t-socials {
  margin-top: 18px;
}
.t-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-rule);
  padding: 5px 12px;
  border-radius: 99px;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.t-social-btn:hover {
  background: var(--gold-pale);
  color: var(--gold-light);
}
.t-social-btn svg {
  width: 13px; height: 13px;
  stroke: currentColor;
  fill: none;
}

/* Navigation */
.t-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.t-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
  flex-shrink: 0;
}
.t-btn:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.t-btn svg {
  width: 16px; height: 16px;
  stroke: var(--ink-mid);
  fill: none;
  pointer-events: none;
}
.t-btn:hover svg { stroke: var(--gold); }

.t-dots {
  display: flex; gap: 8px; align-items: center;
}
.t-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
  border: none;
  padding: 0;
}
.t-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Facebook feed — 3-card grid */
.testimonials .section-title { margin-bottom: 48px; }
.fb-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fb-card-item {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.fb-card-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.fb-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8f0fe;
  flex-shrink: 0;
}
.fb-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.fb-card-item:hover .fb-card-img img { transform: scale(1.05); }
.fb-card-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fb-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fb-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1877F2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fb-brand svg { width: 16px; height: 16px; flex-shrink: 0; }
.fb-date { font-size: 0.73rem; color: var(--ink-light); }
.fb-post-text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-mid);
  margin: 0;
  white-space: pre-line;
}
.fb-view-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1877F2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}
.fb-no-image {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.fb-no-image svg { width: 64px; height: 64px; }
.fb-fallback {
  text-align: center;
  padding: 60px 20px;
  max-width: 480px;
  margin: 0 auto;
}
.fb-fallback-icon { margin-bottom: 16px; }
.fb-fallback-icon svg { width: 52px; height: 52px; }
.fb-fallback p {
  margin-bottom: 28px;
  color: var(--ink-mid);
  font-size: 1rem;
  line-height: 1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .fb-track { grid-template-columns: repeat(2, 1fr); }
  .affiliations-strip { grid-template-columns: 1fr 1fr; }
  .affil-item:nth-child(2) { border-right: none; }
  .affil-item:nth-child(3) { border-top: 1.5px solid var(--border); }
  .affil-item:nth-child(4) { border-right: none; border-top: 1.5px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .projects-full-grid { grid-template-columns: 1fr 1fr; }
  .blog-full-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--navy);
    justify-content: center; align-items: center;
    gap: 32px; z-index: 100;
  }
  .navbar-links.open a { font-size: 1.4rem; }
  .navbar-hamburger { display: flex; }

  .hero-service-tags { display: none; }
  .hero-title-rule { width: 120px; }
  .hero-layout { grid-template-columns: 1fr; gap: 36px; padding-top: 100px; }
  .hero-stats-panel { grid-template-columns: repeat(4, 1fr); }
  .hero-stat { padding: 18px 16px; }
  .hero-stat-num { font-size: 1.6rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { aspect-ratio: 3/2; max-width: 100%; }
  .about-badge { bottom: -14px; right: 14px; }
  .about-stats-row { gap: 0; }

  .expertise-layout { grid-template-columns: 1fr; }

  .projects-grid { grid-template-columns: 1fr; }
  .blog-split { grid-template-columns: 1fr; }
  .affiliations-strip { grid-template-columns: 1fr; }
  .affil-item { border-right: none !important; border-bottom: 1.5px solid var(--border); }
  .affil-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-header-row { flex-direction: column; align-items: flex-start; }

  .blog-featured-layout { grid-template-columns: 1fr; }
  .blog-featured-img { height: 220px; }
  .projects-full-grid { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }

  /* Facebook feed — single column on mobile */
  .fb-track { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-stats-panel { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .about-stats-row { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; padding: 0 16px 16px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .contact-cta-buttons { flex-direction: column; align-items: center; }
}

/* ===== FLOW SCROLL ===== */
[data-flow-section] {
  position: relative;
  overflow: hidden;
}

.flow-art-container {
  will-change: transform;
  transform-origin: bottom left;
}
