:root {
  color-scheme: dark;
  --ink: #071015;
  --ink-soft: #0d181e;
  --ink-lift: #132129;
  --ivory: #f4efe7;
  --paper: #fbf8f2;
  --gold: #cda15d;
  --gold-light: #ead0a0;
  --muted: #aeb8b9;
  --line-dark: rgba(244, 239, 231, 0.16);
  --line-light: rgba(7, 16, 21, 0.16);
  --display: "Bodoni 72", Didot, "Bodoni MT", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 5rem);
  --section-pad: clamp(5.5rem, 11vw, 10rem);
  --header-height: 5.5rem;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

button,
summary,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

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

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

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

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

.loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.1rem;
  background: var(--ink);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.loader span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 1;
}

.loader small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.36em;
}

.loader.loaded {
  visibility: hidden;
  opacity: 0;
}

.story-line {
  position: fixed;
  z-index: 80;
  top: 50%;
  left: 1rem;
  width: 1px;
  height: 26vh;
  transform: translateY(-50%);
  background: rgba(205, 161, 93, 0.18);
}

.story-line i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  background: var(--gold);
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) auto minmax(11rem, 1fr);
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 0.85rem var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: min-height 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled,
.inner-page .site-header {
  min-height: 4.6rem;
  border-color: var(--line-dark);
  background: rgba(7, 16, 21, 0.96);
}

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

.brand-mark {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.5rem;
}

.brand > span:last-child {
  display: grid;
  gap: 0.25rem;
}

.brand strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.brand small {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.6vw, 2.6rem);
}

.site-header nav a,
.site-footer nav a {
  position: relative;
  color: #d9dddd;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 0.3s ease;
}

.site-header nav a:hover::after,
.site-header nav a[aria-current="page"]::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  justify-self: end;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-cta span,
.text-link span,
.button span,
.editorial-link span {
  transition: transform 0.25s ease;
}

.header-cta:hover span,
.text-link:hover span,
.button:hover span,
.editorial-link:hover span {
  transform: translateX(0.3rem);
}

.menu-toggle {
  display: none;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle i {
  display: block;
  width: 1.4rem;
  height: 1px;
  margin: 0.3rem auto;
  background: var(--ivory);
  transition: transform 0.3s ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1.08fr);
  min-height: 100svh;
  padding: calc(var(--header-height) + 5.5rem) var(--page-pad) 5rem;
  background: var(--ink);
}

.hero-copy {
  z-index: 2;
  align-self: center;
  max-width: 51rem;
  padding-right: clamp(1rem, 4vw, 5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold);
  content: "";
}

.hero h1 {
  max-width: 15ch;
  margin-top: 1.5rem;
  font-size: clamp(3.5rem, 6.7vw, 8rem);
}

.hero h1 em {
  display: block;
  margin-top: 0.2em;
  font-size: 0.58em;
  line-height: 1.05;
}

