:root {
  --paper: #faf9f6;
  --ink: #2a2723;
  --taupe: #5f544a;
  --muted: #5d5346;
  --pale: #7d7364;
  --tint: #f3f0e9;
  --warm: #f6ecdc;
  --charcoal: #141311;
  --dark-row: #2a2723;
  --line: #e3ddd0;
  --line-tint: #ddd7c9;
  --orange: #c26a15;
  --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.125rem;
  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(--orange-light);
  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: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: lowercase;
}

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

.micro-label {
  margin-bottom: 1.4rem;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .46em;
  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: .78125rem;
  font-weight: 400;
  letter-spacing: .24em;
  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: .8125rem;
  font-weight: 400;
  letter-spacing: .22em;
  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.1rem;
  font-weight: 600;
  letter-spacing: .18em;
  white-space: nowrap;
}

.site-brand__descriptor {
  margin-top: .35rem;
  color: var(--pale);
  font-size: .5625rem;
  font-weight: 400;
  letter-spacing: .48em;
  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: 1rem;
}

.mobile-menu__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  color: var(--orange);
  font-size: .8125rem;
  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: .9375rem;
  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: .6875rem;
  font-weight: 400;
  letter-spacing: .3em;
  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: .9375rem;
  text-decoration: none;
  transition: color 220ms ease;
}

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

.footer__links .footer__phone {
  color: var(--orange-light);
  font-weight: 400;
}

.footer__bottom {
  display: grid;
  gap: .8rem;
  margin-top: 3.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid #2b2925;
  color: #6e675c;
  font-size: .75rem;
  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% center;
  filter: saturate(.84) brightness(.94);
  transform-origin: center;
}

.home-hero__grade {
  background: linear-gradient(to top, rgba(7, 14, 18, .82), rgba(7, 14, 18, .28) 48%, rgba(7, 14, 18, .04));
}

.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: #f6f2ea;
  text-shadow: 0 2px 22px rgba(7, 14, 18, .55);
}

.home-hero__location {
  display: block;
  margin-bottom: 1.35rem;
  color: #e8ddc9;
  text-shadow: 0 1px 10px rgba(7, 14, 18, .6);
  font-family: var(--ui);
  font-size: .75rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .38em;
  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: #efeadf;
  font-size: 1.125rem;
  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: .6875rem;
  letter-spacing: .42em;
  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: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.stat__label {
  display: block;
  color: var(--pale);
  font-size: .71875rem;
  font-weight: 400;
  letter-spacing: .2em;
  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: #b3aa99;
  font-size: .9375rem;
  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: .9375rem;
  line-height: 1.7;
}

.practice-row__arrow {
  grid-column: 3;
  grid-row: 1;
  color: #b3aa99;
  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.0625rem;
  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: .9375rem;
  line-height: 1.75;
}

.question-card__link {
  margin-top: auto;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .24em;
  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: .6875rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .36em;
  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: .8125rem;
}

/* 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.125rem;
  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: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  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: 1rem;
  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: .78rem;
  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: .9375rem;
  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: .8125rem;
  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.1rem;
    letter-spacing: .16em;
  }

  .site-brand__descriptor {
    font-size: .5625rem;
    letter-spacing: .42em;
  }

  .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: .75rem;
    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: .7rem;
    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: .58rem;
    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;
  }

  .ethos__sideword {
    display: block;
  }

  .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: .22em;
  }

  .site-brand__descriptor {
    font-size: .625rem;
    letter-spacing: .52em;
  }

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

  .primary-nav__links a {
    font-size: .8125rem;
    letter-spacing: .18em;
  }

  .header__actions {
    gap: 1.6rem;
  }

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

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

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

@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%);
}

.emblem-display::before {
  content: "";
  position: absolute;
  right: -42%;
  bottom: -30%;
  width: 128%;
  aspect-ratio: 2245 / 1647;
  background: var(--taupe);
  opacity: .07;
  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,
.contact-intro {
  position: relative;
  overflow: hidden;
}

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

.answers-section::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::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;
}
