/* ═══════════════════════════════════════════════════════
   Law Offices of Julie A. Hager, L.L.C.
   Multi-page site — purple + gold (brand-aligned)
   Background: OFFICE-ENTRANCE.JPG (fixed, scrimmed)
   ═══════════════════════════════════════════════════════ */

:root {
  /* Brand-aligned palette: purple + warm gold */
  --ink: #160e22;
  --ink-soft: #281a3c;
  --ink-deep: #0a0610;
  --paper: #faf6ee;
  --paper-warm: #f1e9d6;
  --paper-bright: #fdfaf3;
  --purple: #4d3279;
  --purple-deep: #2e1d52;
  --purple-light: #7355a8;
  --gold: #b08a4a;
  --gold-soft: #c9a777;
  --gold-bright: #d9b97f;
  --rule: rgba(22, 14, 34, 0.14);
  --rule-soft: rgba(22, 14, 34, 0.07);
  --rule-inverse: rgba(250, 246, 238, 0.16);
  --muted: #56506a;
  --muted-inverse: rgba(250, 246, 238, 0.66);

  /* Type */
  --serif: "Playfair Display", "Iowan Old Style", "Palatino", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  /* Fluid type scale */
  --t-display: clamp(3rem, 7vw, 6.5rem);
  --t-h1: clamp(2.6rem, 5.5vw, 5rem);
  --t-h2: clamp(2rem, 4vw, 3.4rem);
  --t-h3: clamp(1.2rem, 1.5vw, 1.45rem);
  --t-lede: clamp(1.05rem, 1.3vw, 1.25rem);
  --t-body: 1rem;

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --page: min(1240px, 100% - var(--gutter) * 2);
  --nav-h: 112px;
  --radius: 2px;
  --radius-md: 6px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}
body {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";

  background-color: var(--ink-deep);
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em, i, cite, address { font-style: normal; }
input, select, textarea, button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--paper);
  padding: 0.75rem 1rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

::selection { background: var(--gold); color: var(--ink); }

/* Site-wide ambient background — fixed pseudo-element, only viewport-sized */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  background-color: var(--ink-deep);
  background-image:
    linear-gradient(180deg, rgba(22, 14, 34, 0.93) 0%, rgba(13, 8, 22, 0.96) 60%, rgba(13, 8, 22, 0.97) 100%),
    url("Images/PHOTOS/OFFICE-ENTRANCE-bg.jpg");
  background-size: 100% 100%, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT WRAPPERS
   ═══════════════════════════════════════════════════════ */
.site {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* The big translucent paper card that holds page content */
.page-shell {
  background: var(--paper);
  position: relative;
  z-index: 1;
  margin-top: -2px; /* close the seam against hero */
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.85rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  position: relative;
  text-transform: uppercase;
}
.btn--sm { padding: 0.55rem 1rem; font-size: 0.78rem; }
.btn--lg { padding: 1.1rem 1.9rem; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--purple);
  color: var(--paper-bright);
  border-color: var(--purple);
}
.btn--primary:hover {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 600;
}
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper-bright); }

.btn--ghost-light {
  background: transparent;
  color: var(--paper-bright);
  border-color: var(--paper-bright);
}
.btn--ghost-light:hover { background: var(--paper-bright); color: var(--ink); }

.btn__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease-out);
  font-family: var(--serif);
  font-weight: 300;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--rule-soft);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.is-scrolled {
  background: #ffffff;
  box-shadow: 0 6px 20px -10px rgba(13, 8, 22, 0.18);
}

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  width: var(--page);
  margin: 0 auto;
  padding: 1.05rem 0;
  min-height: var(--nav-h);
}

.nav__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
  transition: opacity 0.25s var(--ease);
}
.nav__brand:hover { opacity: 0.85; }
.nav__brand-logo {
  height: 56px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease);
}
.nav__brand-name {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  transition: font-size 0.3s var(--ease);
}
.nav.is-scrolled .nav__brand-logo { height: 44px; }
.nav.is-scrolled .nav__brand-name { font-size: 0.72rem; }

