/* ============================================================
   NIJHUIS ATTORNEYS
   ============================================================ */

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

:root {
  --ink:          #0D1117;
  --ink-mid:      #1A2438;
  --ink-light:    #253450;
  --bronze:       #C4963A;
  --bronze-light: #E0B75A;
  --bronze-pale:  #F3E6C8;
  --sand:         #F7F3EC;
  --white:        #FFFFFF;
  --muted:        #7B8599;
  --border:       rgba(196,150,58,0.18);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --shadow:        0 4px 28px rgba(13,17,23,0.14);
  --shadow-bronze: 0 8px 40px rgba(196,150,58,0.22);
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display:block; max-width:100%; }
a { text-decoration:none; }

/* ── Navigation ──────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 24px 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.45s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s;
}
.nav.scrolled {
  background: var(--ink);
  padding: 14px 68px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-text { line-height: 1.25; }
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
}
.nav-logo-tag {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--bronze);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--bronze); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-btn {
  background: transparent !important;
  border: 1px solid var(--bronze) !important;
  color: var(--bronze) !important;
  padding: 9px 22px;
  border-radius: 1px;
  font-size: 0.74rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  transition: all 0.3s !important;
}
.nav-btn:hover {
  background: var(--bronze) !important;
  color: var(--ink) !important;
}
.nav-btn::after { display: none !important; }

/* Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s;
}
.mobile-overlay.open { opacity: 1; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--ink);
  z-index: 999;
  padding: 90px 36px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -10px 0 60px rgba(0,0,0,0.5);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  font-family: var(--font-serif);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--bronze); }
.mobile-menu .mob-cta {
  margin-top: 32px;
  display: block;
  text-align: center;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  padding: 14px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.mobile-menu .mob-cta:hover { background: var(--bronze); color: var(--ink); }

/* ── Scroll reveal ───────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* Bronze rule */
.b-rule {
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width 1.1s var(--ease);
  display: block;
}
.b-rule.visible { width: 60px; }

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 36px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 1px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.btn-bronze { background: var(--bronze); color: var(--ink); }
.btn-bronze:hover { background: var(--bronze-light); transform: translateY(-2px); box-shadow: var(--shadow-bronze); }
.btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { border-color: var(--bronze); color: var(--bronze); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1px solid rgba(13,17,23,0.3); }
.btn-outline-dark:hover { border-color: var(--bronze); color: var(--bronze); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-mid); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn .arr { transition: transform 0.3s; }
.btn:hover .arr { transform: translateX(4px); }

.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: rippleAnim 0.65s ease-out forwards;
  pointer-events: none; width: 4px; height: 4px;
}
@keyframes rippleAnim { to { transform: scale(200); opacity: 0; } }

/* ── Labels ──────────────────────────────────────────────── */

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  font-family: var(--font-sans);
}
.display-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
  font-weight: 600;
}

/* ── HERO ────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* texture grain overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(196,150,58,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(26,36,56,0.8) 0%, transparent 70%);
  pointer-events: none;
}

/* large watermark letters */
.hero-watermark {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(200px, 25vw, 360px);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 130px 68px 90px;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content .eyebrow {
  display: block;
  animation: lineReveal 0.6s 0.1s both;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin: 18px 0 0;
  animation: lineReveal 0.7s 0.2s both;
}
.hero-title em { font-style: italic; color: var(--bronze); }
.hero-rule {
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--bronze), transparent);
  margin: 28px 0;
  animation: ruleGrow 1.1s 0.5s var(--ease) forwards;
}
@keyframes ruleGrow { to { width: 90px; } }
.hero-body {
  color: rgba(255,255,255,0.58);
  font-size: 1.02rem;
  max-width: 460px;
  line-height: 1.85;
  animation: lineReveal 0.7s 0.35s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: lineReveal 0.7s 0.5s both;
}

@keyframes lineReveal {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: none; }
}

/* Scales of justice — right side */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scalesFadeIn 1.2s 0.4s both;
}
@keyframes scalesFadeIn {
  from { opacity:0; transform: scale(0.92); }
  to   { opacity:1; transform: none; }
}

.scales-svg {
  width: min(380px, 90%);
  color: var(--bronze);
  filter: drop-shadow(0 0 40px rgba(196,150,58,0.15));
}

/* animated stroke draw on load */
.scales-svg path, .scales-svg line, .scales-svg circle, .scales-svg ellipse {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawStroke 2.2s 0.7s var(--ease) forwards;
}
@keyframes drawStroke { to { stroke-dashoffset: 0; } }

