/* ═══════════════════════════════════════════════════════════════
   Applied Asset Partners — Premium Stylesheet v2
   Direction: Luxury editorial / private banking / auction house
   Fonts: Cormorant Garamond (display) + Instrument Sans (body)
   Palette: Near-black / deep blue-black / aged gold / ivory
   ═══════════════════════════════════════════════════════════════ */

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

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

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Backgrounds — layered depth */
  --bg-0:        #16161E;   /* deepest — hero, footers */
  --bg-1:        #1D1D28;   /* base page */
  --bg-2:        #232332;   /* surface */
  --bg-3:        #292940;   /* card */
  --bg-4:        #30304C;   /* elevated card */

  /* Gold system */
  --gold-dim:    #7A6030;
  --gold:        #B89148;
  --gold-mid:    #C9A55A;
  --gold-light:  #D9BC7E;
  --gold-pale:   #EDD9A3;
  --gold-glow:   rgba(184,145,72,0.12);
  --gold-border: rgba(184,145,72,0.22);
  --gold-border-bright: rgba(184,145,72,0.4);

  /* Text */
  --text-bright: #F0EBE1;
  --text:        #D8D0C4;
  --text-mid:    #9A9286;
  --text-dim:    #5A5550;
  --text-ghost:  #3A3A50;

  /* Type */
  --ff-display:  'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --ff-body:     'Instrument Sans', 'Gill Sans', system-ui, sans-serif;

  /* Spacing */
  --max-w:       1280px;
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --t-fast:      0.2s;
  --t-mid:       0.45s;
  --t-slow:      0.75s;
}

/* ── Base ───────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg-1);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection {
  background: var(--gold);
  color: var(--bg-0);
}

/* ── Film grain overlay ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.7;
  mix-blend-mode: overlay;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

/* ── Typography scale ───────────────────────────────────────── */
.display-hero {
  font-family: var(--ff-display);
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--text-bright);
}
.display-xl {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--text-bright);
}
.display-lg {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-bright);
}
.display-md {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-bright);
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-mid);
  display: inline-block;
}
.body-lg {
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 300;
  color: var(--text-mid);
}
.body-sm {
  font-size: 0.855rem;
  line-height: 1.75;
  color: var(--text-mid);
}
.body-xs {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text-dim);
}

em { font-style: italic; color: var(--gold-light); }

/* ── Gold rule ──────────────────────────────────────────────── */
.gold-rule {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.25rem 0;
  position: relative;
}
.gold-rule.center {
  width: 0;
  margin: 1.25rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-rule::after {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, rgba(184,145,72,0.25), transparent);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn .btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-glow), rgba(184,145,72,0.06));
  transform: translateX(-101%);
  transition: transform var(--t-mid) var(--ease-out);
}
.btn .btn-text { position: relative; z-index: 1; }
.btn .btn-arrow {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  transition: transform var(--t-mid) var(--ease-out);
  display: inline-block;
}
.btn:hover { border-color: var(--gold-mid); color: var(--text-bright); }
.btn:hover .btn-bg { transform: translateX(0); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-0);
  font-weight: 500;
}
.btn-primary .btn-bg {
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-light));
}
.btn-primary:hover { color: var(--bg-0); border-color: var(--gold-mid); }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.reveal.visible,
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.reveal-left.visible,
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.reveal-scale.visible,
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* ════════════════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.6rem 0;
  transition: padding var(--t-mid), background var(--t-mid), border-color var(--t-mid);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 1rem 0;
  background: rgba(6,6,8,0.9);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom-color: var(--gold-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  display: block;
  width: clamp(210px, 22vw, 320px);
  height: auto;
}