.nav__menu {
  display: flex;
  gap: 2.2rem;
  justify-self: center;
}
.nav__menu a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.25s var(--ease);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.4s var(--ease-out);
}
.nav__menu a:hover { color: var(--purple); }
.nav__menu a:hover::after { right: 0; }
.nav__menu a.is-active {
  color: var(--purple);
}
.nav__menu a.is-active::after {
  right: 0;
  background: var(--purple);
}

.nav__actions { display: flex; gap: 1rem; align-items: center; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.nav__phone-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2e9e5f;
  box-shadow: 0 0 0 0 rgba(46, 158, 95, 0.5);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 158, 95, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(46, 158, 95, 0); }
}

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  justify-self: end;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem var(--gutter);
  background: #ffffff;
  border-top: 1px solid var(--rule-soft);
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
}
.nav__mobile a.is-active { color: var(--purple); }
.nav__mobile .btn { align-self: flex-start; margin-top: 0.5rem; }
.nav__mobile-phone {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--purple);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════
   HERO — HOME PAGE (large, accepts user image later)
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--ink-deep);
  background-image: url("Images/PHOTOS/OFFICE-hero.jpg");
  background-size: cover;
  background-position: 50% 55%;
  background-repeat: no-repeat;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* subtle purple-ink wash */
    linear-gradient(180deg, rgba(22, 14, 34, 0.5) 0%, rgba(22, 14, 34, 0.35) 30%, rgba(13, 8, 22, 0.7) 70%, rgba(13, 8, 22, 0.95) 100%),
    /* strong left-side darken so hero copy has anchor */
    linear-gradient(90deg, rgba(10, 6, 16, 0.88) 0%, rgba(10, 6, 16, 0.55) 35%, rgba(10, 6, 16, 0.1) 65%, rgba(10, 6, 16, 0) 100%);
}

.hero__inner {
  width: var(--page);
  margin: 0 auto;
  padding: 4rem 0;
  color: var(--paper-bright);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__text {
  max-width: 56ch;
}

/* Hero image slot (accepts Images/PHOTOS/HERO.jpg when supplied) */
.hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(115, 85, 168, 0.22) 0%, rgba(46, 29, 82, 0.3) 45%, rgba(13, 8, 22, 0.6) 100%),
    var(--ink-soft);
  border: 1px solid rgba(217, 185, 127, 0.22);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.65),
    inset 0 0 0 1px rgba(13, 8, 22, 0.4);
  justify-self: end;
  width: 100%;
  max-width: 460px;
}
.hero__image-src {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
}
.hero__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(250, 246, 238, 0.5);
  z-index: 1;
  padding: 1.25rem;
}
.hero__image-placeholder::before {
  content: "";
  position: absolute;
  top: 1.25rem; left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  border: 1px solid rgba(217, 185, 127, 0.18);
  border-radius: 4px;
}
.hero__image-mono {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  color: rgba(250, 246, 238, 0.72);
}
.hero__image-caption {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.hero__image-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: rgba(13, 8, 22, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(217, 185, 127, 0.35);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  z-index: 3;
}
.hero__image-badge-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--paper-bright);
  font-optical-sizing: auto;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  font-weight: inherit;
  color: var(--gold-bright);
}

/* Firm-name composition — clean two-part stack */
.hero__title--firm {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}
.hero__title-kicker {
  display: block;
  font-family: var(--sans);
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
  line-height: 1;
  padding-left: 0.42em;
}
.hero__title-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8.2vw, 7rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.022em;
  color: var(--paper-bright);
  font-optical-sizing: auto;
}

.hero__tag {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gold-bright);
  margin-bottom: 2.5rem;
  position: relative;
  padding-top: 1.5rem;
}
.hero__tag::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 64px;
  height: 1px;
  background: var(--gold);
}

