/* ============================================================
   BRANDLOCKED LEGAL — luxury/editorial site
   ============================================================ */
:root {
  --navy: #0b0d0e;
  --navy-2: #0b0d0e;
  --black: #0b0d0e;
  --cream: #f4ecda;
  --cream-2: #f8f2e3;
  --gold: #c9a368;
  --gold-2: #d9b877;
  --gold-line: rgba(201,163,104,.55);
  --white: #ffffff;
  --text: #eae5d5;
  --text-dim: rgba(234,229,213,.72);
  --text-dark: #1a2130;
  --text-dark-dim: rgba(26,33,48,.68);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --script: "Dancing Script", "Brush Script MT", cursive;
  --tracking: .18em;
  --tracking-lg: .28em;
  --maxw: 1400px;
  --gutter: clamp(20px, 4vw, 60px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ============ Typography helpers ============ */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}
.eyebrow--stack { line-height: 1.9; display: flex; flex-direction: column; gap: 2px; color: var(--text); }
.eyebrow--stack strong { color: var(--gold); font-weight: 600; letter-spacing: var(--tracking-lg); }
.eyebrow--light { color: var(--gold); }

.rule { width: 60px; height: 2px; background: var(--gold); margin: 14px 0 22px; border-radius: 2px; }
.rule--gold { background: var(--gold); }

/* ============ CTA buttons ============ */
.cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-lg);
  text-transform: uppercase;
  padding: 18px 32px;
  transition: all .25s ease;
  white-space: nowrap;
}
.cta--solid {
  background: var(--gold);
  color: var(--navy);
}
.cta--solid:hover { background: var(--gold-2); transform: translateY(-1px); }
.cta--outline {
  background: transparent;
  border: 1px solid #000;
  color: #000;
  padding: 16px 26px;
  font-size: 11px;
}
.cta--outline:hover { background: #000; color: var(--gold); border-color: var(--gold); }

/* ============ NAV ============ */
.nav {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 56px var(--gutter) 34px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 14px; color: var(--white); margin-left: calc(-1 * var(--gutter)); }
.logo img { height: 140px; width: auto; display: block; }
@media (max-width: 700px) { .logo img { height: 88px; } .logo { margin-left: 0; } }
.logo__mark { width: 52px; color: var(--gold); }
.logo__mark svg { width: 100%; height: auto; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .22em;
}
.logo__sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .6em;
  color: var(--gold);
  margin-top: 6px;
  padding-left: 2px;
}

.nav__links {
  display: flex;
  gap: 34px;
  justify-content: center;
}
.nav__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking);
  color: #000;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav__link:hover { color: var(--gold); }
.nav__link--active { color: #000; border-color: var(--gold); }

/* Sub-page nav (solid black background) needs light-colored links */
.nav--solid { background: #0b0d0e; border-bottom: 1px solid rgba(201,163,104,.18); }
.nav--solid .nav__link { color: var(--cream); }
.nav--solid .nav__link:hover { color: var(--gold); }
.nav--solid .nav__link--active { color: var(--gold); border-color: var(--gold); }
.nav--solid .cta--outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.nav--solid .cta--outline:hover { background: var(--gold); color: #000; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--white); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--navy);
  overflow: hidden;
  padding-bottom: 60px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 75%;
  object-fit: cover;
  object-position: 55% center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.25) 10%, #000 30%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.25) 10%, #000 30%, #000 100%);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0b0d0e 0%, #0b0d0e 18%, rgba(0,0,0,.35) 34%, rgba(0,0,0,0) 52%),
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.92) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0;
  padding: 30px var(--gutter) 60px;
  padding-left: calc(var(--gutter) + 40px);
}
.hero__content .eyebrow--stack { margin-bottom: 26px; font-size: 13px; }
.hero__rule {
  width: 90px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 22px;
}
.hero__headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.005em;
  margin: 0 0 26px;
  color: var(--white);
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero__sub {
  color: var(--text-dim);
  max-width: 460px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 34px;
}

.hero__nameplate {
  position: absolute;
  right: var(--gutter);
  bottom: 24px;
  z-index: 2;
  text-align: right;
  padding: 0;
  background: none;
  border: 0;
}
.hero__name {
  font-family: var(--script);
  font-size: 30px;
  color: var(--gold);
  margin: 0 0 2px;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.hero__title {
  font-size: 10px;
  letter-spacing: var(--tracking-lg);
  color: var(--text);
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}

/* ============ STATS BAR ============ */
.stats {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.stats__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 20px;
  border-left: 1px solid rgba(201,163,104,.28);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__icon { color: var(--gold); width: 34px; height: 34px; display: inline-flex; }
.stat__icon svg { width: 100%; height: 100%; }
.stat__label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tracking);
  margin: 0 0 4px;
}
.stat__value {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
}

