:root {
  --paper: #f4f0e8;
  --paper-soft: #faf8f4;
  --ink: #17322c;
  --ink-soft: #50645e;
  --sage: #9db0a5;
  --sage-light: #dce4dd;
  --sage-pale: #e9eee9;
  --copper: #b76f4f;
  --line: rgba(23, 50, 44, 0.16);
  --white: #fff;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page-x: clamp(1.25rem, 5vw, 5rem);
  --content: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--copper);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

sup {
  font-size: 0.62em;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-200%);
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-x);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(244, 240, 232, 0.9);
  box-shadow: 0 8px 35px rgba(23, 50, 44, 0.05);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: clamp(0.8rem, 2vw, 2rem);
}

.language-switch {
  position: relative;
  z-index: 2;
  gap: 0.3rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.25);
}

.language-switch button {
  padding: 0.15rem 0.25rem;
  border: 0;
  color: var(--ink-soft);
  background: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--copper);
}

.language-switch > span {
  color: var(--line);
  font-size: 0.7rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.8rem);
}

.site-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.72rem 1.15rem;
  border: 1px solid var(--ink);
  transition: color 180ms ease, background-color 180ms ease;
}

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

.menu-button {
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 1px;
  margin: 7px auto;
  background: var(--ink);
  transition: transform 200ms ease;
}

