/* ============================================================
   KANG NIAM THEME — MAIN STYLESHEET
   Dark Modern Luxurious | Gold · Red · Cyan
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&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=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Background */
  --bg-0:         #05050d;
  --bg-1:         #09090f;
  --bg-2:         #0e0e1a;
  --bg-card:      #111120;
  --bg-hover:     #161628;

  /* Gold palette */
  --gold:         #D4AF37;
  --gold-light:   #F2C94C;
  --gold-dim:     #9C7E1A;
  --gold-glow:    rgba(212,175,55,0.18);

  /* Accent */
  --red:          #E63946;
  --red-glow:     rgba(230,57,70,0.20);
  --cyan:         #00D4FF;
  --cyan-glow:    rgba(0,212,255,0.15);

  /* Text */
  --text-100:     #F5F3EC;
  --text-200:     #C8C5B8;
  --text-400:     #7A7888;
  --text-500:     #4E4C58;

  /* Border */
  --border-gold:  rgba(212,175,55,0.25);
  --border-dim:   rgba(255,255,255,0.07);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --section-gap: clamp(5rem, 10vw, 9rem);
  --container:   1200px;

  /* Transitions */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-gold:    cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:     0.2s;
  --dur-mid:      0.4s;
  --dur-slow:     0.7s;

  /* Shadows */
  --shadow-gold:  0 0 40px rgba(212,175,55,0.12), 0 4px 24px rgba(0,0,0,0.6);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow-cyan: 0 0 30px rgba(0,212,255,0.2);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-0);
  color: var(--text-100);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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;
  z-index: 9999;
  opacity: 0.4;
}

::selection { background: var(--gold); color: var(--bg-0); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease-gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography Scale ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-100);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p { color: var(--text-200); line-height: 1.75; }
small { font-size: 0.8rem; color: var(--text-400); }

.text-gold   { color: var(--gold); }
.text-cyan   { color: var(--cyan); }
.text-red    { color: var(--red); }
.italic      { font-style: italic; }

/* ── Container & Layout ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section { padding: var(--section-gap) 0; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-200);
  max-width: 52ch;
  line-height: 1.75;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: var(--bg-0);
  font-weight: 600;
  box-shadow: 0 0 30px var(--gold-glow), 0 4px 16px rgba(0,0,0,0.4);
}
.btn-gold:hover {
  background-position: 100% 0;
  box-shadow: 0 0 50px rgba(212,175,55,0.4), 0 6px 24px rgba(0,0,0,0.5);
  transform: translateY(-2px);
  color: var(--bg-0);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-cyan {
  background: transparent;
  border: 1px solid rgba(0,212,255,0.4);
  color: var(--cyan);
}
.btn-cyan:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-200);
  border: 1px solid var(--border-dim);
  font-size: 0.8rem;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Icon in button */
.btn .icon-arrow {
  transition: transform var(--dur-fast) var(--ease-out);
  display: inline-block;
}
.btn:hover .icon-arrow { transform: translateX(4px); }

/* ── Decorative Gold Divider ──────────────────────────────── */
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}
.divider-gold.center { margin: 1.5rem auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); width: 120px; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 2rem;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, var(--gold-dim) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}
.card:hover { 
  background: var(--bg-hover); 
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }

/* ── ======================================================= */
/*    HEADER / NAVIGATION                                     */
/* ── ======================================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--dur-mid) var(--ease-out);
}
#site-header.scrolled {
  background: rgba(5,5,13,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.85rem 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-100);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img { height: 42px; width: auto; }
.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-0);
  box-shadow: 0 0 20px var(--gold-glow);
}
.logo-text .name { display: block; font-size: 1.1rem; line-height: 1; }
.logo-text .tagline { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-200);
  transition: color var(--dur-fast) var(--ease-gold);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-fast) var(--ease-out);
}
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }

/* Dropdown */
.dropdown-toggle .arrow {
  font-size: 0.65rem;
  opacity: 0.6;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav-item:hover .dropdown-toggle .arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur-fast) var(--ease-out);
  box-shadow: var(--shadow-gold), 0 24px 60px rgba(0,0,0,0.7);
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--text-200);
  border-radius: 2px;
  transition: all var(--dur-fast) var(--ease-gold);
}
.dropdown-item:hover { background: var(--bg-hover); color: var(--gold); padding-left: 1.3rem; }