/* ============ ABOUT + SERVICES ============ */
.about {
  background: var(--cream);
  color: var(--text-dark);
  padding: 90px 0 100px;
}
.about__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__col .eyebrow { color: var(--gold); }
.about__headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  color: var(--text-dark);
  margin: 0 0 22px;
}
.about__headline em { font-style: italic; color: var(--gold); font-weight: 500; }
.about__body {
  color: var(--text-dark-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 0 28px;
}
.about__signoff {
  color: var(--text-dark);
  font-size: 16px;
}
.signature {
  font-family: var(--script);
  color: var(--gold);
  font-size: 30px;
  margin-left: 8px;
  vertical-align: middle;
}

.about__portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }
.about__portrait-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.services { list-style: none; padding: 0; margin: 22px 0 0; }
.service { border-bottom: 1px solid rgba(26,33,48,.14); }
.service:first-child { border-top: 1px solid rgba(26,33,48,.14); }
.service__row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  width: 100%;
  text-align: left;
  color: var(--text-dark);
  transition: color .2s;
}
.service__row:hover { color: var(--gold); }
.service__icon { color: var(--gold); display: inline-flex; }
.service__icon svg { width: 26px; height: 26px; }
.service__name { font-size: 15px; font-weight: 500; }
.service__chev { font-size: 20px; color: var(--gold); transform: rotate(90deg); transition: transform .2s; }

/* ============ QUOTE ============ */
.quote {
  background: var(--black);
  text-align: center;
  padding: 70px var(--gutter);
  position: relative;
  color: var(--text);
}
.quote__mark {
  display: block;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 96px;
  line-height: .4;
  height: 30px;
  margin: 0 auto 14px;
}
.quote__body {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--cream);
  margin: 0 auto 14px;
  max-width: 780px;
  line-height: 1.4;
}
.quote__tag {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: var(--tracking-lg);
  font-weight: 600;
  margin: 0;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--navy-2);
  padding: 100px var(--gutter);
}
.contact__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.contact__headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 52px);
  color: var(--white);
  margin: 14px 0 12px;
}
.contact__body { color: var(--text-dim); margin: 0 0 40px; }
.contact__form { text-align: left; display: grid; gap: 18px; }
.contact__form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact__form label { display: block; }
.contact__form span {
  font-size: 11px;
  letter-spacing: var(--tracking);
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201,163,104,.35);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color .2s;
}
.contact__form input:focus,
.contact__form textarea:focus { outline: 0; border-color: var(--gold); }
.contact__form button { justify-self: start; margin-top: 6px; }
.hp { position: absolute; left: -9999px; }

/* ============ FOOTER ============ */
.foot { background: var(--black); padding: 56px var(--gutter) 30px; border-top: 1px solid rgba(201,163,104,.18); }
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: .04em;
  line-height: 1.7;
}
.foot__col p { margin: 0 0 8px; }
.foot__brand {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px !important;
}
.foot__social { display: flex; gap: 12px; align-items: flex-start; }
.foot__social a {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background .2s, color .2s;
}
.foot__social a:hover { background: var(--gold); color: #000; }
.foot__legal {
  grid-column: 1 / -1;
  margin-top: 24px !important;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
  text-align: center;
  color: rgba(234,229,213,.4);
}
.foot a { color: var(--gold); }

/* ============ PAGE HERO (About / Services / Resources / Contact) ============ */
.pagehero {
  background: #0b0d0e;
  padding: 60px 0 80px;
  position: relative;
}
.pagehero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px var(--gutter) 0;
  text-align: center;
}
.pagehero .eyebrow { color: var(--gold); margin-bottom: 20px; }
.pagehero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.02;
  color: var(--white);
  margin: 0 0 20px;
}
.pagehero__title em { font-style: italic; color: var(--gold); font-weight: 500; }
.pagehero__sub {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
}
.pagehero__rule {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 22px auto 0;
  border-radius: 2px;
}

/* ============ PAGE SECTIONS ============ */
.section { padding: 90px 0; }
.section--cream { background: var(--cream); color: var(--text-dark); }
.section--dark { background: #0b0d0e; color: var(--text); }
.section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section__inner--wide { max-width: var(--maxw); }
.section__eyebrow { color: var(--gold); font-size: 12px; letter-spacing: var(--tracking); text-transform: uppercase; font-weight: 600; margin: 0 0 12px; }
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.15;
  margin: 0 0 26px;
}
.section__title em { font-style: italic; color: var(--gold); font-weight: 500; }
.section__body { font-size: 16px; line-height: 1.8; margin: 0 0 20px; }
.section--cream .section__body { color: var(--text-dark-dim); }
.section--dark .section__body { color: var(--text-dim); }