.menu-button[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-of-type(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  column-gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding: clamp(6.5rem, 12vh, 8rem) var(--page-x) clamp(3rem, 6vh, 4rem);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 61.5%;
  width: 1px;
  background: linear-gradient(transparent, var(--line) 15%, var(--line) 85%, transparent);
  content: "";
}

.hero-glow {
  position: absolute;
  top: -18vw;
  left: -20vw;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: rgba(210, 222, 213, 0.52);
  filter: blur(3px);
  pointer-events: none;
}

.hero-content,
.portrait-wrap,
.about-band {
  position: relative;
  z-index: 1;
}

.hero-content {
  min-width: 0;
  max-width: 800px;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 1.5rem;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eyebrow > span:first-child {
  width: 25px;
  min-width: 25px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h1 {
  max-width: 850px;
  font-size: clamp(4rem, 7vw, 7.3rem);
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--copper);
  font-weight: 400;
}

.hero-lead {
  max-width: 660px;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.8rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--copper);
}

.text-link {
  font-size: 0.82rem;
  font-weight: 500;
  text-underline-offset: 0.35rem;
}

.text-link span {
  display: inline-block;
  margin-left: 0.45rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-signals {
  display: flex;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: 2.25rem 0 0;
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-signals li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 1rem;
}

.hero-signals span {
  color: var(--copper);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.hero-signals .signal-label {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0;
}

.portrait-wrap {
  width: min(92%, 430px);
  align-self: center;
  justify-self: center;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(23, 50, 44, 0.17);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(14, 35, 30, 0.62));
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-caption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
}

.portrait-caption span {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.portrait-caption small {
  opacity: 1;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(14, 35, 30, 0.5);
  text-transform: uppercase;
}

.portrait-orbit {
  position: absolute;
  z-index: -1;
  top: -42px;
  right: -20px;
  width: 100px;
  height: 100px;
  overflow: visible;
  animation: orbit 18s linear infinite;
  fill: none;
  stroke: var(--copper);
  stroke-width: 0.6px;
}

.portrait-orbit .orbit-dot {
  fill: var(--copper);
  stroke: none;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.about-section {
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.about-band {
  display: grid;
  max-width: var(--content);
  grid-template-columns: 0.55fr 1.45fr;
  gap: 3rem;
  margin: 0 auto;
}

.about-band > .section-kicker {
  padding-top: 0.35rem;
}

.about-copy h2 {
  max-width: 930px;
  font-size: clamp(2.6rem, 5.4vw, 5.6rem);
}

.about-copy > p {
  max-width: 780px;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.consultation-languages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.consultation-languages > span {
  margin-right: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.consultation-languages strong {
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
}

.credentials {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
}

.credentials article {
  min-height: 190px;
  padding: 1.7rem 1.5rem 1.2rem 0;
}

.credentials article + article {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.credential-year {
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credentials h3 {
  margin: 1.2rem 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.credentials p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.section {
  padding: clamp(6rem, 10vw, 10rem) var(--page-x);
}

.approach {
  color: var(--paper-soft);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.35fr 0.8fr;
  gap: 3rem;
  align-items: end;
  max-width: var(--content);
  margin: 0 auto;
}

.section-heading .section-kicker {
  align-self: start;
  color: #cf8d6d;
}

.section-heading h2,
.booking-intro h2 {
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
}

.section-heading > p:last-child {
  margin: 0;
  color: rgba(250, 248, 244, 0.68);
  font-size: 0.95rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--content);
  margin: clamp(4rem, 7vw, 7rem) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pillar {
  position: relative;
  min-height: 410px;
  padding: 3rem clamp(1.5rem, 3vw, 3rem) 3rem 0;
}

.pillar + .pillar {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.pillar > span {
  position: absolute;
  top: 2.2rem;
  right: 1.8rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.pillar-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.pillar-icon svg {
  width: 32px;
  fill: none;
  stroke: #cf8d6d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.pillar h3 {
  margin: 5rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 400;
}

.pillar p {
  max-width: 350px;
  margin: 0;
  color: rgba(250, 248, 244, 0.62);
  font-size: 0.9rem;
}

.approach-note {
  display: grid;
  grid-template-columns: 0.25fr 1.45fr 0.75fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--content);
  margin: clamp(4rem, 7vw, 7rem) auto 0;
}

.note-mark {
  align-self: start;
  color: #cf8d6d;
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 0.8;
}

blockquote {
  margin: 0;
}

blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3.7rem);
  line-height: 1.12;
}

.note-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.note-topics span {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  color: rgba(250, 248, 244, 0.72);
  font-size: 0.7rem;
}

.booking {
  max-width: calc(var(--content) + 2 * var(--page-x));
  margin: 0 auto;
}

.booking-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 3rem;
}

.booking-intro h2 {
  max-width: 900px;
}

.booking-title > p {
  max-width: 610px;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.booking-contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.booking-contact-copy > p:last-child {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.booking-contact-action {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.button-contact {
  width: 100%;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
}

.button-contact:hover,
.button-contact:focus-visible {
  background: var(--copper);
}

.plain-email {
  margin-top: 1.25rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  text-underline-offset: 0.3rem;
}

.booking-contact-action small {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.journey-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 3rem;
  align-items: end;
  margin-top: clamp(5rem, 9vw, 8rem);
}

.journey-heading .panel-label {
  margin: 0;
}

.journey-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.journey-step {
  display: grid;
  min-height: 250px;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  padding: 2rem clamp(1.25rem, 2.5vw, 2.5rem) 2rem 0;
}

.journey-step + .journey-step {
  padding-left: clamp(1.25rem, 2.5vw, 2.5rem);
  border-left: 1px solid var(--line);
}

.step-number {
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.journey-step h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
}

.journey-step p {
  max-width: 320px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.booking-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 1rem;
  color: var(--paper-soft);
  background: var(--ink);
}

.pricing-panel {
  grid-template-columns: 1fr;
}

.pricing-panel .pricing {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 2.5rem clamp(3rem, 8vw, 8rem);
}

.pricing-panel .panel-label {
  margin: 0;
}

.pricing-panel .price-list {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
}

.pricing-panel .coverage-note {
  grid-column: 1;
  align-self: end;
  margin: 0;
}

.pricing,
.contact-card {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.booking-panel .panel-label {
  color: #cf8d6d;
}

.price-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
}

.price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1rem;
  padding-right: clamp(1.5rem, 3vw, 3rem);
}

.price-item + .price-item {
  padding-right: 0;
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.price-item span {
  grid-column: 1 / -1;
  color: rgba(250, 248, 244, 0.65);
  font-size: 0.76rem;
}

.price-item strong {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
}

.price-item small {
  align-self: end;
  padding-bottom: 0.45rem;
  color: rgba(250, 248, 244, 0.5);
  font-size: 0.67rem;
}

.coverage-note {
  display: flex;
  max-width: 630px;
  gap: 0.75rem;
  margin: 3rem 0 0;
  color: rgba(250, 248, 244, 0.76);
  font-size: 0.8rem;
  line-height: 1.55;
}

.coverage-note svg {
  width: 18px;
  min-width: 18px;
  margin-top: 0.1rem;
  fill: none;
  stroke: #cf8d6d;
  stroke-linecap: round;
  stroke-width: 1.2;
}

.contact-card {
  color: var(--ink);
  background: var(--sage-light);
}

.contact-card .panel-label {
  color: var(--copper);
}

.contact-card h3 {
  margin: 2.5rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
}


.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 3rem;
  align-items: end;
  padding: 3rem var(--page-x);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--paper-soft);
  font-size: 0.7rem;
}

.site-footer > div {
  display: flex;
  gap: 1rem;
}

.footer-name {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
}

.footer-contact {
  justify-content: flex-end;
}

.footer-contact a {
  text-underline-offset: 0.25rem;
}

.emergency {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.reveal {
  animation: reveal 700ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.reveal[data-delay="1"] {
  animation-delay: 100ms;
}

.reveal[data-delay="2"] {
  animation-delay: 200ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    column-gap: 3rem;
  }

  .hero::before {
    display: none;
  }

  h1 {
    font-size: clamp(3.6rem, 7vw, 5.5rem);
  }

  .section-heading {
    grid-template-columns: 0.45fr 1.4fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .approach-note {
    grid-template-columns: 0.2fr 1.5fr;
  }

  .note-topics {
    grid-column: 2;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 4.5rem;
  }

  .site-header {
    height: 70px;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .language-switch {
    padding: 0.28rem 0.45rem;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.2rem;
    padding: 6rem var(--page-x);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 9vw, 4rem);
    font-weight: 400;
  }

  .site-nav .nav-cta {
    padding: 0;
    border: 0;
  }

  .site-nav .nav-cta:hover,
  .site-nav .nav-cta:focus-visible {
    color: var(--copper);
    background: transparent;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

  h1 {
    font-size: clamp(3rem, 12.5vw, 4.4rem);
    letter-spacing: -0.04em;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.4rem;
  }

  .hero-signals {
    gap: 1rem;
    justify-content: space-between;
  }

  .hero-signals li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.9rem;
  }

  .portrait-wrap {
    width: min(80%, 340px);
  }

  .portrait-orbit {
    right: -18px;
  }

  .about-band,
  .booking-intro {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .credentials {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .credentials article {
    min-height: auto;
    padding: 1.5rem 0;
  }

  .credentials article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .section-heading > p:last-child {
    grid-column: 1;
    max-width: 570px;
  }

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

  .pillar {
    min-height: 340px;
    padding: 2.5rem 0;
  }

  .pillar + .pillar {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .pillar h3 {
    margin-top: 3.5rem;
  }

  .approach-note {
    grid-template-columns: 0.18fr 1fr;
    gap: 1rem;
  }

  .note-topics {
    grid-column: 1 / -1;
    padding-left: calc(18% + 1rem);
  }

  .booking-contact,
  .journey-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-panel .pricing {
    display: block;
  }

  .pricing-panel .price-list {
    margin-top: 2.5rem;
  }

  .pricing-panel .coverage-note {
    margin-top: 3rem;
  }

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

  .journey-step {
    min-height: auto;
    padding: 1.8rem 0;
  }

  .journey-step + .journey-step {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journey-step p {
    max-width: 540px;
  }

  .price-list {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .price-item + .price-item {
    padding-top: 1.8rem;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer > div,
  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.25rem;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 1.05rem;
  }

  .hero-signals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .portrait-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-panel {
    margin-right: calc(-1 * var(--page-x));
    margin-left: calc(-1 * var(--page-x));
  }

}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
