/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy:        #1a2744;
  --navy-deep:   #0d1828;
  --navy-mid:    #243358;
  --navy-light:  #2e4278;
  --gold:        #c9a84c;
  --gold-light:  #dfc074;
  --gold-dark:   #a8882e;
  --gold-glow:   rgba(201, 168, 76, 0.18);
  --gold-line:   rgba(201, 168, 76, 0.35);

  --cream:       #f8f6f0;
  --white:       #ffffff;
  --text-on-dark:       rgba(248, 246, 240, 0.92);
  --text-muted-on-dark: rgba(248, 246, 240, 0.55);

  --bg-white:    #ffffff;
  --bg-light:    #f4f6fa;
  --text-dark:   #1a2744;
  --text-body:   #3d4e6d;
  --text-muted:  #7080a0;

  --container:   1200px;
  --gutter:      clamp(1.25rem, 4vw, 2rem);
  --radius:      12px;
  --radius-lg:   20px;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --trans:       0.35s var(--ease-out);
  --trans-fast:  0.2s var(--ease-out);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  background: var(--bg-white);
  color: var(--text-body);
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; object-fit: cover; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; letter-spacing: -0.02em; font-family: var(--serif); }
::selection { background: var(--gold); color: var(--navy-deep); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1.2rem; background: var(--cream); color: var(--navy);
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .85rem;
  transition: top var(--trans-fast);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal[data-split] { opacity: 1; transform: none; }
.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--radius);
  transition: var(--trans);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 246, 240, 0.35);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-navy:hover, .btn-navy:focus-visible {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.3);
}

/* =============================================================
   5. Navigation
   ============================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft),
              padding 0.3s var(--ease-soft);
  padding: 1.5rem 0;
  /* Hero is black — scrim keeps logo visible if user adds a photo */
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2), 0 4px 24px rgba(0,0,0,0.5);
  padding: .9rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 48px;
  width: auto;
  transition: height var(--trans);
  display: block;
}
.nav.is-scrolled .nav-logo img { height: 42px; }

.nav-links {
  display: none;
  list-style: none;
  gap: .25rem;
  margin-inline: auto;
}
.nav-links a {
  display: block;
  padding: .5rem .9rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(248, 246, 240, 0.8);
  letter-spacing: .03em;
  position: relative;
  transition: color var(--trans-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .9rem;
  right: .9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--cream);
}
.nav-links a:hover::after, .nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-contact {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.nav-phone {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(248, 246, 240, 0.7);
  transition: color var(--trans-fast);
}
.nav-phone:hover { color: var(--gold); }

.nav-hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--trans);
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.nav-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: none;
}
.nav-drawer a {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--cream);
  font-weight: 400;
  padding: .4rem 2rem;
  transition: color var(--trans-fast), transform var(--trans);
}
.nav-drawer a:hover { color: var(--gold); transform: translateX(8px); }
.nav-drawer-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.nav-drawer-contact a {
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(248,246,240,0.6);
}
.nav-drawer-contact a:hover { color: var(--gold); transform: none; }
.nav-drawer .btn-gold {
  margin-top: .5rem;
  font-size: .9rem;
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-contact { display: flex; }
  .nav-hamburger { display: none; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
}

/* Background photo with navy/gold luxury overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(201, 168, 76, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 0%,   rgba(201, 168, 76, 0.04), transparent 55%),
    linear-gradient(180deg, rgba(13,24,40,0.78) 0%, rgba(13,24,40,0.55) 45%, rgba(13,24,40,0.92) 100%),
    url('assets/img/hero-2.jpg');
  background-size: cover;
  background-position: center;
}
@keyframes heroPulse {
  0%   { opacity: 1; }
  100% { opacity: 0.92; filter: brightness(1.04); }
}

/* Architectural grid overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,15,30,0.15) 0%, transparent 35%, rgba(8,15,30,0.55) 100%),
    radial-gradient(ellipse 60% 50% at 50% 30%, transparent 50%, rgba(8,15,30,0.3) 100%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 6rem var(--gutter) 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-logo-wrap {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hero-logo-wrap.is-visible { opacity: 1; transform: none; }
.hero-logo-wrap img {
  height: clamp(90px, 16vw, 160px);
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

.hero-kicker {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s .15s var(--ease-out), transform .9s .15s var(--ease-out);
}
.hero-kicker.is-visible { opacity: 1; transform: none; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s .25s var(--ease-out), transform 1s .25s var(--ease-out);
}
.hero-title.is-visible { opacity: 1; transform: none; }
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

/* "Valuing What Matters" — large italic script title */
.hero-title-script {
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  color: var(--cream);
  margin-bottom: .75rem;
}

/* Three service CTA buttons under the hero title */
.hero-actions-services {
  margin-bottom: 2.5rem;
  gap: 1rem;
}
.btn-service {
  flex-direction: column;
  gap: .6rem;
  padding: 1.5rem 2.25rem;
  min-width: 160px;
  background: rgba(13, 24, 40, 0.35);
  color: var(--cream);
  border: 1px solid rgba(248, 246, 240, 0.35);
  border-radius: 4px;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@supports not (backdrop-filter: blur(6px)) {
  .btn-service { background: rgba(13, 24, 40, 0.65); }
}
.btn-service svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--trans);
}
.btn-service:hover, .btn-service:focus-visible {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  transform: translateY(-3px);
}
.btn-service:hover svg { transform: scale(1.1); }