/* Nav links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  font-family: var(--ff-body);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-mid) var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--text-bright); }
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid var(--gold-border);
  padding: 0.55rem 1.4rem;
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease-out);
}
.nav-cta:hover {
  border-color: var(--gold-mid);
  color: var(--text-bright);
}
.nav-cta:hover::before { transform: scaleX(1); }
.nav-cta span { position: relative; z-index: 1; }

/* Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all var(--t-mid) var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,6,8,0.97);
  z-index: 499;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  backdrop-filter: blur(28px);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--text-mid);
}
.mobile-menu .nav-link:hover { color: var(--text-bright); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
}

/* Multi-layer atmospheric background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,20,28,0.92) 0%, rgba(20,20,28,0.7) 42%, rgba(20,20,28,0.38) 100%),
    linear-gradient(180deg, rgba(20,20,28,0.35) 0%, rgba(20,20,28,0.88) 100%),
    url("../assets/PIC%2014.png") center / cover no-repeat,
    radial-gradient(ellipse 60% 55% at 72% 35%, rgba(184,145,72,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 45% 70% at 10% 90%, rgba(28,20,55,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(18,16,30,0.7) 0%, transparent 50%),
    linear-gradient(148deg, #14141C 0%, #1A1A28 35%, #1E1C30 65%, #14141C 100%);
}

/* Decorative ring system */
.hero-bg::before {
  content: '';
  position: absolute;
  right: 5%;
  top: 8%;
  width: min(42vw, 600px);
  aspect-ratio: 1;
  border: 1px solid rgba(184,145,72,0.09);
  border-radius: 50%;
  animation: ringPulse 8s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: 9%;
  top: 14%;
  width: min(30vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(184,145,72,0.14);
  border-radius: 50%;
  animation: ringPulse 8s ease-in-out infinite 0.8s;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.02); }
}

/* Inner ring via JS-injected element */
.hero-ring-inner {
  position: absolute;
  right: 13%;
  top: 20%;
  width: min(18vw, 260px);
  aspect-ratio: 1;
  border: 1px solid rgba(184,145,72,0.15);
  border-radius: 50%;
  animation: ringPulse 8s ease-in-out infinite 1.6s;
  pointer-events: none;
}

/* Diagonal accent line */
.hero-line {
  position: absolute;
  top: 0;
  right: 28%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(184,145,72,0.08) 30%, rgba(184,145,72,0.12) 60%, transparent);
  transform: rotate(-8deg);
  transform-origin: top center;
}

.hero-content {
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(4rem, 8vh, 7rem);
  grid-row: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 860px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeUp 1s 0.1s var(--ease-out) forwards;
}
.hero-label-line {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 1s 0.25s var(--ease-out) forwards;
}
/* Large italic word breaking layout */
.hero-title .word-italic {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  padding-left: 4vw;
}

.hero-services {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s 0.4s var(--ease-out) forwards;
}
.hero-services .sep {
  opacity: 0.3;
  font-size: 0.5rem;
}

.hero-body {
  max-width: 500px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroFadeUp 1s 0.55s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s 0.7s var(--ease-out) forwards;
}

/* Scroll indicator */
.hero-scroll {
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem 0 2.5rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: heroFadeIn 1s 1.2s ease forwards;
}
.scroll-track {
  width: 1px;
  height: 48px;
  background: var(--gold-border);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.scroll-fill {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollFill 2s ease-in-out infinite 1.4s;
}
@keyframes scrollFill {
  0%   { top: -100%; }
  50%  { top: 0%; }
  100% { top: 100%; }
}
.scroll-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════════════════════════════
   SECTION TRANSITIONS — Diagonal cuts
════════════════════════════════════════════════════════════ */
.section-cut-top {
  position: relative;
}
.section-cut-top::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════
   BRAND STATEMENT
════════════════════════════════════════════════════════════ */
.brand-statement {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--bg-1);
  position: relative;
  border-top: 1px solid var(--gold-border);
}

/* Large decorative letter */
.brand-statement::after {
  content: 'A';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(18rem, 28vw, 32rem);
  font-weight: 300;
  color: var(--text-ghost);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.brand-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.brand-quote-wrap {
  position: relative;
  padding: 3rem 0 3rem 3rem;
}
.brand-quote-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.brand-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--text-bright);
}
.brand-quote em {
  display: block;
  font-size: 85%;
  color: var(--gold-light);
  margin-top: 0.5rem;
  font-style: normal;
}

/* ════════════════════════════════════════════════════════════
   SECTION HEADER (shared)
════════════════════════════════════════════════════════════ */
.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header.center {
  text-align: center;
}
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header .body-lg { margin-top: 1rem; }

/* ════════════════════════════════════════════════════════════
   SERVICES GRID
════════════════════════════════════════════════════════════ */
.services-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--bg-2);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 30%, var(--gold-border-bright) 50%, var(--gold-border) 70%, transparent 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(184,145,72,0.1);
  outline: 1px solid rgba(184,145,72,0.1);
}