/* CTA */
.header-cta { display: flex; align-items: center; gap: 0.75rem; }

/* Hamburger Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-200);
  border-radius: 1px;
  transition: all var(--dur-fast) var(--ease-out);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 100vw);
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--border-gold);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  transition: right var(--dur-mid) var(--ease-out);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-200);
  border-bottom: 1px solid var(--border-dim);
  transition: color var(--dur-fast) var(--ease-gold);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-sub { padding-left: 1rem; }
.mobile-nav-sub a {
  display: block;
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-400);
  border-bottom: 1px solid var(--border-dim);
  transition: color var(--dur-fast) var(--ease-gold);
}
.mobile-nav-sub a:hover { color: var(--gold); }

/* ── ======================================================= */
/*    HERO SECTION                                            */
/* ── ======================================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Background mesh */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,175,55,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(0,212,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 10%, rgba(230,57,70,0.04) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 600;
  line-height: 1.06;
  margin-bottom: 0.5rem;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero-title .outline-text {
  -webkit-text-stroke: 1px rgba(212,175,55,0.4);
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-200);
  line-height: 1.75;
  margin: 1.5rem 0 2.5rem;
  max-width: 46ch;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dim);
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-400);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-avatar-wrap {
  position: relative;
  width: clamp(280px, 35vw, 450px);
  aspect-ratio: 3/4;
}
.hero-avatar-frame {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  overflow: hidden;
}
.hero-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg-card) 50%, var(--bg-2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-400);
  font-size: 0.8rem;
}
.hero-avatar-placeholder .avatar-icon { font-size: 3rem; opacity: 0.3; }
.hero-gold-corner {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 8px 0 0;
  opacity: 0.6;
}
.hero-gold-corner-bl {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  border-radius: 0 0 0 8px;
  opacity: 0.4;
}

/* Floating badges on hero */
.hero-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-gold);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
.hero-badge.badge-since {
  bottom: 15%;
  right: -10%;
  animation-delay: 0s;
}
.hero-badge.badge-exp {
  top: 15%;
  left: -10%;
  animation-delay: 2s;
}
.hero-badge .badge-icon { font-size: 1.2rem; }
.hero-badge .badge-text { font-family: var(--font-mono); font-size: 0.7rem; }
.hero-badge .badge-value { display: block; color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.hero-badge .badge-label { display: block; color: var(--text-400); font-size: 0.65rem; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-400);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── ======================================================= */
/*    MARQUEE / TICKER                                        */
/* ── ======================================================= */
.marquee-section {
  padding: 1.5rem 0;
  background: linear-gradient(90deg, var(--bg-1), var(--bg-2), var(--bg-1));
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-400);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ======================================================= */
/*    ABOUT SECTION                                           */
/* ── ======================================================= */
.about-section { position: relative; }
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  aspect-ratio: 4/5;
  background: var(--bg-card);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-card));
  color: var(--text-400);
  font-size: 0.8rem;
}
.about-accent-box {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-accent-box .big-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-accent-box .label {
  font-size: 0.72rem;
  color: var(--text-400);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.skill-tag {
  padding: 0.35rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-200);
  transition: all var(--dur-fast) var(--ease-gold);
  font-family: var(--font-mono);
}
.skill-tag:hover { border-color: var(--gold); color: var(--gold); }

.client-logos {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dim);
}
.client-logos-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-500);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}
.client-logos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.client-name {
  font-size: 0.75rem;
  color: var(--text-400);
  padding: 0.3rem 0.7rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 2px;
  transition: all var(--dur-fast);
}
.client-name:hover { color: var(--gold); border-color: var(--border-gold); }