/* stagger each element */
.scales-svg .s1 { animation-delay: 0.7s; }
.scales-svg .s2 { animation-delay: 0.9s; }
.scales-svg .s3 { animation-delay: 1.0s; }
.scales-svg .s4 { animation-delay: 1.1s; }
.scales-svg .s5 { animation-delay: 1.2s; }
.scales-svg .s6 { animation-delay: 1.3s; }
.scales-svg .s7 { animation-delay: 1.35s; }
.scales-svg .s8 { animation-delay: 1.4s; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  animation: lineReveal 0.7s 1.4s both;
}
.scroll-hint .mouse {
  width: 20px; height: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  position: relative; display: flex; justify-content: center;
}
.scroll-hint .mouse::after {
  content: '';
  width: 2px; height: 6px;
  background: var(--bronze);
  border-radius: 2px;
  position: absolute; top: 5px;
  animation: scrollBob 1.8s ease-in-out infinite;
}
@keyframes scrollBob {
  0%   { opacity:1; transform:translateY(0); }
  100% { opacity:0; transform:translateY(12px); }
}

/* ── Pillars strip ───────────────────────────────────────── */

.pillars {
  background: var(--ink-mid);
  padding: 0 68px;
  border-top: 1px solid rgba(196,150,58,0.12);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
.pillar {
  padding: 52px 40px;
  position: relative;
  text-align: center;
  transition: background 0.3s;
}
.pillar:hover { background: rgba(196,150,58,0.04); }
.pillar + .pillar::before {
  content: '';
  position: absolute;
  left: 0; top: 30%; height: 40%;
  width: 1px;
  background: rgba(196,150,58,0.15);
}
.pillar-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(196,150,58,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bronze);
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.pillar:hover .pillar-icon {
  background: var(--bronze);
  color: var(--ink);
  border-color: var(--bronze);
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.pillar-body { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* ── Stats ───────────────────────────────────────────────── */

.stats {
  background: var(--sand);
  padding: 80px 68px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 44px;
  background: rgba(196,150,58,0.22);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── About ───────────────────────────────────────────────── */

.about {
  padding: 120px 68px;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-title em { font-style: italic; color: var(--bronze); }
.about-body {
  color: #4A5568;
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-list {
  list-style: none;
  margin: 28px 0 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  color: #4A5568;
}
.about-list li .check {
  width: 20px; height: 20px;
  background: var(--bronze);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-list li .check svg { color: var(--ink); }

/* Visual panel */
.about-panel {
  position: relative;
}
.about-dark-box {
  background: var(--ink);
  border-radius: 2px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}
.about-dark-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,150,58,0.08) 0%, transparent 70%);
}
.about-dark-box .box-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 30px;
  display: block;
}
.about-value-row {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-value-row:last-of-type { border-bottom: none; }
.about-value-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.about-value-val {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.about-accent-card {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--bronze);
  padding: 22px 28px;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(196,150,58,0.35);
}
.about-accent-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.about-accent-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(13,17,23,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Services preview ────────────────────────────────────── */

.services-preview {
  padding: 120px 68px;
  background: var(--sand);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto 70px;
}
.section-head-right { text-align: right; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto 50px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
.svc-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.4s var(--ease);
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--bronze);
  transition: height 0.4s var(--ease);
}
.svc-card:hover { background: var(--ink); }
.svc-card:hover::after { height: 100%; }
.svc-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(196,150,58,0.12);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.svc-card:hover .svc-num { color: rgba(196,150,58,0.2); }
.svc-icon {
  color: var(--bronze);
  margin-bottom: 18px;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover .svc-icon { transform: scale(1.1); }
.svc-name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color 0.4s;
}
.svc-card:hover .svc-name { color: var(--white); }
.svc-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.8;
  transition: color 0.4s;
}
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.5); }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s;
}
.svc-card:hover .svc-link { opacity: 1; transform: none; }
.services-footer { text-align: center; }

/* ── Approach ────────────────────────────────────────────── */