.service-card {
  background: var(--bg-3);
  padding: clamp(2.5rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
  transition: background var(--t-mid);
}
/* Shimmer corner accent */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(ellipse at top right, rgba(184,145,72,0.08), transparent 70%);
  transition: opacity var(--t-mid);
}
/* Bottom gold bar */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-mid), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.service-card:hover { background: var(--bg-4); }
.service-card:hover::after { transform: scaleX(1); }

.editorial-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184,145,72,0.16);
  background: var(--bg-0);
}
.editorial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(20,20,28,0.24) 100%),
    linear-gradient(90deg, rgba(184,145,72,0.06), transparent 36%);
  pointer-events: none;
}
.editorial-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.94);
  transform: scale(1.01);
}

.service-card-media {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 42%);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}
.service-card-copy {
  min-width: 0;
}
.service-card-image {
  min-height: 100%;
  aspect-ratio: 3 / 4;
}

.service-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-4) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.service-card.featured::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold), transparent);
}

.service-num {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-border);
  max-width: 2rem;
}

.service-icon {
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1.8rem;
  position: relative;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--t-fast);
}
.service-card:hover .service-icon svg { stroke: var(--gold-light); }

.service-title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.service-body {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.service-link {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap var(--t-mid) var(--ease-out), color var(--t-fast);
}
.service-link::after { content: '→'; font-size: 0.8rem; }
.service-link:hover { color: var(--gold-light); gap: 1rem; }

/* Art sub-list */
.art-sub-list { list-style: none; margin: 0; }
.art-sub-list li {
  font-size: 0.845rem;
  color: var(--text-mid);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(184,145,72,0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: baseline;
  line-height: 1.6;
}
.art-sub-list li::before {
  content: '◆';
  font-size: 0.35rem;
  color: var(--gold);
  margin-top: 0.05rem;
}

/* ════════════════════════════════════════════════════════════
   CASE STUDIES
════════════════════════════════════════════════════════════ */
.cases-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
/* Watermark */
.cases-section::after {
  content: '——';
  position: absolute;
  left: -1%;
  bottom: -8%;
  font-family: var(--ff-display);
  font-size: clamp(14rem, 24vw, 28rem);
  font-weight: 300;
  color: var(--text-ghost);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.1em;
}

.section-header-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 30%);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.cases-image {
  aspect-ratio: 4 / 5;
  max-height: 420px;
  justify-self: end;
  width: min(100%, 320px);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gold-border);
  outline: 1px solid var(--gold-border);
  position: relative;
  z-index: 1;
}
.case-card {
  background: var(--bg-2);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--t-mid);
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transition: height var(--t-slow) var(--ease-out);
}
.case-card:hover { background: var(--bg-3); }
.case-card:hover::before { height: 100%; }
.case-tag {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.case-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1.35;
  margin-bottom: 1.2rem;
}
.cases-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════
   AUDIENCE
════════════════════════════════════════════════════════════ */
.audience-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--bg-0);
  position: relative;
}
.audience-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
.audience-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  background: var(--gold-border);
  outline: 1px solid var(--gold-border);
}
.audience-card {
  background: var(--bg-2);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  transition: background var(--t-mid);
}
.audience-card:hover { background: var(--bg-3); }
.audience-roman {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-border-bright);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 0.1rem;
  transition: color var(--t-mid);
}
.audience-card:hover .audience-roman { color: var(--gold-mid); }
.audience-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-bright);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

/* ════════════════════════════════════════════════════════════
   LEADERSHIP + FEE SECTION
════════════════════════════════════════════════════════════ */
.leadership-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--bg-2);
  position: relative;
  border-top: 1px solid var(--gold-border);
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
.principal-card {
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  padding: 2.5rem;
  position: relative;
  margin-top: 2rem;
}
.principal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.fee-list { list-style: none; margin-top: 2rem; }
.fee-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(184,145,72,0.08);
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.5rem;
  align-items: start;
}
.fee-list li:last-child { border-bottom: none; }
.fee-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-top: 0.1rem;
}

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════════════════ */
.why-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 30%, var(--gold-border-bright) 50%, var(--gold-border) 70%, transparent 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--gold-border);
  outline: 1px solid var(--gold-border);
}
.why-card {
  background: var(--bg-2);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--t-mid);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.why-card:hover { background: var(--bg-3); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.8rem;
}
.why-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-bright);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