/* ── ======================================================= */
/*    SERVICES SECTION                                        */
/* ── ======================================================= */
.services-section {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-header .section-subtitle { margin: 1rem auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
}
.service-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-hover);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all var(--dur-mid) var(--ease-out);
}
.service-card:hover .service-icon {
  background: var(--gold-glow);
  box-shadow: 0 0 20px var(--gold-glow);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-400); line-height: 1.7; }

.service-features {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-feat {
  font-size: 0.78rem;
  color: var(--text-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-feat::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── ======================================================= */
/*    PORTFOLIO SECTION                                       */
/* ── ======================================================= */
.portfolio-section {}

.portfolio-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-400);
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-gold);
  letter-spacing: 0.04em;
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--gold);
  border-color: var(--border-gold);
  background: var(--gold-glow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border-dim);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-card);
  transition: all var(--dur-mid) var(--ease-out);
}
.portfolio-item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.portfolio-item.featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.portfolio-item:hover .portfolio-img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,5,13,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-card));
  color: var(--text-500);
  font-size: 0.75rem;
  gap: 0.5rem;
}
.portfolio-placeholder .ph-icon { font-size: 2rem; opacity: 0.3; }

.portfolio-cat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.portfolio-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.portfolio-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.72rem;
  color: var(--text-400);
  align-items: center;
}
.portfolio-link-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* ── ======================================================= */
/*    WHY SECTION                                             */
/* ── ======================================================= */
.why-section {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.why-section::after {
  content: '"DIGITAL"';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 18rem);
  font-weight: 700;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,175,55,0.04);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.why-point {
  display: flex;
  gap: 1.25rem;
}
.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
  flex-shrink: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}
.why-point:hover .why-number { opacity: 1; }
.why-point h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-point p { font-size: 0.9rem; color: var(--text-400); }

/* ── ======================================================= */
/*    CASES / TESTIMONIALS                                    */
/* ── ======================================================= */
.cases-section {}

.cases-header { text-align: center; margin-bottom: 4rem; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: all var(--dur-mid) var(--ease-out);
}
.case-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.case-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.case-rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.star { color: var(--gold); font-size: 0.8rem; }
.case-text {
  font-size: 0.9rem;
  color: var(--text-200);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.case-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dim);
}
.case-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--bg-hover));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.case-avatar img { width: 100%; height: 100%; object-fit: cover; }
.case-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.1rem; }
.case-company { font-size: 0.72rem; color: var(--text-400); font-family: var(--font-mono); }

/* ── ======================================================= */
/*    INSIGHT / BLOG SECTION                                  */
/* ── ======================================================= */
.insight-section {}
.insight-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.insight-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.insight-featured {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--dur-mid) var(--ease-out);
}
.insight-featured:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.insight-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.insight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.insight-featured:hover .insight-img img { transform: scale(1.04); }
.insight-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-500);
  font-size: 2rem;
}

.insight-body { padding: 1.75rem; }
.insight-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.insight-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  transition: color var(--dur-fast);
}
.insight-featured:hover .insight-title { color: var(--gold); }
.insight-excerpt { font-size: 0.9rem; color: var(--text-400); margin-bottom: 1.25rem; }
.insight-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  color: var(--text-500);
  font-family: var(--font-mono);
}
.insight-meta .dot { opacity: 0.4; }

.insight-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.insight-mini {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 1.25rem;
  transition: all var(--dur-fast) var(--ease-gold);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.insight-mini:hover {
  border-color: var(--border-gold);
  background: var(--bg-hover);
}
.insight-mini .insight-tag { font-size: 0.6rem; }
.insight-mini .insight-title { font-size: 1rem; margin-bottom: 0.5rem; }
.insight-mini .insight-meta { font-size: 0.67rem; }

/* ── ======================================================= */
/*    FAQ SECTION                                             */
/* ── ======================================================= */
.faq-section {}
.faq-header { text-align: center; margin-bottom: 4rem; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-gold);
}
.faq-item.open { border-color: var(--border-gold); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-200);
  transition: color var(--dur-fast) var(--ease-gold);
}
.faq-question:hover,
.faq-item.open .faq-question { color: var(--text-100); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--text-400);
  transition: all var(--dur-fast) var(--ease-out);
}
.faq-item.open .faq-icon {
  background: var(--gold-glow);
  border-color: var(--border-gold);
  color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-mid) var(--ease-out);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-400);
  line-height: 1.8;
  border-top: 1px solid var(--border-dim);
  padding-top: 1rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── ======================================================= */
