@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Italiana&display=swap");

:root {
  --ink: #161310;
  --ink-soft: #211d19;
  --paper: #eee9df;
  --paper-deep: #e5ded1;
  --cream: #f8f3e9;
  --gold: #d2a25e;
  --gold-light: #edc989;
  --muted: #978f83;
  --line-light: rgba(255, 255, 255, 0.15);
  --line-dark: rgba(22, 19, 16, 0.16);
  --display: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

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

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--gold-light);
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

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

.page-shell {
  width: min(100% - 64px, 1380px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(90px, 11vw, 170px);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding-inline: clamp(22px, 4vw, 64px);
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: height 300ms ease, background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}

.site-header.scrolled,
.site-header.menu-visible {
  height: 70px;
  background: rgba(20, 17, 14, 0.88);
  border-color: var(--line-light);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-mark::before {
  position: absolute;
  inset: 6px;
  content: "";
  border: 1px solid rgba(216, 168, 95, 0.65);
  transform: rotate(45deg);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.18em;
}

.brand-copy small {
  color: rgba(248, 243, 233, 0.58);
  font-size: 8px;
  letter-spacing: 0.25em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer a {
  position: relative;
}

.desktop-nav a::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

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

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-toggle,
.menu-toggle {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.language-toggle {
  display: flex;
  gap: 5px;
  color: rgba(248, 243, 233, 0.46);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.language-toggle .active {
  color: var(--cream);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 20px;
}

.button-solid {
  color: var(--ink);
  background: var(--gold-light);
}

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

.button-outline {
  color: var(--cream);
  border-color: rgba(248, 243, 233, 0.52);
}

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

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  color: var(--cream);
  background: #13100e;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.manifesto-image {
  position: absolute;
  z-index: -3;
  inset: -12%;
  background: center / cover no-repeat;
  will-change: transform;
}

.hero-image {
  background-image: url("assets/images/barber4u-hero.webp");
  background-position: 60% center;
}

.hero-scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 8, 0.95) 0%, rgba(12, 10, 8, 0.69) 44%, rgba(12, 10, 8, 0.15) 74%, rgba(12, 10, 8, 0.4) 100%), linear-gradient(0deg, rgba(10, 8, 7, 0.65), transparent 45%);
}

.noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-height) + 65px) 90px;
}