/* ════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════ */
.cta-section {
  padding: clamp(8rem, 14vw, 14rem) 0;
  text-align: center;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(184,145,72,0.07) 0%, transparent 65%);
}
/* Thin horizontal lines for depth */
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  transform: translateY(-50%);
}

.cta-inner { position: relative; z-index: 1; }
.cta-inner .display-lg {
  max-width: 680px;
  margin: 1rem auto 2.5rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.cta-fine {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.cta-fine::before, .cta-fine::after {
  content: '';
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border));
}
.cta-fine::after { background: linear-gradient(90deg, var(--gold-border), transparent); }

/* ════════════════════════════════════════════════════════════
   OFFICES
════════════════════════════════════════════════════════════ */
.offices-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--gold-border);
  position: relative;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.region-group {}
.region-label {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  position: relative;
}
.region-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border), transparent);
}
.office-item { margin-bottom: 2.2rem; }
.office-city {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-bright);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}
.office-address {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.office-contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-border);
}
.office-contact a {
  display: block;
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  transition: color var(--t-fast);
  text-decoration: none;
}
.office-contact a:hover { color: var(--text-bright); }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--gold-border);
  padding: clamp(4rem, 7vw, 6rem) 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand-text {
  margin-top: 1.2rem;
  font-size: 0.845rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 300px;
}
.footer-col-head {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--gold-border);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.83rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--t-fast), padding-left var(--t-mid) var(--ease-out);
  display: inline-block;
}
.footer-links a:hover { color: var(--text-bright); padding-left: 4px; }
.footer-contact-line {
  font-size: 0.83rem;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
}
.footer-contact-line a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-contact-line a:hover { color: var(--text-bright); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(184,145,72,0.08);
}
.footer-tagline {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dim);
  font-weight: 300;
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════════ */
.contact-hero {
  padding: clamp(10rem, 18vh, 14rem) 0 clamp(4rem, 8vh, 7rem);
  background: var(--bg-0);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 40%, rgba(184,145,72,0.07) 0%, transparent 65%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(4rem, 8vh, 7rem) 0 clamp(8rem, 14vh, 12rem);
  background: var(--bg-1);
}
.contact-info-group { margin-bottom: 2.5rem; }
.contact-info-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.6rem;
}
.contact-info-value {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--text-bright);
  font-weight: 400;
}
.contact-info-value a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast);
}
.contact-info-value a:hover { color: var(--gold-light); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-mid);
  font-weight: 500;
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: border-color var(--t-mid), background var(--t-mid), box-shadow var(--t-mid);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-mid);
  background: var(--bg-3);
  box-shadow: 0 0 0 4px rgba(184,145,72,0.06);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B89148' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.8rem;
}
.form-select option { background: var(--bg-3); color: var(--text); }
.form-textarea { resize: vertical; min-height: 150px; }

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.7;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(184,145,72,0.08);
  background: rgba(184,145,72,0.025);
  border-left: 2px solid var(--gold-border);
}
.form-privacy strong { color: var(--gold-mid); font-weight: 400; }

.form-success {
  display: none;
  text-align: center;
  padding: 4rem 3rem;
  border: 1px solid var(--gold-border);
  background: var(--bg-3);
}
.form-success .display-md { color: var(--gold-light); margin-bottom: 1.2rem; }

/* ════════════════════════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════════════════════════ */
.services-hero {
  padding: clamp(10rem, 18vh, 14rem) 0 clamp(4rem, 8vh, 7rem);
  text-align: center;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 40%, rgba(184,145,72,0.07) 0%, transparent 65%);
}

.service-detail-section {
  padding: clamp(6rem, 10vw, 9rem) 0;
  border-top: 1px solid rgba(184,145,72,0.08);
  background: var(--bg-1);
  position: relative;
}
.service-detail-section:nth-child(even) { background: var(--bg-2); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
.service-detail-inner.reverse { grid-template-columns: 6fr 4fr; }
.service-detail-inner.reverse > *:first-child { order: 2; }
.service-detail-inner.reverse > *:last-child  { order: 1; }

.service-num-giant {
  font-family: var(--ff-display);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 300;
  color: var(--text-ghost);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: -1rem;
}
.service-tag {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
  display: block;
}
.service-detail-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-bright);
  margin-bottom: 1.5rem;
}
.service-detail-body {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.service-features { list-style: none; margin: 2rem 0; }
.service-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(184,145,72,0.07);
  font-size: 0.87rem;
  color: var(--text-mid);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  line-height: 1.6;
}
.service-features li::before {
  content: '◆';
  font-size: 0.38rem;
  color: var(--gold);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.art-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.75;
  border-top: 1px solid var(--gold-border);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}

