/* ================================================================
   DE JAGER ATTORNEYS — Creative Stylesheet
   ================================================================ */

/* ---------- Variables ---------- */
:root {
  --navy:       #0b1929;
  --navy-2:     #112238;
  --navy-3:     #1a3050;
  --gold:       #c9a84c;
  --gold-2:     #e0c070;
  --gold-pale:  #f7f0de;
  --white:      #ffffff;
  --off-white:  #f8f5ef;
  --text:       #1a1a2e;
  --text-2:     #4a4a60;
  --text-3:     #8a8a9a;
  --border:     #e2d8c8;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
  --r-xl: 32px;

  --sh-sm: 0 2px 12px rgba(11,25,41,.08);
  --sh-md: 0 8px 40px rgba(11,25,41,.14);
  --sh-lg: 0 24px 80px rgba(11,25,41,.22);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 112px 0; }

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease), height .2s var(--ease), background .2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease), width .3s var(--ease), height .3s var(--ease), opacity .3s;
  opacity: .6;
}
.cursor.hovering { width: 20px; height: 20px; }
.cursor-follower.hovering { width: 56px; height: 56px; opacity: .3; }
@media (hover: none) { .cursor, .cursor-follower { display: none; } }
@media (hover: none) { body, button { cursor: auto; } }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.done { opacity: 0; visibility: hidden; }

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-scale {
  width: 72px; height: 72px;
  animation: loaderSpin 2s linear infinite;
}

@keyframes loaderSpin { to { transform: rotate(360deg); } }

.loader-circle {
  stroke-dasharray: 75;
  stroke-dashoffset: 75;
  animation: loaderDash 1.5s var(--ease) infinite alternate;
}
@keyframes loaderDash {
  to { stroke-dashoffset: 0; }
}

.loader-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.12em;
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--gold);
  animation: loaderBar 1.8s var(--ease) forwards;
}
@keyframes loaderBar { from { width: 0; } to { width: 100%; } }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(11,25,41,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
}
.logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--serif);
}
.logo-words span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-words em {
  font-size: .85rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  position: relative;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .03em;
  transition: color .3s;
  overflow: hidden;
}
.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:not(.btn-nav):hover { color: var(--gold); }
.nav-links a:not(.btn-nav):hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.btn-nav {
  padding: 10px 24px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  color: var(--gold) !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase;
  transition: background .3s, color .3s !important;
}
.btn-nav:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.btn-nav::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Scroll progress bar */
.nav-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  width: 0%;
  transition: width .1s;
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal="fade-up"]    { transform: translateY(48px); }
[data-reveal="fade-right"] { transform: translateX(-60px); }
[data-reveal="fade-left"]  { transform: translateX(60px); }
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  opacity: .5;
}

/* Floating shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 50%;
  animation: shapeDrift linear infinite;
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; animation-duration: 30s; }
.shape-2 { width: 360px; height: 360px; bottom: -80px; left: 5%; animation-duration: 22s; animation-delay: -5s; }
.shape-3 { width: 180px; height: 180px; top: 20%; left: 30%; animation-duration: 18s; animation-delay: -10s; border-color: rgba(201,168,76,.08); }
.shape-4 { width: 90px; height: 90px; top: 60%; right: 20%; animation-duration: 14s; animation-delay: -7s; border-color: rgba(255,255,255,.06); }

@keyframes shapeDrift {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.04); }
  100% { transform: rotate(360deg) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  padding-bottom: 80px;
}

/* Hero text */
.hero-text-wrap { max-width: 640px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeIn .8s .3s var(--ease) forwards;
}
.eyebrow-line {
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes heroFadeIn { to { opacity: 1; } }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 28px;
}

.line-wrap {
  display: block;
  overflow: hidden;
}
.line {
  display: block;
  transform: translateY(100%);
  animation: lineReveal .9s var(--bounce) forwards;
  animation-delay: var(--d);
}
.italic-gold {
  font-style: italic;
  color: var(--gold);
}