.approach {
  background: var(--ink);
  padding: 120px 68px;
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,150,58,0.05) 0%, transparent 60%);
  bottom: -300px; left: -100px;
}
.approach-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.approach-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.approach-title { color: var(--white); }
.approach-intro-body { color: var(--muted); font-size: 0.97rem; line-height: 1.85; margin-top: 20px; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
.approach-item {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  transition: border-color 0.4s, background 0.4s;
}
.approach-item:hover {
  border-color: rgba(196,150,58,0.3);
  background: rgba(196,150,58,0.04);
}
.approach-big-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(196,150,58,0.15);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.approach-item:hover .approach-big-num { color: rgba(196,150,58,0.3); }
.approach-item-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.approach-item-body { font-size: 0.87rem; color: var(--muted); line-height: 1.8; }

/* ── CTA ─────────────────────────────────────────────────── */

.cta-band {
  padding: 100px 68px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cta-band-text .eyebrow { margin-bottom: 14px; display: block; }
.cta-band-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  max-width: 560px;
  line-height: 1.2;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Page hero ───────────────────────────────────────────── */

.page-hero {
  background: var(--ink);
  padding: 170px 68px 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(196,150,58,0.05) 0%, transparent 50%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero .eyebrow { display: block; margin-bottom: 16px; animation: lineReveal 0.6s both; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  animation: lineReveal 0.6s 0.15s both;
}
.page-hero p {
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.8;
  animation: lineReveal 0.6s 0.3s both;
}

/* ── Services full page ──────────────────────────────────── */

.svc-full { padding: 0 68px 100px; background: var(--white); }
.svc-category {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.svc-category:last-child { border-bottom: none; }
.svc-category-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}
.svc-cat-left { padding-right: 40px; border-right: 1px solid rgba(196,150,58,0.15); }
.svc-cat-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(196,150,58,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.svc-cat-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.25;
}
.svc-cat-icon { color: var(--bronze); margin-bottom: 16px; }
.svc-cat-right {}
.svc-cat-body {
  color: #4A5568;
  font-size: 0.96rem;
  line-height: 1.9;
  margin-bottom: 18px;
}
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.svc-tag {
  padding: 5px 14px;
  border: 1px solid rgba(196,150,58,0.35);
  color: var(--bronze);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 1px;
}

/* Process */
.process-section { padding: 90px 68px; background: var(--sand); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-head { text-align: center; max-width: 560px; margin: 0 auto 72px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 12.5%;
  width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}
.process-step {
  padding: 0 28px;
  text-align: center;
  position: relative; z-index: 1;
}
.p-step-num {
  width: 44px; height: 44px;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  background: var(--sand);
  transition: all 0.3s;
}
.process-step:hover .p-step-num { background: var(--bronze); color: var(--ink); }
.p-step-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.p-step-body { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* FAQ */
.faq-section { padding: 90px 68px; background: var(--white); }
.faq-inner { max-width: 800px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-q {
  width: 100%;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--bronze); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid rgba(196,150,58,0.35);
  color: var(--bronze);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  border-radius: 50%;
  transition: all 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--bronze); color: var(--ink); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
  transition: max-height 0.45s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ── Contact page ────────────────────────────────────────── */

.contact-section { padding: 90px 68px; background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-dark-panel {
  background: var(--ink);
  border-radius: 2px;
  padding: 52px 48px;
  position: sticky;
  top: 100px;
  overflow: hidden;
}
.contact-dark-panel::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(196,150,58,0.07) 0%, transparent 65%);
}
.contact-dark-panel .eyebrow { display: block; margin-bottom: 14px; position: relative; z-index: 1; }
.contact-panel-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.contact-panel-body { color: var(--muted); font-size: 0.88rem; line-height: 1.8; margin-bottom: 36px; position: relative; z-index: 1; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.contact-detail:last-of-type { border-bottom: none; }
.c-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(196,150,58,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bronze);
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-detail:hover .c-icon { background: var(--bronze); color: var(--ink); border-color: var(--bronze); }
.c-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 4px;
}
.c-value {
  color: rgba(255,255,255,0.8);
  font-size: 0.93rem;
}
.c-value a { color: rgba(255,255,255,0.8); transition: color 0.3s; }
.c-value a:hover { color: var(--bronze); }

/* Form */
.contact-form-wrap {}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  margin: 12px 0 6px;
}
.form-sub-text { color: var(--muted); font-size: 0.88rem; margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 600;
}
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 1px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(196,150,58,0.1);
}
textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 26px; width: 100%; justify-content: center; }
.form-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-note svg { color: var(--bronze); }
.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-success svg { color: var(--bronze); margin: 0 auto 20px; }
.form-success h4 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 0.9rem; }

/* ── Footer ──────────────────────────────────────────────── */

.footer {
  background: var(--ink);
  padding: 72px 68px 0;
}
.footer-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,150,58,0.25), transparent);
  margin-bottom: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 56px;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.footer-tag {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
}
.footer-desc {
  margin-top: 18px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.85;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.42);
  font-size: 0.87rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-cline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.42);
}
.footer-cline svg { flex-shrink: 0; margin-top: 2px; color: var(--bronze); }
.footer-cline a { color: rgba(255,255,255,0.42); transition: color 0.3s; }
.footer-cline a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 120px 40px 90px; gap: 48px; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-panel { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .section-head-right { text-align: left; }
  .approach-top { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .cta-band-title { max-width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-dark-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .svc-category-inner { grid-template-columns: 1fr; }
  .svc-cat-left { border-right: none; border-bottom: 1px solid rgba(196,150,58,0.15); padding-right: 0; padding-bottom: 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .pillar + .pillar::before { display: none; }
}

@media (max-width: 768px) {
  .nav, .nav.scrolled { padding: 16px 24px; }
  .nav-links, .nav-btn { display: none !important; }
  .hamburger { display: flex; }
  .mobile-menu, .mobile-overlay { display: block; }
  .hero-inner { padding: 110px 24px 80px; }
  .about, .services-preview, .approach, .cta-band,
  .svc-full, .process-section, .faq-section,
  .contact-section, .stats { padding-left: 24px; padding-right: 24px; }
  .pillars { padding: 0 24px; }
  .page-hero { padding: 140px 24px 60px; }
  .footer { padding: 60px 24px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-actions, .cta-band-actions { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { align-items: center; }
  .pillar { padding: 40px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