/* Two-column layout used on About / Services detail */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split--textleft { grid-template-columns: 1.1fr .9fr; }
.split img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; display: block; }
.split figure {
  margin: 0;
  position: sticky;
  top: 40px;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  justify-self: end;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.split figure .frame {
  position: absolute; inset: 14px; border: 1px solid var(--gold);
  pointer-events: none;
}

/* Bio hero: portrait shifted to the right, text on the left */
.bio-hero {
  position: relative;
  padding: 120px 0 100px;
  color: var(--text);
  overflow: hidden;
  isolation: isolate;
  background: #000;
}
.bio-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-portrait.jpg");
  background-size: cover;
  background-position: 20% center;
  z-index: -2;
}
.bio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0b0d0e 0%, #0b0d0e 25%, rgba(0,0,0,.65) 45%, rgba(0,0,0,.25) 65%, rgba(0,0,0,.15) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.7) 100%);
  z-index: -1;
}
.bio-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.bio-hero__inner > div { max-width: 620px; }
.bio-hero .section__body { color: var(--text); text-shadow: 0 1px 12px rgba(0,0,0,.6); }
.bio-hero .creds__value { color: var(--white); }
.bio-hero .creds__label { color: var(--gold); }
.bio-hero .section__title { text-shadow: 0 2px 20px rgba(0,0,0,.5); }
@media (max-width: 900px) {
  .bio-hero::before {
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.85) 55%, rgba(0,0,0,.95) 100%);
  }
  .bio-hero__inner > div { max-width: 100%; }
}

/* Credentials grid */
.creds {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
  margin-top: 30px;
}
.creds__item { border-left: 2px solid var(--gold); padding: 6px 0 6px 20px; }
.creds__label { color: var(--gold); font-size: 11px; letter-spacing: var(--tracking); font-weight: 700; text-transform: uppercase; margin: 0 0 6px; }
.creds__value { margin: 0; font-size: 15px; color: var(--text-dark); line-height: 1.5; }
.section--dark .creds__value { color: var(--text); }

/* Detailed service block */
.svc-detail { padding: 60px 0; border-bottom: 1px solid rgba(26,33,48,.12); }
.svc-detail:last-child { border-bottom: 0; }
.svc-detail__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  margin: 0 0 8px;
}
.svc-detail__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  color: var(--text-dark);
  margin: 0 0 20px;
}
.svc-detail__body {
  font-size: 16px; line-height: 1.8; color: var(--text-dark-dim);
  max-width: 720px;
}

/* Resource grid cards */
.res-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.res-card {
  background: #0b0d0e; padding: 34px 30px;
  border: 1px solid rgba(201,163,104,.25);
  transition: border-color .2s, transform .2s;
  color: var(--text);
  display: block;
}
.res-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.res-card__kicker { color: var(--gold); font-size: 11px; letter-spacing: var(--tracking); font-weight: 700; margin: 0 0 12px; }
.res-card__title { font-family: var(--serif); font-size: 24px; line-height: 1.2; color: var(--cream); margin: 0 0 12px; }
.res-card__excerpt { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin: 0; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.testimonial {
  margin: 0;
  padding: 34px 30px;
  background: #fff;
  border-left: 3px solid var(--gold);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 66px;
  color: var(--gold);
  position: absolute;
  top: 6px;
  left: 22px;
  line-height: 1;
  opacity: .35;
}
.testimonial blockquote {
  margin: 24px 0 20px;
  padding: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-dark);
}
.testimonial figcaption { border-top: 1px solid rgba(26,33,48,.12); padding-top: 14px; }
.testimonial__name {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  letter-spacing: .04em;
}
.testimonial__meta {
  display: block;
  font-size: 11px;
  color: var(--text-dark-dim);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* Contact page layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--serif); font-weight: 500;
  color: var(--white); margin: 0 0 26px;
  font-size: clamp(28px, 3vw, 40px);
}
.contact-info .info-row { padding: 20px 0; border-top: 1px solid rgba(201,163,104,.2); }
.contact-info .info-row:last-child { border-bottom: 1px solid rgba(201,163,104,.2); }
.contact-info .info-row p { margin: 0; color: var(--text-dim); font-size: 15px; line-height: 1.6; }
.contact-info .info-row .label { color: var(--gold); font-size: 11px; letter-spacing: var(--tracking); font-weight: 700; text-transform: uppercase; margin-bottom: 6px; display: block; }
.contact-info a { color: var(--text); border-bottom: 1px solid var(--gold-line); }
.contact-info a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .foot__inner { grid-template-columns: 1fr; text-align: center; }
  .foot__social { justify-content: center; }
  .split, .split--textleft { grid-template-columns: 1fr; gap: 40px; }
  .creds { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav { grid-template-columns: auto auto; gap: 20px; }
  .nav__links, .cta--outline { display: none; }
  .nav__toggle { display: inline-flex; }
  .hero__bg img { width: 100%; opacity: .35; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(15,21,32,.55) 0%, rgba(15,21,32,.95) 60%, var(--navy) 100%);
  }
  .hero__nameplate { position: relative; right: auto; bottom: auto; margin: 20px var(--gutter); display: inline-block; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat { padding-left: 0; border-left: 0; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__portrait { max-width: 380px; margin: 0 auto; }
  .contact__form .row { grid-template-columns: 1fr; }
  .foot__inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   EDITORIAL BLOG POST STYLES
   ============================================================ */
.post-hero {
  background: #0b0d0e;
  color: var(--cream);
  padding: 140px 0 90px;
  text-align: center;
  border-bottom: 1px solid rgba(201,163,104,.18);
}
.post-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.post-hero__kicker {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.post-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.08;
  color: var(--cream);
  margin: 0 0 32px;
  letter-spacing: -0.5px;
}
.post-hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.post-hero__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}
.post-hero__meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(244,236,218,.7);
}
.post-hero__meta span + span::before {
  content: "  ·  ";
  color: var(--gold);
  margin: 0 4px;
}