.hero-lead {
  max-width: 42rem;
  margin-top: 2rem;
  color: #d2d8d7;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

.button-gold:hover {
  background: var(--gold-light);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.button-dark:hover {
  background: var(--ink-lift);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0 0.4rem;
  border-bottom: 1px solid currentColor;
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-link.gold {
  color: var(--gold-light);
}

.hero-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  min-height: 41rem;
}

.hero-main-image {
  position: absolute;
  inset: -1rem 0 0 12%;
  overflow: hidden;
  background: var(--ink-soft);
}

.hero-main-image::after,
.inner-hero-media::after {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 16, 0.13);
  content: "";
  pointer-events: none;
}

.hero-main-image img,
.hero-detail-image img,
.inner-hero-media img,
.moment-story figure img,
.signature-photo img,
.about-portrait img,
.portfolio-piece img,
.testimonial-photo img,
.service-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-image img {
  object-position: center 24%;
}

.hero-detail-image {
  position: absolute;
  z-index: 2;
  bottom: -1rem;
  left: -2rem;
  width: 31%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 0.5rem solid var(--ink);
}

.hero-detail-image img {
  object-position: center 30%;
}

.hero-signature {
  position: absolute;
  z-index: 3;
  right: -0.15em;
  bottom: -0.14em;
  color: rgba(234, 208, 160, 0.55);
  font-family: cursive;
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 1;
  transform: rotate(-8deg);
}

.hero-social {
  position: absolute;
  z-index: 4;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 1rem;
  background: rgba(7, 16, 21, 0.86);
}

.hero-social small {
  color: var(--muted);
  font-size: 0.64rem;
}

.hero-social strong {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.image-reveal {
  position: relative;
}

.image-reveal::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  transform: scaleX(1);
  transform-origin: right;
  background: var(--ink-soft);
  content: "";
  pointer-events: none;
  transition: transform 1.15s cubic-bezier(0.77, 0, 0.18, 1) 0.12s;
}

.image-reveal.visible::before,
.reveal.visible .image-reveal::before {
  transform: scaleX(0);
}

.truth-statement {
  display: grid;
  grid-template-columns: 0.22fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: var(--section-pad) var(--page-pad);
  background: var(--paper);
  color: var(--ink);
}

.truth-statement > span {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-light);
  color: #7e6847;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.truth-statement blockquote {
  max-width: 21ch;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 6.1rem);
  line-height: 1.02;
}

.truth-statement em {
  color: #80623b;
}

.section-dark,
.section-ivory {
  padding: var(--section-pad) var(--page-pad);
}

.section-dark {
  background: var(--ink);
  color: var(--ivory);
}

.section-ivory {
  background: var(--ivory);
  color: var(--ink);
}

.manifesto {
  display: grid;
  grid-template-columns: 0.22fr 0.82fr 0.72fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.manifesto-index {
  display: flex;
  min-height: 24rem;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.manifesto-index b {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 400;
}

.manifesto h2,
.section-intro h2,
.portfolio-heading h2,
.about-narrative h2,
.testimonial-heading h2,
.finder-intro h2,
.concierge-intro h2,
.faq-heading h2,
.closing h2,
.signature-copy h2 {
  margin-top: 1.1rem;
  font-size: clamp(3.2rem, 6.2vw, 7.2rem);
}

.manifesto-text {
  padding-top: 5rem;
  color: #c7cdcc;
}

.manifesto-text p + p {
  margin-top: 1.25rem;
}

.manifesto-text .lead {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  line-height: 1.2;
}

.manifesto-text .text-link {
  margin-top: 1.5rem;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(15rem, 0.42fr);
  gap: 2rem clamp(3rem, 10vw, 11rem);
  align-items: end;
  max-width: 95rem;
  margin: 0 auto clamp(5rem, 8vw, 8rem);
}

.section-intro .eyebrow,
.portfolio-heading .eyebrow,
.testimonial-heading .eyebrow,
.concierge-intro .eyebrow {
  color: #80623b;
}

.section-intro h2 {
  grid-row: 2;
}

.section-intro > p:last-child {
  grid-column: 2;
  grid-row: 2;
  padding-bottom: 0.6rem;
  color: #485155;
}

.moment-list {
  max-width: 95rem;
  margin: 0 auto;
}

.moment-story {
  display: grid;
  grid-template-columns: minmax(18rem, 0.76fr) minmax(20rem, 0.82fr);
  gap: clamp(2.5rem, 8vw, 10rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  border-top: 1px solid var(--line-light);
}

.moment-story figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.moment-story figure img {
  transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.moment-story:hover figure img {
  transform: scale(1.025);
}

.moment-story > div > span {
  color: #80623b;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.moment-story h3 {
  margin-top: 1.3rem;
  font-size: clamp(2.5rem, 4.4vw, 5.1rem);
}

.moment-story p {
  max-width: 35rem;
  margin-top: 1.5rem;
  color: #4f585b;
}

.moment-story a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #80623b;
  color: #554125;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moment-story a b {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.moment-story a:hover b {
  transform: translateX(0.3rem);
}

.moment-reverse figure {
  grid-column: 2;
  grid-row: 1;
}

.moment-reverse > div {
  grid-column: 1;
  grid-row: 1;
  padding-left: clamp(0rem, 5vw, 5rem);
}

.signature {
  display: grid;
  grid-template-columns: minmax(22rem, 0.92fr) minmax(25rem, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding-top: 0;
}

.signature-photo {
  position: relative;
  min-height: 48rem;
  overflow: hidden;
}

.signature-photo img {
  object-position: 52% center;
}

.signature-photo > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  writing-mode: vertical-rl;
  color: var(--gold-light);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
}

.signature-copy {
  max-width: 48rem;
}

.signature-copy h2 {
  font-size: clamp(3rem, 5vw, 6rem);
}

.signature-copy > p:not(.eyebrow, .signature-note) {
  max-width: 39rem;
  margin-top: 1.8rem;
  color: #c8cecd;
}

.signature-steps {
  margin: 2.3rem 0 0;
  padding: 0;
  list-style: none;
}

.signature-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line-dark);
}

.signature-steps li > span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.3rem;
}

