/* ============================================================
   Hartwell & Cole — Attorneys at Law
   Self-contained stylesheet. Navy + brass + editorial serif.
   ============================================================ */

:root {
  --navy:        #16233f;
  --navy-700:    #1f3056;
  --navy-900:    #0e1830;
  --brass:       #b08d57;
  --brass-700:   #9a784a;
  --brass-200:   #e3d2b6;
  --paper:       #f7f5f0;
  --paper-card:  #fffdf9;
  --ink:         #14161c;
  --ink-soft:    #3a3f4a;
  --muted:       #6a6f7a;
  --line:        #e3ddd1;
  --line-strong: #d2c9b6;
  --white:       #ffffff;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --radius:    3px;
  --radius-lg: 5px;
  --shadow-sm: 0 1px 2px rgba(14,24,48,.06), 0 1px 1px rgba(14,24,48,.04);
  --shadow-md: 0 14px 40px -22px rgba(14,24,48,.45);
  --shadow-lg: 0 30px 70px -34px rgba(14,24,48,.55);

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--brass-700); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}

p { margin: 0 0 1.1em; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-700);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(44px, 6vw, 72px) 0; }
.section--paper { background: var(--paper); }
.section--card  { background: var(--paper-card); }
.section--navy  { background: var(--navy); color: #e9edf5; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.lead { font-size: 1.18rem; color: var(--ink-soft); }
.muted { color: var(--muted); }
.center { text-align: center; }
.measure { max-width: 64ch; }
.measure-narrow { max-width: 52ch; }
.mx-auto { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .01em;
  padding: .82rem 1.55rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); color: var(--btn-fg); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--gold { --btn-bg: var(--brass); --btn-fg: #1c1407; border-color: var(--brass); }
.btn--gold:hover { background: var(--brass-700); border-color: var(--brass-700); color:#fff; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--navy);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--navy); background: rgba(22,35,63,.04); color: var(--navy); }
.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color:#fff; color:#fff; }
.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.link-arrow {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--navy);
}
.link-arrow::after { content: "\2192"; transition: transform .2s ease; }
.link-arrow:hover { color: var(--brass-700); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,245,240,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--navy-900);
  color: #cdd6e6;
  font-size: .82rem;
  letter-spacing: .02em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 38px;
  padding-block: 6px;
}
.topbar a { color: #e7ecf6; font-weight: 600; }
.topbar a:hover { color: var(--brass-200); }
.topbar__left { display: flex; gap: 1.4rem; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__item svg { width: 14px; height: 14px; opacity: .8; }
.topbar__right { color: var(--brass-200); font-weight: 600; }
@media (max-width: 720px) { .topbar__left .topbar__item--hours { display:none; } }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand__mark {
  width: 46px; height: 46px; flex: none;
  color: var(--navy);
}
.brand__mark .gold { fill: var(--brass); }
.brand__text { line-height: 1.05; }
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: .005em;
}
.brand__name .amp { color: var(--brass); font-style: italic; }
.brand__tag {
  display: block;
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--brass);
  transition: width .22s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    background: var(--navy);
    color: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 96px 30px 30px;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-lg);
    z-index: 110;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-links a {
    display: block;
    padding: 16px 2px;
    font-size: 1.1rem;
    color: #e9edf5;
  }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--brass-200); }
  .nav-cta { margin-top: 24px; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8,14,28,.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 105;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(176,141,87,.18), transparent 55%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy) 55%, var(--navy-700) 100%);
  color: #eef2fa;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 64px);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) 0;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  margin-bottom: .35em;
}
.hero h1 em { color: var(--brass-200); font-style: italic; }
.hero .eyebrow { color: var(--brass-200); }
.hero .eyebrow::before { background: var(--brass-200); }
.hero__lead { color: #c8d2e6; font-size: 1.2rem; max-width: 46ch; }
.hero__actions { margin-top: 2rem; }
.hero__assure {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: #aebbd4;
  font-size: .92rem;
  font-weight: 600;
}
.hero__assure span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__assure svg { width: 17px; height: 17px; color: var(--brass-200); }

/* Hero emblem card */
.hero__card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(227,210,182,.28);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(2px);
}
.hero__emblem { width: 132px; height: 132px; margin: 0 auto 18px; color: var(--brass-200); }
.hero__card-title {
  text-align: center;
  font-family: var(--serif);
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: .2em;
}
.hero__card-sub { text-align: center; color: #bcc8e0; font-size: .9rem; margin: 0 0 26px; }
.hero__card-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.hero__card-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: #dfe6f3; font-size: .96rem; line-height: 1.45;
}
.hero__card-list svg { width: 20px; height: 20px; flex: none; color: var(--brass-200); margin-top: 1px; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { display: none; }
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stats {
  background: var(--navy-900);
  color: #fff;
  border-top: 3px solid var(--brass);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat {
  padding: 40px 18px;
  border-right: 1px solid rgba(255,255,255,.09);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat__num .unit { color: var(--brass-200); }
.stat__label {
  margin-top: 10px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9fb0cf;
  font-weight: 600;
}
.stats__note {
  text-align: center;
  font-size: .76rem;
  color: #7e90b3;
  padding: 0 0 22px;
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.09); }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head { max-width: 62ch; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.85rem); }
.section-head p { margin-bottom: 0; }

/* ============================================================
   PRACTICE GRID (cards)
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.cards--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .cards, .cards--2 { grid-template-columns: 1fr; } }

.pcard {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px 30px;
  position: relative;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.pcard::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brass);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0;
  transition: opacity .2s ease;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.pcard:hover::before { opacity: 1; }
.pcard__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(176,141,87,.12);
  border: 1px solid rgba(176,141,87,.3);
  border-radius: var(--radius);
  color: var(--brass-700);
  margin-bottom: 20px;
}
.pcard__icon svg { width: 26px; height: 26px; }
.pcard h3 { font-size: 1.35rem; margin-bottom: .35em; }
.pcard p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 1.1em; }
.pcard .link-arrow { margin-top: auto; font-size: .94rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
@media (max-width: 880px) { .why { grid-template-columns: 1fr; } }
.why__panel {
  background: var(--navy);
  color: #e7edf7;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 52px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.why__panel::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(176,141,87,.22), transparent 70%);
}
.why__panel h3 { color: #fff; font-size: 1.6rem; }
.why__panel .why__motif { width: 84px; height: 84px; color: var(--brass-200); margin-bottom: 22px; }
.why__panel p { color: #c6d0e4; }
.why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.why__list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; }
.why__list h4 { font-size: 1.18rem; margin-bottom: .25em; }
.why__list p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.why__num {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--brass);
  color: var(--brass-700);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: var(--radius);
}

/* ============================================================
   ATTORNEY HIGHLIGHT / CARDS
   ============================================================ */
.attorney-feature {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 820px) { .attorney-feature { grid-template-columns: 1fr; } }
.attorney-feature__media {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  padding: 44px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.attorney-feature blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.35;
  color: var(--ink);
}
.attorney-feature blockquote::before { content: "\201C"; color: var(--brass); }
.attorney-feature__name { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.attorney-feature__role { color: var(--muted); font-size: .92rem; }

.avatar {
  width: 100%; max-width: 220px; aspect-ratio: 1;
}
.avatar--sm { max-width: 96px; }

.attorney-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 720px) { .attorney-grid { grid-template-columns: 1fr; } }
.acard {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 26px;
  transition: box-shadow .25s ease, transform .2s ease;
}
.acard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.acard__avatar { width: 104px; height: 104px; }
.acard__name { font-size: 1.4rem; margin-bottom: 2px; }
.acard__role {
  color: var(--brass-700);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.acard__meta { list-style: none; margin: 0 0 14px; padding: 0; font-size: .9rem; color: var(--ink-soft); }
.acard__meta li { display: flex; gap: 8px; margin-bottom: 5px; }
.acard__meta b { color: var(--navy); font-weight: 700; min-width: 78px; }
.acard__bio { font-size: .96rem; color: var(--ink-soft); margin: 0; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 14px; }
.tag {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 4px 10px;
  background: rgba(22,35,63,.06);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--navy-700);
}
@media (max-width: 480px) {
  .acard { grid-template-columns: 1fr; text-align: center; }
  .acard__avatar { margin: 0 auto; }
  .acard__meta li, .tags { justify-content: center; }
}

/* ============================================================
   PRACTICE AREA DETAIL SECTIONS
   ============================================================ */
.practice-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: clamp(36px, 5vw, 52px) 0;
  border-bottom: 1px solid var(--line);
}
.practice-block:last-of-type { border-bottom: 0; }
.practice-block__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--brass-200);
  border-radius: var(--radius);
}
.practice-block__icon svg { width: 32px; height: 32px; }
.practice-block h2 { font-size: 1.9rem; }
.practice-block p { color: var(--ink-soft); max-width: 70ch; }
.feature-list {
  list-style: none;
  margin: 1.1rem 0 1.4rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  max-width: 720px;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  font-size: .96rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  background: var(--brass);
  transform: rotate(45deg);
}
@media (max-width: 600px) {
  .practice-block { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS / RESULTS
   ============================================================ */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
@media (max-width: 820px) { .results-grid { grid-template-columns: 1fr; } }
.tcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(227,210,182,.22);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
}
.tcard__quote { color: #e7edf7; font-size: 1.04rem; line-height: 1.6; margin-bottom: 1.4rem; }
.tcard__stars { color: var(--brass-200); letter-spacing: 3px; margin-bottom: 16px; font-size: 1rem; }
.tcard__who { display: flex; align-items: center; gap: 12px; }
.tcard__who .avatar { width: 44px; }
.tcard__name { color: #fff; font-weight: 700; font-size: .95rem; }
.tcard__case { color: #a9b7d4; font-size: .82rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background:
    radial-gradient(100% 140% at 80% 0%, rgba(176,141,87,.2), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy));
  color: #fff;
  border-top: 3px solid var(--brass);
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 36px;
  align-items: center;
}
@media (max-width: 760px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.cta-band p { color: #c6d0e4; margin: 0; max-width: 52ch; }

/* ============================================================
   BLOG / INSIGHTS
   ============================================================ */
.featured-post {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-card);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 820px) { .featured-post { grid-template-columns: 1fr; } }
.featured-post__art {
  background:
    radial-gradient(110% 110% at 20% 10%, rgba(176,141,87,.28), transparent 55%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-900) 100%);
  min-height: 280px;
  display: grid;
  place-items: center;
  color: var(--brass-200);
}
.featured-post__art svg { width: 130px; height: 130px; }
.featured-post__body { padding: clamp(30px, 4vw, 48px); }
.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-size: .8rem; color: var(--muted); margin-bottom: 16px;
}
.chip {
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass-700);
  background: rgba(176,141,87,.12);
  border: 1px solid rgba(176,141,87,.3);
  padding: 3px 10px;
  border-radius: 999px;
}
.featured-post h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.featured-post p { color: var(--ink-soft); }