/*    CTA / CONTACT BANNER                                    */
/* ── ======================================================= */
.cta-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 70%);
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.cta-section p {
  font-size: 1.05rem;
  color: var(--text-200);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.wa-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-400);
  margin-top: 1.25rem;
  justify-content: center;
}
.wa-number .wa-icon { color: #25D366; font-size: 1rem; }

/* ── ======================================================= */
/*    CONTACT SECTION                                         */
/* ── ======================================================= */
.contact-section {}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info {}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.7rem; color: var(--text-500); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); margin-bottom: 0.2rem; }
.contact-item-value { font-size: 0.95rem; color: var(--text-200); transition: color var(--dur-fast); }
.contact-item-value:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-400);
  transition: all var(--dur-fast) var(--ease-gold);
}
.social-link:hover { border-color: var(--border-gold); color: var(--gold); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-400);
}
.form-input,
.form-textarea,
.form-select {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-100);
  transition: border-color var(--dur-fast) var(--ease-gold);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-500); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* ── ======================================================= */
/*    FOOTER                                                  */
/* ── ======================================================= */
#site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-dim);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
#site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: 2rem;
}

.footer-brand {}
.footer-logo { margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-400);
  line-height: 1.75;
  max-width: 30ch;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-400);
  transition: color var(--dur-fast) var(--ease-gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a::before {
  content: '→';
  font-size: 0.65rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--dur-fast) var(--ease-out);
}
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-500);
  font-family: var(--font-mono);
}
.footer-copy span { color: var(--gold); }

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-500);
  font-family: var(--font-mono);
}
.footer-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-gold 2s ease-in-out infinite;
}

/* ── ======================================================= */
/*    INNER PAGE LAYOUTS                                      */
/* ── ======================================================= */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dim);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(212,175,55,0.05) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 55ch; font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-500);
  font-family: var(--font-mono);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-500); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--gold); }

/* ── ======================================================= */
/*    ANIMATIONS — Scroll Reveal                              */
/* ── ======================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ── ======================================================= */
/*    UTILITY                                                 */
/* ── ======================================================= */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.d-none { display: none; }

/* ── ======================================================= */
/*    RESPONSIVE                                              */
/* ── ======================================================= */
@media (max-width: 1100px) {
  .hero-content { gap: 3rem; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .main-nav, .header-cta .btn-outline, .header-cta .btn-gold, .header-cta .btn { display: none; }
  .hamburger { display: flex !important; }
  .mobile-nav { display: block; }

  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2.6rem, 8vw, 4rem); }

  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.featured { grid-column: span 2; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --section-gap: clamp(3.5rem, 8vw, 5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.featured { grid-column: span 1; aspect-ratio: 4/3; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .insight-header { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── ======================================================= */
/*    WORDPRESS ALIGNMENT CLASSES                             */
/* ── ======================================================= */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; text-align: center; }
.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--text-400); text-align: center; margin-top: 0.5rem; }

/* Entry content styles */
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 { margin: 2rem 0 1rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.4rem; }
.entry-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--text-200);
}
.entry-content code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 3px;
  padding: 0.15em 0.4em;
  color: var(--cyan);
}
.entry-content pre {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.entry-content th, .entry-content td { padding: 0.75rem 1rem; border: 1px solid var(--border-dim); }
.entry-content th { background: var(--bg-card); color: var(--gold); text-align: left; }

/* ============================================================
   PAGE TEMPLATES — ADDITIONAL STYLES
   ============================================================ */

/* Archive / Blog Grid */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.archive-grid--3 { grid-template-columns: repeat(3, 1fr); }

.archive-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), border-color var(--t-base);
}
.archive-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.archive-card__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.archive-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.archive-card:hover .archive-card__thumb img { transform: scale(1.05); }

