/* ============================================================
   A Wise Man Group — HR Consulting
   Brand system: ink black, warm ivory, gold (from logo gradient)
   Display: Cormorant Garamond · Body: Jost
   ============================================================ */

:root {
  --ink: #16130e;
  --ink-soft: #3a352c;
  --gray: #6e675c;
  --ivory: #fdfcf9;
  --panel: #f7f4ec;
  --hairline: #e8e2d5;
  --gold: #b8892e;
  --gold-bright: #e3b54a;
  --gold-grad: linear-gradient(120deg, #9a7020, #d4a840 55%, #e9c05a);
  --max: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Cormorant Garamond", serif; color: var(--ink); font-weight: 600; line-height: 1.15; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Signature device: the gold spear divider ---------- */
.spear {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 0 auto;
}
.spear::before, .spear::after {
  content: ""; flex: 0 0 90px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.spear::after { background: linear-gradient(90deg, var(--gold), transparent); }
.spear .tip {
  width: 9px; height: 9px; background: var(--gold-grad);
  transform: rotate(45deg); flex: none;
}

.eyebrow {
  font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 252, 249, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 40px; width: auto; }
.nav-brand span {
  font-family: "Cormorant Garamond", serif; font-size: 20px;
  color: var(--ink); letter-spacing: 0.06em;
}
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 400; padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-toggle { display: none; background: none; border: 1px solid var(--hairline); border-radius: 4px; padding: 8px 12px; font-size: 18px; color: var(--ink); cursor: pointer; }

/* ---------- Hero (home) ---------- */
.hero { text-align: center; padding: 96px 24px 84px; position: relative; overflow: hidden; }
.hero .monogram { height: 130px; width: auto; margin: 0 auto 36px; }
.hero h1 { font-size: clamp(40px, 6vw, 66px); font-weight: 500; max-width: 820px; margin: 0 auto 8px; }
.hero h1 em { font-style: italic; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { max-width: 620px; margin: 26px auto 0; font-size: 19px; color: var(--gray); }
.hero .spear { margin-top: 42px; }

.btn-row { display: flex; gap: 18px; justify-content: center; margin-top: 42px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 15px 36px; font-size: 13.5px;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400;
  border: 1px solid var(--ink); color: var(--ink); transition: all .25s ease;
}
.btn:hover { background: var(--ink); color: var(--ivory); }
.btn.gold { background: var(--gold-grad); border: none; color: #fff; }
.btn.gold:hover { filter: brightness(1.08); color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { text-align: center; padding: 76px 24px 56px; border-bottom: 1px solid var(--hairline); }
.page-hero h1 { font-size: clamp(36px, 5vw, 54px); font-weight: 500; margin: 14px 0 10px; }
.page-hero p { max-width: 600px; margin: 0 auto; color: var(--gray); }
.page-hero .spear { margin-top: 34px; }

/* ---------- Sections ---------- */
section.band { padding: 84px 0; }
section.band.tint { background: var(--panel); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); font-weight: 500; margin-top: 12px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--hairline);
  padding: 40px 34px; position: relative; transition: border-color .25s ease, transform .25s ease;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-grad); opacity: 0; transition: opacity .25s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card:hover::before { opacity: 1; }
.card h3 { font-size: 24px; margin-bottom: 12px; }
.card p { font-size: 15.5px; color: var(--gray); }
.card .card-link { display: inline-block; margin-top: 18px; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- Video grid ---------- */
.video-card { background: #fff; border: 1px solid var(--hairline); }
.video-frame { position: relative; padding-top: 56.25%; background: var(--ink); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame .placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; color: #cbb87f;
}
.video-frame .placeholder .play {
  width: 62px; height: 62px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold-bright);
}
.video-frame .placeholder span { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; }
.video-meta { padding: 26px 28px 30px; }
.video-meta h3 { font-size: 22px; margin-bottom: 8px; }
.video-meta p { font-size: 15px; color: var(--gray); }

/* ---------- About ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { margin-bottom: 24px; font-size: 17.5px; }
.prose p:first-of-type::first-letter {
  font-family: "Cormorant Garamond", serif; font-size: 64px; line-height: 0.8;
  float: left; padding: 8px 12px 0 0; color: var(--gold);
}
.pullquote {
  font-family: "Cormorant Garamond", serif; font-size: 28px; font-style: italic;
  color: var(--ink); text-align: center; max-width: 640px; margin: 56px auto;
  padding: 0 24px;
}
.pullquote .spear { margin-top: 22px; }

/* ---------- Values strip ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--hairline); background: #fff; }
.values > div { padding: 44px 36px; text-align: center; }
.values > div + div { border-left: 1px solid var(--hairline); }
.values h3 { font-size: 22px; margin: 10px 0 10px; }
.values p { font-size: 15px; color: var(--gray); }

/* ---------- Contact ---------- */
.contact-panel {
  max-width: 640px; margin: 0 auto; background: #fff;
  border: 1px solid var(--hairline); border-top: 3px solid; border-image: var(--gold-grad) 1;
  padding: 54px 48px; text-align: center;
}
.contact-panel .email {
  font-family: "Cormorant Garamond", serif; font-size: clamp(22px, 3.4vw, 30px);
  color: var(--ink); display: inline-block; margin: 18px 0 6px;
  border-bottom: 1px solid var(--gold);
}
.contact-panel .email:hover { color: var(--gold); }

form.contact-form { text-align: left; margin-top: 40px; display: grid; gap: 20px; }
.contact-form label { font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 8px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 14px; font-family: "Jost", sans-serif; font-size: 16px;
  border: 1px solid var(--hairline); background: var(--ivory); color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form button { justify-self: start; cursor: pointer; background: none; font-family: "Jost", sans-serif; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: var(--ink); color: #cfc8ba; padding: 90px 24px; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.5vw, 46px); font-weight: 500; margin: 16px 0 14px; }
.cta-band p { max-width: 540px; margin: 0 auto 36px; }
.cta-band .btn { border-color: var(--gold); color: var(--gold-bright); }
.cta-band .btn:hover { background: var(--gold-grad); color: #fff; border-color: transparent; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--hairline); padding: 56px 24px 44px; text-align: center; }
.site-footer img { height: 44px; margin: 0 auto 18px; }
.footer-links { display: flex; gap: 28px; justify-content: center; list-style: none; margin: 18px 0 26px; flex-wrap: wrap; }
.footer-links a { font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.footer-links a:hover { color: var(--gold); }
.site-footer .fine { font-size: 13px; color: var(--gray); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .values > div + div { border-left: none; border-top: 1px solid var(--hairline); }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid var(--hairline);
    flex-direction: column; padding: 22px 0; gap: 20px;
  }
  .nav-links.open { display: flex; }
  .contact-panel { padding: 40px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .card::before, .btn { transition: none; }
}

/* ---------- Legal disclaimer ---------- */
.disclaimer {
  max-width: 820px; margin: 26px auto 14px; font-size: 12px;
  line-height: 1.6; color: #9a927f; text-align: center;
}