@media (max-width: 640px) {
  .hero-actions-services { flex-direction: row; flex-wrap: wrap; }
  .btn-service { flex: 1 1 calc(33.333% - .7rem); min-width: 0; padding: 1rem .75rem; font-size: .65rem; gap: .4rem; }
  .btn-service svg { width: 22px; height: 22px; }
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted-on-dark);
  animation: scrollCueBounce 2.4s ease-in-out infinite;
}
.hero-scroll-cue:hover { color: var(--gold); }
.hero-scroll-cue svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes scrollCueBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-on-dark);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s .35s var(--ease-out), transform .9s .35s var(--ease-out);
}
.hero-sub.is-visible { opacity: 1; transform: none; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s .45s var(--ease-out), transform .9s .45s var(--ease-out);
}
.hero-actions.is-visible { opacity: 1; transform: none; }

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-line);
  margin-bottom: 2rem;
  opacity: 0;
  transition: opacity .9s .5s var(--ease-out);
}
.hero-divider.is-visible { opacity: 1; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: center;
  opacity: 0;
  transition: opacity .9s .55s var(--ease-out);
}
.hero-stats.is-visible { opacity: 1; }
.hero-stat-item {
  text-align: center;
}
.hero-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted-on-dark);
  margin-top: .3rem;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--gold-line);
  align-self: center;
  display: none;
}
@media (min-width: 540px) {
  .hero-stat-sep { display: block; }
}


/* =============================================================
   7. Marquee / Credentials Strip
   ============================================================= */
.marquee-strip {
  background: var(--gold);
  padding: .75rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  will-change: transform;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy-deep);
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy-deep);
  opacity: 0.5;
}

/* =============================================================
   8. Services
   ============================================================= */
.services {
  padding: 6rem 0;
  background: var(--bg-light);
}

.services .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services .section-sub { margin-inline: auto; }

/* Category tabs */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 3rem;
}
.services-tab {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.75rem;
  border: 1px solid rgba(26,39,68,0.12);
  border-radius: 999px;
  background: var(--bg-white);
  color: var(--text-dark);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans-fast);
}
.services-tab svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--trans-fast);
}
.services-tab:hover {
  border-color: var(--gold-line);
  color: var(--navy);
}
.services-tab.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.services-tab.is-active svg { stroke: var(--gold); }

@media (max-width: 640px) {
  .services-tabs { gap: .5rem; }
  .services-tab { padding: .65rem 1.1rem; font-size: .7rem; gap: .4rem; }
  .services-tab svg { width: 15px; height: 15px; }
}

/* Panels */
.services-panel-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-coming-soon {
  text-align: center;
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding: 2.5rem 2rem;
  border: 1px dashed var(--gold-line);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid rgba(26, 39, 68, 0.08);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 39, 68, 0.14), 0 0 0 1px rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.2);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--trans);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(201,168,76,0.22), rgba(201,168,76,0.1));
}
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .6rem;
  line-height: 1.25;
}

.service-desc {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (min-width: 540px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   9. Stats Band
   ============================================================= */
.stats-band {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.stats-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.06), transparent);
  pointer-events: none;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
}
.stat-item {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: .6rem;
}
.stat-label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted-on-dark);
}

@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   10. About
   ============================================================= */
.about {
  padding: 6rem 0;
  background: #000000;
}

/* ── About section — all text adapted for black background ── */
.about .section-title       { color: var(--cream); }
.about .section-title em    { color: var(--gold); }
.about .about-bio p         { color: rgba(248, 246, 240, 0.82); }
.about .about-bio p:first-child::first-letter { color: var(--gold); }
.about .about-read-more     { color: var(--gold); }
.about .about-read-more:hover { color: var(--gold-light); }
.about .credential-tag {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.25);
  color: var(--cream);
}
.about .credential-tag:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.5);
}
.about .about-photo-wrap {
  background: #111111;
  border-color: rgba(201, 168, 76, 0.25);
}
.about .about-photo-placeholder svg  { stroke: rgba(248, 246, 240, 0.15); }
.about .about-photo-placeholder span { color: rgba(248, 246, 240, 0.35); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Headshot placeholder — replace by adding an <img> inside .about-photo-wrap */
.about-photo-wrap {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: none;
  background: linear-gradient(160deg, #edf0f5 0%, #e2e7ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(13, 24, 40, 0.3);
}
.about-photo-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 2px);
  filter: brightness(1.15) contrast(1.05);
}
.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem;
}
.about-photo-placeholder svg {
  width: 56px;
  height: 56px;
  stroke: rgba(26,39,68,0.2);
  fill: none;
  stroke-width: 1.2;
}
.about-photo-placeholder span {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 18ch;
}

