:root {
  --paper: #faf9f6;
  --ink: #2a2723;
  --taupe: #5f544a;
  --muted: #5d5346;
  --pale: #716858;
  --tint: #f3f0e9;
  --warm: #f6ecdc;
  --charcoal: #141311;
  --dark-row: #2a2723;
  --line: #e3ddd0;
  --line-tint: #ddd7c9;
  --orange: #a5560e;
  --orange-light: #e9a35b;
  --brand-orange: #f89938;
  --white: #ffffff;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ui: "Jost", "Trebuchet MS", Arial, sans-serif;
  --container: 1296px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section-space: clamp(5.25rem, 9vw, 8.125rem);
  --header-height: 4.75rem;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0;
}

html {
  min-width: 20rem;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--ui);
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .24em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote,
fieldset {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.55rem, 10vw, 4.125rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(2.35rem, 7vw, 2.75rem);
  line-height: 1.22;
}

h3 {
  font-size: clamp(1.45rem, 5vw, 1.75rem);
  line-height: 1.32;
}

p:last-child,
ul:last-child,
ol:last-child,
figure:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

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

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  transform: translateY(-180%);
  color: var(--paper);
  background: var(--ink);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: lowercase;
}

.skip-link:focus {
  transform: translateY(0);
}

.micro-label {
  margin-bottom: 1.4rem;
  color: var(--orange);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .24em;
  line-height: 1.5;
  text-transform: lowercase;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.6rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.button--light {
  border-color: var(--paper);
  color: var(--paper);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.button--solid {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.button--solid:hover,
.button--solid:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding-bottom: .2rem;
  border-bottom: 1px solid currentColor;
  font-size: .9375rem;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.5;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 220ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--orange);
}

/* Shared header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(250, 249, 246, .98);
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.js-on .home-page .site-header:not(.is-scrolled):not(.menu-open) {
  border-bottom-color: rgba(250, 249, 246, .18);
  color: var(--paper);
  background: transparent;
}

.home-page .site-header:has(.mobile-navigation[open]) {
  border-bottom-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}

.home-page .site-header:has(.mobile-navigation[open]) .site-brand__descriptor {
  color: var(--pale);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(42, 39, 35, .045);
}

.header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  position: relative;
  z-index: 103;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .7rem;
  color: inherit;
  text-decoration: none;
}

.site-brand__mark {
  width: 2.35rem;
  height: auto;
  flex: 0 0 auto;
}

.site-brand__words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-brand__name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .14em;
  white-space: nowrap;
}

.site-brand__descriptor {
  margin-top: .35rem;
  color: var(--pale);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.js-on .home-page .site-header:not(.is-scrolled):not(.menu-open):not(:has(.mobile-navigation[open])) .site-brand__descriptor {
  color: #d8cbb4;
}

.primary-nav,
.header__actions {
  display: none;
}

.mobile-navigation {
  position: relative;
  z-index: 102;
}

.mobile-navigation > summary {
  position: relative;
  z-index: 104;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  gap: .32rem;
  list-style: none;
}

.mobile-navigation > summary::-webkit-details-marker {
  display: none;
}

.menu-toggle__line {
  display: block;
  width: 1.55rem;
  height: 1px;
  background: currentColor;
  transition: transform 260ms ease;
}

.mobile-navigation[open] .menu-toggle__line:first-of-type {
  transform: translateY(.165rem) rotate(45deg);
}

.mobile-navigation[open] .menu-toggle__line:last-of-type {
  transform: translateY(-.165rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 101;
  inset: 0;
  display: flex;
  min-height: 100dvh;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) var(--gutter) 3rem;
  color: var(--ink);
  background: var(--paper);
}

.mobile-menu__links {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu__links li {
  border-bottom: 1px solid var(--line);
}

.mobile-menu__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 8vw, 2.65rem);
  font-weight: 500;
  line-height: 1.15;
  text-decoration: none;
}

.mobile-menu__links a::after {
  color: var(--orange);
  content: "\2192";
  font-family: var(--ui);
  font-size: 1.0625rem;
}

.mobile-menu__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  color: var(--orange);
  font-size: .9375rem;
  font-weight: 400;
  letter-spacing: .12em;
}

/* Shared footer */
.site-footer {
  padding: 4.5rem 0 2.75rem;
  color: #b7b1a6;
  background: var(--charcoal);
}

.footer__top {
  display: grid;
  gap: 3rem;
}

.site-footer .site-brand {
  color: #f4f0e8;
}

.site-footer .site-brand__mark {
  width: 2.25rem;
}

.footer__address {
  max-width: 28rem;
  margin: 1.25rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem;
}

.footer__heading {
  margin-bottom: 1.1rem;
  color: #6e675c;
  font-family: var(--ui);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links li + li {
  margin-top: .55rem;
}

.footer__links a {
  font-size: 1.0625rem;
  text-decoration: none;
  transition: color 220ms ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--paper);
}

.footer__links .footer__phone {
  font-weight: 400; /* phone is the last resort in the hierarchy; no accent colour */
}

.footer__address + .footer__heading {
  margin-top: 1.6rem;
}

.footer__bottom {
  display: grid;
  gap: .8rem;
  margin-top: 3.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid #2b2925;
  color: #6e675c;
  font-size: .875rem;
  line-height: 1.7;
}

.footer__bottom p {
  margin: 0;
}

/* Homepage hero */
.home-hero {
  position: relative;
  min-height: 44rem;
  overflow: hidden;
  color: var(--paper);
  background: #101010;
}

.home-hero__image,
.home-hero__grade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  object-fit: cover;
  object-position: 54% 24%;
  filter: saturate(.84) brightness(.94);
  transform-origin: center;
}

.home-hero__grade {
  background:
    linear-gradient(100deg, rgba(7, 14, 18, .82) 0%, rgba(7, 14, 18, .55) 34%, rgba(7, 14, 18, .12) 58%, rgba(7, 14, 18, 0) 72%),
    linear-gradient(to top, rgba(7, 14, 18, .88), rgba(7, 14, 18, .34) 52%, rgba(7, 14, 18, .06));
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 44rem;
  align-items: flex-end;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6.5rem;
}

.home-hero__content {
  max-width: 49rem;
}

.home-hero h1 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 22px rgba(7, 14, 18, .55);
}