.signature-steps strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
}

.signature-steps p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.signature-note {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
}

.portfolio-editorial {
  overflow: hidden;
}

.portfolio-heading,
.testimonial-heading {
  display: grid;
  grid-template-columns: minmax(20rem, 0.88fr) minmax(16rem, 0.4fr);
  gap: 3rem clamp(4rem, 10vw, 12rem);
  align-items: end;
  max-width: 95rem;
  margin: 0 auto;
}

.portfolio-heading > p,
.testimonial-heading > p {
  padding-bottom: 0.6rem;
  color: #4f585b;
}

.portfolio-filters {
  display: flex;
  max-width: 95rem;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 3.5rem auto 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
}

.portfolio-filters button {
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #606769;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-filters button.active,
.portfolio-filters button:hover {
  border-color: #80623b;
  color: #604923;
}

.editorial-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 8rem;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.7rem, 1.25vw, 1.2rem);
  max-width: 95rem;
  margin: 0 auto;
}

.portfolio-piece {
  position: relative;
  grid-column: span 4;
  grid-row: span 4;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #ddd4c8;
  color: var(--ivory);
  text-align: left;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-piece.piece-tall {
  grid-row: span 5;
}

.portfolio-piece.piece-wide {
  grid-column: span 8;
}

.portfolio-piece.hidden-by-filter {
  display: none;
}

.portfolio-piece::after {
  position: absolute;
  inset: 70% 0 0;
  background: rgba(4, 9, 12, 0.76);
  content: "";
}

.portfolio-piece img {
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.portfolio-piece:hover img,
.portfolio-piece:focus-visible img {
  transform: scale(1.035);
}

.portfolio-piece > span {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1.05;
}

.portfolio-piece small {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-link {
  display: flex;
  max-width: 95rem;
  align-items: center;
  justify-content: space-between;
  margin: 2rem auto 0;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: #5f4829;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2.1rem);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(20rem, 0.88fr) minmax(26rem, 1fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
}

.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-portrait img {
  object-position: 50% center;
}

.about-portrait > span {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--gold);
  background: rgba(7, 16, 21, 0.8);
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-narrative .lead {
  margin-top: 2rem;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.28;
}

.about-narrative > p:not(.eyebrow, .lead) {
  max-width: 43rem;
  margin-top: 1.2rem;
  color: #c5cdcc;
}

.authority-list {
  margin: 2.3rem 0 1rem;
  border-top: 1px solid var(--line-dark);
}

.authority-list > div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.authority-list dt {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.25rem;
}

.authority-list dd {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonials {
  overflow: hidden;
}

.testimonial-stage {
  position: relative;
  max-width: 95rem;
  min-height: 37rem;
  margin: clamp(3.5rem, 7vw, 6rem) auto 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.testimonial {
  display: grid;
  grid-template-columns: minmax(17rem, 0.42fr) minmax(24rem, 0.85fr);
  gap: clamp(3rem, 9vw, 10rem);
  min-height: 37rem;
  align-items: center;
  padding: 2.2rem 0;
}

.testimonial[hidden] {
  display: none;
}

.testimonial-photo {
  position: relative;
  display: block;
  height: 31rem;
  overflow: hidden;
  background: #dcd3c7;
}

.testimonial-photo.failed::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--ink-soft);
  color: var(--gold-light);
  content: attr(data-fallback);
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.testimonial > div > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 6rem;
  line-height: 0.5;
}

.testimonial blockquote {
  max-width: 29ch;
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.1vw, 3.4rem);
  line-height: 1.18;
}

.testimonial blockquote + p {
  display: grid;
  gap: 0.2rem;
  margin-top: 2rem;
}

.testimonial blockquote + p strong {
  color: #604923;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial blockquote + p small {
  color: #656d6e;
  font-size: 0.76rem;
}

.testimonial-controls {
  display: flex;
  max-width: 95rem;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin: 1.4rem auto 0;
}

.testimonial-controls button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  transition: color 0.25s ease, background-color 0.25s ease;
}

.testimonial-controls button:hover {
  background: var(--ink);
  color: var(--ivory);
}

.testimonial-controls span {
  color: #6b6e6d;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.style-finder {
  display: grid;
  grid-template-columns: minmax(20rem, 0.58fr) minmax(30rem, 0.88fr);
  gap: clamp(4rem, 9vw, 11rem);
  align-items: start;
}

.finder-intro {
  position: sticky;
  top: 8rem;
}

.finder-intro > p:last-child {
  max-width: 35rem;
  margin-top: 1.8rem;
  color: var(--muted);
}

.quiz fieldset {
  margin: 0;
  padding: 1.7rem 0 2rem;
  border: 0;
  border-top: 1px solid var(--line-dark);
}

.quiz legend {
  display: flex;
  width: 100%;
  align-items: baseline;
  gap: 1rem;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.1vw, 2rem);
}