@keyframes lineReveal { to { transform: translateY(0); } }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  margin-bottom: 44px;
  opacity: 0;
  animation: heroFadeIn .8s .7s var(--ease) forwards;
}
.hero-sub strong { color: var(--gold-2); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn .8s .9s var(--ease) forwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 3px;
  transition: .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,.4);
}
.btn-arrow {
  width: 18px; height: 18px;
  transition: transform .3s var(--ease);
}
.btn:hover .btn-arrow { transform: translate(4px, 0); }

.btn-ghost {
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}

.mt-btn { margin-top: 12px; }

/* Hero card stack */
.hero-visual {
  opacity: 0;
  animation: heroFadeIn .8s 1.1s var(--ease) forwards;
}

.hero-card-stack {
  position: relative;
  width: 260px; height: 300px;
}

.hcard {
  position: absolute;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px;
}
.hcard-back {
  width: 220px; height: 260px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.2);
  top: 20px; right: 0;
  animation: cardFloat 6s ease-in-out infinite;
}
.hcard-mid {
  width: 200px; height: 220px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  top: 40px; left: 20px;
  animation: cardFloat 6s ease-in-out infinite 1s;
}
.hcard-front {
  width: 180px; height: 200px;
  background: linear-gradient(135deg, var(--navy-3), #2a4a6e);
  border: 1px solid rgba(201,168,76,.3);
  bottom: 0; right: 10px;
  box-shadow: var(--sh-lg);
  animation: cardFloat 6s ease-in-out infinite 2s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(.5deg); }
  66%       { transform: translateY(-5px) rotate(-.5deg); }
}

.hcard-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.hcard-year {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
}
.hcard-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hcard-plus {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 4px;
}
.hcard-desc {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.5;
}
.hcard-svg { width: 44px; height: 44px; }
.hcard-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,.8);
  text-align: center;
  line-height: 1.4;
}

/* Hero bottom */
.hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 28px 32px;
  opacity: 0;
  animation: heroFadeIn .6s 1.3s var(--ease) forwards;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,.4);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.hero-tagline {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
}

/* ---------- Marquee ---------- */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
}
.marquee-track .sep {
  color: rgba(11,25,41,.3);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section eyebrow / title ---------- */
.section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title--light { color: var(--white); }
.section-header { text-align: center; margin-bottom: 72px; }
.section-intro {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ---------- About ---------- */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.about-scene { position: relative; display: flex; justify-content: center; }

.about-frame {
  position: relative;
  width: 320px;
}

.about-frame-inner {
  background: linear-gradient(145deg, var(--navy-2), var(--navy-3));
  border-radius: var(--r-xl);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(201,168,76,.25);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.about-frame-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(201,168,76,.12), transparent 70%);
}
.frame-icon { position: relative; z-index: 1; }

/* Floating badges */
.fab {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--sh-md);
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  z-index: 2;
}
.fab-icon { width: 18px; height: 18px; flex-shrink: 0; }
.fab-top { top: 30px; right: -30px; animation: fabFloat 5s ease-in-out infinite; }
.fab-bot { bottom: 50px; left: -30px; animation: fabFloat 5s ease-in-out infinite 1.5s; }

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

/* Year orb */
.about-orb {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 130px; height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.orb-ring {
  position: absolute;
  inset: 0;
  animation: orbSpin 20s linear infinite;
}
@keyframes orbSpin { to { transform: rotate(360deg); } }

.orb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  width: 90px; height: 90px;
  justify-content: center;
  box-shadow: var(--sh-md);
}
.orb-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.orb-lbl {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(11,25,41,.7);
}

/* About right */
.about-right p {
  font-size: .97rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-right strong { color: var(--navy); font-weight: 600; }

.gold-rule {
  width: 50px; height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.value-pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.vp {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  transition: border-color .3s, box-shadow .3s;
}
.vp:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,.12);
}
.vp-icon { font-size: 1.4rem; }
.vp strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 3px;
}
.vp p { font-size: .83rem; color: var(--text-3); margin: 0; }