.home-hero__location {
  display: block;
  margin-bottom: 1.35rem;
  color: #f3e9d5;
  text-shadow: 0 1px 10px rgba(7, 14, 18, .75);
  font-family: var(--ui);
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-hero__headline {
  display: block;
}

.home-hero h1 em {
  color: var(--orange-light);
  font-weight: 500;
}

.home-hero__lede {
  max-width: 40rem;
  margin-bottom: 1.8rem;
  color: #ffffff;
  font-size: 1.1875rem;
  line-height: 1.8;
  text-shadow: 0 1px 14px rgba(7, 14, 18, .65);
}

.home-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
}

.home-hero .text-link {
  color: #d8cbb4;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 1.5rem;
  left: 50%;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  transform: translateX(-50%);
  color: #cfc8bb;
  font-size: .8125rem;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: lowercase;
}

.scroll-cue::after {
  width: 1px;
  height: 2.75rem;
  background: #cfc8bb;
  content: "";
}

/* Ethos */
.ethos {
  padding: var(--section-space) 0;
}

.ethos__layout {
  display: grid;
  gap: 3rem;
}

.ethos__content {
  max-width: 56rem;
}

.ethos__statement {
  margin-bottom: 1.75rem;
  color: var(--taupe);
}

.ethos__statement strong {
  color: var(--ink);
  font-weight: 500;
}

.ethos__body {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: var(--muted);
  line-height: 1.95;
}

.stats {
  display: grid;
  gap: 1.6rem;
  padding-top: .5rem;
}

.stat__value {
  display: block;
  margin-bottom: .2rem;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  font-weight: 500;
  line-height: 1.1;
}

.stat__label {
  display: block;
  color: var(--pale);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1.55;
  text-transform: uppercase;
}

.ethos__sideword {
  display: none;
  color: #eae6dc;
  font-family: var(--display);
  font-size: 5.75rem;
  font-weight: 400;
  line-height: .98;
  text-align: center;
}

/* Practice list */
.practice-section {
  padding: clamp(5.5rem, 8vw, 7.5rem) 0;
  background: var(--tint);
}

.section-heading {
  margin-bottom: 3.25rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading__link {
  margin-top: 1.5rem;
}

.practice-list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line-tint);
  list-style: none;
}

.practice-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: .75rem;
  align-items: center;
  min-height: 7.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-tint);
  text-decoration: none;
  transition: color 260ms ease, background-color 260ms ease, padding 260ms ease, margin 260ms ease;
}

.practice-row__number {
  align-self: start;
  padding-top: .35rem;
  color: var(--pale);
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: .1em;
}

.practice-row__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 5vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
}

.practice-row__description {
  grid-column: 2 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.practice-row__arrow {
  grid-column: 3;
  grid-row: 1;
  color: var(--pale);
  font-size: 1.25rem;
  line-height: 1;
}

.practice-row:hover,
.practice-row:focus-visible {
  margin-inline: calc(var(--gutter) * -.35);
  padding-inline: calc(var(--gutter) * .35);
  color: #f4f0e8;
  background: var(--dark-row);
}

.practice-row:hover .practice-row__number,
.practice-row:hover .practice-row__title,
.practice-row:hover .practice-row__arrow,
.practice-row:focus-visible .practice-row__number,
.practice-row:focus-visible .practice-row__title,
.practice-row:focus-visible .practice-row__arrow {
  color: var(--orange-light);
}

.practice-row:hover .practice-row__description,
.practice-row:focus-visible .practice-row__description {
  color: #b7b1a6;
}

/* Full-bleed photo band */
.photo-band {
  position: relative;
  height: clamp(21rem, 46vw, 27.5rem);
  overflow: hidden;
  background: #101010;
}

.photo-band__image {
  position: absolute;
  inset: -2.5rem 0;
  width: 100%;
  height: calc(100% + 5rem);
  object-fit: cover;
  filter: saturate(.7) brightness(.8);
  transform: scale(1.06) translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.photo-band__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: rgba(12, 11, 10, .32);
}

.photo-band__statement {
  max-width: 54rem;
  margin: 0;
  color: #f6f2ea;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.photo-band__statement em {
  color: var(--orange-light);
}

/* Editorial split chapters */
.editorial-section {
  padding: clamp(5.5rem, 8vw, 7.5rem) 0;
}

.editorial-section--warm {
  background: var(--warm);
}

.editorial-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.editorial-media {
  width: 100%;
  height: clamp(22rem, 72vw, 30rem);
  object-fit: cover;
  filter: saturate(.7) contrast(.98);
}

.editorial-section--warm .editorial-media {
  filter: saturate(.8);
}

.editorial-copy h2 {
  margin-bottom: 1.4rem;
}

.editorial-copy h2 em {
  color: var(--taupe);
}

.editorial-copy p:not(.micro-label) {
  max-width: 38rem;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.95;
}

/* Questions and credibility */
.answers-section {
  padding: clamp(5.5rem, 8vw, 7rem) 0;
}

.question-grid {
  display: grid;
  gap: 1.25rem;
}

.question-card {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  padding: 2rem 1.65rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.question-card h3 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.question-card p {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.question-card__link {
  margin-top: auto;
  color: var(--orange);
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: lowercase;
}

.question-card:hover,
.question-card:focus-visible {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-4px);
}

.question-card:hover p,
.question-card:focus-visible p {
  color: #b7b1a6;
}

.question-card:hover .question-card__link,
.question-card:focus-visible .question-card__link {
  color: var(--orange-light);
}

.credibility-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-top: 4.5rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--line);
  color: var(--taupe);
  text-align: center;
}

.credibility-strip__label {
  color: var(--pale);
  font-size: .8125rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.credibility-strip cite {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
}

.credibility-strip__consultancy {
  color: var(--pale);
  font-size: .9375rem;
}

/* Contact page */
.inner-page main {
  padding-top: var(--header-height);
}

.contact-intro {
  padding: clamp(4.5rem, 8vw, 7rem) 0 3.5rem;
}

.contact-intro__copy {
  max-width: 50rem;
}

.contact-intro h1 {
  margin-bottom: 1.25rem;
}

.contact-intro__lede {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1875rem;
  line-height: 1.9;
}

.contact-form-section {
  padding: 0 0 clamp(5rem, 9vw, 7.5rem);
}

.contact-form-layout {
  display: grid;
  gap: 2.5rem;
}

.contact-form-note {
  max-width: 25rem;
}

.contact-form-note h2 {
  margin-bottom: 1.2rem;
}

.contact-form-note p {
  color: var(--muted);
  line-height: 1.9;
}

.enquiry-form {
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line);
  background: var(--white);
}

.form-grid {
  display: grid;
  gap: 1.35rem;
}

.form-field {
  display: grid;
  gap: .5rem;
}

.form-field label,
.form-legend {
  color: var(--ink);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: lowercase;
}