.hero-copy {
  width: min(860px, 69vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 28px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

.eyebrow.dark {
  color: #806033;
}

h1,
h2,
blockquote {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 900px;
  font-size: clamp(58px, 7.4vw, 118px);
  line-height: 0.92;
}

h1 em,
h2 em,
blockquote em {
  color: var(--gold-light);
  font-weight: inherit;
}

.hero-lead {
  max-width: 570px;
  margin: 34px 0 0;
  color: rgba(248, 243, 233, 0.7);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 44px;
}

.button-arrow {
  min-width: 240px;
  justify-content: space-between;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  padding-block: 10px;
  color: rgba(248, 243, 233, 0.75);
  border-bottom: 1px solid rgba(248, 243, 233, 0.32);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 200ms ease, border-color 200ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cream);
  border-color: var(--gold-light);
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 10vh;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: 310px;
  padding: 21px 22px;
  background: rgba(19, 16, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.19);
  backdrop-filter: blur(12px);
  will-change: transform;
}

.hero-note-number {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 35px;
}

.hero-note div {
  display: grid;
  gap: 5px;
}

.hero-note small {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-note strong {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(248, 243, 233, 0.53);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(248, 243, 233, 0.24);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--gold-light);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.ticker {
  color: var(--ink);
  background: var(--gold);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding-block: 15px;
  animation: ticker 26s linear infinite;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.ticker-track i {
  font-size: 9px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.about {
  position: relative;
  background: var(--paper);
}

.section-index {
  position: absolute;
  top: 70px;
  right: max(32px, calc((100vw - 1380px) / 2));
  color: #8c8276;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(370px, 0.65fr);
  gap: clamp(70px, 12vw, 190px);
  align-items: center;
}

h2 {
  font-size: clamp(46px, 5.7vw, 85px);
  line-height: 1.02;
}

.about h2 em,
.experience h2 em {
  color: #9e7137;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}

.about-body p,
.section-heading > p,
.price-note {
  margin: 0;
  color: #655f57;
  font-size: 14px;
  line-height: 1.85;
}

.signature {
  display: inline-grid;
  margin-top: 45px;
}

.signature span {
  color: #8c6133;
  font-family: var(--display);
  font-size: 41px;
  font-style: italic;
  transform: rotate(-4deg);
}

.signature small {
  margin: -4px 0 0 18px;
  color: #867d70;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portrait-stack {
  position: relative;
  padding-right: 34px;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #b4aa9c;
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 80px rgba(20, 15, 10, 0.18);
}

.portrait-frame img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portrait-frame:hover img {
  transform: scale(1.035);
}

.experience-badge {
  position: absolute;
  z-index: 2;
  bottom: -44px;
  left: -56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 150px;
  aspect-ratio: 1;
  color: var(--cream);
  background: var(--ink-soft);
  border-radius: 50%;
  will-change: transform;
}

.experience-badge strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
}

.experience-badge span {
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vertical-caption {
  position: absolute;
  top: 0;
  right: 2px;
  margin: 0;
  color: #746b60;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.services {
  color: var(--cream);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.65fr minmax(260px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(55px, 7vw, 100px);
}

.section-heading > p {
  padding-bottom: 7px;
  color: rgba(248, 243, 233, 0.54);
}

.service-list {
  border-top: 1px solid var(--line-light);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: 55px minmax(240px, 0.7fr) 1fr 110px 40px;
  gap: 25px;
  align-items: center;
  min-height: 142px;
  padding: 25px 14px;
  border-bottom: 1px solid var(--line-light);
  transition: color 300ms ease, background 300ms ease, padding 300ms ease;
}

.service::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: #2b251f;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service:hover::before,
.service:focus-within::before {
  transform: scaleY(1);
}

.service > * {
  position: relative;
  z-index: 1;
}

.service-number {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.service-name {
  display: grid;
  gap: 7px;
}

.service-name h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.2vw, 35px);
  font-weight: 400;
}

.service-name span,
.compact-services small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.service-name mark {
  width: max-content;
  padding: 4px 7px;
  color: var(--ink);
  background: var(--gold-light);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.service > p {
  max-width: 520px;
  margin: 0;
  color: rgba(248, 243, 233, 0.46);
  font-size: 12px;
  line-height: 1.7;
}

.service > strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  white-space: nowrap;
}

.service > a {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  color: var(--gold-light);
  border: 1px solid rgba(237, 201, 137, 0.45);
  border-radius: 50%;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.service > a:hover,
.service > a:focus-visible {
  color: var(--ink);
  background: var(--gold-light);
  transform: rotate(45deg);
}

.more-services {
  border-bottom: 1px solid var(--line-light);
}

.more-services summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  color: rgba(248, 243, 233, 0.78);
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.more-services summary::-webkit-details-marker {
  display: none;
}

.more-services summary i {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 28px;
  font-style: normal;
  transition: transform 280ms ease;
}

.more-services[open] summary i {
  transform: rotate(45deg);
}

.compact-services {
  padding-bottom: 30px;
}

.compact-services div {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  gap: 20px;
  padding: 16px 0;
  color: rgba(248, 243, 233, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
}

.compact-services strong {
  color: var(--cream);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
}

.price-note {
  margin-top: 24px;
  color: rgba(248, 243, 233, 0.35);
  font-size: 10px;
}

.manifesto {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 88svh;
  align-items: center;
  color: var(--cream);
  background: #17130f;
  overflow: hidden;
  isolation: isolate;
}

.manifesto-image {
  background-image: url("assets/images/barber4u-interior.webp");
}

.manifesto-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 10, 8, 0.9), rgba(13, 10, 8, 0.26)), linear-gradient(0deg, rgba(13, 10, 8, 0.55), transparent 55%);
}

.manifesto-content {
  will-change: transform;
}

.manifesto blockquote {
  max-width: 1000px;
  margin-bottom: 48px;
  font-size: clamp(48px, 6.2vw, 95px);
  line-height: 1.04;
}

.experience {
  background: var(--paper);
}

.section-heading.light > p {
  color: #655f57;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-dark);
}

.step {
  position: relative;
  min-height: 320px;
  padding: 36px clamp(25px, 3.4vw, 52px);
  border-right: 1px solid var(--line-dark);
}

.step:last-child {
  border-right: 0;
}

.step > span {
  color: #8a7f72;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.step > i {
  position: absolute;
  top: 28px;
  right: 34px;
  color: #a6763e;
  font-family: var(--display);
  font-size: 28px;
  font-style: normal;
}

.step h3 {
  margin: 110px 0 18px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}

.step p {
  max-width: 280px;
  margin: 0;
  color: #6d665d;
  font-size: 12px;
  line-height: 1.75;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.72fr 0.72fr;
  grid-template-rows: 190px 330px;
  gap: 14px;
  margin-top: clamp(80px, 10vw, 145px);
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  background: #aaa095;
}

.gallery figure img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

.gallery figure:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.gallery-wide {
  grid-row: 1 / 3;
}

.gallery figure:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 3;
}

.gallery figure:nth-child(2) img {
  object-position: center;
}

.gallery figure:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

.gallery figure:nth-child(3) img {
  object-position: 65% center;
}

.gallery figcaption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 5px 16px 20px;
  border-bottom: 1px solid var(--line-dark);
}

.gallery figcaption span {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
}

.gallery figcaption small {
  color: #847b6e;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.contact {
  position: relative;
  color: var(--cream);
  background: var(--ink-soft);
  overflow: hidden;
}

.contact::before {
  position: absolute;
  top: -35%;
  left: 50%;
  width: 720px;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(194, 139, 71, 0.13), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.55fr 0.62fr;
  gap: clamp(70px, 10vw, 170px);
}

.contact h2 {
  max-width: 980px;
  margin-bottom: 50px;
}

.contact-details {
  align-self: end;
  display: grid;
  gap: 36px;
  padding-left: 40px;
  border-left: 1px solid var(--line-light);
}

.contact-details > div {
  display: grid;
  gap: 8px;
}

.contact-details small {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-details a {
  width: max-content;
  max-width: 100%;
  color: rgba(248, 243, 233, 0.7);
  font-size: 13px;
  line-height: 1.6;
  transition: color 180ms ease;
}

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

.contact-wordmark {
  position: relative;
  z-index: 1;
  margin: clamp(70px, 9vw, 135px) -1vw -0.18em;
  color: transparent;
  font-family: var(--sans);
  font-size: clamp(80px, 18.5vw, 355px);
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: -0.075em;
  -webkit-text-stroke: 1px rgba(248, 243, 233, 0.13);
  white-space: nowrap;
}

.site-footer {
  color: rgba(248, 243, 233, 0.44);
  background: #0f0d0b;
}

.site-footer .page-shell {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 26px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.floating-book {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-width: 165px;
  min-height: 52px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateY(90px);
  transition: transform 350ms ease;
}

.floating-book.visible {
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  :root { --header-height: 72px; }
  .page-shell { width: min(100% - 44px, 940px); }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle {
    display: grid;
    width: 27px;
    gap: 7px;
  }
  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 260ms ease;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--cream);
    background: rgba(18, 15, 12, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 280ms ease, visibility 280ms ease;
  }
  .menu-visible .mobile-menu { opacity: 1; visibility: visible; }
  .mobile-menu nav { display: grid; gap: 22px; width: min(80vw, 440px); text-align: center; }
  .mobile-menu nav > a:not(.button) { font-family: var(--display); font-size: 40px; }
  .mobile-menu .button { margin-top: 18px; }
  .hero-copy { width: min(780px, 79vw); }
  .hero-note { display: none; }
  .about-grid { gap: 70px; }
  .service { grid-template-columns: 40px minmax(210px, 0.8fr) 1fr 90px 38px; gap: 18px; }
  .gallery { grid-template-rows: 150px 270px; }
}

@media (max-width: 760px) {
  .page-shell { width: min(100% - 36px, 620px); }
  .section { padding-block: 88px; }
  .site-header { padding-inline: 18px; }
  .brand-copy small { display: none; }
  .brand-mark { width: 35px; }
  .desktop-book { display: none; }
  .header-actions { gap: 18px; }
  .hero { min-height: 780px; }
  .hero-image { inset: -7%; background-position: 66% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(10, 8, 7, 0.92) 0%, rgba(10, 8, 7, 0.55) 80%), linear-gradient(0deg, rgba(10, 8, 7, 0.88) 0%, transparent 55%); }
  .hero-content { align-items: end; padding-bottom: 105px; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(53px, 15vw, 75px); }
  .hero-lead { max-width: 460px; margin-top: 24px; font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 30px; }
  .hero-actions .button { width: min(100%, 330px); }
  .hero-actions .text-link { width: max-content; }
  .scroll-cue { display: none; }
  .ticker-track { gap: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-body { grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
  .portrait-stack { width: min(90%, 480px); margin-left: auto; }
  .experience-badge { left: -30px; width: 120px; }
  .experience-badge strong { font-size: 38px; }
  .section-index { top: 35px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 55px; }
  .section-heading > p { max-width: 470px; }
  .service { grid-template-columns: 35px 1fr auto; gap: 12px 16px; min-height: auto; padding-block: 25px; }
  .service-number { grid-row: 1 / 3; align-self: start; padding-top: 8px; }
  .service-name { grid-column: 2; }
  .service > p { grid-column: 2 / 4; }
  .service > strong { grid-column: 3; grid-row: 1; align-self: start; padding-top: 3px; font-size: 19px; }
  .service > a { display: none; }
  .compact-services div { grid-template-columns: 1fr auto; }
  .compact-services small { grid-column: 1; }
  .compact-services strong { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  .manifesto { min-height: 720px; }
  .manifesto-image { inset: -7%; }
  .manifesto blockquote { font-size: clamp(43px, 12vw, 67px); }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .step:last-child { border-bottom: 0; }
  .step h3 { margin-top: 68px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 230px 150px; }
  .gallery-wide { grid-column: 1 / 3; grid-row: 1; }
  .gallery figure:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery figure:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery figcaption { grid-column: 1 / 3; grid-row: 3; }
  .contact-grid { grid-template-columns: 1fr; gap: 70px; }
  .contact-details { padding-left: 0; border-left: 0; }
  .contact-wordmark { margin-top: 85px; }
  .site-footer .page-shell { flex-wrap: wrap; }
  .site-footer p:nth-child(2) { display: none; }
  .floating-book { display: flex; }
}

@media (max-width: 420px) {
  .page-shell { width: calc(100% - 28px); }
  .language-toggle { font-size: 9px; }
  .hero { min-height: 720px; }
  .hero-content { padding-bottom: 80px; }
  .hero-actions .button { width: 100%; }
  .about h2, .services h2, .experience h2, .contact h2 { font-size: 43px; }
  .portrait-stack { padding-right: 20px; }
  .service { grid-template-columns: 27px 1fr auto; }
  .service-name h3 { font-size: 23px; }
  .service > strong { font-size: 17px; }
  .gallery { grid-template-rows: 270px 190px 140px; }
  .floating-book { right: 12px; bottom: 12px; left: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .parallax-layer { transform: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