.quiz legend span {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.choice-row label {
  position: relative;
}

.choice-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.choice-row label span {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line-dark);
  color: #c8cecd;
  font-size: 0.83rem;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.choice-row label:hover span,
.choice-row input:focus-visible + span {
  border-color: var(--gold);
}

.choice-row input:checked + span {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.quiz-actions p {
  color: #f0b8aa;
  font-size: 0.82rem;
}

.quiz-result {
  align-self: center;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--gold);
  background: var(--ink-soft);
}

.quiz-result[hidden] {
  display: none;
}

.quiz-result h3 {
  margin-top: 1rem;
  color: var(--gold-light);
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.quiz-result > p:not(.eyebrow) {
  max-width: 35rem;
  margin: 1.4rem 0 2rem;
  color: #c8cecd;
}

#quiz-reset {
  display: block;
  min-height: 2.75rem;
  margin-top: 1.2rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--muted);
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.concierge {
  display: grid;
  grid-template-columns: minmax(20rem, 0.65fr) minmax(25rem, 0.8fr);
  gap: clamp(4rem, 10vw, 12rem);
  align-items: start;
}

.concierge-intro > p:not(.eyebrow) {
  max-width: 35rem;
  margin-top: 1.8rem;
  color: #4f585b;
}

.concierge-intro dl {
  margin-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.concierge-intro dl > div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-light);
}

.concierge-intro dt {
  color: #80623b;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.concierge-intro dd {
  color: #4f585b;
  font-size: 0.88rem;
}

.concierge-form {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid var(--line-light);
  background: var(--paper);
}

.concierge-form label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.concierge-form label > span {
  color: #604923;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concierge-form input,
.concierge-form select,
.concierge-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid #a9a295;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
}

.concierge-form textarea {
  min-height: 6rem;
  resize: vertical;
}

.concierge-form input::placeholder,
.concierge-form textarea::placeholder {
  color: #7c8384;
}