.about-logo-long {
  max-width: 240px;
  width: 100%;
  display: block;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.about-bio p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
}
.about-bio p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--navy);
  float: left;
  line-height: .8;
  margin-right: .12em;
  margin-top: .08em;
}

.about-bio-toggle {
  display: none;
}
.about-bio-extra {
  display: none;
}
.about-bio-extra.is-open {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .5rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: .04em;
  cursor: pointer;
  transition: color var(--trans-fast), gap var(--trans-fast);
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
}
.about-read-more:hover { color: var(--navy); gap: .7rem; }
.about-read-more svg {
  width: 16px; height: 16px;
  transition: transform var(--trans);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.about-read-more.is-open svg { transform: rotate(180deg); }

.credentials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.credential-tag {
  display: inline-block;
  padding: .35rem .85rem;
  background: rgba(26,39,68,0.06);
  border: 1px solid rgba(26,39,68,0.1);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: .02em;
  transition: background var(--trans-fast), border-color var(--trans-fast);
}
.credential-tag:hover {
  background: var(--gold-glow);
  border-color: var(--gold-line);
}

@media (min-width: 960px) {
  .about-inner {
    grid-template-columns: 340px 1fr;
    gap: 5rem;
  }
  .about-visual { align-items: flex-start; }
  .about-photo-wrap { max-width: 100%; }
  .about-bio-extra { display: flex; flex-direction: column; gap: 1.1rem; }
  .about-read-more { display: none; }
}

/* =============================================================
   11. Contact
   ============================================================= */
.contact {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info .section-title {
  color: var(--cream);
}
.contact-info .section-kicker {
  color: var(--gold);
}
/* Contact portrait photo */
.contact-photo {
  margin-bottom: 2rem;
}
.contact-photo img {
  width: 155px;
  height: 205px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold-line);
  box-shadow: 0 8px 32px rgba(13, 24, 40, 0.35);
  display: block;
}

.contact-sub {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 2.5rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-on-dark);
  font-size: 1.05rem;
  font-weight: 400;
  transition: color var(--trans-fast), transform var(--trans-fast);
}
.contact-link:hover { color: var(--gold); transform: translateX(4px); }
.contact-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--trans-fast);
}
.contact-link:hover .contact-link-icon {
  background: rgba(201,168,76,0.2);
}
.contact-link-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(6px);
}
@supports (backdrop-filter: blur(6px)) {
  .contact-form-wrap { background: rgba(255,255,255,0.04); }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.form-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted-on-dark);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(248,246,240,0.15);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .95rem;
  transition: border-color var(--trans-fast), background var(--trans-fast);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(248,246,240,0.3);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .95rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  font-family: var(--sans);
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.form-submit.is-sending {
  opacity: .7;
  pointer-events: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}
.form-success.is-visible { display: flex; }
.form-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success-icon svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-success p {
  color: var(--text-on-dark);
  font-size: 1rem;
  line-height: 1.7;
}
.form-success strong { color: var(--gold); }

@media (min-width: 540px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .contact-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* =============================================================
   12. Footer
   ============================================================= */
.footer {
  background: #000000;
  color: var(--text-muted-on-dark);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
.footer-brand img {
  height: auto;
  max-width: 220px;
  width: 100%;
  margin-bottom: 1.25rem;
  /* Black already provided by footer background — add subtle card for breathing room */
  background: #000;
  padding: .9rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.12);
  display: block;
}
.footer-tagline {
  font-size: .88rem;
  color: var(--text-muted-on-dark);
  line-height: 1.7;
  max-width: 30ch;
}
.footer-heading {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  font-size: .88rem;
  color: var(--text-muted-on-dark);
  transition: color var(--trans-fast), padding-left var(--trans-fast);
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: .3rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-muted-on-dark);
  margin-bottom: .6rem;
  transition: color var(--trans-fast);
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg {
  width: 15px; height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: .78rem;
  color: rgba(248,246,240,0.3);
}
.footer-lic {
  font-size: .72rem;
  color: rgba(248,246,240,0.22);
  letter-spacing: .03em;
}

@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1.2fr; }
}

/* =============================================================
   13. Effects & Keyframes
   ============================================================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.1s linear, box-shadow var(--trans);
}

/* =============================================================
   14. Responsive overrides
   ============================================================= */
@media (min-width: 540px) {
  .hero-stats { gap: 2rem 4rem; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: 5.5rem; }
}
