/* ==========================================================
   TREGER CONSULTING — Global Stylesheet
   ========================================================== */

/* ── Google Fonts loaded in HTML <head> ──
   Cormorant Garamond (headings) + DM Sans (body)
   ────────────────────────────────────────────── */

:root {
  /* backgrounds */
  --bg-primary:    #F8F6F1;
  --bg-white:      #FFFFFF;
  --bg-dark:       #1B1F1D;

  /* text */
  --text-heading:  #1B1F1D;
  --text-body:     #4B4942;
  --text-light:    #7A776E;

  /* accents */
  --accent:        #2C3E35;
  --accent-light:  #3D5549;
  --gold:          #B09060;
  --gold-muted:    #C4AD8A;

  /* structural */
  --divider:       #E3E0D8;
  --white:         #FFFFFF;

  /* fonts */
  --font-heading:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:     "DM Sans", system-ui, -apple-system, sans-serif;

  /* layout */
  --max-width:     1100px;
  --nav-height:    72px;
}

/* =========================
   RESET & BASE
   ========================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   SHARED KEYFRAMES
   ========================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes lineGrow {
  from { width: 0; }
  to   { width: 48px; }
}

@keyframes scrollPulse {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

@keyframes arrowBob {
  0%, 100% { transform: translateY(0); opacity: 0.25; }
  50% { transform: translateY(6px); opacity: 0.45; }
}

/* =========================
   SCROLL REVEAL (pure CSS)
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: fadeUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 28%;
  }
}

@supports not (animation-timeline: view()) {
  .reveal       { animation-delay: 0.1s; }
  .reveal-d1    { animation-delay: 0.15s; }
  .reveal-d2    { animation-delay: 0.25s; }
  .reveal-d3    { animation-delay: 0.35s; }
}

/* =========================
   NAVIGATION
   ========================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0 48px;
  background: rgba(248, 246, 241, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}

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

.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
  transition: color 0.35s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-linkedin {
  display: flex;
  align-items: center;
  color: var(--text-light);
  transition: color 0.3s ease;
  margin-left: 8px;
}

.nav-linkedin:hover {
  color: var(--accent);
}

.nav-linkedin svg {
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-heading);
}

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1E2D26 0%, #2C3E35 55%, #3D5549 100%);
  text-align: center;
  padding: 140px 48px 100px;
}

.hero-watermark {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  opacity: 0.04;
  pointer-events: none;
  animation: wmBreathe 6s ease-in-out 2s infinite;
}

@keyframes wmBreathe {
  0%, 100% { opacity: 0.04; transform: translateY(-50%); }
  50%      { opacity: 0.06; transform: translateY(-50%); }
}

.hero-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 32px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-muted);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  animation: softFade 0.9s ease 0.8s both;
}

@keyframes softFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
  margin: 32px auto;
  opacity: 0;
  transform: scaleX(0);
  animation: divGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
}

@keyframes divGrow {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.15s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  background: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta:hover { color: var(--white); }
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta span, .hero-cta svg { position: relative; z-index: 1; }
.hero-cta svg { width: 14px; height: 14px; transition: transform 0.35s ease; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-muted);
  background: transparent;
  border: none;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero-cta-ghost:hover { color: var(--white); }
.hero-cta-ghost svg { width: 14px; height: 14px; transition: transform 0.35s ease; }
.hero-cta-ghost:hover svg { transform: translateY(3px); }

.hero-scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-arrow svg {
  display: block;
  animation: arrowBob 2.4s ease-in-out infinite;
}

/* =========================
   PAGE HERO (smaller, for interior pages)
   ========================= */
.page-hero {
  position: relative;
  padding: 160px 48px 80px;
  background: var(--accent);
  text-align: center;
}

.page-hero .hero-eyebrow {
  animation-delay: 0.1s;
}

.page-hero .hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  animation-delay: 0.25s;
}

.page-hero .hero-sub {
  animation-delay: 0.4s;
}

/* =========================
   SECTION UTILITIES
   ========================= */
.section {
  padding: 100px 48px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: lineGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.section-text p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 20px;
}

.section-text p:last-child {
  margin-bottom: 0;
}

/* =========================
   ABOUT / INTRO (homepage)
   ========================= */