.hero__lede {
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: rgba(250, 246, 238, 0.82);
  margin-bottom: 2.75rem;
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__cta-meta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.25rem;
  background: rgba(217, 185, 127, 0.08);
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  transition: box-shadow 0.6s var(--ease), background 0.3s var(--ease);
  animation: glow 3.2s ease-in-out infinite;
}
.hero__cta-meta::before {
  content: "✓";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 1px;
}
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(217, 185, 127, 0);
    background: rgba(217, 185, 127, 0.08);
  }
  50% {
    box-shadow: 0 0 28px -4px rgba(217, 185, 127, 0.45);
    background: rgba(217, 185, 127, 0.16);
  }
}

/* Bottom badge bar — slim, editorial */
.hero__badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 6, 16, 0.92);
  border-top: 1px solid rgba(176, 138, 74, 0.35);
  padding: 0.95rem 0;
  z-index: 1;
}
.hero__badge-inner {
  width: var(--page);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.78);
  font-weight: 500;
  flex-wrap: wrap;
}
.hero__badge-inner span { display: inline-flex; align-items: center; gap: 0.65rem; }
.hero__badge-inner span + span::before {
  content: "";
  display: inline-block;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0.6rem;
}

/* ═══════════════════════════════════════════════════════
   HOME: IMAGE BAND, BRAND / LOGO, PAGE SUMMARIES
   ═══════════════════════════════════════════════════════ */

/* Full-bleed image band under hero */
.image-band {
  position: relative;
  background: var(--ink-deep);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  border-top: 1px solid rgba(176, 138, 74, 0.28);
  border-bottom: 1px solid rgba(176, 138, 74, 0.18);
}
.image-band__figure {
  width: var(--page);
  margin: 0 auto;
  position: relative;
}
.image-band__img {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-image: url("Images/PHOTOS/OFFICE-ENTRANCE-bg.jpg");
  background-size: cover;
  background-position: center 40%;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}
.image-band__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 8, 22, 0) 55%, rgba(13, 8, 22, 0.55) 100%);
  pointer-events: none;
}
.image-band__caption {
  position: absolute;
  bottom: 1.5rem; left: 2rem;
  color: var(--paper-bright);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.image-band__caption-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.image-band__caption-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  max-width: 40ch;
}

/* Page summaries — 4 cards linking to nav pages */
.summaries {
  background: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(5rem, 9vw, 7rem);
  border-top: 1px solid var(--rule-soft);
}
.summaries__head {
  width: var(--page);
  margin: 0 auto clamp(3rem, 5vw, 4rem);
  text-align: center;
}
.summaries__head .section__kicker {
  margin-bottom: 1.25rem;
}
.summaries__head .section__title {
  margin-inline: auto;
  max-width: 20ch;
}
.summaries__grid {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.summary-card {
  position: relative;
}
.summary-card__link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.75rem 2.25rem;
  background: var(--paper-bright);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  height: 100%;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.summary-card__link::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.summary-card__link:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px -24px rgba(22, 14, 34, 0.22);
}
.summary-card__link:hover::before { transform: scaleX(1); }
.summary-card__num {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.summary-card__title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.summary-card__body {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}
.summary-card__body em {
  font-style: normal;
  color: var(--purple);
}
.summary-card__cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  margin-top: 0.25rem;
  transition: color 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}
.summary-card__link:hover .summary-card__cta {
  color: var(--gold);
}
.summary-card__link:hover .summary-card__cta span {
  display: inline-block;
  animation: nudge 1.6s ease-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO — Inner pages (smaller, OFFICE-ENTRANCE shows through)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  margin-top: var(--nav-h);
  min-height: clamp(340px, 52vh, 480px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("Images/PHOTOS/OFFICE-ENTRANCE-bg.jpg") center / cover no-repeat;
}
.page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(13, 8, 22, 0.55) 0%, rgba(46, 29, 82, 0.65) 70%, rgba(13, 8, 22, 0.95) 100%),
    linear-gradient(90deg, rgba(13, 8, 22, 0.5) 0%, rgba(13, 8, 22, 0) 70%);
}

.page-hero__inner {
  width: var(--page);
  margin: 0 auto;
  padding: 3rem 0 3.5rem;
  color: var(--paper-bright);
}

