/* ═══════════════════════════════════════════════════════════════
   Darrel Frater Advisory — Dark Theme
   Same structure as the working white version — colors inverted
═══════════════════════════════════════════════════════════════ */
:root {
  /* Dark palette — replaces the old light values */
  --black:        #0A0A0A;
  --near-black:   #111111;
  --charcoal:     #1A1A1A;
  --panel:        #1E1E1E;
  --panel-lt:     #242424;

  /* These used to be light — now mapped to dark equivalents */
  --dark-text:    #FFFFFF;          /* was #1A1A1A  — text is now white */
  --mid:          #AAAAAA;          /* was #444     */
  --muted:        #777777;          /* was #7A7A7A  */
  --border:       rgba(255,255,255,0.09);  /* was #E4DDD2 */
  --border-lt:    rgba(255,255,255,0.06);  /* was #EDEBE6 */
  --off-white:    #1A1A1A;          /* was #F7F5F1  — used as alt-section bg */
  --white:        #111111;          /* was #FFFFFF  — used as card/section bg */

  /* Gold — unchanged */
  --gold:         #B8943A;
  --gold-light:   #C9A84C;
  --gold-pale:    #D4B86A;
  --gold-wash:    #1E1A12;          /* was #FAF6EE  — dark gold tint */
  --gold-line:    rgba(184,148,58,0.22);

  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;
  --ease:   cubic-bezier(0.22,0.61,0.36,1);
}

/* ── Reset ────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--dark-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Utilities ────────────────────────────────────────────────── */
.eyebrow { font-size:.68rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); }
.gold-rule { display:block; width:44px; height:1px; background:var(--gold); margin:.85rem 0; }
.gold-rule.c { margin:.85rem auto; }
.container { max-width:1160px; margin:0 auto; padding:0 2rem; }
.sh { margin-bottom:3.5rem; }
.sh.c { text-align:center; }
.sh h2 { font-family:var(--font-d); font-size:clamp(1.9rem,3vw,2.8rem); font-weight:500; line-height:1.2; letter-spacing:-.01em; color:var(--dark-text); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; gap:.5rem; padding:.9rem 2.1rem; font-family:var(--font-b); font-size:.74rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; border:none; cursor:pointer; transition:all .3s var(--ease); position:relative; overflow:hidden; }
.btn-gold { background:var(--gold); color:var(--black); }
.btn-gold::after { content:''; position:absolute; inset:0; background:var(--gold-light); transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease); }
.btn-gold:hover::after { transform:scaleX(1); }
.btn-gold > * { position:relative; z-index:1; }
.btn-outline { background:transparent; color:var(--dark-text); border:1px solid var(--border); }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }
.btn-outline-wh { background:transparent; color:var(--dark-text); border:1px solid rgba(255,255,255,.25); }
.btn-outline-wh:hover { border-color:var(--gold); color:var(--gold); }
.btn svg { transition:transform .3s var(--ease); flex-shrink:0; }
.btn:hover svg { transform:translateX(4px); }