.form-field label span {
  color: var(--pale);
  font-weight: 400;
  letter-spacing: .08em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.form-field textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  outline: none;
  background: var(--white);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--pale);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: .75rem;
  align-items: start;
  margin: 1.5rem 0;
}

.consent-field input {
  width: 1.05rem;
  height: 1.05rem;
  margin: .25rem 0 0;
  accent-color: var(--ink);
}

.consent-field label {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.65;
}

.form-actions {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.js-on .form-actions {
  display: flex;
}

.form-actions .button {
  cursor: pointer;
}

.form-actions .button:disabled {
  cursor: wait;
  color: var(--pale);
  background: var(--line);
}

.form-status {
  min-height: 1.5rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.form-status.is-success {
  color: #4d6748;
}

.form-status.is-error {
  color: #8f3f2f;
}

.no-js-contact {
  min-height: auto;
  color: var(--muted);
}

.js-on .no-js-contact {
  display: none;
}

.mailto-fallback {
  color: var(--orange);
  font-size: .9375rem;
  font-weight: 400;
}

.contact-options {
  border-top: 1px solid var(--line-tint);
}

.whatsapp-band {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  color: var(--paper);
  background: var(--ink);
}

.whatsapp-band__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.whatsapp-band h2 {
  max-width: 44rem;
  margin-bottom: .9rem;
}

.whatsapp-band p {
  max-width: 39rem;
  margin-bottom: 0;
  color: #b7b1a6;
  line-height: 1.9;
}

.contact-details {
  padding: clamp(5rem, 8vw, 7rem) 0;
}

.contact-details__grid {
  display: grid;
  gap: 2.75rem;
}

.contact-detail {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.contact-detail h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-detail p,
.contact-detail address {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.85;
}

.contact-detail a {
  color: var(--ink);
  text-decoration: none;
}

.contact-detail a:hover,
.contact-detail a:focus-visible {
  color: var(--orange);
}

/* Enhancement-only motion: default content is always visible. */
.js-on [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-on [data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

.js-on .home-hero__image {
  animation: hero-ken-burns 18s ease-out both;
}

.js-on .scroll-cue::after {
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

@keyframes scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: .85; }
  50% { transform: translateY(10px); opacity: .35; }
}

@media (min-width: 36rem) {
  .home-hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field--full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 45rem) {
  .footer__top {
    grid-template-columns: minmax(18rem, 1fr) 1fr;
    gap: 4rem;
  }

  .footer__bottom {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .footer__bottom p:last-child {
    text-align: right;
  }

  .section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
  }

  .section-heading__link {
    flex: 0 0 auto;
    margin-top: 0;
  }

  .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-details__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 60rem) {
  :root {
    --header-height: 6.5rem;
  }

  h1 {
    font-size: clamp(3.5rem, 5vw, 4.125rem);
  }

  .site-brand {
    gap: .65rem;
  }

  .site-brand__mark {
    width: 2.35rem;
  }

  .site-brand__name {
    font-size: 1.15rem;
    letter-spacing: .16em;
  }

  .site-brand__descriptor {
    font-size: .75rem;
    letter-spacing: .24em;
  }

  .primary-nav {
    display: block;
    margin-left: auto;
  }

  .primary-nav__links {
    display: flex;
    align-items: center;
    gap: clamp(.9rem, 1.8vw, 1.4rem);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .primary-nav__links a {
    position: relative;
    display: block;
    padding: .4rem 0;
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: .12em;
    line-height: 1.4;
    text-decoration: none;
    text-transform: lowercase;
  }

  .primary-nav__links a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--orange);
    content: "";
    transition: transform 260ms ease;
  }

  .primary-nav__links a:hover::after,
  .primary-nav__links a:focus-visible::after,
  .primary-nav__links a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: .65rem;
  }

  .header__phone {
    display: inline;
    color: var(--orange);
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: .07em;
    text-decoration: none;
    white-space: nowrap;
  }

  .js-on .home-page .site-header:not(.is-scrolled):not(.menu-open) .header__phone {
    color: var(--orange-light);
  }

  .header__button {
    min-height: 2.6rem;
    padding: .55rem .75rem;
    font-size: .75rem;
    letter-spacing: .14em;
  }

  .js-on .home-page .site-header:not(.is-scrolled):not(.menu-open) .header__button {
    border-color: var(--paper);
    color: var(--paper);
  }

  .js-on .home-page .site-header:not(.is-scrolled):not(.menu-open) .header__button:hover,
  .js-on .home-page .site-header:not(.is-scrolled):not(.menu-open) .header__button:focus-visible {
    color: var(--ink);
    background: var(--paper);
  }

  .mobile-navigation {
    display: none;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 47.5rem;
  }

  .home-hero__inner {
    padding-bottom: 7.5rem;
  }

  .scroll-cue {
    display: flex;
  }

  .ethos__layout {
    grid-template-columns: minmax(0, 1fr) 9.375rem;
    gap: 4rem;
  }

  .practice-row {
    grid-template-columns: 5.625rem minmax(18rem, 1fr) minmax(20rem, 28.75rem) 3.75rem;
    gap: 0;
    min-height: 5.7rem;
    padding: 1.6rem 0;
  }

  .practice-row__number {
    align-self: center;
    padding: 0;
  }

  .practice-row__description {
    grid-column: 3;
    margin: 0;
    padding-right: 2rem;
  }

  .practice-row__arrow {
    grid-column: 4;
    grid-row: 1;
    text-align: right;
  }

  .practice-row:hover,
  .practice-row:focus-visible {
    margin-inline: -1.5rem;
    padding-inline: 1.5rem;
  }

  .editorial-grid {
    grid-template-columns: 5fr 7fr;
    gap: clamp(4rem, 6vw, 5rem);
  }

  .editorial-grid--reverse {
    grid-template-columns: 7fr 5fr;
  }

  .editorial-grid--reverse .editorial-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .editorial-grid--reverse .editorial-media {
    grid-column: 2;
    grid-row: 1;
  }

  .question-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-form-layout {
    grid-template-columns: minmax(0, 8fr) minmax(15rem, 4fr);
    gap: clamp(3.5rem, 7vw, 7rem);
    align-items: start;
  }

  .whatsapp-band__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4rem;
  }
}

@media (min-width: 76rem) {
  .site-brand {
    gap: .85rem;
  }

  .site-brand__mark {
    width: 2.65rem;
  }

  .site-brand__name {
    font-size: 1.45rem;
    letter-spacing: .16em;
  }

  .site-brand__descriptor {
    font-size: .75rem;
    letter-spacing: .24em;
  }

  .primary-nav__links {
    gap: clamp(1.3rem, 2.2vw, 2.4rem);
  }

  .primary-nav__links a {
    font-size: .9375rem;
    letter-spacing: .14em;
  }

  .header__actions {
    gap: 1.6rem;
  }

  .header__phone {
    font-size: .875rem;
  }

  .header__button {
    min-height: 2.8rem;
    padding-inline: 1.6rem;
    font-size: .75rem;
    letter-spacing: .14em;
  }

  .home-hero__lede {
    font-size: 1.1875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .js-on [data-reveal] {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
  }

  .js-on .home-hero__image {
    animation: none;
    transform: scale(1);
  }

  .js-on .scroll-cue::after {
    animation: none;
  }

  .photo-band__image {
    transform: scale(1.06);
  }

  .question-card:hover,
  .question-card:focus-visible {
    transform: none;
  }
}

@media print {
  .site-header {
    position: static;
    color: var(--ink) !important;
    background: var(--paper) !important;
  }

  .home-hero {
    min-height: auto;
    color: var(--ink);
    background: var(--paper);
  }

  .home-hero__image,
  .home-hero__grade,
  .scroll-cue,
  .mobile-navigation {
    display: none;
  }

  .home-hero__inner {
    min-height: auto;
    padding-block: 3rem;
  }

  .home-hero h1,
  .home-hero__lede,
  .home-hero__location {
    color: var(--ink);
  }

  .button,
  .text-link {
    color: var(--ink) !important;
    background: transparent !important;
  }
}

/* Eagle emblem & pattern — single-tone treatments of the mark (2026-08-30) */
.emblem {
  display: block;
  aspect-ratio: 2245 / 1647;
  background: var(--emblem-color, var(--orange));
  -webkit-mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
  mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
}

.editorial-media.emblem-display,
.emblem-display {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: clamp(22rem, 60vw, 30rem);
  padding: 3rem;
  background: var(--warm);
  filter: none;
}

.emblem-display .emblem {
  position: relative;
  z-index: 1;
  width: min(22rem, 68%);
}


.answers-section:not(.contact-detail),
.contact-intro {
  position: relative;
  overflow: hidden;
}

.answers-section:not(.contact-detail) > .container,
.contact-intro > .container {
  position: relative;
  z-index: 1;
}

.answers-section:not(.contact-detail)::before,
.contact-intro::before {
  content: "";
  position: absolute;
  top: -8%;
  right: -13%;
  width: min(44rem, 58vw);
  aspect-ratio: 2245 / 1647;
  background: var(--taupe);
  opacity: .05;
  transform: rotate(-9deg);
  pointer-events: none;
  -webkit-mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
  mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
}

.answers-section:not(.contact-detail)::after {
  content: "";
  position: absolute;
  bottom: -16%;
  left: -9%;
  width: min(26rem, 36vw);
  aspect-ratio: 2245 / 1647;
  background: var(--orange);
  opacity: .045;
  transform: rotate(7deg) scaleX(-1);
  pointer-events: none;
  -webkit-mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
  mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
}

/* ===== Designer pass (Fable, 2026-08-30) ===== */

/* Nav dropdowns */
.nav-drop { position: relative; }
.nav-drop__panel {
  position: absolute;
  top: calc(100% + .9rem);
  left: 50%;
  transform: translate(-50%, 8px);
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 15rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(42, 39, 35, .09);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s 220ms;
}
.nav-drop:hover .nav-drop__panel,
.nav-drop:focus-within .nav-drop__panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 220ms ease, transform 220ms ease;
}
.nav-drop__panel::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
}
.nav-drop__panel a {
  padding: .42rem .3rem;
  color: var(--ink);
  font-size: .875rem;
  letter-spacing: .14em;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease;
}
.nav-drop__panel a:hover,
.nav-drop__panel a:focus-visible { color: var(--orange); }
.nav-drop__panel--wide {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 2rem;
  min-width: 28rem;
}
.nav-drop__col { display: flex; flex-direction: column; gap: .1rem; }
.nav-drop__all {
  margin-top: .5rem;
  width: 100%;
  color: var(--orange) !important;
  font-weight: 500;
}
.js-on .home-page .site-header:not(.is-scrolled):not(.menu-open) .nav-drop__panel {
  background: var(--paper);
  color: var(--ink);
}