.page-hero__crumb {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.page-hero__crumb a { color: rgba(250, 246, 238, 0.65); transition: color 0.25s var(--ease); }
.page-hero__crumb a:hover { color: var(--gold-bright); }
.page-hero__crumb-sep { color: var(--gold); font-weight: 300; }

.page-hero__title {
  font-family: var(--serif);
  font-size: var(--t-h1);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--paper-bright);
  text-wrap: balance;
  max-width: 18ch;
}
.page-hero__title em {
  font-style: normal;
  font-weight: inherit;
  color: var(--gold-bright);
}
.page-hero__sub {
  margin-top: 1.25rem;
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: rgba(250, 246, 238, 0.82);
  max-width: 56ch;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS (inside page-shell)
   ═══════════════════════════════════════════════════════ */
.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(4rem, 8vh, 6.5rem) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--rule-soft); }

.section__head {
  max-width: 60ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__head--center {
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.5rem;
}
.section__kicker::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--serif);
  font-size: var(--t-h2);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.section__title em {
  font-style: normal;
  font-weight: inherit;
  color: var(--purple);
}

.section__intro {
  font-size: var(--t-lede);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ═══════════════════════════════════════════════════════
   HOME — components specific to index.html
   ═══════════════════════════════════════════════════════ */

/* "Overwhelmed? We can help" callout */
.callout {
  background: var(--paper-warm);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--purple);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.callout__mark {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--purple);
  font-style: normal;
}
.callout__body h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
}
.callout__body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 56ch;
}

/* Services preview grid */
.services-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.services-preview__item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.3s var(--ease);
  position: relative;
}
.services-preview__item:nth-child(4n) { border-right: 0; }
.services-preview__item:nth-last-child(-n+4) { border-bottom: 0; }
.services-preview__item:hover { background: var(--paper-bright); }
.services-preview__item-num {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.services-preview__item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* About teaser on home */
.about-teaser {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-teaser__media {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, var(--purple-deep) 0%, var(--ink) 70%);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(22, 14, 34, 0.4);
}
.about-teaser__media::before {
  content: "JAH";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--paper-bright);
  letter-spacing: 0.08em;
  line-height: 1;
}
.about-teaser__media::after {
  content: "";
  position: absolute;
  top: 1.5rem; left: 1.5rem; right: 1.5rem; bottom: 1.5rem;
  border: 1px solid rgba(217, 185, 127, 0.3);
  border-radius: 4px;
}
.about-teaser__copy h2 { margin-bottom: 1.5rem; }
.about-teaser__copy p {
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 56ch;
}
.about-teaser__copy .btn { margin-top: 1rem; }

/* CTA strip — bottom of home */
.cta-strip {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-strip__mark {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 400;
  font-style: normal;
}
.cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--paper-bright);
}
.cta-strip h2 em { font-style: normal; color: var(--gold-bright); font-weight: 500; }
.cta-strip p {
  color: var(--muted-inverse);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0 auto 2rem;
  line-height: 1.55;
}
.cta-strip__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about-grid__media {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-grid__portrait {
  aspect-ratio: 3 / 4;
  background: var(--ink);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(22, 14, 34, 0.4);
  margin: 0;
}
.about-grid__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-grid__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 8, 22, 0) 60%, rgba(13, 8, 22, 0.72) 100%);
  pointer-events: none;
}
.about-grid__year {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  text-transform: uppercase;
  z-index: 2;
  font-weight: 500;
}
.about-grid__caption {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

.about-grid__copy h1 { display: none; }
.about-grid__lede {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--purple);
  letter-spacing: -0.012em;
}
.about-grid__copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 62ch;
}