/* ── Nav ──────────────────────────────────────────────────────── */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom:1px solid var(--border-lt);
  transition:box-shadow .3s var(--ease), background .3s var(--ease);
}
#nav.scrolled { background:rgba(10,10,10,0.98); box-shadow:0 1px 0 var(--gold-line); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:78px; padding:0 2.5rem; max-width:1200px; margin:0 auto; }
.nav-logo img { width:auto; }
.logo-text-fallback { font-family:var(--font-d); font-size:1.2rem; font-weight:500; color:var(--dark-text); }
.nav-links { display:flex; align-items:center; gap:2.4rem; }
.nav-links a { font-size:.72rem; font-weight:500; letter-spacing:.09em; text-transform:uppercase; color:rgba(255,255,255,.45); transition:color .22s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transition:transform .3s var(--ease); }
.nav-links a:hover { color:var(--white); }
.nav-links a:hover::after { transform:scaleX(1); }
.nav-links a.active { color:#fff; }
.nav-links a.active::after { transform:scaleX(1); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:22px; height:1.5px; background:var(--dark-text); }
.mobile-menu { display:none; position:fixed; inset:0; background:var(--black); z-index:99; flex-direction:column; align-items:center; justify-content:center; gap:2rem; }
.mobile-menu.open { display:flex; }
.mobile-logo { margin-bottom:1rem; }
.mobile-logo img { height:70px; width:auto; }
.mobile-logo .logo-text-fallback { font-size:1.5rem; color:var(--dark-text); }
.mobile-menu a { font-family:var(--font-d); font-size:1.9rem; color:rgba(255,255,255,.75); transition:color .2s; }
.mobile-menu a:hover { color:var(--gold); }
.mobile-close { position:absolute; top:1.5rem; right:2rem; font-size:1.8rem; color:rgba(255,255,255,.5); cursor:pointer; background:none; border:none; line-height:1; }

/* ── Hero ─────────────────────────────────────────────────────── */
#hero { min-height:100vh; background:var(--black); display:flex; align-items:center; padding-top:78px; position:relative; overflow:hidden; }
.hero-bg-lines {
  position:absolute; inset:0; pointer-events:none;
  background-image: linear-gradient(rgba(184,148,58,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(184,148,58,.04) 1px,transparent 1px);
  background-size:64px 64px;
}
.hero-bg-grad {
  position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 55% 65% at 75% 50%, rgba(184,148,58,.07) 0%,transparent 70%),
              radial-gradient(ellipse 30% 40% at 15% 80%, rgba(184,148,58,.04) 0%,transparent 60%);
}
/* Globe watermark */
#hero::after {
  content:'';
  position:absolute; right:-8%; top:50%; transform:translateY(-50%);
  width:min(55vw,680px); aspect-ratio:1;
  background: radial-gradient(circle, rgba(184,148,58,.06) 0%, transparent 65%);
  border-radius:50%;
  border:1px solid rgba(184,148,58,.08);
  pointer-events:none;
}
.hero-inner { position:relative; z-index:2; display:flex; flex-direction:column; justify-content:center; width:100%; max-width:1200px; margin:0 auto; padding:5rem 2.5rem; }
.hero-tagline { font-family:var(--font-d); font-size:1rem; font-style:italic; color:rgba(255,255,255,.38); line-height:1.65; padding-top:2rem; border-top:1px solid var(--border); max-width:320px; }
.hero-tagline span { color:var(--gold); font-style:normal; font-weight:600; }
.hero-right { display:flex; flex-direction:column; justify-content:center; }
.hero-eyebrow { display:flex; align-items:center; gap:.9rem; margin-bottom:1.6rem; }
.hero-eyebrow::before { content:''; display:block; width:24px; height:1px; background:var(--gold); flex-shrink:0; }
h1.hero-headline { font-family:var(--font-d); font-size:clamp(2.5rem,4.2vw,4.2rem); font-weight:500; line-height:1.1; color:var(--dark-text); letter-spacing:-.02em; margin-bottom:1.5rem; }
h1.hero-headline em { font-style:italic; color:var(--gold-pale); }
.hero-sub { font-size:1rem; line-height:1.8; color:rgba(255,255,255,.5); margin-bottom:2.5rem; font-weight:300; max-width:420px; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; align-items:center; margin-bottom:3rem; }
.hero-stats { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--border); }
.hero-stat { padding:1.2rem 1.4rem; border-right:1px solid var(--border); }
.hero-stat:last-child { border-right:none; }
.stat-num { font-family:var(--font-d); font-size:1.9rem; font-weight:500; color:var(--dark-text); line-height:1; }
.stat-num span { color:var(--gold); }
.stat-lbl { font-size:.65rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.32); margin-top:.35rem; font-weight:500; }