/* Footer index */
.footer__formal {
  margin: .9rem 0 .2rem;
  color: #d8d2c6;
  font-family: var(--display);
  font-size: 1.0625rem;
  font-style: italic;
}
.footer__columns--index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem 2.6rem;
}
@media (min-width: 60rem) {
  .footer__columns--index { grid-template-columns: repeat(4, max-content); }
  .footer__top { grid-template-columns: minmax(16rem, 22rem) 1fr; align-items: start; }
}
.footer__links--two-col {
  columns: 2;
  column-gap: 1.6rem;
}
.footer__links--contact { margin-top: 1.1rem; }

/* Client words */
.quotes-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--tint);
}
.quotes-section > .container { position: relative; z-index: 1; }
.quotes-section::before {
  content: "";
  position: absolute;
  top: -12%;
  left: -10%;
  width: min(38rem, 52vw);
  aspect-ratio: 2245 / 1647;
  background: var(--taupe);
  opacity: .05;
  transform: rotate(8deg) scaleX(-1);
  pointer-events: none;
  -webkit-mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
  mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
}
.quotes-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .6rem 2rem;
  margin-bottom: 2.6rem;
}
.quotes-note { color: var(--pale); font-size: .875rem; letter-spacing: .06em; }
.quotes-grid {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 60rem) { .quotes-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.quotes-grid--full { margin-bottom: 0; }
@media (min-width: 60rem) { .quotes-grid--full { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.quote-card {
  position: relative;
  margin: 0;
  padding: 2.4rem 2.1rem 2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.quote-card::before {
  content: "\201C";
  display: block;
  margin-bottom: .4rem;
  color: var(--orange-light);
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: .6;
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.62;
  color: var(--ink);
}
.quote-card--fr blockquote { font-style: italic; }
.quote-card__meta {
  display: block;
  margin-top: 1.1rem;
  color: var(--pale);
  font-family: var(--ui);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: lowercase;
}

/* Credibility wall — slow marquee */
.cred-wall {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.cred-wall__track {
  display: flex;
  width: max-content;
}
.cred-wall:hover .cred-wall__list { animation-play-state: paused; }
.cred-wall__list {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
  margin: 0;
  list-style: none;
  animation: cred-scroll 52s linear infinite;
}
@keyframes cred-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.cred-wall__list li {
  display: flex;
  height: 2.4rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.cred-wall__name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--taupe);
}
@media (prefers-reduced-motion: reduce) {
  .cred-wall__list { animation: none; flex-wrap: wrap; justify-content: center; }
  .cred-wall__list[aria-hidden="true"] { display: none; }
  .cred-wall__track { width: 100%; }
}

/* The network */
.network-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--paper);
}
.network-section > .container { position: relative; z-index: 1; }
.network-section::after {
  content: "";
  position: absolute;
  bottom: -18%;
  right: -10%;
  width: min(30rem, 42vw);
  aspect-ratio: 2245 / 1647;
  background: var(--orange);
  opacity: .04;
  transform: rotate(-7deg);
  pointer-events: none;
  -webkit-mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
  mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
}
.network-intro { max-width: 40rem; margin-bottom: 2.8rem; }
.network-group { margin-bottom: 2.6rem; }
.network-group:last-child { margin-bottom: 0; }
.network-group__title {
  margin-bottom: 1.2rem;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pale);
}
.network-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}
.network-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 220ms ease, transform 320ms var(--ease);
}
.network-card:hover { border-color: var(--orange-light); transform: translateY(-3px); }
.network-card__monogram {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  flex: 0 0 auto;
  border: 1px solid var(--line-tint);
  background: var(--tint);
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--taupe);
}
.network-card__name { font-family: var(--display); font-size: 1.12rem; line-height: 1.3; }
.network-card__role { display: block; margin-top: .1rem; color: var(--pale); font-size: .8125rem; letter-spacing: .16em; text-transform: lowercase; }