/* ---------- Stats Band ---------- */
.stats-band {
  position: relative;
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}
.stats-band-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.sitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition-delay: var(--sd) !important;
}
.sitem > p {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.sitem-ring-wrap {
  position: relative;
  width: 120px; height: 120px;
}
.sitem-svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}
.sr-bg {
  fill: none;
  stroke: rgba(255,255,255,.06);
  stroke-width: 6;
}
.sr-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.sitem-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.sitem-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.sitem-suf {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 8px;
}

/* ---------- Services ---------- */
.services {
  position: relative;
  background: var(--white);
  overflow: hidden;
}
.services-bg-word {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(180px, 28vw, 380px);
  font-weight: 700;
  color: rgba(11,25,41,.025);
  letter-spacing: -.02em;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background .3s;
  cursor: default;
}
.svc-row:first-child { border-top: 1px solid var(--border); }
.svc-row::before {
  content: '';
  position: absolute;
  inset: 0 -28px;
  background: var(--off-white);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s var(--ease);
  z-index: 0;
  border-radius: var(--r-md);
}
.svc-row:hover::before { transform: scaleY(1); }

.svc-num {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
  min-width: 70px;
  transition: opacity .3s;
}
.svc-row:hover .svc-num { opacity: 1; }

.svc-body {
  position: relative;
  z-index: 1;
  flex: 1;
}

.svc-top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}

.svc-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  color: var(--navy);
  transition: color .3s;
}
.svc-row:hover .svc-icon { color: var(--gold); }

.svc-head { flex: 1; }
.svc-head h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-head p {
  font-size: .93rem;
  color: var(--text-2);
  line-height: 1.7;
}

.svc-arrow-icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  flex-shrink: 0;
  transition: .3s var(--ease);
}
.svc-row:hover .svc-arrow-icon {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
  background: var(--gold-pale);
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 80px;
}
.svc-tags span {
  padding: 6px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-2);
  transition: .3s;
}
.svc-row:hover .svc-tags span {
  background: var(--gold-pale);
  border-color: rgba(201,168,76,.3);
  color: var(--navy);
}

/* ---------- Why Us ---------- */
.why-us {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.why-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.why-us .section-eyebrow { color: var(--gold); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.pillar {
  position: relative;
  padding: 40px 32px;
  background: var(--navy);
  transition: background .3s;
  transition-delay: var(--pd) !important;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.pillar:hover { background: rgba(201,168,76,.04); }
.pillar:hover::before { opacity: 1; }

.pillar-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(201,168,76,.2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color .3s;
}
.pillar:hover .pillar-num { color: rgba(201,168,76,.5); }

.pillar-ico {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}

.pillar h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar p {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
}

.pillar-line {
  position: absolute;
  bottom: 0; left: 32px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.pillar:hover .pillar-line { width: calc(100% - 64px); }

/* ---------- Quote Section ---------- */
.quote-section {
  position: relative;
  background: var(--gold-pale);
  padding: 100px 0;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.quote-shape {
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
}

.quote-wrap { text-align: center; max-width: 820px; margin: 0 auto; }

.quote-mark {
  font-family: var(--serif);
  font-size: 8rem;
  line-height: .6;
  color: var(--gold);
  opacity: .3;
  margin-bottom: -20px;
}

.quote-wrap blockquote {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 32px;
}

.quote-wrap cite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: .78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.cite-dash {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}

/* ---------- Contact ---------- */
.contact { background: var(--off-white); }

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

/* Contact cards */
.ccards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ccard {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 22px;
  transition: .3s var(--ease);
}
a.ccard:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,.12);
  transform: translateX(6px);
}
.ccard--plain { cursor: default; }

.ccard-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  padding: 12px;
  transition: .3s;
}
a.ccard:hover .ccard-icon {
  background: var(--gold);
  color: var(--navy);
}

.ccard-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ccard-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.ccard-body span {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.5;
}

.ccard-arr {
  font-size: 1.1rem;
  color: var(--text-3);
  transition: transform .3s var(--ease), color .3s;
}
a.ccard:hover .ccard-arr { transform: translateX(4px); color: var(--gold); }

/* Contact form */
.cform {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  box-shadow: var(--sh-md);
}

.cform-head {
  margin-bottom: 36px;
}
.cform-head h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.cform-head p {
  font-size: .875rem;
  color: var(--text-3);
}

.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cform-field {
  position: relative;
  margin-bottom: 28px;
}

.cform-field input,
.cform-field select,
.cform-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 12px 0 8px;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--text);
  outline: none;
  transition: border-color .3s;
  resize: vertical;
}
.cform-field select { cursor: pointer; appearance: none; }
.cform-select { position: relative; }
.sel-arrow {
  position: absolute;
  right: 0; bottom: 14px;
  width: 16px; height: 16px;
  color: var(--text-3);
  pointer-events: none;
}