/* ── Marquee ──────────────────────────────────────────────────── */
.marquee-strip { background:var(--gold); padding:.72rem 0; overflow:hidden; }
.marquee-track { display:flex; width:max-content; animation:marquee 35s linear infinite; }
.marquee-item { font-size:.67rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:rgba(0,0,0,.65); white-space:nowrap; padding:0 2rem; display:flex; align-items:center; gap:2rem; }
.mdot { width:3px; height:3px; border-radius:50%; background:rgba(0,0,0,.4); }
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ── Services ─────────────────────────────────────────────────── */
#services { padding:7rem 0; background:var(--near-black); }
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); }
.svc-card { background:var(--near-black); padding:2.6rem 2.2rem; position:relative; transition:background .3s var(--ease); }
.svc-card::before { content:''; position:absolute; top:0; left:0; width:2px; height:0; background:var(--gold); transition:height .4s var(--ease); }
.svc-card:hover { background:var(--panel-lt); }
.svc-card:hover::before { height:100%; }
.svc-n { font-family:var(--font-d); font-size:.7rem; color:var(--gold); font-style:italic; margin-bottom:1.3rem; display:block; }
.svc-icon { width:40px; height:40px; margin-bottom:1.2rem; color:var(--gold); }
.svc-title { font-family:var(--font-d); font-size:1.15rem; font-weight:500; margin-bottom:.75rem; color:var(--dark-text); }
.svc-desc { font-size:.87rem; color:var(--muted); line-height:1.72; font-weight:300; }
.svc-wide { grid-column:span 2; }