/* Selected engagements */
.engagements-list { margin: 0; padding: 0; list-style: none; }
.engagements-list li {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 1.6rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.engagements-list li:last-child { border-bottom: 1px solid var(--line); }
.engagements-list .year {
  font-size: .8125rem;
  letter-spacing: .14em;
  color: var(--pale);
}
.engagements-list .what { font-size: 1.0625rem; line-height: 1.65; color: var(--muted); }
.engagements-list .what strong { color: var(--ink); font-weight: 500; }

/* Motion refinements */
.practice-row__arrow { transition: transform 320ms var(--ease), color 220ms ease; }
.practice-row:hover .practice-row__arrow,
.practice-row:focus-visible .practice-row__arrow { transform: translateX(8px); }
.practice-row__number { transition: color 220ms ease; }
.editorial-section--warm .editorial-media { object-position: center 22%; }
.editorial-section .editorial-media { transition: filter 400ms ease; }
.editorial-section:hover .editorial-media { filter: saturate(.95); }

/* ===== Insights hub — house rhythm pass (2026-08-30) =====
   One block for the whole hub: hero, featured tier, sticky toolbar, directory.
   Spacing follows the sitewide tokens (var(--section-space), 3.25rem heading
   margins) so the hub breathes like every other page. */

.insights-hero {
  padding: clamp(4.5rem, 8vw, 7rem) 0 3.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.insights-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
  color: var(--pale);
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: lowercase;
}

.insights-breadcrumb a {
  color: var(--pale);
  text-decoration: none;
  transition: color 220ms ease;
}

.insights-breadcrumb a:hover,
.insights-breadcrumb a:focus-visible {
  color: var(--orange);
}

.insights-hero__grid {
  display: grid;
  gap: clamp(2.75rem, 6vw, 4rem);
  align-items: end;
}

.insights-hero__copy {
  max-width: 56rem;
}

.insights-hero h1 {
  max-width: 52rem;
  margin-bottom: 1.25rem;
}

.insights-hero h1 em {
  display: block;
  color: var(--orange);
  font-weight: 500;
}

.insights-hero__lede {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1875rem;
  line-height: 1.9;
}

/* Hero counters read like the home-page stats: serif figure, tracked label. */
.insights-hero__index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin: 0;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.insights-hero__index div {
  display: flex;
  flex-direction: column-reverse;
  gap: .2rem;
}

.insights-hero__index dt {
  color: var(--pale);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1.55;
  text-transform: lowercase;
}

.insights-hero__index dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  font-weight: 500;
  line-height: 1.1;
}

/* Section heads — same rhythm as .section-heading elsewhere. */
.insights-section-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3.25rem;
}

.insights-section-head h2 {
  max-width: 43rem;
  margin-bottom: 0;
}