.experience-list {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.experience-list h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.experience-list ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.experience-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.experience-list li:last-child { border-bottom: 0; }
.experience-list li em {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  color: var(--purple);
}
.experience-list__year {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════ */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.services-list__item {
  display: grid;
  grid-template-columns: 80px 1fr 2.5fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(2rem, 3vw, 2.75rem) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: padding 0.3s var(--ease);
}
.services-list__item:hover { padding-left: 0.5rem; }
.services-list__num {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  padding-top: 0.85rem;
}
.services-list__item h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.services-list__item p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ═══════════════════════════════════════════════════════
   RESULTS PAGE
   ═══════════════════════════════════════════════════════ */
.verdicts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.verdict {
  background: var(--paper-warm);
  padding: clamp(2rem, 3vw, 2.75rem);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.verdict:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -25px rgba(22, 14, 34, 0.25);
}
.verdict__amount {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
}
.verdict__currency {
  font-size: 0.45em;
  color: var(--gold);
  margin-right: 0.12em;
  font-weight: 400;
}
.verdict__unit {
  font-size: 0.5em;
  color: var(--gold);
  margin-left: 0.08em;
  font-weight: 300;
}
.verdict__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.verdict__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.verdict__body {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.verdicts-articles {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--rule);
}
.verdicts-articles__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.verdicts-articles__head h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.018em;
}
.verdicts-articles__head h2 em { font-style: normal; color: var(--purple); font-weight: 500; }
.verdicts-articles__head p {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: normal;
}
.verdicts-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.verdict-article {
  background: var(--paper-bright);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  cursor: pointer;
}
.verdict-article:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.verdict-article__img {
  aspect-ratio: 4 / 3;
  background-color: var(--paper-warm);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.verdict-article__caption {
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.verdict-article__caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-style: normal;
}

.results__disclaimer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.82rem;
  font-style: normal;
  color: var(--muted);
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════
   LIGHTBOX (verdict article viewer)
   ═══════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 6, 16, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  cursor: zoom-out;
  animation: lbFadeIn 0.22s var(--ease-out);
}
.lightbox[hidden] { display: none; }
.lightbox__figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(1200px, 95vw);
  max-height: 95vh;
  margin: 0;
  cursor: default;
  animation: lbZoomIn 0.32s var(--ease-out);
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(95vh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
  background: var(--paper);
  border-radius: 2px;
}
.lightbox__caption {
  margin-top: 1rem;
  color: var(--paper-bright);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
  max-width: 60ch;
}
.lightbox__close {
  position: absolute;
  top: clamp(1rem, 2.5vw, 2rem);
  right: clamp(1rem, 2.5vw, 2rem);
  width: 46px;
  height: 46px;
  background: transparent;
  color: var(--paper-bright);
  border: 1px solid rgba(250, 246, 238, 0.35);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  z-index: 2;
}
.lightbox__close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.lightbox__close span {
  transform: translateY(-2px);
  font-weight: 300;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoomIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }

body.lb-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.contact-info__item:first-child { padding-top: 0; }
.contact-info__item:last-child { border-bottom: 0; }
.contact-info__label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
}
.contact-info__value {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: 0;
  font-style: normal;
}
.contact-info__value a {
  color: var(--ink);
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
  text-decoration: underline;
  text-decoration-color: rgba(176, 138, 74, 0.45);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.contact-info__value a:hover { color: var(--purple); text-decoration-color: var(--purple); }
.contact-info__value-sub {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0;
}

.contact-promise {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--paper-warm);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.5;
}

.contact-form {
  background: var(--paper-bright);
  padding: clamp(2rem, 3vw, 2.75rem);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -30px rgba(22, 14, 34, 0.18);
}
.contact-form__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--rule);
}
.contact-form__head h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.contact-form__head-meta {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.field {
  display: block;
  margin-bottom: 1.4rem;
}
.field__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  font-size: 1rem;
  font-family: var(--sans);
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}
.field textarea {
  resize: vertical;
  font-family: var(--sans);
  line-height: 1.55;
  padding-top: 0.5rem;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2356506a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
  cursor: pointer;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--purple);
  outline: none;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form__note {
  margin-top: 1.25rem;
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--muted);
  font-style: normal;
}

.field__honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none;
}