.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-top: 2rem; }
@media (max-width: 720px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .2s ease;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-card__art {
  height: 150px;
  display: grid; place-items: center;
  color: rgba(255,255,255,.85);
}
.post-card__art.v1 { background: linear-gradient(150deg,#1f3056,#0e1830); }
.post-card__art.v2 { background: linear-gradient(150deg,#33405e,#16233f); }
.post-card__art.v3 { background: linear-gradient(150deg,#2a3a52,#101b34); }
.post-card__art.v4 { background: linear-gradient(150deg,#243653,#0c1730); }
.post-card__art svg { width: 60px; height: 60px; opacity: .9; }
.post-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.25rem; margin-bottom: .4em; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--brass-700); }
.post-card p { color: var(--ink-soft); font-size: .94rem; flex: 1; }
.post-card .link-arrow { font-size: .9rem; }

/* ============================================================
   ARTICLE / BLOG POST
   ============================================================ */
.article-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy));
  color: #fff;
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 64px);
}
.article-hero .post-meta { color: #aebbd4; }
.article-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 20ch; }
.article-hero .chip { color: var(--brass-200); background: rgba(176,141,87,.16); border-color: rgba(176,141,87,.4); }
.byline { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.byline .avatar { width: 50px; }
.byline__name { font-weight: 700; color: #fff; }
.byline__role { color: #aebbd4; font-size: .86rem; }

.article {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.article > p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 700;
  float: left;
  line-height: .8;
  padding: 6px 12px 0 0;
  color: var(--navy);
}
.article h2 { font-size: 1.75rem; margin: 2em 0 .5em; color: var(--ink); }
.article h3 { font-size: 1.3rem; margin: 1.6em 0 .4em; color: var(--navy); }
.article p { color: var(--ink-soft); }
.article ul { padding-left: 1.3em; margin: 0 0 1.3em; }
.article li { margin-bottom: .5em; }
.article a { font-weight: 700; text-decoration: underline; text-decoration-color: var(--brass-200); text-underline-offset: 3px; }
.pull-quote {
  margin: 2.2em 0;
  padding: 6px 0 6px 30px;
  border-left: 3px solid var(--brass);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.4;
  color: var(--navy);
  font-style: italic;
}
.article-cta {
  margin: 3rem 0 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 40px;
  text-align: center;
}
.article-cta h3 { color: #fff; font-size: 1.5rem; }
.article-cta p { color: #c6d0e4; margin-bottom: 1.5rem; }
.back-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; margin-bottom: 8px; }
.back-link::before { content: "\2190"; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 22px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 520px) { .field--row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: 7px;
}
.field label .req { color: var(--brass-700); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176,141,87,.18);
}
.form-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.form-foot .btn { flex: none; }
.form-note { font-size: .82rem; color: var(--muted); margin: 0; }

.confirm {
  text-align: center;
  padding: clamp(34px, 5vw, 56px);
}
.confirm__check {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  background: rgba(176,141,87,.14);
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass-700);
}
.confirm__check svg { width: 36px; height: 36px; }
.confirm h2 { font-size: 1.9rem; }
.confirm__ref {
  display: inline-block;
  margin: 8px 0 18px;
  font-family: "Source Sans 3", monospace;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--navy);
  background: var(--paper);
  border: 1px dashed var(--line-strong);
  padding: 8px 16px;
  border-radius: var(--radius);
}
.confirm__demo { font-size: .86rem; color: var(--muted); }
[hidden] { display: none !important; }

/* contact info panel */
.info-card {
  background: var(--navy);
  color: #e7edf7;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.info-card h3 { color: #fff; font-size: 1.4rem; }
.info-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 22px; }
.info-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; }
.info-list svg { width: 22px; height: 22px; color: var(--brass-200); margin-top: 3px; }
.info-list b { display: block; color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3px; }
.info-list a { color: #dfe6f3; }
.info-list a:hover { color: var(--brass-200); }
.info-list span { color: #c6d0e4; font-size: .96rem; }
.map-strip {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, #1d2c4d, #101b34);
  height: 150px;
  position: relative;
  display: grid; place-items: center;
}
.map-strip__pin { color: var(--brass-200); width: 34px; height: 34px; }
.map-strip__label {
  position: absolute; bottom: 12px; left: 14px;
  font-size: .78rem; color: #bcc8e0; font-weight: 600;
}

/* ============================================================
   PAGE HERO (sub pages)
   ============================================================ */
.page-hero {
  background:
    radial-gradient(120% 120% at 90% -20%, rgba(176,141,87,.16), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy));
  color: #fff;
  padding: clamp(54px, 8vw, 92px) 0;
}
.page-hero .eyebrow { color: var(--brass-200); }
.page-hero .eyebrow::before { background: var(--brass-200); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.page-hero p { color: #c6d0e4; max-width: 58ch; margin: 0; font-size: 1.12rem; }
.breadcrumb { font-size: .82rem; color: #97a6c6; margin-bottom: 18px; }
.breadcrumb a { color: #c2cee4; }
.breadcrumb a:hover { color: var(--brass-200); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  color: #aab7d0;
  padding: clamp(48px, 7vw, 72px) 0 0;
  font-size: .94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__mark { color: #fff; }
.footer-brand p { margin-top: 16px; max-width: 34ch; color: #92a1bd; }
.footer-col h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: #aab7d0; }
.footer-col a:hover { color: var(--brass-200); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; color: #aab7d0; }
.footer-contact svg { width: 16px; height: 16px; color: var(--brass-200); flex: none; margin-top: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0;
  font-size: .82rem;
  color: #7b8aa8;
}
.footer-bottom a { color: #93a2bf; }
.footer-disclaimer {
  font-size: .76rem;
  color: #6f7e9c;
  line-height: 1.5;
  padding: 18px 0 30px;
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: 80ch;
}

/* ============================================================
   No404 BADGE
   ============================================================ */
.n404-badge {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  color: #e7edf7;
  background: rgba(14,24,48,.92);
  border: 1px solid rgba(176,141,87,.45);
  padding: 7px 13px 7px 8px;
  border-radius: 999px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  transition: transform .18s ease, border-color .2s ease, color .2s ease;
}
.n404-badge:hover { transform: translateY(-2px); border-color: var(--brass); color: #fff; }
.n404-badge strong { color: var(--brass-200); font-weight: 800; }
.n404-badge__dot {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0e1830;
  background: var(--brass-200);
  padding: 2px 7px;
  border-radius: 999px;
}
.n404-badge__full { display: inline; }
@media (max-width: 560px) {
  .n404-badge { right: 12px; bottom: 12px; font-size: 0; gap: 6px; padding: 7px 11px 7px 7px; }
  .n404-badge .n404-badge__full { display: none; }
  .n404-badge strong { font-size: .78rem; }
  .n404-badge::after { content: "No404"; font-size: .78rem; color: var(--brass-200); font-weight: 800; }
}

/* utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack-sm > * + * { margin-top: .6rem; }