.insights-section-head > p {
  max-width: 37rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

/* Featured guides — the sitewide question-card idiom. */
.insights-featured {
  padding: var(--section-space) 0;
  background: var(--paper);
}

.featured-guide-grid {
  display: grid;
  gap: 1.25rem;
}

.featured-guide-card {
  position: relative;
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  padding: 2rem 1.65rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.featured-guide-card__tag {
  margin-bottom: .9rem;
  color: var(--pale);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.55;
  text-transform: lowercase;
}

.featured-guide-card h3 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.featured-guide-card h3 a {
  text-decoration: none;
}

.featured-guide-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.featured-guide-card__summary {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.featured-guide-card__cta {
  margin-top: auto;
  color: var(--orange);
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: lowercase;
}

.featured-guide-card__cta span {
  display: inline-block;
  transition: transform 320ms var(--ease);
}

.featured-guide-card:hover,
.featured-guide-card:focus-within {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-4px);
}

.featured-guide-card:hover .featured-guide-card__tag,
.featured-guide-card:hover .featured-guide-card__summary,
.featured-guide-card:focus-within .featured-guide-card__tag,
.featured-guide-card:focus-within .featured-guide-card__summary {
  color: #b7b1a6;
}

.featured-guide-card:hover .featured-guide-card__cta,
.featured-guide-card:focus-within .featured-guide-card__cta {
  color: var(--orange-light);
}

.featured-guide-card:hover .featured-guide-card__cta span,
.featured-guide-card:focus-within .featured-guide-card__cta span {
  transform: translateX(6px);
}

.featured-guide-card h3 a:focus-visible {
  outline-color: var(--orange-light);
}

/* All guides */
.insights-index {
  background: var(--tint);
}

.insights-index__head {
  padding-top: var(--section-space);
}

.insights-toolbar {
  position: sticky;
  z-index: 40;
  top: var(--header-height);
  padding: 1rem 0;
  border-top: 1px solid var(--line-tint);
  border-bottom: 1px solid var(--line-tint);
  background: rgba(243, 240, 233, .97);
  backdrop-filter: blur(10px);
}

.insights-toolbar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem 1.25rem;
  align-items: center;
}

.insights-search-wrap {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.insights-search {
  width: 100%;
  min-height: 2.9rem;
  padding: .6rem .9rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.insights-search::placeholder {
  color: var(--pale);
  opacity: 1;
}

.insights-search:focus {
  border-color: var(--orange);
  outline: none;
  background: var(--paper);
}

.insights-chips {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  max-width: 100%;
  gap: .45rem;
  overflow-x: auto;
  padding: .1rem .15rem .45rem;
  flex-wrap: nowrap;
  scrollbar-color: var(--line-tint) transparent;
  scrollbar-width: thin;
}

.chip {
  min-height: 2.75rem;
  flex: 0 0 auto;
  padding: .5rem .95rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1.4;
  white-space: nowrap;
  text-transform: lowercase;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.chip:hover,
.chip:focus-visible {
  border-color: var(--taupe);
  color: var(--ink);
}

.chip.is-active {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.insights-count {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  color: var(--pale);
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.5;
  white-space: nowrap;
}

.insights-toolbar__fallback {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: .9375rem;
  line-height: 1.7;
}

.is-filtered-out {
  display: none !important;
}

.guide-directory {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: var(--section-space);
}

.guide-group {
  scroll-margin-top: calc(var(--header-height) + 10rem);
}

.guide-group + .guide-group {
  margin-top: var(--section-space);
}

.guide-group__header {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: .35rem .75rem;
  align-items: end;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-tint);
}

.guide-group__number {
  align-self: center;
  color: var(--orange);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.5;
}

.guide-group__header h3 {
  margin: 0;
  font-size: clamp(1.9rem, 5vw, 2.35rem);
}

.guide-group__count {
  grid-column: 2;
  color: var(--pale);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1.55;
  text-transform: lowercase;
}

.guide-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-list .filter-item {
  border-bottom: 1px solid var(--line-tint);
}

.guide-list .filter-item a {
  position: relative;
  display: flex;
  min-height: 4.75rem;
  min-width: 0;
  align-items: center;
  padding: 1.15rem 2.5rem 1.15rem 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.35rem);
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color 220ms ease;
}

.guide-list .filter-item a::after {
  position: absolute;
  right: .15rem;
  color: var(--orange);
  content: "\2192";
  font-family: var(--ui);
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 220ms ease, transform 320ms var(--ease);
}

.guide-list .filter-item a:hover,
.guide-list .filter-item a:focus-visible {
  color: var(--orange);
}

.guide-list .filter-item a:hover::after,
.guide-list .filter-item a:focus-visible::after {
  opacity: 1;
  transform: translateX(5px);
}

.guide-list .filter-item a:focus-visible {
  outline-offset: -4px;
}

.guide-group__foot {
  margin: 1.85rem 0 0;
}

.guide-group__foot a {
  color: var(--pale);
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1.5;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 220ms ease;
}

.guide-group__foot a::after {
  content: " \2191";
}

.guide-group__foot a:hover,
.guide-group__foot a:focus-visible {
  color: var(--orange);
}

.insights-empty {
  margin: 2.5rem 0 0;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--line-tint);
  color: var(--muted);
  background: var(--paper);
  text-align: center;
}

.insights-empty strong {
  color: var(--ink);
  font-weight: 500;
}

/* Consultation band actions — same breathing room as the other CTA bands. */
.insights-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.5rem;
}

.insights-cta__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem 1.75rem;
  margin: 0;
  font-size: 1rem;
}

.insights-cta__contacts a {
  text-decoration: none;
  transition: color 220ms ease;
}

.insights-cta__contacts a:hover,
.insights-cta__contacts a:focus-visible {
  color: var(--orange-light);
}

@media (min-width: 45rem) {
  .insights-section-head {
    grid-template-columns: minmax(0, 7fr) minmax(16rem, 5fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: end;
  }

  .insights-hero__index {
    gap: 2.5rem;
  }

  .featured-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-group__header {
    grid-template-columns: 3.5rem minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .guide-group__count {
    grid-column: 3;
    align-self: center;
  }
}

@media (min-width: 60rem) {
  .insights-hero__grid {
    grid-template-columns: minmax(0, 8fr) minmax(15rem, 4fr);
    gap: clamp(3.5rem, 7vw, 6rem);
  }

  .insights-toolbar__inner {
    grid-template-columns: minmax(15rem, 20rem) minmax(0, 1fr) auto;
  }

  .insights-chips {
    grid-column: 2;
    grid-row: 1;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0;
  }

  .insights-count {
    grid-column: 3;
    grid-row: 1;
  }

  .guide-group {
    scroll-margin-top: calc(var(--header-height) + 7rem);
  }

  .guide-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(3rem, 6vw, 5.5rem);
  }
}

@media (min-width: 76rem) {
  .featured-guide-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-guide-card:hover,
  .featured-guide-card:focus-within {
    transform: none;
  }

  .featured-guide-card__cta span,
  .guide-list .filter-item a::after {
    transition: none;
  }
}

@media print {
  .insights-toolbar {
    position: static;
  }

  .insights-search-wrap,
  .insights-chips,
  .guide-group__foot {
    display: none !important;
  }

  .guide-group[hidden] {
    display: block !important;
  }

  .guide-list .filter-item[hidden] {
    display: list-item !important;
  }

  .guide-list .filter-item a::after {
    display: none;
  }

  .featured-guide-card,
  .guide-list .filter-item {
    break-inside: avoid;
  }
}

/* Eagle watermark — extended placements (2026-08-30). One per section, alternating tone/corner. */
.ethos,
.practice-section,
.editorial-section--warm,
.whatsapp-band,
.site-footer {
  position: relative;
  overflow: hidden;
}
.ethos > .container,
.practice-section > .container,
.editorial-section--warm > .container,
.whatsapp-band > .container,
.site-footer > .container {
  position: relative;
  z-index: 1;
}
.ethos::after,
.practice-section::before,
.editorial-section--warm::after,
.whatsapp-band::before,
.site-footer::before {
  content: "";
  position: absolute;
  aspect-ratio: 2245 / 1647;
  pointer-events: none;
  -webkit-mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
  mask: url("/assets/lex/logo-eagle-globe.png") center / contain no-repeat;
}
.ethos::after {
  top: 6%;
  right: -12%;
  width: min(42rem, 54vw);
  background: var(--taupe);
  opacity: .05;
  transform: rotate(-8deg);
}
.practice-section::before {
  bottom: -14%;
  left: -10%;
  width: min(28rem, 38vw);
  background: var(--orange);
  opacity: .04;
  transform: rotate(6deg) scaleX(-1);
}
.editorial-section--warm::after {
  top: -12%;
  right: -8%;
  width: min(30rem, 40vw);
  background: var(--taupe);
  opacity: .045;
  transform: rotate(-7deg);
}
.whatsapp-band::before {
  top: -22%;
  left: -6%;
  width: min(26rem, 34vw);
  background: var(--orange-light);
  opacity: .06;
  transform: rotate(7deg) scaleX(-1);
}
.site-footer::before {
  bottom: -24%;
  right: -7%;
  width: min(34rem, 44vw);
  background: #e9a35b;
  opacity: .05;
  transform: rotate(-6deg);
}

/* ===== Media layer — verified logos and press coverage (2026-08-30) ===== */

/* Normalised transparent canvases keep every mark optically balanced while
   one shared display height aligns the full marquee. */
.cred-wall__logo-stage {
  display: flex;
  width: max-content;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
}

.cred-wall__logo {
  display: block;
  width: auto;
  max-width: none;
  height: 2.4rem;
  object-fit: contain;
  opacity: .85;
  transition: opacity 260ms ease;
}

.cred-wall__list li:hover .cred-wall__logo {
  opacity: 1;
}

/* The additional top-level destination keeps the desktop header composed at
   intermediate widths; contact remains present in the navigation throughout. */
@media (min-width: 60rem) and (max-width: 75.999rem) {
  .header__actions {
    display: none;
  }
}

@media (min-width: 76rem) and (max-width: 89.999rem) {
  .primary-nav__links {
    gap: clamp(1rem, 1.5vw, 1.35rem);
  }

  .header__phone {
    display: none;
  }
}

@media (max-height: 48rem) {
  .mobile-menu {
    align-items: flex-start;
    overflow-y: auto;
  }
}

/* Home-page media cards */
.media-preview {
  padding: var(--section-space) 0;
  background: var(--paper);
}

.media-card-grid {
  display: grid;
  gap: 1.25rem;
}

.media-card {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  padding: clamp(1.6rem, 4vw, 2.2rem);
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 220ms ease, background-color 220ms ease;
}

.media-card:hover {
  border-color: var(--orange-light);
  background: var(--tint);
}

.media-card__outlet {
  display: flex;
  height: 2.625rem;
  align-items: center;
  margin-bottom: 1.35rem;
}

.media-card__logo,
.media-post__logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 1.5rem;
  object-fit: contain;
}