.concierge-form input:focus,
.concierge-form select:focus,
.concierge-form textarea:focus {
  border-color: #80623b;
  outline: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.concierge-form .button {
  width: 100%;
  margin-top: 0.5rem;
}

.form-note {
  margin-top: 0.8rem;
  color: #6c7474;
  font-size: 0.72rem;
  line-height: 1.5;
}

.faq {
  display: grid;
  grid-template-columns: minmax(20rem, 0.58fr) minmax(27rem, 0.9fr);
  gap: clamp(4rem, 9vw, 11rem);
}

.faq-heading {
  position: sticky;
  top: 8rem;
  align-self: start;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  list-style: none;
}

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

.faq-list summary span {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 45rem;
  padding: 0 3rem 1.8rem 0;
  color: var(--muted);
}

.closing {
  display: grid;
  place-items: center;
  padding-top: clamp(4rem, 8vw, 8rem);
  text-align: center;
}

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  max-width: 14ch;
}

.closing .button {
  margin-top: 2.3rem;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 95rem;
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.social-links a {
  display: grid;
  gap: 0.35rem;
  padding: 1.4rem;
  border-right: 1px solid var(--line-dark);
  text-align: left;
  transition: background-color 0.25s ease;
}

.social-links a:last-child {
  border-right: 0;
}

.social-links a:hover {
  background: var(--ink-soft);
}

.social-links small {
  color: var(--muted);
  font-size: 0.68rem;
}

.social-links strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem var(--page-pad);
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.site-footer > p {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 1.2rem;
  text-align: center;
}

.site-footer > p small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.68rem;
}

.site-footer nav {
  display: flex;
  gap: 1.4rem;
  justify-self: end;
}

.lightbox {
  width: min(92vw, 78rem);
  height: min(90svh, 60rem);
  padding: 1rem;
  border: 1px solid rgba(234, 208, 160, 0.32);
  background: var(--ink);
  color: var(--ivory);
}

.lightbox::backdrop {
  background: rgba(1, 4, 6, 0.88);
}

.lightbox figure {
  display: grid;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.7rem;
}

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

.lightbox figcaption {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.2rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  font-size: 1.6rem;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

/* Internal pages */
.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(26rem, 0.72fr);
  min-height: 88svh;
  padding: calc(var(--header-height) + 4rem) var(--page-pad) 4rem;
}

.inner-hero-copy {
  align-self: center;
  max-width: 58rem;
  padding: 3rem clamp(2rem, 6vw, 7rem) 2rem 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--gold-light);
}

.inner-hero h1 {
  max-width: 13ch;
  margin-top: 1.3rem;
  font-size: clamp(3.5rem, 7vw, 8.5rem);
}

.inner-hero-copy > p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 1.8rem;
  color: #c6cecd;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.inner-hero-copy .hero-actions {
  margin-top: 2rem;
}

.inner-hero-media {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
}

.inner-intro,
.service-editorial,
.contact-editorial {
  display: grid;
  grid-template-columns: minmax(17rem, 0.45fr) minmax(25rem, 0.8fr);
  gap: clamp(3rem, 10vw, 12rem);
  align-items: start;
}

.inner-intro h2,
.service-editorial h2,
.contact-editorial h2,
.portfolio-page-heading h2 {
  margin-top: 1.1rem;
  font-size: clamp(3rem, 5.8vw, 6.8rem);
}

.inner-intro-copy > p,
.service-copy > p,
.contact-copy > p {
  max-width: 44rem;
  color: inherit;
}

.inner-intro-copy > p + p,
.service-copy > p + p,
.contact-copy > p + p {
  margin-top: 1.2rem;
}

.inner-intro-copy .lead,
.service-copy .lead,
.contact-copy .lead {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  line-height: 1.25;
}

.service-aside {
  margin-top: 2rem;
  border-top: 1px solid currentColor;
  border-color: var(--line-dark);
}

.section-ivory .service-aside {
  border-color: var(--line-light);
}

.service-aside div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.section-ivory .service-aside div {
  border-color: var(--line-light);
}

