:root {
  color-scheme: light;
  --red: #e63928;
  --red-dark: #c42e1e;
  --purple: #8d3e97;
  --blue: #0091d5;
  --neutral: #8a716d;
  --ink: #3c1e14;
  --paper: #ffffff;
  --wash: #fdf5f4;
  --mist: #f4fbff;
  --line: rgba(138, 113, 109, 0.25);
  --shadow: 0 18px 48px rgba(60, 30, 20, 0.12);
  --radius: 8px;
  --cursor-size: 18px;
  --page-gutter: clamp(16px, 4vw, 40px);
  --content-max: 1180px;
  --header-height: 108px;
  --header-height-scrolled: 76px;
  --hero-height: 84svh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--neutral);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.motion-ready * {
  cursor: none;
}

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

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--purple);
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(138, 113, 109, 0.18);
  box-shadow: 0 12px 32px rgba(60, 30, 20, 0.08);
}

.nav-shell {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height 260ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 166px;
  height: 57px;
  flex: 0 0 auto;
  line-height: 0;
  transition: width 260ms ease, height 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled .nav-shell {
  min-height: var(--header-height-scrolled);
}

.site-header.is-scrolled .brand {
  width: 126px;
  height: 43px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 24px);
}

.nav-links a {
  color: var(--neutral);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--red);
}

.nav-links a[aria-current="page"] {
  border-bottom: 2px solid var(--red);
}

.nav-links .button {
  color: var(--paper);
}

.nav-links .button:hover {
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: transparent;
  font: inherit;
  font-size: 0;
  font-weight: 800;
  line-height: 0;
  flex: 0 0 auto;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-toggle::before {
  transform: translateY(-7px);
  box-shadow: 0 7px 0 var(--ink);
}

.nav-toggle::after {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(0) rotate(45deg);
  box-shadow: none;
  background: var(--red);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(0) rotate(-45deg);
  background: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--red-dark);
  color: var(--paper);
  transform: translateY(-1px);
}

.button.secondary {
  background: var(--paper);
  color: var(--red);
}

.button.secondary:hover {
  background: var(--red);
  color: var(--paper);
}

.button.invert {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--red);
}

.hero {
  position: relative;
  height: var(--hero-height);
  min-height: var(--hero-height);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background: var(--hero-image) var(--hero-position, center) / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(60, 30, 20, 0.82), rgba(60, 30, 20, 0.34) 56%, rgba(60, 30, 20, 0.08)),
    linear-gradient(0deg, rgba(60, 30, 20, 0.76), rgba(60, 30, 20, 0.04) 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(96px, 12vh, 138px) 0 clamp(58px, 8vh, 84px);
}

.contact-hero {
  align-items: center;
}

.about-hero {
  --hero-position: 58% center;
}

.about-hero::after {
  background:
    linear-gradient(90deg, rgba(60, 30, 20, 0.78), rgba(60, 30, 20, 0.32) 48%, rgba(60, 30, 20, 0.04) 78%),
    linear-gradient(0deg, rgba(60, 30, 20, 0.6), rgba(60, 30, 20, 0.02) 48%);
}

.contact-hero .hero-inner {
  padding-block: clamp(86px, 10vh, 118px);
}

.mobile-break {
  display: none;
}

.hero-copy {
  max-width: 790px;
  width: 100%;
  min-width: 0;
}

.eyebrow,
.section-label {
  display: block;
  max-width: 100%;
  margin: 0 0 18px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-label {
  color: var(--purple);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--red);
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 880px;
  color: var(--paper);
  font-size: 50px;
  font-weight: 800;
  overflow-wrap: break-word;
}

h2 {
  font-size: 32px;
  font-weight: 750;
}

h3 {
  color: var(--purple);
  font-size: 20px;
  font-weight: 700;
}

.hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  overflow-wrap: break-word;
}

.home-hero {
  --hero-position: 44% center;
  --hero-content-opacity: 1;
  --hero-content-y: 0px;
  --hero-overlay-opacity: 1;
}

.home-hero::before {
  background-attachment: fixed;
  transform: none;
}