.about {
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* contact inline under about text */
.about-contact-inline {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}

.about-contact-inline-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-contact-inline a {
  font-size: 15px;
  color: var(--text-heading);
  transition: color 0.3s ease;
}

.about-contact-inline a:hover {
  color: var(--accent);
}

.about-contact-sep {
  color: var(--text-light);
}

/* Contact icons (S1g — outline stroke, context-aware) */
.ci-icon {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  vertical-align: -2px;
  margin-right: 4px;
  flex-shrink: 0;
}

/* Gold on dark backgrounds */
.footer .ci-icon {
  width: 14px;
  height: 14px;
  stroke: var(--gold-muted);
  vertical-align: -2px;
}

.cta-link .ci-icon {
  stroke: var(--gold-muted);
}

.about-badges {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 36px;
}

.about-badges img {
  height: 60px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(30%);
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.about-badges img[alt="Super Lawyers"] {
  height: 82px;
}

.about-badges img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.about-sidebar {
  position: sticky;
  top: 110px;
}

/* =========================
   CREDENTIALS CARD
   ========================= */
.cred-card {
  padding: 34px;
  padding-bottom: 0;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(27,31,29,0.18);
  overflow: hidden;
}

.cred-photo {
  width: 68%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 40%;
  margin: 0 auto 20px;
  filter: grayscale(15%);
  transition: filter 0.5s ease;
}

.cred-card:hover .cred-photo {
  filter: grayscale(0%);
}

.cred-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  text-align: center;
}

.cred-role {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold-muted);
  margin-bottom: 0;
  text-align: center;
}

.cred-divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
  margin: 22px 0;
}

.cred-card-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-muted);
  margin-bottom: 22px;
}