.cform-field label,
.cform-field .select-lbl {
  position: absolute;
  top: 12px; left: 0;
  font-size: .9rem;
  color: var(--text-3);
  pointer-events: none;
  transition: .3s var(--ease);
}

/* Float label up when focused or has value */
.cform-field input:focus ~ label,
.cform-field input:not(:placeholder-shown) ~ label,
.cform-field textarea:focus ~ label,
.cform-field textarea:not(:placeholder-shown) ~ label,
.cform-field select:focus ~ .select-lbl,
.cform-field select:not([value=""]) ~ .select-lbl,
.cform-field select.has-value ~ .select-lbl {
  top: -12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Animated underline */
.field-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.cform-field input:focus ~ .field-line,
.cform-field textarea:focus ~ .field-line,
.cform-field select:focus ~ .field-line { width: 100%; }

/* Submit button */
.submit-btn {
  position: relative;
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  overflow: hidden;
  transition: .3s var(--ease);
  min-height: 54px;
  margin-bottom: 16px;
}
.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
  z-index: 0;
}
.submit-btn:hover::before { transform: scaleX(1); }
.submit-btn:hover { color: var(--navy); }
.sb-text, .sb-loader, .sb-check {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .3s, transform .3s;
  z-index: 1;
}
.sb-loader, .sb-check { opacity: 0; }
.sb-check { width: 22px; height: 22px; }

.submit-btn.loading .sb-text { opacity: 0; }
.submit-btn.loading .sb-loader { opacity: 1; }
.submit-btn.success .sb-text, .submit-btn.success .sb-loader { opacity: 0; }
.submit-btn.success .sb-check { opacity: 1; }
.submit-btn.success::before { transform: scaleX(1); background: #2d7a4e; }
.submit-btn.success { color: var(--white); }

.sb-loader {
  display: flex;
  gap: 6px;
  align-items: center;
}
.sb-loader .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--white);
  animation: dotBounce .9s ease-in-out infinite;
}
.sb-loader .dot:nth-child(2) { animation-delay: .15s; }
.sb-loader .dot:nth-child(3) { animation-delay: .3s; }
@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.7); opacity: .5; }
  40%           { transform: scale(1.1); opacity: 1; }
}

.cform-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-3);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 80px 28px 56px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ftagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem !important;
  color: rgba(201,168,76,.6) !important;
  line-height: 1.6 !important;
}

.footer-col h5 {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-col--last a,
.footer-col--last address {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 4px;
  font-style: normal;
  transition: color .3s;
}
.footer-col--last a:hover { color: var(--gold); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 28px;
}
.fbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.fbar-inner p {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-scene { max-width: 380px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(11,25,41,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0 24px;
    transform: translateY(-110%);
    transition: transform .4s var(--ease);
    box-shadow: var(--sh-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 28px; }
  .btn-nav { margin: 12px 28px; width: calc(100% - 56px); text-align: center; display: block; }
  .hamburger { display: flex; }

  .svc-tags { margin-left: 0; margin-top: 12px; }
  .svc-num { font-size: 2.5rem; min-width: 50px; }
  .pillars { grid-template-columns: 1fr; }
  .cform { padding: 32px 24px; }
  .cform-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 56px 28px 40px; }
  .fbar-inner { flex-direction: column; text-align: center; }
  .hero-bottom { padding: 0 20px 28px; }
}

@media (max-width: 480px) {
  .hero-content { padding-bottom: 100px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