.service-detail-image {
  aspect-ratio: 1;
  margin-bottom: 2rem;
}

/* ════════════════════════════════════════════════════════════
   PRIVACY PAGE
════════════════════════════════════════════════════════════ */
.privacy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(9rem, 16vh, 13rem) 0 clamp(6rem, 10vh, 10rem);
}
.privacy-body h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}
.privacy-last-updated {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gold-border);
}
.privacy-body h2 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-bright);
  margin: 2.8rem 0 0.9rem;
}
.privacy-body p, .privacy-body li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.88;
  margin-bottom: 0.9rem;
}
.privacy-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-body a { color: var(--gold-light); }
.privacy-body a:hover { color: var(--text-bright); }
.privacy-notice-box {
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  padding: 1.8rem 2.2rem;
  margin: 2.5rem 0;
}
.privacy-notice-box p { margin: 0; }

/* ════════════════════════════════════════════════════════════
   ANIMATIONS / UTILITIES
════════════════════════════════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}


/* ════════════════════════════════════════════════════════════
   TASTEFUL CSS ANIMATIONS
   Philosophy: motion should feel inevitable, not decorative.
   Every animation has a purpose — direct attention, confirm
   interaction, or give the page a sense of life and depth.
════════════════════════════════════════════════════════════ */

/* ── 1. Gold rule draw-in on scroll ─────────────────────── */
/* Gold rules animate from 0 width → full width when visible */
.gold-rule {
  width: 0;
  transition: width 0.9s var(--ease-out);
}
.gold-rule.visible,
.gold-rule.is-visible,
.reveal.visible .gold-rule,
.reveal.is-visible .gold-rule,
.reveal-left.visible .gold-rule {
  width: 2.5rem;
}
.gold-rule.center {
  width: 0;
  transition: width 1s var(--ease-out);
}
.reveal.visible .gold-rule.center,
.reveal.is-visible .gold-rule.center,
.section-header.center.reveal.visible .gold-rule.center,
.section-header.center.reveal.is-visible .gold-rule.center,
.gold-rule.center.visible {
  width: 5rem;
}

/* ── 2. Eyebrow letter-spacing entrance ─────────────────── */
.eyebrow {
  letter-spacing: 0.1em;
  opacity: 0;
  transition: letter-spacing 0.9s var(--ease-out), opacity 0.6s ease;
}
.reveal.visible .eyebrow,
.reveal.is-visible .eyebrow,
.reveal-left.visible .eyebrow,
.reveal-left.is-visible .eyebrow,
.eyebrow.visible {
  letter-spacing: 0.28em;
  opacity: 1;
}
/* Eyebrow always visible when not inside a reveal */
.site-header .eyebrow,
.hero-label .eyebrow {
  opacity: 1;
  letter-spacing: 0.28em;
}

/* ── 3. Service / case / why card — gold border pulse on hover ──── */
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,145,72,0); }
  50%       { box-shadow: 0 0 18px 2px rgba(184,145,72,0.08); }
}
.service-card:hover,
.case-card:hover,
.why-card:hover {
  animation: borderGlow 2.4s ease-in-out infinite;
}

/* ── 4. Section divider lines — shimmer sweep ─────────────── */
@keyframes lineShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.services-section::before,
.why-section::before {
  background-size: 200%;
  animation: lineShimmer 6s linear infinite;
}

/* ── 5. Hero rings — slow drift ──────────────────────────── */
@keyframes ringDrift {
  0%   { transform: rotate(0deg) scale(1); }
  33%  { transform: rotate(1.5deg) scale(1.01); }
  66%  { transform: rotate(-1deg) scale(0.99); }
  100% { transform: rotate(0deg) scale(1); }
}
.hero-bg::before { animation: ringPulse 8s ease-in-out infinite, ringDrift 20s ease-in-out infinite; }
.hero-bg::after  { animation: ringPulse 8s ease-in-out infinite 0.8s, ringDrift 26s ease-in-out infinite 3s; }
.hero-ring-inner { animation: ringPulse 8s ease-in-out infinite 1.6s, ringDrift 18s ease-in-out infinite 6s; }