/* ── About ────────────────────────────────────────────────────── */
#about { padding:7rem 0; background:var(--charcoal); overflow:hidden; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }
.about-img-wrap { position:relative; }
.about-frame { aspect-ratio:4/5; background:var(--panel); border:1px solid var(--gold-line); overflow:hidden; position:relative; }
.af-inner { width:100%; height:100%; background:linear-gradient(180deg,#1e1e1e 0%,#101010 100%); position:relative; }
.af-head { width:90px; height:90px; border-radius:50%; background:#272727; position:absolute; bottom:265px; left:50%; transform:translateX(-50%); opacity:.6; }
.af-body { width:160px; height:265px; background:linear-gradient(180deg,#252525 0%,#181818 100%); border-radius:80px 80px 0 0; position:absolute; bottom:0; left:50%; transform:translateX(-50%); opacity:.6; }
.about-corner { position:absolute; top:-12px; left:-12px; width:50px; height:50px; border-top:1px solid var(--gold); border-left:1px solid var(--gold); }
.about-badge { position:absolute; bottom:-12px; right:-12px; background:var(--gold); padding:1.3rem 1.7rem; }
.about-badge .num { font-family:var(--font-d); font-size:1.9rem; font-weight:500; color:var(--black); line-height:1; }
.about-badge .lbl { font-size:.6rem; letter-spacing:.15em; text-transform:uppercase; color:rgba(0,0,0,.55); margin-top:.3rem; font-weight:600; }
/* ── Mission Statement Block (replaces portrait placeholder) ── */
.dfa-mission-block { display:flex; flex-direction:column; justify-content:center; padding:3.5rem; border:1px solid var(--gold); background:#0f0f0f; position:relative; }
.dfa-mission-block::before { content:''; position:absolute; top:0; left:0; width:4px; height:100%; background:var(--gold); }
.dfa-mission-eyebrow { font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); font-weight:600; }
.dfa-mission-rule { width:32px; height:1px; background:var(--gold); margin:1rem 0; opacity:.5; }
.dfa-mission-heading { font-family:var(--font-d); font-size:clamp(2rem,3vw,2.8rem); font-weight:500; color:var(--dark-text); line-height:1.15; letter-spacing:-.02em; margin-bottom:1.4rem; }
.dfa-mission-body { font-size:.95rem; line-height:1.8; color:rgba(255,255,255,.5); font-weight:300; }
.dfa-mission-divider { width:100%; height:1px; background:rgba(184,148,58,0.2); margin:2rem 0; }
.dfa-mission-quote { margin:0; padding:0; border:none; }
.dfa-mq-mark { font-family:var(--font-d); font-size:3.5rem; color:var(--gold); line-height:.6; display:block; margin-bottom:.8rem; opacity:.5; }
.dfa-mission-quote p { font-family:var(--font-d); font-size:1rem; font-style:italic; color:rgba(255,255,255,.6); line-height:1.75; margin-bottom:.75rem; }
.dfa-mission-quote cite { font-size:.65rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); font-weight:600; font-style:normal; }

.about-text { color:var(--dark-text); }
.about-text .eyebrow { margin-bottom:.8rem; }
.about-text h2 { font-family:var(--font-d); font-size:clamp(1.8rem,2.7vw,2.6rem); font-weight:500; line-height:1.2; color:var(--dark-text); margin-bottom:1.7rem; letter-spacing:-.01em; }
.about-text p { font-size:1rem; line-height:1.78; color:rgba(255,255,255,.52); margin-bottom:1.4rem; font-weight:300; }
.about-pillars { display:grid; grid-template-columns:1fr 1fr; margin-top:2.5rem; border:1px solid var(--border); }
.about-pillar { padding:1.2rem 1.4rem; border-right:1px solid var(--border); border-bottom:1px solid var(--border); }
.about-pillar:nth-child(even) { border-right:none; }
.about-pillar:nth-child(3), .about-pillar:nth-child(4) { border-bottom:none; }
.pl { font-size:.6rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); font-weight:600; display:flex; align-items:center; gap:.4rem; }
.pl::before { content:''; display:inline-block; width:3px; height:3px; background:var(--gold); border-radius:50%; flex-shrink:0; }
.pd { font-size:.82rem; color:rgba(255,255,255,.35); margin-top:.3rem; font-weight:300; }

/* ── Why ──────────────────────────────────────────────────────── */
#why { padding:7rem 0; background:var(--black); }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); border:1px solid var(--border); margin-top:3.5rem; }
.why-card { padding:2.4rem 1.8rem; background:var(--black); position:relative; transition:background .35s var(--ease); }
.why-card:hover { background:var(--panel); }
.why-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transition:transform .4s var(--ease); }
.why-card:hover::after { transform:scaleX(1); }
.wi { width:42px; height:42px; margin-bottom:1.5rem; color:var(--gold); }
.wt { font-family:var(--font-d); font-size:1.1rem; font-weight:500; margin-bottom:.65rem; color:var(--dark-text); }
.wd { font-size:.85rem; color:var(--muted); line-height:1.7; font-weight:300; }

/* ── Process ──────────────────────────────────────────────────── */
#process { padding:7rem 0; background:var(--charcoal); }
.proc-track { display:grid; grid-template-columns:repeat(4,1fr); position:relative; margin-top:4rem; }
.proc-track::before { content:''; position:absolute; top:27px; left:12.5%; right:12.5%; height:1px; background:linear-gradient(90deg,transparent,var(--gold-line),var(--gold),var(--gold-line),transparent); }
.proc-step { padding:0 1.2rem; text-align:center; position:relative; }
.step-marker { width:54px; height:54px; border-radius:50%; border:1px solid var(--gold); background:var(--charcoal); display:flex; align-items:center; justify-content:center; margin:0 auto 1.8rem; position:relative; z-index:1; }
.step-num { font-family:var(--font-d); font-size:1rem; font-weight:500; color:var(--gold); font-style:italic; }
.step-t { font-family:var(--font-d); font-size:1.05rem; font-weight:500; margin-bottom:.65rem; color:var(--dark-text); }
.step-d { font-size:.84rem; color:var(--muted); line-height:1.7; font-weight:300; }

/* ── Testimonials ─────────────────────────────────────────────── */
#testimonials { padding:7rem 0; background:var(--near-black); }
.testi-hdr { color:var(--dark-text); margin-bottom:3.5rem; }
.testi-hdr h2 { font-family:var(--font-d); font-size:clamp(1.9rem,3vw,2.8rem); font-weight:500; color:var(--dark-text); line-height:1.2; letter-spacing:-.01em; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); }
.testi-card { background:var(--near-black); padding:2.5rem; position:relative; transition:background .3s; }
.testi-card:hover { background:var(--panel-lt); }
.tqm { font-family:var(--font-d); font-size:4.5rem; line-height:1; color:var(--gold); opacity:.2; position:absolute; top:1.4rem; right:1.8rem; font-style:italic; }
.testi-stars { display:flex; gap:3px; margin-bottom:1.3rem; }
.testi-stars span { font-size:.8rem; color:var(--gold); }
.testi-text { font-size:.92rem; line-height:1.78; color:rgba(255,255,255,.6); font-weight:300; font-style:italic; margin-bottom:1.8rem; }
.testi-author { display:flex; align-items:center; gap:.9rem; }
.testi-av { width:42px; height:42px; border-radius:50%; background:var(--panel); border:1px solid var(--gold-line); display:flex; align-items:center; justify-content:center; font-family:var(--font-d); font-size:1rem; color:var(--gold); font-weight:500; flex-shrink:0; }
.testi-name { font-family:var(--font-d); font-size:.9rem; color:var(--dark-text); font-weight:500; }
.testi-role { font-size:.68rem; color:rgba(255,255,255,.3); margin-top:.1rem; }

/* ── CTA Banner ───────────────────────────────────────────────── */
#cta-banner { padding:5.5rem 0; background:var(--gold); position:relative; overflow:hidden; }
#cta-banner::before { content:''; position:absolute; top:-50%; right:-5%; width:500px; height:500px; border-radius:50%; border:60px solid rgba(0,0,0,.06); pointer-events:none; }
.cta-inner { max-width:660px; position:relative; z-index:1; }
.cta-inner .eyebrow { color:rgba(0,0,0,.45); margin-bottom:.8rem; }
.cta-inner h2 { font-family:var(--font-d); font-size:clamp(2rem,3.5vw,3rem); font-weight:500; color:var(--black); line-height:1.18; margin-bottom:1rem; letter-spacing:-.01em; }
.cta-inner p { font-size:1rem; color:rgba(0,0,0,.56); margin-bottom:2rem; font-weight:300; line-height:1.74; }
.btn-dark { background:var(--black); color:var(--gold); display:inline-flex; align-items:center; gap:.6rem; padding:1.05rem 2.4rem; font-size:.74rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; transition:background .3s var(--ease),transform .3s var(--ease); border:none; cursor:pointer; }
.btn-dark:hover { background:#1a1a1a; transform:translateY(-2px); }
.btn-dark svg { transition:transform .3s var(--ease); }
.btn-dark:hover svg { transform:translateX(4px); }

/* ── Contact ──────────────────────────────────────────────────── */
#contact { padding:7rem 0; background:var(--black); }
.contact-grid { display:grid; grid-template-columns:1fr 1.45fr; gap:5.5rem; align-items:start; }
.contact-info .eyebrow { margin-bottom:.8rem; }
.contact-info h2 { font-family:var(--font-d); font-size:clamp(1.6rem,2.4vw,2.1rem); font-weight:500; margin-bottom:1.1rem; letter-spacing:-.01em; color:var(--dark-text); }
.contact-info > p { font-size:.9rem; color:var(--muted); line-height:1.75; margin-bottom:2.5rem; }
.cd { display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.3rem; }
.cd-icon { width:36px; height:36px; background:var(--panel); border:1px solid var(--gold-line); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--gold); }
.cd-icon svg { width:15px; height:15px; }
.cd-lbl { font-size:.6rem; letter-spacing:.15em; text-transform:uppercase; color:var(--muted); font-weight:600; margin-bottom:.2rem; }
.cd-val { font-size:.88rem; color:rgba(255,255,255,.65); }
.cd-val a { color:var(--gold); }
.contact-logo { margin-top:2.5rem; padding-top:2rem; border-top:1px solid var(--border); }
.contact-logo img { height:88px; width:auto; }

/* ── CF7 Dark Styles ──────────────────────────────────────────── */
.wpcf7-form .form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.wpcf7-form p { margin-bottom:1.1rem; }
.wpcf7-form label { display:block; font-size:.63rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); font-weight:600; margin-bottom:.4rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width:100%; padding:.85rem 1rem;
  background:var(--panel);
  border:1px solid var(--border);
  font-family:var(--font-b); font-size:.9rem;
  color:var(--dark-text); outline:none;
  transition:border-color .25s, background .25s;
  border-radius:0; appearance:none;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus { border-color:var(--gold); background:var(--gold-wash); }
.wpcf7-form textarea { min-height:120px; resize:vertical; }
.wpcf7-form input[type="submit"] {
  width:100%; background:var(--gold); color:var(--black);
  border:none; padding:.95rem 2rem; font-family:var(--font-b);
  font-size:.74rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  cursor:pointer; transition:background .3s var(--ease); margin-top:.5rem;
}
.wpcf7-form input[type="submit"]:hover { background:var(--gold-light); }
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color:rgba(255,255,255,.2); }
.wpcf7-not-valid { border-color:#c0392b !important; }
.wpcf7-not-valid-tip { font-size:.72rem; color:#e74c3c; margin-top:.3rem; display:block; }
.wpcf7-response-output {
  margin-top:1.2rem !important; padding:.9rem 1.1rem !important;
  font-size:.85rem !important; border-radius:0 !important;
  border-left:3px solid var(--gold) !important;
  border-top:none !important; border-right:none !important; border-bottom:none !important;
  background:var(--panel) !important; color:rgba(255,255,255,.75) !important;
}
.wpcf7-mail-sent-ng, .wpcf7-aborted { border-left-color:#c0392b !important; }
.wpcf7-spinner { margin-left:.75rem; vertical-align:middle; }

/* ── Footer ───────────────────────────────────────────────────── */
footer { background:var(--near-black); padding:4.5rem 0 2rem; border-top:1px solid var(--border); }
.footer-inner { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
/* Logo sits on dark bg — no pill needed with dark logo */
.footer-logo-pill { display:inline-block; margin-bottom:1.2rem; }
.footer-logo-pill img { height:58px; width:auto; }
.footer-brand-col .footer-logo img { height:58px; width:auto; margin-bottom:1.2rem; }
.footer-logo a { display:inline-block; }
.footer-desc { font-size:.82rem; color:rgba(255,255,255,.32); line-height:1.72; font-weight:300; max-width:245px; }
.fc-t { font-size:.6rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:1.3rem; }
.fc-links { display:flex; flex-direction:column; gap:.65rem; }
.fc-links a { font-size:.82rem; color:rgba(255,255,255,.38); transition:color .2s; }
.fc-links a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid var(--border); padding-top:1.5rem; display:flex; justify-content:space-between; align-items:center; }
.footer-bottom p { font-size:.74rem; color:rgba(255,255,255,.22); }

/* ── Fade animations ──────────────────────────────────────────── */
.fu { opacity:0; transform:translateY(24px); transition:opacity .65s var(--ease),transform .65s var(--ease); }
.fu.v { opacity:1; transform:translateY(0); }
.d1{transition-delay:.1s;} .d2{transition-delay:.2s;} .d3{transition-delay:.3s;} .d4{transition-delay:.4s;}

/* ── Responsive ───────────────────────────────────────────────── */
@media(max-width:1024px){

  .svc-grid{grid-template-columns:1fr 1fr;}
  .svc-wide{grid-column:auto;}
  .why-grid{grid-template-columns:1fr 1fr;}
  .proc-track{grid-template-columns:1fr 1fr;gap:2rem;}
  .proc-track::before{display:none;}
  .footer-inner{grid-template-columns:1fr 1fr;}
  .wpcf7-form .form-row{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .nav-links,.nav-cta-btn{display:none;}
  .hamburger{display:flex;}
  .hero-inner{padding:3rem 1.5rem 4rem;}
  .about-grid{grid-template-columns:1fr;gap:3rem;}
  .about-img-wrap{display:none;}
  .svc-grid{grid-template-columns:1fr;}
  .svc-wide{grid-column:auto;}
  .why-grid{grid-template-columns:1fr;gap:1rem;}
  .proc-track{grid-template-columns:1fr;gap:1.5rem;}
  .testi-grid{grid-template-columns:1fr;gap:1px;}
  .contact-grid{grid-template-columns:1fr;gap:3rem;}
  .footer-inner{grid-template-columns:1fr;gap:2rem;}
  .footer-bottom{flex-direction:column;gap:1rem;text-align:center;}
  .hero-stats{grid-template-columns:1fr;}
  .hero-stat{border-right:none!important;border-bottom:1px solid var(--border);}
  .hero-stat:last-child{border-bottom:none;}
  .about-pillars{grid-template-columns:1fr;}
  .about-pillar{border-right:none!important;border-bottom:1px solid var(--border)!important;}
  .about-pillar:last-child{border-bottom:none!important;}
}

/* ── Inner Pages ──────────────────────────────────────────────── */
.breadcrumb { background:var(--charcoal); border-bottom:1px solid var(--border); padding:.75rem 0; margin-top:78px; }
.breadcrumb .container { display:flex; align-items:center; gap:.6rem; font-size:.75rem; color:var(--muted); }
.breadcrumb a { color:var(--muted); transition:color .2s; }
.breadcrumb a:hover { color:var(--gold); }
.bc-sep { color:var(--border); font-size:.8rem; }
.breadcrumb span:last-child { color:rgba(255,255,255,.6); font-weight:500; }

.page-hero { padding:5rem 0 4rem; background:var(--black); border-bottom:1px solid var(--border); }
.page-hero .eyebrow { margin-bottom:.7rem; display:block; }
.page-hero h1 { font-family:var(--font-d); font-size:clamp(2.2rem,4vw,3.6rem); font-weight:500; line-height:1.12; letter-spacing:-.02em; color:var(--dark-text); margin-bottom:1rem; }
.page-hero h1 em { font-style:italic; color:var(--gold-pale); }
.page-hero-sub { font-size:1.05rem; color:var(--muted); font-weight:300; max-width:540px; line-height:1.7; margin-top:.5rem; }

/* Article typography */
.article-content h2 { font-family:var(--font-d); font-size:1.7rem; font-weight:500; margin:2.5rem 0 1rem; color:var(--dark-text); }
.article-content h3 { font-family:var(--font-d); font-size:1.3rem; font-weight:500; margin:2rem 0 .75rem; color:var(--dark-text); }
.article-content p { margin-bottom:1.4rem; color:rgba(255,255,255,.72); font-weight:300; }
.article-content ul, .article-content ol { padding-left:1.5rem; margin-bottom:1.4rem; }
.article-content li { margin-bottom:.5rem; color:rgba(255,255,255,.72); }
.article-content blockquote { border-left:3px solid var(--gold); padding:1rem 1.5rem; background:var(--panel); margin:2rem 0; font-family:var(--font-d); font-style:italic; font-size:1.1rem; color:var(--dark-text); }
.article-content a { color:var(--gold); text-decoration:underline; text-underline-offset:3px; }
.article-content strong { font-weight:600; color:var(--dark-text); }

/* Pagination */
.page-numbers { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border:1px solid var(--border); font-size:.82rem; color:var(--muted); transition:all .25s; margin:0 2px; }
.page-numbers:hover, .page-numbers.current { background:var(--gold); color:var(--black); border-color:var(--gold); }

/* Blog post cards (used in insights/home/archive) */
.post-card { background:var(--near-black); border:1px solid var(--border); transition:box-shadow .3s,transform .3s,border-color .3s; }
.post-card:hover { box-shadow:0 12px 50px rgba(0,0,0,.5); transform:translateY(-4px); border-color:var(--gold-line); }
.post-card-body { padding:1.6rem; }
.post-cat { font-size:.6rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); font-weight:600; }
.post-date { font-size:.72rem; color:var(--muted); }
.post-title { font-family:var(--font-d); font-size:1.1rem; font-weight:500; line-height:1.3; margin-bottom:.7rem; }
.post-title a { color:var(--dark-text); transition:color .2s; }
.post-title a:hover { color:var(--gold); }
.post-excerpt { font-size:.85rem; color:var(--muted); line-height:1.68; margin-bottom:1.2rem; font-weight:300; }
.post-read-more { font-size:.71rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); display:inline-flex; align-items:center; gap:.4rem; }
.post-thumb-placeholder { aspect-ratio:16/9; background:var(--panel); display:flex; align-items:center; justify-content:center; color:var(--gold); opacity:.35; }

/* Empty state */
.empty-state { text-align:center; padding:5rem 2rem; background:var(--panel); border:1px solid var(--border); max-width:560px; margin:0 auto; }
.empty-state h3 { font-family:var(--font-d); font-size:1.4rem; margin-bottom:.75rem; color:var(--dark-text); }
.empty-state p { color:var(--muted); font-size:.9rem; max-width:380px; margin:0 auto 2rem; line-height:1.7; font-weight:300; }

/* Service rows */
@media(max-width:768px){
  .service-row{grid-template-columns:1fr!important;gap:1.5rem!important;}
  .service-row>div:first-child{position:static!important;}
  .article-content h2{font-size:1.4rem;}
  .article-content h3{font-size:1.15rem;}
}