.cred-item {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cred-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cred-school {
  font-family: var(--font-heading);
  font-size: 17.5px;
  font-weight: 500;
  margin-bottom: 3px;
}

.cred-school a {
  color: var(--white);
  transition: opacity 0.3s ease;
}

.cred-school a:hover {
  opacity: 0.72;
}

.cred-detail {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.cred-detail em {
  font-style: italic;
  color: var(--gold);
}

.cred-bar {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  background: rgba(0,0,0,0.15);
  margin: 22px -34px 0;
  padding: 10px 34px;
}

.cred-bar a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.cred-bar a:hover {
  color: rgba(255,255,255,0.7);
}

/* =========================
   SERVICES
   ========================= */
.services {
  background: var(--bg-primary);
}

.services-list {
  max-width: var(--max-width);
  margin: 52px auto 0;
}

.service-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 44px 0;
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-item:nth-child(1) { animation-delay: 0.05s; }
.service-item:nth-child(2) { animation-delay: 0.15s; }
.service-item:nth-child(3) { animation-delay: 0.25s; }
.service-item:nth-child(4) { animation-delay: 0.35s; }
.service-item:nth-child(5) { animation-delay: 0.45s; }

@supports (animation-timeline: view()) {
  .service-item {
    animation: fadeUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 32%;
    animation-delay: 0s;
  }
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 1px;
  background: var(--divider);
}

.service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item:hover::after {
  width: 100%;
}

.service-left {
  position: sticky;
  top: 120px;
  align-self: start;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 7px;
  color: var(--text-heading);
  transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item:hover .service-name {
  color: var(--accent);
}

.service-tag {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

.service-body {
  padding-top: 4px;
}

.service-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 16px;
}

.service-body p:last-child {
  margin-bottom: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

.service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-link:hover::after {
  width: calc(100% - 20px);
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* =========================
   BADGES
   ========================= */
.badges {
  background: var(--bg-white);
  padding: 72px 48px;
}

.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}

.badges-row img {
  height: 68px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(30%);
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.badges-row img[alt="Super Lawyers"] {
  height: 82px;
}

.badges-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* =========================
   CTA BAND
   ========================= */
.cta-band {
  background: var(--accent);
  padding: 88px 48px;
  text-align: center;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-shield-col {
  flex: 0 0 auto;
}

.cta-text-col {
  text-align: left;
}

/* Forge animation stage */
.forge-stage {
  width: 180px;
  height: 180px;
  position: relative;
}

.forge-stage img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.forge-shield,
.forge-sword,
.forge-full {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.forge-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,144,96,0.35) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Animation plays only when .forge-active is added */
.forge-active .forge-shield {
  animation: forge-shield 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.forge-active .forge-sword {
  animation: forge-sword 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.forge-active .forge-glow {
  animation: forge-glow 1.2s ease 1.0s forwards;
}

.forge-active .forge-full {
  animation: forge-reveal 0.6s ease 1.8s forwards;
}

@keyframes forge-shield {
  0%   { opacity: 0; transform: scale(0.3) rotate(-10deg); filter: blur(4px); }
  60%  { opacity: 0.8; filter: blur(1px); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0); }
}

@keyframes forge-sword {
  0%   { opacity: 0; transform: translateY(-40px) scale(0.5); filter: blur(4px); }
  60%  { opacity: 0.8; filter: blur(1px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes forge-glow {
  0%   { width: 0; height: 0; opacity: 1; }
  50%  { width: 250px; height: 250px; opacity: 0.8; }
  100% { width: 300px; height: 300px; opacity: 0; }
}

@keyframes forge-reveal {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

.cta-band .section-label {
  justify-content: flex-start;
  color: var(--gold-muted);
}

.cta-band .section-label::before {
  background: var(--gold-muted);
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  max-width: 480px;
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: var(--white);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  background: var(--white);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover {
  color: var(--white);
}

.cta-btn:hover::before {
  transform: translateX(0);
}

.cta-btn span,
.cta-btn svg {
  position: relative;
  z-index: 1;
}

.cta-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

/* =========================
   BLOG LIST
   ========================= */
.blog-list {
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  padding: 36px 0;
  border-top: 1px solid var(--divider);
  position: relative;
  transition: background 0.3s ease;
}

.blog-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-item:hover::after {
  width: 100%;
}

.blog-date {
  font-size: 13px;
  color: var(--text-light);
  padding-top: 4px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 8px;
  transition: color 0.35s ease;
}

.blog-item:hover .blog-title {
  color: var(--accent);
}

.blog-excerpt {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 12px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

.blog-read-more svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-item:hover .blog-read-more svg {
  transform: translateX(4px);
}

/* =========================
   TEAM PAGE
   ========================= */
.team-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.team-photo {
  width: 100%;
  border-radius: 40%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
  transition: filter 0.5s ease;
}

.team-photo:hover {
  filter: grayscale(0%);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.team-role-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
}

.team-bio p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 18px;
}

.team-bio p:last-child {
  margin-bottom: 0;
}

.team-industries {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}

.team-industries-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.team-industries p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

/* =========================
   CONTACT FORM AREA
   ========================= */
.contact-intro {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 16px;
}

.form-placeholder {
  max-width: 600px;
  margin: 48px auto 0;
  padding: 48px;
  border: 1px dashed var(--divider);
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

/* =========================
   AUDIT SCOPE
   ========================= */
.audit-list {
  max-width: var(--max-width);
  margin: 0 auto;
}

.audit-category {
  padding: 36px 0;
  border-top: 1px solid var(--divider);
}

.audit-category-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.audit-category p,
.audit-category li {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-body);
}

.audit-category ul {
  list-style: none;
  padding: 0;
}

.audit-category li {
  padding: 5px 0 5px 20px;
  position: relative;
}

.audit-category li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.48);
  padding: 68px 48px 42px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-muted);
  margin-bottom: 18px;
}

.footer p,
.footer a {
  font-size: 14px;
  line-height: 1.85;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.4;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 900px) {
  .nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-linkedin {
    margin-left: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 68px 24px;
  }

  .page-hero {
    padding: 130px 24px 60px;
  }

  .hero {
    padding: 120px 24px 80px;
    min-height: 60vh;
  }

  .hero-content {
    padding: 0 12px;
  }

  .hero-watermark {
    right: 50%;
    transform: translate(50%, -50%);
    width: 280px;
    height: 280px;
    opacity: 0.02;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-sidebar {
    position: static;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0;
  }

  .service-left {
    position: static;
  }

  .service-name {
    font-size: 20px;
  }

  .service-body p {
    font-size: 14px;
    line-height: 1.8;
  }

  .badges {
    padding: 52px 24px;
  }

  .badges-row {
    gap: 40px;
  }

  .badges-row img {
    height: 52px;
  }

  .cta-band {
    padding: 64px 24px;
  }

  .cta-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .cta-text-col {
    text-align: center;
  }

  .cta-text-col .section-label {
    justify-content: center;
  }

  .cta-heading {
    margin: 0 auto 28px;
  }

  .cta-row {
    justify-content: center;
  }

  .forge-stage {
    width: 140px;
    height: 140px;
  }

  .footer {
    padding: 48px 24px 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .team-profile {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .team-photo {
    max-width: 260px;
    margin: 0 auto;
  }

  .blog-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ── Mobile nav overlay ── */
@media (max-width: 900px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 28px 32px 36px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    animation: navSlide 0.25s ease;
  }

  @keyframes navSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links.open a {
    font-size: 14px;
    padding: 6px 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .nav {
    position: relative;
  }
}