.archive-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.archive-card__meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; color: var(--text-muted);
}
.archive-card__cat {
  background: rgba(212,175,55,.15); color: var(--gold);
  padding: 0.2em 0.6em; border-radius: 99px; font-size: 0.7rem; font-weight: 600;
  text-decoration: none; text-transform: uppercase; letter-spacing: .04em;
}
.archive-card__title { font-size: 1.05rem; font-weight: 700; line-height: 1.4; }
.archive-card__title a { color: var(--text-primary); text-decoration: none; }
.archive-card__title a:hover { color: var(--gold); }
.archive-card__excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.archive-pagination { margin-top: 3rem; display: flex; justify-content: center; gap: 0.5rem; }
.archive-pagination .page-numbers {
  width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text-muted); text-decoration: none; font-size: 0.875rem;
  transition: all var(--t-base);
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover { background: var(--gold); color: var(--bg-0); border-color: var(--gold); }

/* Single Post */
.post-hero { padding: 4rem 0 0; }
.post-hero__cats { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.post-hero__title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.25; margin-bottom: 1rem; }
.post-hero__meta { display: flex; align-items: center; gap: 0.75rem; color: var(--text-muted); font-size: 0.875rem; margin-bottom: 2rem; }
.post-hero__cover { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; max-height: 520px; }
.post-hero__img { width: 100%; height: 100%; object-fit: cover; }
.dot { color: var(--gold); }

.post-body { padding-top: 3rem; }
.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.post-share { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.post-share__label { font-size: 0.875rem; color: var(--text-muted); }

.author-box {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; margin-top: 2.5rem;
}
.author-box__img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.author-box__info { display: flex; flex-direction: column; gap: 0.4rem; }
.author-box__name { font-weight: 700; color: var(--gold); font-size: 1.05rem; }
.author-box__role { font-size: 0.8rem; color: var(--text-muted); }
.author-box__bio { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

.post-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border);
}
.post-nav__next { text-align: right; }
.post-nav__label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: .06em; }
.post-nav__title { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); text-decoration: none; transition: color var(--t-base); }
.post-nav__title:hover { color: var(--gold); }

