:root {
  --black: #080808;
  --charcoal: #111214;
  --ink: #1a1a1a;
  --cream: #f3eee4;
  --ivory: #fbf7ef;
  --muted: #c9c1b4;
  --gold: #b6975d;
  --gold-soft: #d7c08a;
  --line: rgba(182,151,93,.34);
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section-dark {
  color: var(--ivory);
  background: var(--black);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  padding: 14px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; flex-direction: column; gap: 0; letter-spacing: .04em; }
.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: .95;
  font-weight: 600;
  text-transform: uppercase;
}
.brand-line {
  margin-top: 4px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .62em;
  color: var(--muted);
}

.site-nav { display: flex; align-items: center; gap: 40px; }
.site-nav a {
  position: relative;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.82);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.site-nav a:hover::after { width: 100%; }
.nav-toggle { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.hero {
  min-height: 820px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/jacque-hero.jpg") center 28% / cover no-repeat;
  transform: scale(1.01);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.74) 31%, rgba(0,0,0,.20) 66%, rgba(0,0,0,.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0 180px; }
.eyebrow, .section-kicker {
  margin: 0 0 26px;
  color: var(--gold-soft);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .24em;
}
.eyebrow { display: flex; align-items: center; gap: 14px; }
.eyebrow span { display: block; width: 62px; height: 1px; background: var(--gold); }

h1, h2, h3, blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: .015em;
}
h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(4.6rem, 10vw, 8.8rem);
  line-height: .84;
  text-transform: uppercase;
}
h1 em { color: var(--gold-soft); font-style: normal; }
.hero-copy {
  max-width: 440px;
  margin: 34px 0 30px;
  color: rgba(255,255,255,.86);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: rgba(0,0,0,.38); color: var(--ivory); }
.btn-primary:hover { background: var(--gold); color: var(--black); }
.btn-secondary { color: var(--ink); background: transparent; }
.btn-secondary:hover { color: var(--ivory); background: var(--black); border-color: var(--black); }


.about {
  padding: 110px 0 95px;
  background:
    radial-gradient(circle at 10% 10%, rgba(182,151,93,.12), transparent 34%),
    linear-gradient(135deg, var(--ivory), var(--cream));
}
.split-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.section-kicker::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 58px;
  height: 1px;
  margin-left: 14px;
  background: var(--gold);
}
h2 {
  margin: 0 0 28px;
  font-size: clamp(2.65rem, 4.6vw, 5rem);
  line-height: .96;
}
.content-column p:not(.section-kicker):not(.signature), .perspective-content p, .cta p {
  max-width: 580px;
  color: rgba(26,26,26,.76);
  font-size: 1rem;
}
.signature {
  margin-top: 34px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-style: italic;
}
.portrait-card {
  position: relative;
  margin: 0;
  padding: 18px;
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(182,151,93,.22);
  box-shadow: 0 28px 80px rgba(0,0,0,.12);
}
.portrait-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--line);
  z-index: 0;
}
.portrait-card img { position: relative; z-index: 1; aspect-ratio: 1.34/1; object-fit: cover; object-position: center 32%; }

.expertise { padding: 105px 0 95px; background: radial-gradient(circle at 50% 0, #24211b, #080808 52%); }
.section-heading { text-align: center; margin-bottom: 56px; }
.section-heading .section-kicker::after { display: block; margin: 18px auto 0; width: 46px; }
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.expertise-card {
  min-height: 280px;
  padding: 38px 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}
.icon { width: 54px; height: 54px; margin-bottom: 24px; color: var(--gold); }
.icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.expertise-card h3 { margin: 0 0 16px; font-size: 1.65rem; line-height: 1.05; text-transform: uppercase; letter-spacing: .08em; }
.expertise-card p { margin: 0; color: rgba(255,255,255,.68); font-size: .94rem; }

.quote-band {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.86)), url("assets/tie-brand.jpg") center / cover no-repeat;
  overflow: hidden;
}
.quote-inner { text-align: center; }
blockquote {
  margin: 0 auto 24px;
  max-width: 820px;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1.1;
  font-style: italic;
  color: rgba(255,255,255,.9);
}
cite { color: var(--gold-soft); font-style: normal; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .24em; }

.perspective { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.perspective-image { background: url("assets/jacque-ocean.jpg") center / cover no-repeat; min-height: 520px; }
.perspective-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 110px);
  background: linear-gradient(135deg, var(--ivory), var(--cream));
}
.perspective-content h2 { max-width: 480px; }
.perspective-content .btn { margin-top: 20px; width: fit-content; }

.cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.95)), url("assets/tie-brand.jpg") center / cover no-repeat;
}
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta .section-kicker::after { display: none; }
.cta h2 { margin-left: auto; margin-right: auto; max-width: 900px; }
.cta p { margin: 0 auto 30px; color: rgba(255,255,255,.75); }

.site-footer { border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr 1fr;
  gap: 40px;
  padding: 52px 0;
  align-items: center;
}
.footer-brand .brand-name { font-size: 1.65rem; }
.site-footer nav { display: grid; gap: 8px; }
.site-footer nav a { color: rgba(255,255,255,.68); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-note { color: var(--gold-soft); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; font-style: italic; line-height: 1.35; }
.copyright { margin: 0; padding: 18px 24px 26px; text-align: center; border-top: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.45); font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 980px) {
  .site-header { padding: 14px 22px; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.14);
    background: transparent;
    color: white;
  }
  .nav-toggle span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; }
  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 24px;
    background: rgba(8,8,8,.96);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .site-nav.is-open { display: grid; gap: 20px; }
  .hero { min-height: 760px; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.38)), linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.75)); }
  .split-grid, .perspective, .footer-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 34px), var(--max)); }
  .brand-line { letter-spacing: .42em; font-size: .58rem; }
  .hero { min-height: 720px; }
  .hero-bg { background-position: 60% center; }
  .hero-inner { padding: 90px 0 140px; }
  h1 { font-size: clamp(3.5rem, 16vw, 5.2rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.3rem); }
  .about, .expertise, .cta { padding: 78px 0; }
  .expertise-grid { grid-template-columns: 1fr; }
  .portrait-card::after { display: none; }
  .perspective-content { padding: 66px 24px; }
  .btn { width: 100%; padding: 0 18px; }
}

/* Mobile refinements: prevent header/logo and hero headline from clipping */
.site-header .brand {
  color: var(--ivory);
  min-width: 0;
}

@media (max-width: 640px) {
  .site-header {
    min-height: 76px;
    padding: 14px 18px;
    gap: 14px;
  }

  .site-header .brand {
    max-width: calc(100% - 72px);
    overflow: hidden;
  }

  .brand-name {
    font-size: clamp(1.18rem, 5.1vw, 1.55rem);
    line-height: 1;
    white-space: nowrap;
  }

  .brand-line {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: .36em;
    font-size: .54rem;
  }

  .nav-toggle {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
  }

  .eyebrow {
    align-items: flex-start;
    gap: 10px;
    font-size: .64rem;
    letter-spacing: .16em;
    line-height: 1.45;
    max-width: 100%;
  }

  .eyebrow span {
    width: 48px;
    margin-top: .65em;
    flex: 0 0 48px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10.5vw, 2.95rem);
    line-height: .94;
    letter-spacing: -0.005em;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.34rem;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-line {
    letter-spacing: .28em;
  }
}