.contact-form__status {
  margin-top: 1.25rem;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: var(--radius);
}
.contact-form__status:empty { display: none; }
.contact-form__status.is-success {
  padding: 0.9rem 1.1rem;
  background: rgba(77, 50, 121, 0.08);
  border-left: 3px solid var(--gold);
  color: var(--ink);
}
.contact-form__status.is-error {
  padding: 0.9rem 1.1rem;
  background: rgba(122, 42, 42, 0.08);
  border-left: 3px solid #a23030;
  color: #5a1f1f;
}
.contact-form__status.is-sending {
  padding: 0;
}
.contact-form .btn { margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--ink-deep);
  color: var(--paper);
  position: relative;
  z-index: 1;
}
.footer__inner {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vh, 5rem) 0 clamp(2.5rem, 4vh, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 2.5fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.footer__brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-direction: column;
}
.footer__brand-row { display: flex; gap: 1rem; align-items: center; }
.footer__brand-mark {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.footer__brand-text { line-height: 1.2; }
.footer__brand-line {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-inverse);
  font-weight: 600;
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-bright);
  margin-top: 0.25rem;
  letter-spacing: -0.005em;
  font-weight: 400;
}
.footer__tag {
  font-family: var(--serif);
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted-inverse);
  margin-top: 0.5rem;
  max-width: 28ch;
  line-height: 1.5;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__cols ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__cols a,
.footer__cols li {
  font-size: 0.9rem;
  color: var(--muted-inverse);
  transition: color 0.3s var(--ease);
}
.footer__cols a:hover { color: var(--paper-bright); }

.footer__legal {
  border-top: 1px solid var(--rule-inverse);
  padding: 1.5rem 0;
}
.footer__legal-inner {
  width: var(--page);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted-inverse);
  line-height: 1.55;
}
.footer__legal-right {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 60ch;
  text-align: right;
}
.footer__dot { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .summaries__grid { grid-template-columns: repeat(2, 1fr); }
  .services-preview { grid-template-columns: repeat(2, 1fr); }
  .services-preview__item:nth-child(4n) { border-right: 1px solid var(--rule); }
  .services-preview__item:nth-child(2n) { border-right: 0; }
  .services-preview__item:nth-last-child(-n+4) { border-bottom: 1px solid var(--rule); }
  .services-preview__item:nth-last-child(-n+2) { border-bottom: 0; }
  .verdicts-grid { grid-template-columns: 1fr; }
  .verdicts-articles__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__menu { gap: 1.5rem; }
  .nav__menu a { font-size: 0.76rem; letter-spacing: 0.1em; }
}

@media (max-width: 900px) {
  .nav__menu, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { grid-template-columns: auto auto; }

  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser__media { max-width: 360px; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid__media { position: static; max-width: 320px; }

  .services-list__item { grid-template-columns: 50px 1fr; }
  .services-list__item p { grid-column: 1 / -1; padding-left: 50px; padding-right: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .verdicts-articles__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__cols { gap: 1.75rem; }
  .footer__legal-inner { flex-direction: column; gap: 1rem; }
  .footer__legal-right { justify-content: flex-start; text-align: left; }

  .callout { grid-template-columns: 1fr; gap: 1rem; text-align: left; }

  .hero__inner {
    padding: 3rem 0;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__image { justify-self: stretch; max-width: none; aspect-ratio: 16/9; }

  .image-band__caption { left: 1.25rem; bottom: 1rem; }
  .image-band__caption-text { font-size: 1rem; }
}

@media (max-width: 620px) {
  .summaries__grid { grid-template-columns: 1fr; }
  .image-band__img { aspect-ratio: 4 / 3; }
  .services-preview { grid-template-columns: 1fr; }
  .services-preview__item { border-right: 0 !important; border-bottom: 1px solid var(--rule); }
  .services-preview__item:last-child { border-bottom: 0; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__cols { grid-template-columns: 1fr; }
  .contact-info__item { grid-template-columns: 1fr; gap: 0.4rem; }
  .experience-list li { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ═══════════════════════════════════════════════════════
   REVEAL ON SCROLL
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) forwards;
}
.fade-in--d1 { animation-delay: 0.15s; }
.fade-in--d2 { animation-delay: 0.3s; }
.fade-in--d3 { animation-delay: 0.45s; }
.fade-in--d4 { animation-delay: 0.6s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .fade-in { opacity: 1; transform: none; }
}