/* About Page */
.about-page__grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start;
}
.about-page__visual { position: relative; }
.about-page__photo { width: 100%; border-radius: var(--radius-lg); border: 2px solid var(--gold-dim); object-fit: cover; max-height: 520px; }
.about-page__photo-placeholder {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg);
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; font-weight: 900; color: var(--gold); font-family: var(--font-mono);
}
.about-page__badge-stack { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.about-page__heading { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 1.5rem; }
.about-page__body { margin-bottom: 2rem; }
.about-page__skills { margin-bottom: 2rem; }
.about-page__skills-title { font-size: 0.875rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 0.75rem; }
.about-page__stats { display: flex; gap: 2rem; margin-bottom: 2rem; padding: 1.5rem; background: var(--bg-2); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.about-page__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Timeline */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-bottom: 2rem; align-items: center;
}
.timeline-item--left .timeline-item__year { text-align: right; }
.timeline-item--left .timeline-item__card { grid-column: 2; grid-row: 1; }
.timeline-item--right .timeline-item__year { grid-column: 2; grid-row: 1; text-align: left; }
.timeline-item--right .timeline-item__card { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-item__year {
  font-size: 2rem; font-weight: 900; color: var(--gold);
  font-family: var(--font-mono); opacity: 0.7;
}
.timeline-item__card {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem;
}
.timeline-item__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.timeline-item__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Clients Grid */
.clients-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.client-badge {
  padding: 0.6rem 1.25rem; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: 99px;
  font-size: 0.875rem; font-weight: 600; color: var(--text-secondary);
  transition: all var(--t-base);
}
.client-badge:hover { border-color: var(--gold); color: var(--gold); }

/* Portfolio Page */
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.portfolio-filter-btn {
  padding: 0.5rem 1.25rem; border: 1px solid var(--border); border-radius: 99px;
  font-size: 0.8rem; font-weight: 600; text-decoration: none; color: var(--text-muted);
  transition: all var(--t-base); background: transparent; cursor: pointer;
}
.portfolio-filter-btn.is-active,
.portfolio-filter-btn:hover { background: var(--gold); color: var(--bg-0); border-color: var(--gold); }

.portfolio-grid--3 { grid-template-columns: repeat(3, 1fr); }
.portfolio-card__cats { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.5rem; }
.portfolio-card__client { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.portfolio-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.75rem; }
.portfolio-card__year { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-mono); }
.portfolio-card__live { font-size: 0.8rem; color: var(--cyan); text-decoration: none; font-weight: 600; }
.portfolio-card__live:hover { text-decoration: underline; }

/* Portfolio Detail */
.portfolio-hero { position: relative; padding: 3rem 0 2rem; }
.portfolio-hero__cover { position: absolute; inset: 0; overflow: hidden; }
.portfolio-hero__img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; filter: blur(4px); }
.portfolio-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,13,.6), var(--bg-0)); }
.portfolio-hero .container { position: relative; z-index: 2; }
.portfolio-hero__cats { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.portfolio-hero__title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1.25rem; }
.portfolio-hero__live-btn { margin-top: 0.5rem; }

.portfolio-body__grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.portfolio-gallery { margin-top: 2.5rem; }
.portfolio-gallery__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.25rem; }
.portfolio-gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.portfolio-gallery__item { border-radius: var(--radius); overflow: hidden; display: block; border: 1px solid var(--border); }
.portfolio-gallery__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-gallery__item:hover .portfolio-gallery__img { transform: scale(1.04); }

.portfolio-details-card {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; position: sticky; top: 6rem;
}
.portfolio-details-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--gold); }
.portfolio-detail-row { padding: 0.75rem 0; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.2rem; }
.portfolio-detail-row:last-of-type { border-bottom: none; }
.portfolio-detail-row__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.portfolio-detail-row__value { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.portfolio-detail-row__link { color: var(--cyan); text-decoration: none; }
.portfolio-detail-row__link:hover { text-decoration: underline; }
.mt-2 { margin-top: 1.25rem; }
.mt-1 { margin-top: 0.75rem; }
.btn--block { width: 100%; }

/* Cases Pages */
.cases-hero__inner { display: flex; align-items: center; gap: 2rem; padding: 2rem 0; }
.cases-hero__photo { flex-shrink: 0; }
.cases-hero__img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.cases-hero__initials {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--bg-2); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 900; color: var(--gold);
}
.cases-hero__info { flex: 1; }
.cases-hero__name { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; margin: 0.4rem 0; }
.cases-hero__role { color: var(--text-muted); margin: 0.2rem 0; font-size: 0.9rem; }
.cases-hero__location { color: var(--text-muted); font-size: 0.8rem; margin: 0; }

.cases-body__grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.cases-testimony {
  background: var(--bg-2); border-left: 3px solid var(--gold);
  padding: 1.75rem; border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 0 0 2rem 0; position: relative;
}
.cases-testimony__mark { font-size: 5rem; line-height: 0.6; color: var(--gold); opacity: 0.3; font-family: var(--font-display); margin-bottom: 0.5rem; }
.cases-testimony p { font-size: 1.05rem; line-height: 1.75; color: var(--text-primary); font-style: italic; margin: 0; }