/* ── 6. Brand statement quote — soft glow entrance ────────── */
@keyframes quoteGlow {
  from { text-shadow: 0 0 0 rgba(184,145,72,0); }
  to   { text-shadow: 0 8px 40px rgba(184,145,72,0.08); }
}
.reveal-left.visible .brand-quote {
  animation: quoteGlow 1.5s 0.6s ease forwards;
}

/* ── 7. Decorative watermark letters — gentle float ──────── */
@keyframes watermarkFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(-52%) translateX(-6px); }
}
.brand-statement::after {
  animation: watermarkFloat 14s ease-in-out infinite;
}
@keyframes watermarkFloatLeft {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(8px); }
}
.cases-section::after {
  animation: watermarkFloatLeft 18s ease-in-out infinite;
}

/* ── 8. Nav links — staggered entrance on page load ──────── */
@keyframes navSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.main-nav .nav-link:nth-child(1) { animation: navSlideIn 0.5s 0.05s var(--ease-out) both; }
.main-nav .nav-link:nth-child(2) { animation: navSlideIn 0.5s 0.12s var(--ease-out) both; }
.main-nav .nav-link:nth-child(3) { animation: navSlideIn 0.5s 0.19s var(--ease-out) both; }
.main-nav .nav-cta              { animation: navSlideIn 0.5s 0.27s var(--ease-out) both; }

/* ── 9. Button — subtle lift on hover ────────────────────── */
.btn {
  transition: all var(--t-mid) var(--ease-out),
              transform var(--t-mid) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184,145,72,0.12);
}
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(184,145,72,0.22);
}