.home-hero::after {
  background:
    linear-gradient(90deg, rgba(60, 30, 20, 0.84), rgba(60, 30, 20, 0.42) 40%, rgba(60, 30, 20, 0.1) 74%),
    linear-gradient(0deg, rgba(60, 30, 20, 0.64), rgba(60, 30, 20, 0.04) 52%);
  opacity: var(--hero-overlay-opacity);
}

.home-hero .hero-copy {
  margin-left: 0;
  max-width: 650px;
  text-align: left;
  opacity: var(--hero-content-opacity);
  transform: translateY(var(--hero-content-y));
  will-change: opacity, transform;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px 34px;
  background: var(--paper);
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  color: var(--ink);
  font-size: 16px;
}

.trust-item span {
  color: var(--neutral);
  font-size: 13px;
}

.section {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 112px) 0;
}

.section.compact {
  padding: 76px 0;
}

.band {
  width: 100%;
  background: var(--wash);
}

.band.blue {
  background: var(--mist);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 64px;
}

.story-grid.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.story-grid.reverse .story-copy {
  order: 2;
}

.story-copy > p,
.section-intro {
  max-width: 760px;
  margin: 18px 0 0;
}

.image-panel {
  position: relative;
  min-height: clamp(360px, 42vw, 520px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--wash);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 42vw, 520px);
  object-fit: cover;
}

.image-panel.small,
.image-panel.small img {
  min-height: clamp(320px, 34vw, 390px);
}

.image-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.home-gallery-section {
  padding-top: 0;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.gallery-head p {
  margin: 0;
}

.gallery-head > p {
  max-width: 520px;
  justify-self: end;
}

.masonry-gallery {
  column-count: 4;
  column-gap: 16px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--wash);
  box-shadow: 0 14px 34px rgba(60, 30, 20, 0.1);
  cursor: pointer;
  break-inside: avoid;
  transform: translateZ(0);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.035);
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(30, 13, 8, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(100%, 1180px);
  max-height: calc(100svh - 150px);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.lightbox-caption {
  margin: 0;
  color: var(--paper);
  font-weight: 800;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

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

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

.card,
.feature,
.faq-item,
.role,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.card,
.feature,
.role,
.contact-panel {
  padding: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card,
.feature,
.role,
.contact-panel,
.image-panel {
  transform-style: preserve-3d;
}

.card p,
.feature p,
.role p {
  margin: 12px 0 0;
}

.contact-panel a {
  overflow-wrap: anywhere;
}

.profile-card {
  display: grid;
  gap: 28px;
  align-items: start;
  padding: 0;
  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  background: var(--paper);
  object-fit: cover;
  object-position: center top;
}

.profile-photo-wrap {
  width: 190px;
  aspect-ratio: 3 / 4;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 44px rgba(60, 30, 20, 0.14);
}

.profile-header-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 30px;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 145, 213, 0.12), transparent 34%),
    linear-gradient(135deg, var(--wash), #ffffff);
  border-bottom: 1px solid var(--line);
}

.profile-intro {
  min-width: 0;
}

.profile-intro h2 {
  font-size: 36px;
}

.profile-title {
  display: inline-flex;
  margin-top: 6px;
  color: var(--purple);
  font-size: 19px;
  font-weight: 900;
}

.profile-tagline {
  max-width: 820px;
  margin-top: 18px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.profile-body {
  padding: 32px;
}

.profile-section-block {
  margin-top: 24px;
}

.profile-section-label {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.profile-card-divider {
  height: 1px;
  margin: 28px 0;
  background: var(--line);
}

.qual-tags,
.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.qual-tags li,
.skill-chips li {
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.qual-tags li {
  padding: 9px 12px;
  background: var(--wash);
  color: var(--ink);
  border: 1px solid rgba(230, 57, 40, 0.16);
}

.skill-chips li {
  padding: 10px 13px;
  background: rgba(0, 145, 213, 0.08);
  color: #0876aa;
  border: 1px solid rgba(0, 145, 213, 0.18);
}

.profile-card .check-list {
  margin-top: 16px;
  gap: 8px;
}

.profile-card h3 {
  margin-top: 24px;
}

.profile-card h2 + h3,
.profile-card h3:first-child {
  margin-top: 4px;
}

.staff-preview-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 100%;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 145, 213, 0.1), transparent 30%),
    var(--paper);
}

.staff-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--red);
  pointer-events: none;
}