.cases-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.case-card--full { padding: 2rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 1rem; transition: border-color var(--t-base); }
.case-card--full:hover { border-color: var(--gold); }
.cases-review-cta { text-align: center; margin-top: 3rem; padding: 2.5rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.cases-review-cta p { margin-bottom: 1rem; color: var(--text-muted); }
.page-hero__rating-summary { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; }
.page-hero__stars { font-size: 1.25rem; }
.page-hero__rating-text { font-size: 0.875rem; color: var(--text-muted); }

/* Services Detail Page */
.services-page__list { display: flex; flex-direction: column; gap: 4rem; }
.service-detail-card {
  display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start;
  padding: 2.5rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-xl);
  transition: border-color var(--t-base);
}
.service-detail-card:hover { border-color: var(--gold-dim); }
.service-detail-card--reverse { grid-template-columns: 1fr 200px; }
.service-detail-card--reverse .service-detail-card__visual { order: 2; }
.service-detail-card__visual { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.service-detail-card__icon-wrap {
  width: 100px; height: 100px; border-radius: var(--radius-lg);
  background: rgba(212,175,55,.1); border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
}
.service-detail-card__icon { font-size: 3rem; }
.service-detail-card__num { font-size: 3rem; font-weight: 900; color: var(--border); font-family: var(--font-mono); }
.service-detail-card__title { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.service-detail-card__desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.service-feature-list { list-style: none; padding: 0; margin: 0 0 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.service-feature-list__item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-secondary); }
.service-feature-list__icon { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.service-price { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; padding: 1rem; background: rgba(212,175,55,.08); border-radius: var(--radius); border: 1px solid var(--gold-dim); }
.service-price__label { font-size: 0.75rem; color: var(--text-muted); }
.service-price__value { font-size: 1.2rem; font-weight: 800; color: var(--gold); }

/* Contact Page */
.contact-page__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; }
.contact-page__form-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.contact-page__form-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.contact-page__info-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact-form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form__label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.contact-form__input {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.85rem 1rem; color: var(--text-primary); font-size: 0.95rem;
  transition: border-color var(--t-base); font-family: var(--font-body); width: 100%;
}
.contact-form__input:focus { outline: none; border-color: var(--gold); }
.contact-form__textarea { resize: vertical; min-height: 130px; }
.contact-form__select { appearance: none; cursor: pointer; }

.contact-info-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.contact-info-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); text-decoration: none; transition: border-color var(--t-base);
}
.contact-info-item--highlight { border-color: var(--gold-dim); }
.contact-info-item:hover { border-color: var(--gold); }
.contact-info-item__icon { font-size: 1.5rem; }
.contact-info-item__label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.contact-info-item__value { display: block; font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
a.contact-info-item__value { text-decoration: none; }
a.contact-info-item__value:hover { color: var(--gold); }

.contact-socials { margin-bottom: 1.5rem; }
.contact-socials__label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 0.75rem; }
.contact-socials__links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.contact-social-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1rem; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 99px; text-decoration: none; color: var(--text-secondary);
  font-size: 0.8rem; font-weight: 600; transition: all var(--t-base);
}
.contact-social-btn:hover { border-color: var(--gold); color: var(--gold); }
.contact-review-box { padding: 1.5rem; background: var(--bg-2); border: 1px solid var(--gold-dim); border-radius: var(--radius-lg); text-align: center; }
.contact-review-box__stars { font-size: 1.25rem; margin-bottom: 0.5rem; }
.contact-review-box__text { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }
.map-section { height: 380px; overflow: hidden; }
.map-section iframe { display: block; }

/* FAQ Page */
.faq-list--page .faq-item { margin-bottom: 0; border-bottom: 1px solid var(--border); }
.faq-list--page .faq-item:first-child { border-top: 1px solid var(--border); }