/* Homepage "in the media" cards: outlet marks 50% larger (2026-09-03) */
.media-card__logo {
  height: 2.25rem;
}

.media-post__logo {
  height: 2.25rem;
}

.media-card__meta,
.media-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .55rem;
  color: var(--pale);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.55;
  text-transform: lowercase;
}

.media-card__meta {
  margin-bottom: 1rem;
}

.media-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 3vw, 1.7rem);
  line-height: 1.35;
}

.media-card h3 a,
.media-post h3 a {
  text-decoration: none;
  transition: color 220ms ease;
}

.media-card h3 a::after,
.media-post h3 a::after {
  color: var(--orange);
  content: " \2197";
  font-family: var(--ui);
  font-size: .75em;
  white-space: nowrap;
}

.media-card h3 a:hover,
.media-card h3 a:focus-visible,
.media-post h3 a:hover,
.media-post h3 a:focus-visible {
  color: var(--orange);
}

.media-card > p:last-child {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* Media collection page */
.media-hero {
  padding-bottom: clamp(4.5rem, 8vw, 6.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.media-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
  color: var(--pale);
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: lowercase;
}

.media-breadcrumb a {
  color: var(--pale);
  text-decoration: none;
  transition: color 220ms ease;
}

.media-breadcrumb a:hover,
.media-breadcrumb a:focus-visible {
  color: var(--orange);
}

.media-directory {
  padding: var(--section-space) 0;
}

.media-stream {
  max-width: 72rem;
  margin-inline: auto;
}

.media-year + .media-year {
  margin-top: clamp(3.75rem, 8vw, 6.5rem);
}

.media-year__separator {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--ink);
}

.media-year__separator h2 {
  margin-bottom: 0;
  color: var(--taupe);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-style: italic;
  line-height: 1;
}

.media-year__separator p {
  margin-bottom: 0;
  color: var(--pale);
  font-size: .8125rem;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: lowercase;
}

.media-post {
  display: grid;
  grid-template-columns: minmax(5.5rem, 6.75rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 2.25rem);
  padding: clamp(1.65rem, 4vw, 2.25rem) 0;
  border-bottom: 1px solid var(--line);
}

.media-post__outlet {
  min-width: 0;
  padding-top: .35rem;
}

.media-post__wordmark,
.media-card__wordmark {
  display: block;
  color: var(--taupe);
  font-family: var(--ui);
  font-size: .75rem;
  font-weight: 500;
  font-variant-caps: all-small-caps;
  letter-spacing: .18em;
  line-height: 1.45;
}

.media-post__body {
  min-width: 0;
}

.media-post__meta {
  margin-bottom: .8rem;
}

.media-post h3 {
  max-width: 62rem;
  margin-bottom: .75rem;
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  line-height: 1.35;
}

.media-post__description {
  max-width: 58rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.media-cta {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  border-top: 1px solid var(--line-tint);
  background: var(--tint);
}

.media-cta__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.media-cta h2 {
  margin-bottom: .9rem;
}

.media-cta p:not(.micro-label) {
  margin-bottom: 0;
  color: var(--muted);
}

@media (min-width: 45rem) {
  .media-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-post {
    grid-template-columns: minmax(7.5rem, 9rem) minmax(0, 1fr);
  }
}

@media (min-width: 60rem) {
  .media-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-post {
    grid-template-columns: minmax(9rem, 11rem) minmax(0, 1fr);
    gap: clamp(2.75rem, 5vw, 4.5rem);
  }

  .media-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4rem;
  }
}

@media print {
  .cred-wall__track {
    width: 100%;
  }

  .cred-wall__list {
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  .cred-wall__list[aria-hidden="true"] {
    display: none;
  }

  .media-card,
  .media-post {
    break-inside: avoid;
  }
}

/* Focus ring on dark grounds + article list styling (legibility pass, 2026-09-02) */
.site-footer :focus-visible,
.whatsapp-band :focus-visible,
.home-hero :focus-visible,
.photo-band :focus-visible {
  outline-color: var(--paper);
}
.lex-list {
  margin: 0 0 1.6rem;
  padding-left: 1.4rem;
}
.lex-list li {
  margin-bottom: .55rem;
  line-height: 1.7;
}
.lex-list li::marker {
  color: var(--orange);
}

/* ===== Language switcher (ticket #7, 2026-09-03) ===== */
.header__actions .language-switcher {
  padding-bottom: 0;
  border-bottom: 0;
  margin-right: .35rem;
  color: inherit;
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .78;
  transition: opacity 220ms ease, color 220ms ease;
}
.header__actions .language-switcher:hover,
.header__actions .language-switcher:focus-visible {
  color: var(--orange);
  opacity: 1;
}
.footer__bottom .language-switcher {
  margin-top: .45rem;
  font-size: .8125rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ===== Insights article sidebar follows the reader (Galav, 2026-09-03) ===== */
@media (min-width: 60rem) {
  aside[aria-label="Article resources"] {
    position: sticky;
    top: 7.5rem; /* clears the sticky site header */
    align-self: start;
  }
}
aside[aria-label="Article resources"] .practice-list + p {
  margin-top: 1.6rem;
}

/* ===== Article pages: breadcrumb rhythm + compact sidebar (Galav, 2026-09-03) ===== */
nav[aria-label="Breadcrumb"].text-link {
  gap: .55rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: .8125rem;
  letter-spacing: .14em;
}
nav[aria-label="Breadcrumb"].text-link a {
  padding-bottom: .15rem;
  border-bottom: 1px solid currentColor;
}
nav[aria-label="Breadcrumb"].text-link > span:not(:last-child) {
  opacity: .5;
}
nav[aria-label="Breadcrumb"].text-link > span:last-child {
  color: var(--taupe);
}
@media (min-width: 60rem) {
  .editorial-grid:has(> aside[aria-label="Article resources"]) {
    grid-template-columns: 8fr 4fr;
  }
}
aside[aria-label="Article resources"] .enquiry-form {
  padding: 1.35rem 1.35rem 1.5rem;
}
aside[aria-label="Article resources"] .enquiry-form h2 {
  margin-bottom: .5rem;
  font-size: 1.35rem;
}
aside[aria-label="Article resources"] .practice-list .contact-detail {
  padding: .55rem 0;
  font-size: .9375rem;
}
aside[aria-label="Article resources"] .practice-list .contact-detail a {
  font-size: .9375rem;
}
aside[aria-label="Article resources"] .practice-list + p {
  margin: 1.1rem 0 .8rem;
}
aside[aria-label="Article resources"] .enquiry-form p {
  margin-bottom: .5rem;
  font-size: .9375rem;
  line-height: 1.6;
}
aside[aria-label="Article resources"] .button {
  min-height: 2.6rem;
  padding: .5rem 1.1rem;
  font-size: .75rem;
}
aside[aria-label="Article resources"] > p {
  margin-top: 1rem;
}

/* Header composition with the language switcher (verify-ticket-7 patch notes, 2026-09-03) */
@media (min-width: 60rem) and (max-width: 75.999rem) {
  /* keep the switcher reachable while the consultation button yields to the nav */
  .header__actions {
    display: flex;
  }
  .header__actions .header__button {
    display: none;
  }
}
@media (min-width: 76rem) and (max-width: 89.999rem) {
  .primary-nav__links {
    gap: clamp(.7rem, 1.1vw, 1.05rem);
  }
  .primary-nav__links a {
    letter-spacing: .1em;
  }
  .header__actions {
    gap: 1rem;
  }
  .header__actions .language-switcher {
    margin-right: 0;
  }
}

/* ===== Language: hero line, mobile-menu row, footer line (2026-09-03) ===== */
.footer__lang {
  margin: 0 0 .35rem;
}
.footer__lang a {
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: none;
}
.lang-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.1rem;
  padding: 0 .55rem;
  border: 1px solid currentColor;
  color: inherit;
  font-family: var(--ui);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}
.lang-pill:hover,
.lang-pill:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}
@media (max-width: 59.999rem) {
  .lang-pill {
    height: 2rem;
    margin-left: auto;
    margin-right: .25rem;
  }
}
@media (min-width: 60rem) {
  .lang-pill {
    margin-left: .25rem;
  }
}
.mobile-menu__lang {
  color: var(--orange);
}

/* Chambers record: four stats (2026-09-03) */
.stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 60rem) {
  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Chambers page: featured principal (2026-09-03) */
.principal-feature {
  margin: 2.5rem 0 3rem;
}
.principal-feature__portrait {
  height: auto;
  aspect-ratio: 4 / 3;
  object-position: center 30%;
}
.principal-feature__name {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
}

/* Media article cards: L'Express and Défi outlet marks read larger (2026-09-03).
   Scoped to the article cards (homepage + /media) by file name; the credibility marquee is untouched. */
.media-card__outlet {
  height: 3.9rem;
}
.media-card__logo[src$="/lexpress.png"],
.media-post__logo[src$="/lexpress.png"] {
  height: 3.9rem;
}
.media-card__logo[src$="/defi-media-v2.png"],
.media-post__logo[src$="/defi-media-v2.png"] {
  height: 2.75rem;
}

/* Chambers page band: painted Théâtre de Port-Louis postcard (2026-09-03).
   Light sepia ground, so the band carries a heavier scrim and the statement a soft halo for legibility. */
.chambers-page .photo-band__image {
  object-position: center 25%;
  filter: saturate(.85) brightness(.95);
}
.chambers-page .photo-band__overlay {
  background: rgba(12, 11, 10, .1);
}
.chambers-page .photo-band__statement {
  padding: 1.25rem 2.25rem 1.4rem;
  background: rgba(20, 18, 16, .88);
  text-shadow: none;
}
@media (min-width: 60rem) {
  .chambers-page .photo-band__statement {
    padding: 1.6rem 3rem 1.75rem;
  }
}

/* Consent-gated analytics preferences */
.analytics-consent {
  position: fixed;
  z-index: 10000;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: min(32rem, calc(100vw - 2rem));
  padding: 1.1rem 1.2rem;
  color: #f7f2e9;
  background: #171512;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}
.analytics-consent p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}
.analytics-consent__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 0.9rem;
}
.analytics-consent button,
.analytics-settings {
  font: inherit;
  cursor: pointer;
}
.analytics-consent button {
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid #b86b26;
}
.analytics-consent__accept {
  color: #fff;
  background: #a5560e;
}
.analytics-consent__decline {
  color: #f7f2e9;
  background: transparent;
}
.analytics-settings {
  display: block;
  margin: 0.8rem auto 1.2rem;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  opacity: 0.75;
}
.analytics-consent button:focus-visible,
.analytics-settings:focus-visible {
  outline: 2px solid #f1c58f;
  outline-offset: 3px;
}
@media (max-width: 540px) {
  .analytics-consent__actions { justify-content: stretch; }
  .analytics-consent button { flex: 1; }
}