/* ── 10. Audience roman numerals — count-up feel ─────────── */
@keyframes numReveal {
  from { opacity: 0; transform: translateY(12px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.audience-card:nth-child(1) .audience-roman { animation: none; transition: color var(--t-mid); }
.reveal.visible .audience-card:nth-child(1) .audience-roman { animation: numReveal 0.5s 0.1s var(--ease-out) both; }
.reveal.visible .audience-card:nth-child(2) .audience-roman { animation: numReveal 0.5s 0.25s var(--ease-out) both; }
.reveal.visible .audience-card:nth-child(3) .audience-roman { animation: numReveal 0.5s 0.4s var(--ease-out) both; }

/* ── 11. Office cities — elegant underline reveal on hover ── */
.office-city {
  position: relative;
  display: inline-block;
}
.office-city::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.office-item:hover .office-city::after { width: 100%; }

/* ── 12. Scroll fill — smoother timing ───────────────────── */
@keyframes scrollFill {
  0%   { top: -100%; opacity: 0.4; }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { top: 100%; opacity: 0.4; }
}

/* ── 13. CTA section — ambient pulse behind headline ─────── */
@keyframes ambientPulse {
  0%, 100% { opacity: 0.07; transform: scale(1); }
  50%       { opacity: 0.11; transform: scale(1.04); }
}
.cta-section::before {
  animation: ambientPulse 8s ease-in-out infinite;
}

/* ── 14. Principal card left border — height draw ────────── */
@keyframes borderDraw {
  from { height: 0; }
  to   { height: 100%; }
}
.reveal.visible .principal-card::before {
  animation: borderDraw 1s 0.4s var(--ease-out) forwards;
  height: 0;
}

/* ── 15. Footer links — smooth indent on hover ───────────── */
.footer-links a {
  transition: color var(--t-fast), padding-left 0.35s var(--ease-out);
}
.footer-links a:hover { padding-left: 6px; }

/* ── Reduce motion — kill everything non-essential ───────── */
@media (prefers-reduced-motion: reduce) {
  .gold-rule, .eyebrow {
    transition: none !important;
    width: 2.5rem !important;
    opacity: 1 !important;
    letter-spacing: 0.28em !important;
  }
  .gold-rule.center { width: 5rem !important; }
  .service-card:hover, .case-card:hover, .why-card:hover { animation: none !important; }
  .services-section::before, .why-section::before { animation: none !important; }
  .hero-bg::before, .hero-bg::after, .hero-ring-inner { animation: ringPulse 0s !important; }
  .brand-statement::after, .cases-section::after { animation: none !important; }
  .main-nav .nav-link, .main-nav .nav-cta { animation: none !important; }
  .btn { transition: background var(--t-fast), border-color var(--t-fast) !important; }
  .btn:hover { transform: none !important; box-shadow: none !important; }
  .cta-section::before { animation: none !important; }
}

/* ════════════════════════════════════════════════════════════
   EXTRACTED INLINE STYLES
════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.hidden { display: none; }
.mb-080 { margin-bottom: 0.8rem; }
.mb-120 { margin-bottom: 1.2rem; }
.mb-150 { margin-bottom: 1.5rem; }
.mb-180 { margin-bottom: 1.8rem; }
.mb-200 { margin-bottom: 2rem; }
.mb-250 { margin-bottom: 2.5rem; }
.mt-150 { margin-top: 1.5rem; }
.my-150 { margin: 1.5rem 0; }

.section-header-copy {
  max-width: 520px;
  margin: 1rem auto 0;
}
.section-header-copy-left {
  max-width: 540px;
  margin: 1rem 0 0;
}
.advisory-disclaimer {
  margin-top: 1.8rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.75;
}
.audience-copy {
  margin-top: 1.5rem;
  max-width: 360px;
}
.principal-note {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: var(--text-dim);
}
.referrals-section {
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: var(--bg-0);
  border-top: 1px solid var(--gold-border);
}
.referrals-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}
.referrals-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.cta-copy {
  max-width: 480px;
  margin: 1rem auto 0;
}
.offices-copy {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.footer-cta-wrap { margin-top: 2rem; }
.footer-cta-wrap-sm { margin-top: 1.5rem; }
.btn-compact {
  font-size: 0.6rem;
  padding: 0.6rem 1.4rem;
}
.btn-footer {
  font-size: 0.62rem;
  padding: 0.6rem 1.4rem;
}

.services-hero-copy {
  max-width: 580px;
  margin: 1.5rem auto 0;
}
.services-hero-note {
  margin-top: 1rem;
  color: var(--text-dim);
}
.legal-emphasis {
  font-weight: 400;
  color: var(--text);
}
.service-detail-section-alt {
  background: var(--bg-surface, var(--bg-2));
}
.art-disclaimer-spaced { margin-top: 2rem; }
.services-cta-copy {
  max-width: 500px;
  margin: 1rem auto 0;
}

.contact-hero-copy {
  max-width: 520px;
  margin: 1.5rem auto 0;
}
.contact-main-section { padding: 0 0 1rem; }
.contact-info-value-sm,
.office-city-sm {
  font-size: 0.95rem;
}
.contact-office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.privacy-commitment {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--gold-border);
  background: var(--bg-3);
}
.required-mark { color: var(--gold); }
.required-mark-spaced { margin-left: 0.2rem; }
.link-gold { color: var(--gold); }
.link-gold-light { color: var(--gold-light); }
.form-consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}
.consent-checkbox {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  cursor: pointer;
}
.consent-label {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.7;
  cursor: pointer;
}

.privacy-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 11rem 0 8rem;
}
.privacy-body h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}
.privacy-last-updated {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 2rem;
}
.privacy-body h2 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-bright);
  margin: 2.5rem 0 0.8rem;
}
.privacy-body p,
.privacy-body li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.privacy-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-body a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: var(--gold-border);
}
.privacy-body a:hover { color: var(--text-bright); }
.privacy-notice-box {
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.privacy-notice-box p { margin: 0; }
.privacy-body strong {
  color: var(--text);
  font-weight: 400;
}
.footer-bottom-minimal {
  padding-top: 0;
  border-top: none;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-statement::after { font-size: 18rem; right: -4%; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .brand-inner { grid-template-columns: 1fr; gap: 3rem; }
  .brand-statement::after { display: none; }
  .audience-inner { grid-template-columns: 1fr; gap: 3rem; }
  .audience-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: 1; grid-template-columns: 1fr; }
  .service-card-media { grid-template-columns: 1fr; }
  .service-card-image {
    aspect-ratio: 16 / 10;
    min-height: 0;
    order: -1;
  }
  .section-header-media {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cases-image {
    aspect-ratio: 16 / 9;
    max-height: none;
    justify-self: stretch;
    width: 100%;
  }
  .cases-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail-inner,
  .service-detail-inner.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-inner.reverse > *:first-child { order: unset; }
  .service-detail-inner.reverse > *:last-child  { order: unset; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-title .word-italic { padding-left: 2vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