.staff-preview-photo {
  width: 112px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: var(--wash);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(60, 30, 20, 0.12);
}

.staff-preview-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.staff-preview-card h3 {
  margin: 0;
  color: var(--red);
  font-size: 24px;
}

.staff-preview-role {
  display: inline-flex;
  margin-top: 5px;
  color: var(--purple);
  font-weight: 900;
}

.staff-preview-card p {
  margin-top: 12px;
}

.staff-preview-card a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 900;
}

.card a {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 800;
}

.card > a:last-child {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 20px;
}

.number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-weight: 900;
}

.quote-band {
  width: min(980px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 92px 0;
  text-align: center;
}

.quote-band p {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.35;
  font-weight: 750;
}

.pace-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(141, 62, 151, 0.1), transparent 32%),
    linear-gradient(135deg, #ffffff, var(--wash));
  box-shadow: 0 24px 58px rgba(60, 30, 20, 0.08);
}

.pace-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pace-card {
  min-width: 0;
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(230, 57, 40, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--neutral);
  text-align: left;
  box-shadow: 0 12px 26px rgba(60, 30, 20, 0.06);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.pace-card:hover,
.pace-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0, 145, 213, 0.36);
  box-shadow: 0 18px 34px rgba(60, 30, 20, 0.1);
}

.pace-card.is-active {
  background: var(--paper);
  border-color: rgba(230, 57, 40, 0.46);
  box-shadow: 0 20px 42px rgba(230, 57, 40, 0.12);
}

.pace-card span {
  display: block;
  color: var(--red);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.pace-card strong {
  display: block;
  margin-top: 6px;
  color: var(--purple);
  font-size: 19px;
  line-height: 1.15;
}

.pace-card small {
  display: block;
  margin-top: 10px;
  color: var(--neutral);
  font-size: 14px;
  line-height: 1.45;
}

.pace-detail {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper);
}

.pace-detail > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-size: 26px;
  font-weight: 900;
}

.pace-detail h3 {
  margin: 0;
  color: var(--paper);
}

.pace-detail p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
}

.service-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 10;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

body.header-scrolled .service-nav {
  top: var(--header-height-scrolled);
}

.service-nav a {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--neutral);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.service-nav a:hover {
  border-color: var(--red);
  color: var(--red);
}

.cta-band {
  background: var(--red);
  color: var(--paper);
}

.cta-inner {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.cta-band h2,
.cta-band p,
.cta-band a {
  color: var(--paper);
}

.cta-band p {
  margin: 12px 0 0;
}

.phone-large {
  display: block;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--red);
  font-size: 21px;
  line-height: 1;
}

.faq-item[open] {
  background: var(--wash);
}

.faq-item[open] summary {
  color: var(--red);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
}

.journey-section {
  padding-top: 84px;
}

.journey-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
}

.journey-head p {
  margin: 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.journey-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(253, 245, 244, 0.9)),
    var(--paper);
  color: var(--neutral);
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(60, 30, 20, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.journey-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(230, 57, 40, 0.1);
}

.journey-card:hover {
  border-color: rgba(230, 57, 40, 0.42);
  box-shadow: 0 22px 56px rgba(60, 30, 20, 0.12);
  color: var(--neutral);
  transform: translateY(-3px);
}

.journey-card small {
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-card strong {
  display: block;
  margin-top: 10px;
  color: var(--red);
  font-size: 21px;
  line-height: 1.18;
}

.journey-card span {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(138, 113, 109, 0.45);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--neutral);
  font-size: 14px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--purple);
  font-weight: 800;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(230, 57, 40, 0.55);
  border-radius: 50%;
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cursor-ring.is-active {
  width: 54px;
  height: 54px;
  border-color: rgba(141, 62, 151, 0.68);
  background: rgba(141, 62, 151, 0.08);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--red), var(--purple), var(--blue));
}