.service-aside dt {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-ivory .service-aside dt {
  color: #80623b;
}

.service-aside dd {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-ivory .service-aside dd {
  color: #4f585b;
}

.fact-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.fact-band > div {
  min-height: 12rem;
  padding: 2rem var(--page-pad);
  border-right: 1px solid var(--line-dark);
}

.fact-band > div:last-child {
  border-right: 0;
}

.fact-band span {
  color: var(--gold-light);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fact-band h3 {
  margin-top: 1rem;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
}

.fact-band p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-auto-rows: minmax(18rem, 36vw);
  gap: 1rem;
}

.service-gallery figure {
  overflow: hidden;
}

.service-gallery figure:nth-child(3) {
  grid-column: 1 / -1;
  max-height: 42rem;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 95rem;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}

.related-links a {
  display: flex;
  min-height: 10rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-right: 1px solid var(--line-light);
  transition: background-color 0.25s ease;
}

.related-links a:last-child {
  border-right: 0;
}

.related-links a:hover {
  background: var(--paper);
}

.related-links small {
  color: #80623b;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-links strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.inner-cta {
  display: grid;
  place-items: center;
  text-align: center;
}

.inner-cta h2 {
  max-width: 14ch;
  margin-top: 1rem;
  font-size: clamp(3rem, 6vw, 7rem);
}

.inner-cta > p:not(.eyebrow) {
  max-width: 38rem;
  margin-top: 1.5rem;
  color: var(--muted);
}

.inner-cta .button {
  margin-top: 2rem;
}

.portfolio-page-heading {
  max-width: 95rem;
  margin: 0 auto 3rem;
}

.portfolio-page-heading > p:last-child {
  max-width: 45rem;
  margin-top: 1.5rem;
  color: #4f585b;
}

.contact-editorial .concierge-form {
  grid-column: 2;
}

.contact-copy {
  position: sticky;
  top: 8rem;
  grid-column: 1;
  grid-row: 1;
}

.contact-socials {
  margin-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.contact-socials a {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  color: #604923;
  font-family: var(--display);
  font-size: 1.25rem;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    margin-right: 1rem;
  }

  .site-header nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 1.4rem;
    justify-content: center;
    opacity: 0;
    background: var(--ink);
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .site-header nav a {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-header.menu-open nav {
    visibility: visible;
    opacity: 1;
  }

  .site-header.menu-open .menu-toggle i:first-child {
    transform: translateY(0.2rem) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle i:last-child {
    transform: translateY(-0.2rem) rotate(-45deg);
  }

  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(23rem, 0.84fr);
  }

  .hero-detail-image {
    left: -1rem;
    width: 36%;
  }

  .manifesto {
    grid-template-columns: 0.2fr 1fr;
  }

  .manifesto-text {
    grid-column: 2;
    padding-top: 0;
  }

  .signature-photo {
    min-height: 38rem;
  }

  .editorial-grid {
    grid-auto-rows: 7rem;
  }

  .portfolio-piece {
    grid-column: span 6;
  }

  .portfolio-piece.piece-wide {
    grid-column: span 12;
  }

  .style-finder,
  .faq {
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 4.7rem;
    --section-pad: clamp(4.5rem, 16vw, 7rem);
  }

  .story-line {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .hero,
  .inner-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero {
    padding-top: calc(var(--header-height) + 3.5rem);
  }

  .hero-copy,
  .inner-hero-copy {
    padding: 0 0 3.5rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.15rem, 13vw, 6rem);
  }

  .hero-visual {
    min-height: 36rem;
  }

  .hero-main-image {
    inset: 0 0 0 8%;
  }

  .hero-detail-image {
    bottom: -1.5rem;
    left: 0;
    width: 31%;
  }

  .truth-statement,
  .manifesto,
  .section-intro,
  .portfolio-heading,
  .about-story,
  .testimonial-heading,
  .style-finder,
  .concierge,
  .faq,
  .inner-intro,
  .service-editorial,
  .contact-editorial {
    grid-template-columns: 1fr;
  }

  .truth-statement {
    gap: 2.5rem;
  }

  .manifesto-index {
    min-height: auto;
    flex-direction: row;
  }

  .manifesto-text,
  .section-intro h2,
  .section-intro > p:last-child,
  .contact-editorial .concierge-form,
  .contact-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .manifesto-text {
    padding-top: 1rem;
  }

  .section-intro {
    gap: 0;
    align-items: start;
  }

  .section-intro > p:last-child,
  .portfolio-heading > p,
  .testimonial-heading > p {
    margin-top: 1.4rem;
  }

  .moment-story,
  .moment-story.moment-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .moment-reverse figure,
  .moment-reverse > div {
    grid-column: auto;
    grid-row: auto;
  }

  .moment-reverse > div {
    padding-left: 0;
  }

  .signature {
    grid-template-columns: 1fr;
    padding-top: var(--section-pad);
  }

  .signature-photo {
    min-height: 32rem;
  }

  .about-portrait {
    max-height: 44rem;
  }

  .testimonial {
    grid-template-columns: minmax(12rem, 0.7fr) 1fr;
    gap: 2rem;
  }

  .testimonial-photo {
    height: 25rem;
  }

  .finder-intro,
  .faq-heading,
  .contact-copy {
    position: static;
  }

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

  .site-footer > p {
    display: none;
  }

  .fact-band,
  .related-links {
    grid-template-columns: 1fr;
  }

  .fact-band > div,
  .related-links a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .related-links a {
    min-height: 7rem;
    border-color: var(--line-light);
  }

  .inner-hero {
    padding-top: calc(var(--header-height) + 3.5rem);
  }

  .inner-hero-media {
    min-height: 34rem;
  }
}

@media (max-width: 580px) {
  body {
    padding-bottom: 4.2rem;
  }

  .site-header {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand-mark {
    width: 2.3rem;
    height: 2.3rem;
  }

  .brand small {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: space-between;
  }

  .hero-visual {
    min-height: 30rem;
  }

  .hero-main-image {
    left: 4%;
  }

  .hero-detail-image {
    display: none;
  }

  .hero-social {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .truth-statement blockquote {
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .manifesto h2,
  .section-intro h2,
  .portfolio-heading h2,
  .about-narrative h2,
  .testimonial-heading h2,
  .finder-intro h2,
  .concierge-intro h2,
  .faq-heading h2,
  .closing h2,
  .signature-copy h2,
  .inner-intro h2,
  .service-editorial h2,
  .contact-editorial h2,
  .portfolio-page-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .moment-story {
    padding: 2.5rem 0;
  }

  .moment-story h3 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .signature-photo {
    min-height: 27rem;
  }

  .portfolio-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scrollbar-width: none;
  }

  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  .portfolio-filters button {
    flex: 0 0 auto;
  }

  .editorial-grid {
    display: grid;
    grid-auto-rows: 25rem;
    grid-template-columns: 1fr;
  }

  .portfolio-piece,
  .portfolio-piece.piece-tall,
  .portfolio-piece.piece-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-piece:nth-child(3n + 1) {
    min-height: 31rem;
  }

  .authority-list > div,
  .concierge-intro dl > div,
  .service-aside div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .testimonial-stage {
    min-height: auto;
  }

  .testimonial {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .testimonial-photo {
    height: 22rem;
  }

  .testimonial blockquote {
    font-size: clamp(1.65rem, 7vw, 2.3rem);
  }

  .testimonial-controls {
    justify-content: space-between;
  }

  .choice-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .choice-row label span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-links a,
  .social-links a:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .site-footer {
    display: block;
    padding: 2rem 1.2rem;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .mobile-cta {
    position: fixed;
    z-index: 85;
    right: 0.8rem;
    bottom: 0.75rem;
    left: 0.8rem;
    display: flex;
    min-height: 3.2rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(234, 208, 160, 0.58);
    background: rgba(7, 16, 21, 0.96);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .inner-hero h1 {
    font-size: clamp(3.1rem, 14vw, 5.4rem);
  }

  .inner-hero-media {
    min-height: 28rem;
  }

  .service-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 25rem;
  }

  .service-gallery figure:nth-child(3) {
    grid-column: auto;
  }
}

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

  .image-reveal::before {
    display: none;
  }
}
