/* =====================================================================
   Black & Gold Executive — shared stylesheet
   One file controls the whole look. Colours live in :root below.
   ===================================================================== */

:root {
  /* Brand colours — change these to re-tint the whole site */
  --bg:        #0b0b0c;   /* near-black background */
  --bg-2:      #0f0f11;   /* slightly lighter band */
  --surface:   #161619;   /* cards / panels */
  --surface-2: #1d1d21;   /* raised panels */
  --gold:      #c5a047;   /* primary brass/gold accent */
  --gold-soft: #d9bf73;   /* lighter gold for hovers */
  --text:      #f4f1ea;   /* warm off-white */
  --muted:     #a6a299;   /* secondary text */
  --line:      rgba(197, 160, 71, 0.20);   /* gold hairlines */
  --line-soft: rgba(244, 241, 234, 0.08);  /* faint dividers */

  --maxw: 1200px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: "Cinzel", "Cormorant Garamond", Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.1px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 70px 0; }
.band { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-block;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; color: var(--text); }
h1 { font-size: clamp(3rem, 6.6vw, 5.2rem); letter-spacing: 0; }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); letter-spacing: 0; }
h3 { font-size: 1.5rem; letter-spacing: 0.2px; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }
.gold-text { color: var(--gold); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  letter-spacing: 0.02em;
  padding: 15px 30px; border-radius: 100px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1408;
  box-shadow: 0 8px 30px -10px rgba(197, 160, 71, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(197, 160, 71, 0.75); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-lg { padding: 17px 38px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.site-header.scrolled {
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 9px; flex: none;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: var(--gold);
  font-size: 20px; letter-spacing: 0.5px;
  background: radial-gradient(120% 120% at 30% 20%, rgba(197,160,71,0.18), transparent);
}
.brand-name { font-family: var(--font-brand); font-size: 1.12rem; font-weight: 600; letter-spacing: 1.2px; }
.brand-name small { display: block; font-family: var(--font-body); font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: 14.5px; color: var(--muted); font-weight: 500; transition: color 0.2s; position: relative; }
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1.5px; background: var(--gold);
}
.header-cta { margin-left: 6px; }

/* mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--text); transition: 0.3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 82px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 80% at 75% 15%, rgba(197,160,71,0.12), transparent 55%),
    radial-gradient(100% 90% at 10% 90%, rgba(197,160,71,0.06), transparent 50%),
    linear-gradient(180deg, #08080a 0%, var(--bg) 60%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 60% at 70% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(80% 60% at 70% 30%, #000 0%, transparent 75%);
  opacity: 0.5;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 760px; }
.hero h1 { margin: 22px 0 24px; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .lead { margin-bottom: 38px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 1; color: var(--muted); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll::after { content: ""; width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); }

/* ---------- Credibility strip ---------- */
.cred-strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-2); }
.cred-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 46px; padding: 26px 24px; }
.cred-item { display: flex; align-items: center; gap: 12px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.cred-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }

/* ---------- Accreditation / trust band ---------- */
.trust { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust .container { padding: 46px 24px; }
.trust-eyebrow { text-align: center; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 30px; }
.trust-row { display: flex; align-items: center; justify-content: center; max-width: 760px; margin: 0 auto; }
.trust-item { flex: 1; display: flex; align-items: center; justify-content: center; padding: 6px 30px; border-right: 1px solid var(--line-soft); min-height: 76px; }
.trust-item:last-child { border-right: 0; }
.trust-item img { height: 52px; width: auto; max-width: 100%; object-fit: contain; opacity: 0.95; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.trust-item:hover img { opacity: 1; transform: translateY(-2px); }
.trust-item img.is-round { height: 70px; }   /* circular marks read smaller, size up to balance */
.trust-note { text-align: center; margin-top: 28px; font-size: 13.5px; letter-spacing: 0.03em; color: var(--muted); }
@media (max-width: 720px) {
  .trust .container { padding: 34px 16px; }
  .trust-eyebrow { margin-bottom: 22px; }
  .trust-item { padding: 6px 16px; min-height: 60px; }
  .trust-item img { height: 40px; }
  .trust-item img.is-round { height: 54px; }
}

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.card:hover { border-color: var(--line); transform: translateY(-4px); background: var(--surface-2); }
.card .icon {
  width: 46px; height: 46px; border-radius: 11px; margin-bottom: 22px;
  display: grid; place-items: center;
  background: rgba(197,160,71,0.10); border: 1px solid var(--line);
  color: var(--gold);
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--gold); font-size: 14px; font-weight: 600; }
.card-link svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* feature list with gold ticks */
.ticks li { position: relative; padding-left: 30px; margin-bottom: 14px; color: var(--muted); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='black' stroke-width='3' d='M20 6L9 17l-5-5'/></svg>") center/contain no-repeat;
}
.ticks li strong { color: var(--text); font-weight: 600; }

/* split feature block */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* media placeholder (where client photos go) */
.media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    radial-gradient(120% 120% at 70% 10%, rgba(197,160,71,0.14), transparent 60%),
    linear-gradient(160deg, #161619, #0c0c0e);
  border: 1px solid var(--line);
  min-height: 340px; display: grid; place-items: center; text-align: center;
}
.media .media-icon { color: var(--gold); opacity: 0.85; margin-bottom: 14px; }
.media .media-icon svg { width: 64px; height: 64px; }
.media .media-note { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); padding: 0 30px; }
.media.tall { min-height: 460px; }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 10px; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold); line-height: 1; }
.stat .label { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

/* numbered steps */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: flex; gap: 22px; align-items: flex-start; padding: 26px 30px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); flex: none; min-width: 46px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: linear-gradient(180deg, var(--bg-2), #08080a); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, rgba(197,160,71,0.12), transparent 70%); }
.cta-band .container { position: relative; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band .lead { margin: 0 auto 34px; }

/* ---------- Footer ---------- */
.site-footer { background: #08080a; border-top: 1px solid var(--line-soft); padding: 70px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-soft); }
.footer-top .brand { margin-bottom: 18px; }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 15px; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 13px; color: var(--muted); }
.footer-about { color: var(--muted); font-size: 15px; max-width: 38ch; }

/* ---------- Forms ---------- */
.form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; font-weight: 500; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 14px 16px; transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #5f5d57; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,160,71,0.15);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c5a047' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 18px; }
.form-success { display: none; padding: 18px 20px; border-radius: 10px; background: rgba(197,160,71,0.10); border: 1px solid var(--line); color: var(--gold-soft); margin-bottom: 22px; }
.form-success.show { display: block; }

/* contact rail */
.contact-rail { display: grid; gap: 18px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.contact-card .icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(197,160,71,0.10); border: 1px solid var(--line); color: var(--gold); display: grid; place-items: center; flex: none; }
.contact-card .icon svg { width: 20px; height: 20px; }
.contact-card h4 { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; font-weight: 600; }
.contact-card a, .contact-card p { font-size: 17px; color: var(--text); }
.contact-card a:hover { color: var(--gold); }

/* page hero (interior pages) */
.page-hero { padding: 150px 0 70px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 100% at 80% 0%, rgba(197,160,71,0.10), transparent 60%); }
.page-hero .container { position: relative; }
.page-hero h1 { margin: 18px 0 20px; max-width: 16ch; }
.page-hero .lead { max-width: 64ch; }
.breadcrumb { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section-pad { padding: 76px 0; }
  .nav {
    position: fixed; inset: 82px 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: rgba(11,11,12,0.97); backdrop-filter: blur(14px);
    padding: 10px 24px 26px; border-bottom: 1px solid var(--line-soft);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: 0.3s var(--ease);
  }
  body.nav-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
  .nav a.active::after { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-scroll { display: none; }
}