.cookie-banner {
  position: fixed;
  left: var(--page-gutter);
  right: var(--page-gutter);
  bottom: 18px;
  z-index: 999;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(138, 113, 109, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(34px);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(230, 57, 40, 0.2), transparent 28%),
    linear-gradient(135deg, #2a120c, #34160f 46%, var(--ink));
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.04fr) minmax(136px, 0.6fr) minmax(330px, 1.16fr) minmax(230px, 0.84fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.footer-logo {
  width: 168px;
  height: auto;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}

.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: var(--paper);
}

.site-footer h3 {
  margin: 0 0 18px;
  font-size: 15px;
  letter-spacing: 0;
}

.footer-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer a {
  display: block;
  max-width: 100%;
  color: #fac8c3;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.42;
  margin: 0 0 10px;
  overflow-wrap: anywhere;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer a:hover {
  color: var(--paper);
  text-decoration: underline;
  transform: translateX(2px);
}

.site-footer p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.footer-regulated p {
  max-width: 280px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.policy-hero {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(72px, 11vw, 126px) 0 34px;
}

.policy-hero h1 {
  color: var(--red);
}

.policy-hero p:not(.section-label) {
  max-width: 760px;
  margin: 18px 0 0;
}

.policy-content {
  max-width: 920px;
  padding-top: 24px;
}

.policy-content > * {
  opacity: 1 !important;
  transform: none !important;
}

.policy-content h2 {
  margin-top: 34px;
}

.policy-content p {
  margin: 14px 0 0;
}

.legal-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

@media (min-width: 1440px) {
  :root {
    --content-max: 1280px;
  }

  .hero-copy {
    max-width: 860px;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-links .button {
    padding-inline: 14px;
  }

  .brand {
    width: 154px;
    height: 53px;
  }

  .story-grid,
  .story-grid.reverse {
    gap: 44px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 92px;
    --header-height-scrolled: 74px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 27px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    min-height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    padding: 22px var(--page-gutter) 30px;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow-y: auto;
    box-shadow: 0 22px 44px rgba(60, 30, 20, 0.12);
  }

  body.header-scrolled .nav-links {
    inset: var(--header-height-scrolled) 0 auto;
    min-height: calc(100vh - var(--header-height-scrolled));
    max-height: calc(100vh - var(--header-height-scrolled));
  }

  .site-header.is-scrolled .brand {
    width: 132px;
    height: 45px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    padding: 0 12px;
    font-size: 16px;
  }

  .nav-links a[aria-current="page"] {
    border-bottom: 0;
    background: var(--wash);
  }

  .nav-links .button {
    width: 100%;
    margin-top: 10px;
  }

  .service-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    overflow: visible;
    padding: 16px var(--page-gutter);
  }

  .service-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-align: center;
    white-space: normal;
  }

  .trust-strip,
  .grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid,
  .story-grid.reverse,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .gallery-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-head > p {
    justify-self: start;
  }

  .masonry-gallery {
    column-count: 3;
  }

  .story-grid.reverse .story-copy {
    order: 0;
  }

  .grid.three,
  .grid.two,
  .journey-head,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .profile-card {
    gap: 0;
  }

  .profile-photo-wrap {
    width: 150px;
  }

  .staff-preview-card {
    grid-template-columns: 96px 1fr;
    gap: 18px;
  }

  .staff-preview-photo {
    width: 96px;
  }

  .pace-panel {
    padding: 14px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 16px;
    --header-height: 84px;
    --header-height-scrolled: 72px;
  }

  body {
    font-size: 16px;
  }

  .nav-shell,
  .hero-inner,
  .section,
  .cta-inner,
  .footer-inner,
  .trust-strip {
    width: min(100% - (var(--page-gutter) * 2), var(--content-max));
  }

  .hero-inner {
    width: calc(100vw - (var(--page-gutter) * 2));
    max-width: calc(100vw - (var(--page-gutter) * 2));
    overflow: visible;
  }

  .hero-copy {
    max-width: 100%;
  }

  .home-hero {
    --hero-position: 38% center;
  }

  .home-hero::before {
    background-attachment: scroll;
    transform: scale(1.02);
  }

  .home-hero::after {
    background:
      linear-gradient(0deg, rgba(60, 30, 20, 0.9), rgba(60, 30, 20, 0.42) 48%, rgba(60, 30, 20, 0.08)),
      linear-gradient(90deg, rgba(60, 30, 20, 0.12), rgba(60, 30, 20, 0.18));
  }

  .home-hero .hero-copy {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .home-hero .eyebrow,
  .home-hero h1,
  .home-hero p {
    max-width: 100%;
    white-space: normal;
  }

  .home-hero h1 {
    font-size: clamp(26px, 6.8vw, 31px);
    line-height: 1.1;
    word-break: normal;
  }

  .brand {
    width: 132px;
    height: 46px;
  }

  .site-header.is-scrolled .brand {
    width: 112px;
    height: 39px;
  }

  .contact-hero {
    align-items: center;
  }

  .hero-inner {
    padding: 86px 0 48px;
  }

  .contact-hero .hero-inner {
    padding-block: 70px;
  }

  .contact-hero .hero-copy {
    max-width: min(100%, 340px);
  }

  .mobile-break {
    display: inline;
  }

  h1 {
    font-size: clamp(26px, 7vw, 31px);
    line-height: 1.08;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions,
  .section-actions {
    width: 100%;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .masonry-gallery {
    column-count: 2;
    column-gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox img {
    max-height: calc(100svh - 130px);
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .section {
    padding: 72px 0;
  }

  .trust-strip {
    margin-top: -24px;
  }

  .trust-item {
    min-height: 84px;
    padding: 20px 22px;
  }

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip,
  .grid.four,
  .pace-grid {
    grid-template-columns: 1fr;
  }

  .pace-card {
    min-height: 0;
  }

  .pace-detail {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step::before {
    width: 42px;
    height: 42px;
  }

  .image-panel,
  .image-panel img,
  .image-panel.small,
  .image-panel.small img {
    min-height: 320px;
  }

  .quote-band p,
  .phone-large {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 12px;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-header-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .profile-photo-wrap {
    width: min(100%, 240px);
  }

  .profile-intro h2 {
    font-size: 30px;
  }

  .profile-title {
    font-size: 18px;
  }

  .profile-body {
    padding: 22px;
  }

  .staff-preview-card {
    grid-template-columns: 1fr;
  }

  .staff-preview-photo {
    width: min(100%, 180px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.motion-ready * {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (max-width: 500px) {
  :root {
    --page-gutter: 14px;
  }

  .nav-shell,
  .hero-inner,
  .section,
  .cta-inner,
  .footer-inner,
  .trust-strip {
    width: calc(100% - (var(--page-gutter) * 2));
    margin-left: var(--page-gutter);
    margin-right: var(--page-gutter);
  }

  .nav-shell {
    gap: 10px;
  }

  .brand {
    width: 124px;
    height: 43px;
  }

  .site-header.is-scrolled .brand {
    width: 108px;
    height: 37px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    font-size: 0;
  }

  h1 {
    font-size: 25px;
  }

  .home-hero .hero-inner {
    width: calc(100vw - (var(--page-gutter) * 2));
    max-width: calc(100vw - (var(--page-gutter) * 2));
    margin-left: var(--page-gutter);
    margin-right: var(--page-gutter);
  }

  .home-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: 24px;
    line-height: 1.14;
  }

  .home-hero .hero-copy {
    width: min(100%, 330px);
    max-width: 330px;
  }

  .home-hero p {
    font-size: 14px;
    line-height: 1.6;
  }

  .masonry-gallery {
    column-count: 1;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
  }

  .card,
  .feature,
  .role,
  .contact-panel,
  .journey-card {
    padding: 20px;
  }

  .pace-panel {
    padding: 12px;
  }

  .pace-card {
    padding: 16px;
  }

  .pace-card strong {
    font-size: 18px;
  }

  .profile-body,
  .profile-header-strip {
    padding: 20px;
  }
}