.post-body {
  background: var(--cream);
  padding: 90px 0 60px;
}
.post-body__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: #1f1f21;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
}
.post-body__inner > p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  float: left;
  font-size: 78px;
  line-height: 0.85;
  padding: 8px 14px 0 0;
  color: var(--gold);
}
.post-body__inner p {
  margin: 0 0 22px;
}
.post-body__inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  color: #0b0d0e;
  margin: 60px 0 22px;
  letter-spacing: -0.3px;
}
.post-body__inner h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 22px;
}
.post-body__inner h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #0b0d0e;
  margin: 44px 0 18px;
}
.post-body__inner strong {
  color: #0b0d0e;
  font-weight: 600;
}
.post-body__inner em {
  font-style: italic;
}
.post-body__inner a {
  color: #0b0d0e;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color .2s;
}
.post-body__inner a:hover { color: var(--gold); }
.post-body__inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.post-body__inner ul li {
  position: relative;
  padding: 0 0 12px 24px;
}
.post-body__inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}
.post-body__inner ol {
  padding-left: 22px;
  margin: 0 0 26px;
}
.post-body__inner ol li { padding: 0 0 12px; }

.post-pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
  color: #0b0d0e;
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 28px;
  margin: 40px 0;
  letter-spacing: -0.2px;
}

.post-signature {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(11,13,14,.12);
  text-align: center;
}
.post-signature__name {
  font-family: 'Dancing Script', cursive;
  font-size: 40px;
  color: var(--gold);
  margin: 0 0 6px;
}
.post-signature__title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b6b6d;
}

/* Related posts strip */
.post-related {
  background: #0b0d0e;
  color: var(--cream);
  padding: 80px 0 100px;
}
.post-related__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  padding: 0 var(--gutter);
}
.post-related__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.post-related__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--cream);
  margin: 0;
}
.post-related__title em { color: var(--gold); font-style: italic; }
.post-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.post-related__card {
  display: block;
  padding: 32px 28px;
  border: 1px solid rgba(201,163,104,.22);
  color: var(--cream);
  text-decoration: none;
  transition: border-color .3s, transform .3s;
}
.post-related__card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.post-related__kicker {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.post-related__cardtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--cream);
  margin: 0;
}

/* Back-to-resources link */
.post-back {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px var(--gutter) 0;
}
.post-back a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,163,104,.4);
  padding-bottom: 3px;
}

@media (max-width: 700px) {
  .post-hero { padding: 110px 0 70px; }
  .post-body { padding: 60px 0 40px; }
  .post-related__grid { grid-template-columns: 1fr; }
  .post-body__inner > p:first-of-type::first-letter { font-size: 60px; }
}

.res-card__cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(11,13,14,.08);
}

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0b0d0e;
  border-top: 1px solid rgba(201,163,104,.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -8px 30px rgba(0,0,0,.5);
}
.cookie-banner--show { transform: translateY(0); }
.cookie-banner--hide { transform: translateY(100%); }
.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--cream);
  margin: 0;
  flex: 1;
  min-width: 260px;
}
.cookie-banner__text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,163,104,.4);
  margin-left: 4px;
}
.cookie-banner__text a:hover { border-bottom-color: var(--gold); }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 0;
  cursor: pointer;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  transition: background .2s, color .2s;
}
.cookie-banner__btn:hover { background: rgba(201,163,104,.1); }
.cookie-banner__btn--accept {
  background: var(--gold);
  color: #0b0d0e;
}
.cookie-banner__btn--accept:hover {
  background: #d9b478;
  color: #0b0d0e;
}
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: flex-end; }
}