/* Page FAQ - button style (matches homepage .faq-question) */
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary, #e8e8f0);
  transition: color var(--t-base);
}
.faq-item__question:hover { color: var(--gold); }
.faq-item.is-open .faq-item__question { color: var(--gold); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--t-base);
  line-height: 1;
}
.faq-item.is-open .faq-item__icon {
  background: rgba(212,175,55,.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 600px; }
.faq-item__answer-body {
  padding: 0 0 1.25rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary, #a0a0b8);
  line-height: 1.8;
}
.faq-contact { text-align: center; margin-top: 3rem; padding: 2.5rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.faq-contact__text { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1rem; }

/* Audit Page */
.audit-hero { min-height: 90vh; display: flex; align-items: center; padding: 6rem 0 4rem; position: relative; overflow: hidden; }
.audit-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.audit-label { font-size: 0.8rem; color: var(--gold) !important; }
.audit-hero__title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.2; margin-bottom: 1.25rem; }
.audit-hero__sub { display: block; font-size: 0.6em; color: var(--text-muted); font-weight: 500; margin-top: 0.4rem; }
.audit-hero__desc { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; }
.audit-hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; margin-bottom: 1.5rem; }
.btn--xl { padding: 1.1rem 2.25rem; font-size: 1.1rem; }
.audit-hero__note { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.audit-hero__proof { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.audit-proof-item { font-size: 0.8rem; color: var(--text-muted); }
.audit-hero__bg-glow {
  position: absolute; right: -200px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 70%);
  pointer-events: none;
}
.audit-what__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.audit-what__item {
  padding: 1.75rem; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: border-color var(--t-base);
}
.audit-what__item:hover { border-color: var(--gold-dim); }
.audit-what__icon { font-size: 2rem; margin-bottom: 1rem; }
.audit-what__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.audit-what__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.audit-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.audit-form-wrap {
  max-width: 700px; margin: 0 auto; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 3rem;
}
.audit-form-wrap__header { text-align: center; margin-bottom: 2rem; }
.audit-form { display: flex; flex-direction: column; gap: 1.25rem; }
.audit-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.audit-form__disclaimer { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin: 0; }
.section--dark { background: var(--bg-1); }

/* Cases Grid 3 col */
.cases-grid--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* Post Cat Badge small */
.post-cat-badge--sm { font-size: 0.65rem; padding: 0.15em 0.5em; }

/* Section Footer */
.section-footer { text-align: center; margin-top: 2.5rem; }

/* Empty State */
.empty-state { text-align: center; padding: 4rem 0; }
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ============================================================
   RESPONSIVE — ADDITIONAL PAGES
   ============================================================ */
@media (max-width: 1100px) {
  .portfolio-body__grid,
  .cases-body__grid { grid-template-columns: 1fr; }
  .portfolio-details-card { position: static; }
  .timeline::before { left: 30px; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .timeline-item__year { font-size: 1.25rem; text-align: left !important; }
  .timeline-item--right .timeline-item__year { grid-column: 1; }
  .timeline-item--right .timeline-item__card { grid-column: 2; grid-row: 1; text-align: left; }
  .timeline-item--left .timeline-item__card { grid-column: 2; }
  .service-detail-card,
  .service-detail-card--reverse { grid-template-columns: 1fr; }
  .service-detail-card--reverse .service-detail-card__visual { order: 0; }
}
@media (max-width: 900px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .about-page__grid { grid-template-columns: 1fr; }
  .about-page__visual { max-width: 360px; }
  .contact-page__grid { grid-template-columns: 1fr; }
  .audit-what__grid { grid-template-columns: repeat(2, 1fr); }
  .audit-testimonials { grid-template-columns: 1fr; }
  .cases-hero__inner { flex-direction: column; text-align: center; }
  .cases-masonry { grid-template-columns: 1fr; }
  .cases-grid--3,
  .portfolio-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .archive-grid,
  .archive-grid--3 { grid-template-columns: 1fr; }
  .portfolio-grid--3,
  .cases-grid--3 { grid-template-columns: 1fr; }
  .audit-what__grid { grid-template-columns: 1fr; }
  .audit-form__row { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .about-page__stats { flex-direction: column; gap: 1rem; }
  .post-nav { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
  .portfolio-gallery__grid { grid-template-columns: 1fr; }
  .audit-hero__proof { flex-direction: column; gap: 0.5rem; }
  .audit-form-wrap { padding: 1.75rem; }
  .service-detail-card { padding: 1.5rem; }
}
