:root {
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --ink: #22231f;
  --ink-soft: #55574f;
  --ivory: #f3efe7;
  --paper: #faf8f3;
  --white: #fffdf8;
  --moss: #3e4c3f;
  --moss-deep: #2e3930;
  --clay: #9a4e3d;
  --clay-soft: #c57f68;
  --sand: #d8cbbc;
  --line: rgba(34, 35, 31, 0.18);
  --line-light: rgba(255, 253, 248, 0.2);
  --shell: min(92vw, 1440px);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(6.5rem, 11vw, 11rem);
  --radius-sm: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.65, 0, 0.35, 1);
  --header-height: 6rem;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 5px;
}

.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: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  background: var(--ink);
  color: var(--white);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.section-kicker span {
  color: var(--clay);
}

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

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

h2 {
  margin-bottom: 2.25rem;
  font-size: clamp(3.1rem, 6.6vw, 7rem);
  letter-spacing: -0.045em;
}

h2 em {
  color: var(--clay);
  font-weight: 400;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 3.6rem;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 0.35rem 0.45rem 0.35rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 350ms var(--ease), color 350ms var(--ease), border-color 350ms var(--ease);
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  transform: translateX(-102%);
  transition: transform 500ms var(--ease);
}

.button > span:last-child {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 50%;
  font-size: 1rem;
  transition: transform 400ms var(--ease), background 400ms var(--ease);
}

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

.button:hover::before {
  transform: translateX(0);
}

.button:hover > span:last-child {
  transform: rotate(45deg);
}

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

.button-primary::before {
  background: var(--clay);
}

.button-primary > span:last-child {
  background: rgba(255, 255, 255, 0.12);
}

.button-light {
  background: var(--paper);
  color: var(--moss-deep);
}

.button-light::before {
  background: var(--sand);
}

.button-light > span:last-child {
  background: var(--moss);
  color: var(--white);
}

.button-small {
  min-height: 2.8rem;
  gap: 1rem;
  padding-left: 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.62rem;
}

.button-small::before {
  background: var(--clay);
}

.button-small > span:last-child {
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.12);
}

.text-link {
  position: relative;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 450ms var(--ease);
}

.text-link span {
  transition: transform 400ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

.media-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 52%),
    var(--moss);
}

.media-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 400ms ease, transform 1.2s var(--ease);
}

.media-frame.has-image img {
  opacity: 1;
}

.media-frame:hover img {
  transform: scale(1.025);
}

.media-placeholder {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-frame.has-image .media-placeholder {
  display: none;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--ink);
  transition: background 400ms var(--ease), border-color 400ms var(--ease), backdrop-filter 400ms var(--ease);
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(34, 35, 31, 0.1);
  background: rgba(243, 239, 231, 0.86);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  transition: min-height 400ms var(--ease);
}

.is-scrolled .header-inner {
  min-height: 4.7rem;
}

.brand {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  justify-self: start;
}

.brand-mark {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
}

.brand-copy {
  display: flex;
  line-height: 1.15;
  flex-direction: column;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.brand-copy small {
  margin-top: 0.18rem;
  color: var(--ink-soft);
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  align-items: center;
}

.desktop-nav a {
  position: relative;
  padding-block: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--ink);
}

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

.header-cta {
  justify-self: end;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ivory);
}

.hero-wash {
  position: absolute;
  top: 0;
  right: -10%;
  width: 58%;
  height: 100%;
  background: #e6dfd3;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 5vh);
  padding-bottom: 3.5vh;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  column-gap: 1.2rem;
  align-items: center;
}

.hero-copy {
  z-index: 2;
  grid-column: 1 / 10;
  grid-row: 1;
  align-self: center;
}

.hero-eyebrow {
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  color: var(--ink-soft);
  opacity: 0;
  animation: hero-rise 800ms 150ms var(--ease) forwards;
}

.hero-eyebrow span {
  margin-inline: 0.45rem;
  color: var(--clay);
}

.hero-title {
  margin: 0;
  font-size: clamp(4rem, 7.45vw, 8rem);
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line > span {
  display: block;
  transform: translateY(110%);
  animation: hero-line 950ms 220ms var(--ease) forwards;
}

.title-line:nth-child(2) > span {
  animation-delay: 320ms;
}

.title-line:nth-child(3) > span {
  animation-delay: 420ms;
}

.title-line-indent {
  padding-left: 7.5vw;
}

.title-line-last {
  color: var(--clay);
  font-style: italic;
}

.hero-support {
  display: grid;
  width: min(45rem, 74%);
  margin-top: clamp(2rem, 4vw, 4rem);
  margin-left: 7.5vw;
  grid-template-columns: minmax(15rem, 1fr) auto;
  gap: 3rem;
  align-items: end;
  opacity: 0;
  animation: hero-rise 900ms 650ms var(--ease) forwards;
}

.hero-support > p {
  max-width: 29rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
}

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

.hero-figure {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: min(31vw, 29rem);
  height: min(76vh, 49rem);
  margin: 0;
  opacity: 0;
  transform: translateY(1.5rem);
  animation: hero-image 1.2s 420ms var(--ease) forwards;
}

.hero-figure::after {
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  background: var(--moss);
  content: "";
  transform-origin: bottom;
  animation: image-curtain 1.2s 500ms var(--ease) forwards;
}

.media-frame-hero img {
  object-position: 52% center;
}

.hero-figure figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  margin-top: 0.7rem;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note {
  z-index: 2;
  margin: 0;
  grid-column: 10 / 13;
  grid-row: 2;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.25;
  text-align: right;
  opacity: 0;
  animation: hero-rise 800ms 900ms var(--ease) forwards;
}

.scroll-cue {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  grid-column: 1 / 4;
  grid-row: 2;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: hero-rise 800ms 900ms var(--ease) forwards;
}

.scroll-cue span {
  position: relative;
  display: block;
  width: 1px;
  height: 2.75rem;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue span::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: var(--clay);
  content: "";
  animation: scroll-cue 2s 1.4s var(--ease-soft) infinite;
}

@keyframes hero-line {
  to { transform: translateY(0); }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-image {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes image-curtain {
  to { transform: scaleY(0); }
}

@keyframes scroll-cue {
  0% { transform: translateY(-120%); }
  50%, 100% { transform: translateY(240%); }
}

/* Support */
.support {
  background: var(--paper);
}

.support-intro {
  display: grid;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  grid-template-columns: 2fr 6fr 3fr 1fr;
  gap: 1.5rem;
  align-items: end;
}

.support-intro .section-kicker {
  align-self: start;
}

.support-intro h2 {
  margin: 0;
  grid-column: 2;
}

.support-intro > p:last-child {
  margin-bottom: 0.4rem;
  grid-column: 3;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.support-index {
  padding: 0;
  border-top: 1px solid var(--line);
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5vw;
  list-style: none;
}

.support-index li {
  display: grid;
  min-height: 5.8rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 3rem 1fr;
  align-items: center;
}

.support-index li:nth-child(even) {
  transition-delay: 80ms;
}

.support-index li > span {
  color: var(--clay);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.support-index a,
.support-index .support-item-visual {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.6rem);
  letter-spacing: -0.025em;
  transition: color 350ms var(--ease), padding 350ms var(--ease);
}

.support-index a i,
.support-index .support-item-visual i {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  opacity: 0;
  transform: translate(-1rem, 1rem);
  transition: opacity 350ms var(--ease), transform 350ms var(--ease);
}

.support-index li:hover a,
.support-index li:hover .support-item-visual {
  padding-left: 0.6rem;
  color: var(--clay);
}

.support-index li:hover a i,
.support-index li:hover .support-item-visual i {
  opacity: 1;
  transform: translate(0, 0);
}

.support-note {
  margin: 3rem 0 0 50%;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.support-note a,
.support-note .support-note-visual {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

/* Services */
.section-dark {
  background: var(--moss-deep);
  color: var(--white);
}

.services::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34%;
  width: 1px;
  background: var(--line-light);
  content: "";
}

.services-shell {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(3rem, 7vw, 8rem);
}

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

.services .section-kicker span,
.services h2 em {
  color: var(--clay-soft);
}

.services-heading h2 {
  margin-top: clamp(3rem, 6vw, 6rem);
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.services-heading > p:last-child {
  max-width: 28rem;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.9rem;
}

.service-list {
  counter-reset: service;
}

.service-row {
  display: grid;
  min-height: 13rem;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 3rem 1fr auto;
  gap: 2rem;
  align-items: center;
}

.service-row:last-child {
  border-bottom: 1px solid var(--line-light);
}

.service-number {
  align-self: start;
  padding-top: 2.4rem;
  color: var(--clay-soft);
  font-size: 0.62rem;
  font-weight: 600;
}

.service-row h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  letter-spacing: -0.035em;
  transition: transform 450ms var(--ease), color 450ms var(--ease);
}

.service-row p {
  max-width: 38rem;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.85rem;
}

.service-row > a {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-size: 1.1rem;
  transform: rotate(0);
  transition: background 400ms var(--ease), color 400ms var(--ease), transform 400ms var(--ease);
}

.service-row:hover h3 {
  color: var(--clay-soft);
  transform: translateX(0.55rem);
}

.service-row:hover > a {
  background: var(--clay-soft);
  color: var(--moss-deep);
  transform: rotate(45deg);
}

/* Testimonials */
.testimonials {
  background: var(--clay);
  color: var(--white);
}

.testimonials::after {
  position: absolute;
  right: 6vw;
  bottom: -3vw;
  width: 18vw;
  height: 18vw;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.testimonials-shell {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 6vw;
}

.testimonial-heading h2 {
  margin: 4rem 0 0;
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.testimonial-heading h2 em {
  color: var(--sand);
}

.testimonial-stage {
  position: relative;
  min-height: 35rem;
  padding: 2rem 0 0 7vw;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.quote-mark {
  position: absolute;
  top: 0;
  left: 1.5rem;
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  opacity: 0.45;
}

.testimonial-live {
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.testimonial-stage.is-changing .testimonial-live {
  opacity: 0;
  transform: translateX(1.25rem);
}

.testimonial-stage[data-direction="prev"].is-changing .testimonial-live {
  transform: translateX(-1.25rem);
}

.testimonial-stage blockquote {
  max-width: 53rem;
  margin: 3rem 0 3.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.65vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.testimonial-stage footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-stage cite {
  font-style: normal;
  font-weight: 600;
}

.testimonial-stage footer span {
  color: rgba(255, 255, 255, 0.55);
}

.testimonial-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-count {
  display: flex;
  width: 10rem;
  gap: 0.75rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
}

.testimonial-count i {
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  flex: 1;
}

.testimonial-controls > div:last-child {
  display: flex;
}

.testimonial-controls button {
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 300ms ease, color 300ms ease;
}

.testimonial-controls button + button {
  border-left: 0;
}

.testimonial-controls button:hover {
  background: var(--white);
  color: var(--clay);
}

/* About */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 4fr 5fr 2fr;
  grid-template-rows: auto auto;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.about-label {
  grid-column: 1;
}

.vertical-note {
  margin: 8rem 0 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
  white-space: nowrap;
}

.about-portrait {
  height: clamp(37rem, 57vw, 51rem);
  margin: 5rem 0 0;
  grid-column: 2;
  grid-row: 1 / 3;
}

.media-frame-about img {
  object-position: 50% 35%;
}

.about-copy {
  padding-top: 5rem;
  grid-column: 3 / 5;
}

.about-copy .eyebrow {
  margin-bottom: 3rem;
  color: var(--clay);
}

.about-copy h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
}

.about-role {
  margin-bottom: 3rem;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow, .about-role) {
  max-width: 44rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.about-copy blockquote {
  max-width: 45rem;
  padding: 2.5rem 0 2.5rem 3rem;
  border-left: 1px solid var(--clay);
  margin: 3.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2.65rem);
  font-style: italic;
  line-height: 1.18;
}

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

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

.credentials dt {
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.credentials dd {
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Process */
.process {
  overflow: hidden;
  background: #e7e0d6;
}

.process::before {
  position: absolute;
  top: -18vw;
  right: -13vw;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(154, 78, 61, 0.25);
  border-radius: 50%;
  content: "";
}

.process-grid {
  display: grid;
  grid-template-columns: 4fr 7fr 1fr;
  gap: 6vw;
}

.process-heading h2 {
  margin: 4rem 0 2.5rem;
  font-size: clamp(3.2rem, 5.2vw, 5.8rem);
}

.process-heading > p:last-child {
  max-width: 26rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.process-steps {
  position: relative;
  padding: 0;
  margin: 0;
  grid-column: 2;
  list-style: none;
}

.process-steps::before {
  position: absolute;
  top: 3rem;
  bottom: 3rem;
  left: 1.5rem;
  width: 1px;
  background: rgba(154, 78, 61, 0.35);
  content: "";
}

.process-steps li {
  position: relative;
  display: grid;
  min-height: 12.5rem;
  grid-template-columns: 3rem 1fr;
  gap: 3rem;
  align-items: start;
}

.process-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--clay);
  border-radius: 50%;
  background: #e7e0d6;
  color: var(--clay);
  font-size: 0.62rem;
  font-weight: 600;
}

.process-steps h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.process-steps p {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Studio */
.studio {
  background: var(--paper);
}

.studio-heading {
  display: grid;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  grid-template-columns: 3fr 8fr 1fr;
  gap: 2rem;
  align-items: start;
}

.studio-heading h2 {
  margin: 0;
  grid-column: 2;
}

.studio-collage {
  display: grid;
  min-height: 60rem;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 14rem 24rem 15rem;
  gap: 1.2rem;
}

.studio-image {
  margin: 0;
}

.studio-image-main {
  grid-column: 1 / 9;
  grid-row: 1 / 3;
}

.studio-image-main img {
  object-position: center 60%;
}

.studio-image-detail {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
}

.studio-image-corner {
  grid-column: 8 / 13;
  grid-row: 3;
}

.studio-card {
  z-index: 2;
  align-self: end;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--moss);
  color: var(--white);
  font-style: normal;
  grid-column: 2 / 8;
  grid-row: 2 / 4;
}

.studio-card .eyebrow {
  color: var(--sand);
}

.studio-card h3 {
  margin: 3rem 0;
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  letter-spacing: -0.04em;
}

.studio-card > div {
  display: grid;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 1fr 2fr;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.studio-card > div span {
  color: var(--sand);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-card > div p {
  margin: 0;
}

.online-note {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.online-note span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--clay-soft);
}

/* FAQ */
.faq {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: 4fr 7fr 1fr;
  gap: 6vw;
}

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

.faq-heading h2 {
  margin: 4rem 0 2rem;
  font-size: clamp(3.5rem, 5.5vw, 6rem);
}

.faq-heading > p:last-child {
  max-width: 26rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

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

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

.faq-item h3 {
  margin: 0;
  font-family: var(--font-body);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 6.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  text-align: left;
}

.faq-item button span {
  transition: color 300ms ease, transform 300ms var(--ease);
}

.faq-item button:hover span,
.faq-item button[aria-expanded="true"] span {
  color: var(--clay);
  transform: translateX(0.4rem);
}

.faq-item button i {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  margin-left: 1.5rem;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 350ms var(--ease);
}

.faq-item button i::before {
  transform: translate(-50%, -50%);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 450ms var(--ease);
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  max-width: 39rem;
  padding: 0 3rem 2.25rem 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.faq-item button[aria-expanded="true"] + .faq-panel {
  grid-template-rows: 1fr;
}

/* CTA + footer */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(7rem, 13vw, 13rem);
  background: var(--moss-deep);
  color: var(--white);
  text-align: center;
}

.final-cta::before,
.final-cta::after,
.cta-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: 50%;
  left: 50%;
  width: min(88vw, 72rem);
  aspect-ratio: 1.8;
  transform: translate(-50%, -50%);
}

.final-cta::after {
  top: 50%;
  left: 50%;
  width: min(68vw, 53rem);
  aspect-ratio: 1.8;
  transform: translate(-50%, -50%);
}

.cta-orbit {
  top: 50%;
  left: 50%;
  width: min(48vw, 36rem);
  aspect-ratio: 1.8;
  transform: translate(-50%, -50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.cta-inner .eyebrow {
  color: var(--sand);
}

.cta-inner h2 {
  margin: 2.2rem 0 2rem;
  font-size: clamp(3.5rem, 7.5vw, 8rem);
}

.cta-inner h2 em {
  color: var(--clay-soft);
}

.cta-inner > p:not(.eyebrow) {
  max-width: 35rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.cta-contacts {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.cta-contacts a {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 300ms ease, color 300ms ease;
}

.cta-contacts a:hover {
  border-color: var(--clay-soft);
  color: var(--clay-soft);
}

.site-footer {
  padding-block: 5rem 2rem;
  background: #1d231e;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr 1fr;
  gap: 2rem;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  align-items: center;
}

.footer-brand .brand-mark {
  grid-row: 1 / 3;
}

.footer-brand h2 {
  margin: 0;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact,
.footer-legal {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
}

.footer-contact p,
.footer-legal p {
  margin-bottom: 0.35rem;
}

.footer-contact a,
.footer-legal a {
  margin-bottom: 0.35rem;
  transition: color 300ms ease;
}

.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.footer-label {
  margin-bottom: 1.5rem !important;
  color: var(--sand);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 5rem;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--white);
}

.footer-bottom a span {
  margin-left: 0.5rem;
}

/* --------------------------------------------------------------------------
   V2 — readability, calmer hero, lighter reviews and compact closing system
   -------------------------------------------------------------------------- */

.desktop-nav a {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.button,
.button-small {
  font-size: 1rem;
}

.text-link {
  font-size: 1rem;
}

.button-small {
  gap: 1.25rem;
  background: var(--moss);
}

.support-intro > p:last-child,
.hero-support > p,
.services-heading > p:last-child,
.service-row p,
.about-copy > p:not(.eyebrow, .about-role),
.process-heading > p:last-child,
.process-steps p,
.faq-heading > p:last-child,
.faq-panel p {
  font-size: 1rem;
  line-height: 1.75;
}

.support-note {
  font-size: 1rem;
}

.hero {
  background: var(--ivory);
}

.hero-wash,
.hero-note,
.scroll-cue {
  display: none;
}

.hero-figure {
  top: calc(var(--header-height) + 1.15rem);
  width: min(31vw, 31rem);
  height: min(calc(100svh - var(--header-height) - 5.5rem), 50rem);
  isolation: isolate;
  overflow: visible;
}

.hero-figure::before {
  position: absolute;
  z-index: -1;
  top: 1.5rem;
  right: 1.4rem;
  bottom: 0;
  left: -1.4rem;
  background: var(--moss);
  content: "";
}

.hero-figure::after {
  display: none;
}

.hero-figure .media-frame,
.hero-figure figcaption {
  position: relative;
  z-index: 1;
}

.hero-figure figcaption {
  font-size: 0.75rem;
}

.hero-trust {
  z-index: 2;
  display: inline-flex;
  gap: 1.25rem;
  align-items: center;
  align-self: end;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  grid-column: 1 / 5;
  grid-row: 2;
  font-size: 1rem;
  opacity: 0;
  animation: hero-rise 800ms 900ms var(--ease) forwards;
}

.hero-trust strong {
  font-weight: 600;
}

.hero .button-primary {
  gap: 1rem;
  padding-left: 1rem;
}

.hero-stars,
.testimonial-stars {
  color: var(--clay);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.services::before {
  display: none;
}

.testimonials {
  background: #e9e1d6;
  color: var(--ink);
}

.testimonials::after {
  border-color: rgba(154, 78, 61, 0.2);
}

.testimonial-heading h2 {
  max-width: 34rem;
  font-size: clamp(3.1rem, 4.3vw, 4.8rem);
}

.testimonial-heading h2 em,
.testimonials .section-kicker span {
  color: var(--clay);
}

.testimonial-stage {
  min-height: 30rem;
  border-left-color: var(--line);
}

.quote-mark {
  color: var(--clay);
  opacity: 0.28;
}

.testimonial-stars {
  margin: 2.6rem 0 1.5rem;
}

.testimonial-stage blockquote {
  max-width: 49rem;
  margin-top: 0;
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  line-height: 1.12;
}

.testimonial-stage footer {
  color: var(--ink);
  font-size: 0.9rem;
}

.testimonial-stage footer span {
  color: var(--ink-soft);
}

.testimonial-count {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.testimonial-count i {
  background: var(--line);
}

.testimonial-controls button {
  border-color: var(--line);
  color: var(--ink);
}

.testimonial-controls button:hover {
  background: var(--moss);
  color: var(--white);
}

.process {
  background: var(--clay);
  color: var(--white);
}

.process::before {
  border-color: rgba(255, 253, 248, 0.22);
}

.process .section-kicker span,
.process-heading h2 em {
  color: var(--sand);
}

.process-heading > p:last-child,
.process-steps p {
  color: rgba(255, 253, 248, 0.76);
}

.process-steps::before {
  background: rgba(255, 253, 248, 0.28);
}

.process-steps li > span {
  border-color: var(--sand);
  background: var(--clay);
  color: var(--white);
}

.studio-collage {
  min-height: auto;
  grid-template-rows: 32rem 25rem;
}

.studio-image-main {
  grid-column: 1 / 9;
  grid-row: 1;
}

.studio-image-detail {
  grid-column: 9 / 13;
  grid-row: 1;
}

.studio-image-corner {
  grid-column: 1 / 6;
  grid-row: 2;
}

.studio-card {
  align-self: stretch;
  padding: clamp(2rem, 3vw, 3rem);
  grid-column: 6 / 13;
  grid-row: 2;
}

.studio-card > .studio-address {
  display: grid;
  padding: 0 0 1.5rem;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  color: inherit;
}

.studio-card .studio-address h3 {
  margin: 1.1rem 0 0;
  font-size: clamp(2.3rem, 3.4vw, 3.8rem);
}

.studio-card .studio-address .text-link {
  color: var(--white);
  font-size: 1rem;
  white-space: nowrap;
}

.studio-card > .studio-schedule {
  display: block;
  padding: 0;
  border: 0;
  color: inherit;
  font-size: inherit;
  grid-template-columns: none;
}

.schedule-row {
  display: grid;
  min-height: 4.1rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 1.5fr 0.85fr auto;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.95rem;
}

.schedule-row strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}

.studio-card .schedule-row > span {
  color: rgba(255, 253, 248, 0.76);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.schedule-row small {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.09);
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-item summary {
  display: flex;
  min-height: 6.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  list-style: none;
}

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

.faq-item summary span {
  transition: color 300ms ease, transform 300ms var(--ease);
}

.faq-item summary:hover span,
.faq-item[open] summary span {
  color: var(--clay);
  transform: translateX(0.4rem);
}

.faq-item summary i {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  margin-left: 1.5rem;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 350ms var(--ease);
}

.faq-item summary i::before {
  transform: translate(-50%, -50%);
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i::before,
.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-panel {
  display: block;
}

.faq-panel p {
  max-width: 42rem;
  padding: 0 3rem 2.25rem 0;
}

.cta-contacts {
  width: min(100%, 42rem);
  margin-top: 3rem;
  justify-content: center;
}

.cta-contacts a {
  display: flex;
  min-width: 16rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 0;
  flex-direction: column;
  font-size: 1rem;
  text-transform: none;
}

.cta-contacts a span {
  margin-bottom: 0.3rem;
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-contacts a strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

.site-footer {
  padding-block: 1.5rem;
}

.footer-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.footer-row p {
  margin: 0;
}

.footer-row a {
  transition: color 250ms ease;
}

.footer-row a:hover {
  color: var(--white);
}

@media (max-width: 1100px) {
  :root { --shell: min(92vw, 1000px); }

  .desktop-nav { display: none; }

  .header-inner { grid-template-columns: 1fr auto auto; }

  .menu-toggle {
    display: flex;
    width: 2.8rem;
    height: 2.8rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    gap: 0.38rem;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 1.05rem;
    height: 1px;
    background: currentColor;
    transition: transform 350ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: block;
    padding-top: var(--header-height);
    background: var(--moss-deep);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1.5rem);
    transition: opacity 450ms var(--ease), transform 450ms var(--ease);
  }

  .menu-open .site-header { color: var(--white); }
  .menu-open .site-header.is-scrolled { background: transparent; backdrop-filter: none; }

  .mobile-menu[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    display: flex;
    height: calc(100svh - var(--header-height));
    padding-block: 3rem 2rem;
    flex-direction: column;
  }

  .mobile-menu .eyebrow { color: var(--sand); }

  .mobile-menu nav { margin-top: auto; }

  .mobile-menu nav a {
    display: flex;
    gap: 2rem;
    align-items: baseline;
    padding: 0.25rem 0;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7.5vw, 4.5rem);
    line-height: 1.05;
  }

  .mobile-menu nav a span {
    color: var(--clay-soft);
    font-family: var(--font-body);
    font-size: 0.55rem;
  }

  .mobile-menu-contact {
    display: flex;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-light);
    margin-top: auto;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.68rem;
  }

  .hero-copy { grid-column: 1 / 11; }
  .hero-figure { width: 35vw; opacity: 0.75; }
  .hero-support { width: 70%; grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-note { display: none; }

  .services-shell,
  .testimonials-shell { grid-template-columns: 1fr; }
  .services::before { display: none; }
  .services-heading { position: relative; top: auto; }
  .services-heading h2 { max-width: 45rem; margin-top: 3rem; }

  .testimonial-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; }
  .testimonial-heading h2 { margin-top: 0; }
  .testimonial-stage { min-height: 30rem; }

  .about-grid { grid-template-columns: 1fr 4fr 5fr; }
  .about-copy { grid-column: 3; }
  .credentials { grid-column: 2 / 4; }

  .studio-collage { min-height: 51rem; grid-template-rows: 12rem 21rem 12rem; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero-figure { width: 38vw; }
  .hero-support { width: 58%; }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 2.5rem);
    --section-space: clamp(5.25rem, 20vw, 7rem);
    --header-height: 4.9rem;
  }

  body { font-size: 0.94rem; }
  h2 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .header-cta { display: none; }
  .header-inner { min-height: var(--header-height); grid-template-columns: 1fr auto; }
  .is-scrolled .header-inner { min-height: var(--header-height); }
  .brand-copy { font-size: 0.68rem; }
  .brand-copy small { font-size: 0.45rem; }

  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-wash {
    top: auto;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 62%;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-grid {
    display: flex;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 2.2rem);
    padding-bottom: 1rem;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-copy { display: contents; }
  .hero-eyebrow { order: 1; }
  .hero-title { position: relative; z-index: 2; order: 2; font-size: clamp(3.7rem, 17vw, 5.25rem); line-height: 0.89; }
  .title-line-indent { padding-left: 7vw; }
  .hero-figure {
    position: relative;
    top: auto;
    right: auto;
    width: 67vw;
    height: 45vh;
    min-height: 25rem;
    max-height: 32rem;
    margin: -0.6rem 0 0 auto;
    order: 3;
  }

  .hero-figure figcaption { font-size: 0.49rem; }
  .hero-support { position: relative; z-index: 2; width: 100%; margin: 2.25rem 0 0; order: 4; }
  .hero-support > p { max-width: 27rem; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .scroll-cue, .hero-note { display: none; }

  .support-intro,
  .studio-heading {
    display: block;
  }

  .support-intro .section-kicker,
  .studio-heading .section-kicker { margin-bottom: 3rem; }
  .support-intro h2,
  .studio-heading h2 { margin-bottom: 2rem; }
  .support-intro > p:last-child { max-width: 31rem; }

  .support-index { grid-template-columns: 1fr; }
  .support-index li:nth-child(even) { transition-delay: 0ms; }
  .support-index li { min-height: 4.7rem; grid-template-columns: 2.3rem 1fr; }
  .support-index a,
  .support-index .support-item-visual { font-size: 1.65rem; }
  .support-note { margin-left: 0; }

  .services-heading h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .service-row {
    min-height: auto;
    padding-block: 2rem;
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
  }
  .service-number { padding-top: 0.55rem; }
  .service-row h3 { font-size: 2.15rem; }
  .service-row > a { display: none; }

  .testimonial-heading { display: block; }
  .testimonial-heading h2 { margin-top: 3rem; }
  .testimonial-stage { min-height: 31rem; padding: 1rem 0 0; border-left: 0; }
  .quote-mark { left: auto; right: 0; font-size: 6rem; }
  .testimonial-stage blockquote { padding-right: 1rem; margin-top: 4rem; font-size: clamp(2rem, 9vw, 2.75rem); }
  .testimonial-controls { left: 0; }

  .about-grid { display: flex; flex-direction: column; gap: 0; }
  .about-label { width: 100%; }
  .vertical-note { display: none; }
  .about-portrait { width: 80%; height: 30rem; margin: 3rem 0 0 auto; order: 2; }
  .about-copy { padding-top: 3rem; order: 3; }
  .about-copy blockquote { padding-left: 1.5rem; font-size: 1.9rem; }
  .credentials { width: 100%; margin-top: 4rem; order: 4; grid-template-columns: 1fr; }
  .credentials div { display: grid; grid-template-columns: 1fr 1.25fr; align-items: end; }
  .credentials div + div { padding: 1.25rem 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .credentials dt { margin: 0; }

  .process-grid,
  .faq-grid { display: block; }
  .process-heading h2,
  .faq-heading h2 { margin-top: 3rem; }
  .process-steps { margin-top: 4rem; }
  .process-steps li { min-height: 11rem; gap: 1.5rem; }
  .faq-heading { position: relative; top: auto; }
  .faq-list { margin-top: 4rem; }
  .faq-item button { min-height: 5.25rem; }

  .studio-collage {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 22rem 12rem auto;
    gap: 0.75rem;
  }
  .studio-image-main { grid-column: 1 / -1; grid-row: 1; }
  .studio-image-detail { grid-column: 1; grid-row: 2; }
  .studio-image-corner { grid-column: 2; grid-row: 2; }
  .studio-card { padding: 2.25rem 1.5rem; grid-column: 1 / -1; grid-row: 3; }
  .studio-card h3 { margin: 2rem 0; }

  .final-cta { padding-block: 7rem; }
  .final-cta::before { width: 145vw; aspect-ratio: 1; }
  .final-cta::after { width: 110vw; aspect-ratio: 1; }
  .cta-orbit { width: 76vw; aspect-ratio: 1; }
  .cta-inner h2 { font-size: clamp(3.2rem, 15vw, 4.75rem); }
  .cta-inner .button { width: 100%; max-width: 28rem; }
  .cta-contacts { gap: 1.25rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { margin-top: 1rem; }
}

@media (max-width: 390px) {
  .hero-title { font-size: 3.55rem; }
  .hero-figure { width: 72vw; }
  .button { gap: 1rem; font-size: 0.67rem; }
  .mobile-menu nav a { font-size: 2.45rem; }
  .mobile-menu-contact { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 1100px) {
  .hero-figure {
    top: calc(var(--header-height) + 1rem);
    width: 35vw;
    height: min(calc(100svh - var(--header-height) - 5rem), 47rem);
    opacity: 1;
  }

  .studio-collage {
    min-height: auto;
    grid-template-rows: 28rem 25rem;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .hero-figure {
    width: 38vw;
  }

  .hero-trust {
    grid-column: 1 / 7;
  }

  .studio-card > .studio-address {
    grid-template-columns: 1fr;
  }

  .schedule-row {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .schedule-row small {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 1rem;
  }

  .hero-figure {
    top: auto;
    width: 78vw;
    height: 54vh;
    min-height: 28rem;
    max-height: 35rem;
    margin: 1.2rem 0 0 auto;
  }

  .hero-figure::before {
    top: 1rem;
    right: 1rem;
    left: -1rem;
  }

  .hero-figure figcaption {
    font-size: 0.7rem;
  }

  .hero-trust {
    width: 100%;
    margin-top: 2.5rem;
    grid-column: auto;
    order: 5;
  }

  .testimonial-stage {
    min-height: 29rem;
  }

  .testimonial-stars {
    margin-top: 3.5rem;
  }

  .studio-collage {
    grid-template-rows: 22rem 12rem auto;
  }

  .studio-card > .studio-address {
    grid-template-columns: 1fr;
  }

  .studio-card {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .schedule-row small {
    width: max-content;
    margin-top: 0.35rem;
  }

  .cta-contacts {
    gap: 0.75rem;
    flex-direction: column;
  }

  .cta-contacts a {
    width: 100%;
    min-width: 0;
  }

  .footer-row {
    gap: 0.65rem 1.2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* --------------------------------------------------------------------------
   V3 — focused hero, bento studio and quieter conversion details
   -------------------------------------------------------------------------- */

.header-cta.button-small {
  min-height: 2.8rem;
  gap: 0.7rem;
  padding-left: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.header-cta.button-small > span:last-child {
  width: 2rem;
  height: 2rem;
}

.hero-actions {
  gap: 0;
}

.hero-figure {
  top: calc(var(--header-height) + 1.4rem);
  width: min(34vw, 34rem);
  height: auto;
  aspect-ratio: 4 / 5;
}

.media-frame-hero img {
  object-position: 56% 70%;
}

.hero-figure figcaption {
  gap: 0.75rem 1.25rem;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 0;
  background: var(--moss);
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.035em;
  text-transform: none;
}

.hero-review-inline {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--white);
  transition: color 250ms ease;
}

.hero-review-inline:hover {
  color: var(--sand);
}

.hero-review-inline strong {
  font-weight: 600;
}

.hero-review-inline .hero-stars {
  color: var(--clay-soft);
  font-size: 0.72rem;
}

.about-cta {
  width: max-content;
  margin-top: 1.4rem;
}

.credentials {
  grid-template-columns: 0.65fr 0.85fr 1.5fr;
}

.credentials div:last-child dt {
  white-space: nowrap;
}

.studio-collage {
  grid-template-rows: 32rem 23rem;
}

.studio-image-main {
  grid-column: 1 / 9;
  grid-row: 1;
}

.studio-image-corner {
  grid-column: 9 / 13;
  grid-row: 1;
}

.studio-image-corner img {
  object-position: 60% center;
}

.studio-card {
  align-self: stretch;
  padding: clamp(2rem, 3vw, 3rem);
  font-style: normal;
}

.studio-card-address {
  display: flex;
  background: var(--moss);
  grid-column: 1 / 6;
  grid-row: 2;
  flex-direction: column;
}

.studio-card-hours {
  background: var(--clay);
  grid-column: 6 / 13;
  grid-row: 2;
}

.studio-card h3,
.studio-card .studio-address h3 {
  margin: 1.4rem 0 0;
  font-size: clamp(2.35rem, 3.25vw, 3.8rem);
  line-height: 0.98;
}

.studio-map-link {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
}

.studio-map-link i {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  transition: color 350ms var(--ease), background 350ms var(--ease), transform 350ms var(--ease);
}

.studio-map-link:hover i {
  background: var(--paper);
  color: var(--moss);
  transform: rotate(45deg);
}

.appointment-note {
  max-width: 27rem;
  margin: 1.3rem 0 1rem;
  color: rgba(255, 253, 248, 0.76);
  font-size: 1rem;
}

.studio-card-hours > .studio-schedule {
  display: block;
  padding: 0;
  border: 0;
  color: inherit;
}

.studio-card-hours .schedule-row {
  min-height: 3.8rem;
  padding-block: 0.65rem;
  grid-template-columns: 1.55fr 0.9fr auto;
}

.studio-card-hours .schedule-row:last-child {
  border-bottom: 0;
}

.studio-card-hours .schedule-row small {
  background: rgba(46, 62, 51, 0.25);
  color: var(--white);
}

.cta-contacts {
  gap: 0.75rem;
}

.cta-contacts a {
  position: relative;
  min-width: 19rem;
  overflow: hidden;
  padding: 1.15rem 3.8rem 1.15rem 1.25rem;
  border: 0;
  background: rgba(255, 255, 255, 0.075);
  transition: background 350ms var(--ease), color 350ms var(--ease), transform 350ms var(--ease);
}

.cta-contacts a::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  color: var(--sand);
  content: "↗";
  font-size: 1.1rem;
  transform: translateY(-50%);
  transition: color 350ms var(--ease), transform 350ms var(--ease);
}

.cta-contacts a:hover {
  border: 0;
  background: var(--clay);
  color: var(--white);
  transform: translateY(-0.25rem);
}

.cta-contacts a:hover::after {
  color: var(--white);
  transform: translateY(-50%) rotate(45deg);
}

.cta-contacts a:hover span {
  color: var(--white);
}

.footer-row {
  gap: 1.5rem 3rem;
  font-size: 0.88rem;
}

.footer-row p {
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .hero-figure {
    top: calc(var(--header-height) + 1.2rem);
    width: 38vw;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .studio-collage {
    grid-template-rows: 28rem 24rem;
  }

  .studio-card-hours .schedule-row {
    grid-template-columns: 1.35fr 0.8fr;
  }

  .studio-card-hours .schedule-row small {
    display: none;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .hero-figure {
    width: 43vw;
    aspect-ratio: 3 / 4;
  }

  .studio-collage {
    grid-template-rows: 27rem 20rem auto;
  }

  .studio-image-main {
    grid-column: 1 / 10;
    grid-row: 1;
  }

  .studio-image-corner {
    grid-column: 10 / 13;
    grid-row: 1;
  }

  .studio-card-address {
    grid-column: 1 / 6;
    grid-row: 2;
  }

  .studio-card-hours {
    grid-column: 6 / 13;
    grid-row: 2 / 4;
  }

  .studio-map-link {
    font-size: 1.45rem;
  }
}

@media (max-width: 760px) {
  .hero-figure {
    top: auto;
    width: 84vw;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
    margin-top: 1.1rem;
  }

  .media-frame-hero img {
    object-position: 56% 67%;
  }

  .hero-figure figcaption {
    font-size: 0.74rem;
  }

  .hero-review-inline {
    width: 100%;
  }

  .credentials div:last-child dt {
    white-space: normal;
  }

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

  .studio-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 22rem 13rem auto auto;
  }

  .studio-image-main {
    grid-column: 1;
    grid-row: 1;
  }

  .studio-image-corner {
    grid-column: 1;
    grid-row: 2;
  }

  .studio-card-address {
    min-height: 20rem;
    grid-column: 1;
    grid-row: 3;
  }

  .studio-card-hours {
    grid-column: 1;
    grid-row: 4;
  }

  .studio-card-hours .schedule-row {
    grid-template-columns: 1fr;
  }

  .studio-card-hours .schedule-row small {
    display: block;
  }

  .cta-contacts a {
    min-width: 0;
  }
}

/* --------------------------------------------------------------------------
   V4 — alternating studio, deterministic reviews and leaner editorial rhythm
   -------------------------------------------------------------------------- */

.hero-figure::before {
  display: none;
}

.hero-figure figcaption {
  padding: 0.8rem 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
}

.hero-review-inline {
  color: var(--ink);
}

.hero-review-inline:hover {
  color: var(--clay);
}

.hero-review-inline .hero-stars {
  color: var(--clay);
}

.hero-support {
  width: min(30rem, 48%);
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.hero-support > p {
  max-width: 30rem;
}

.hero-actions {
  margin-top: 0;
}

.testimonial-heading {
  grid-column: 1;
  grid-row: 1;
}

.testimonial-arrows {
  display: flex;
  margin-top: 2rem;
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  justify-self: start;
}

.testimonial-arrows button {
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  transition: background 300ms ease, color 300ms ease, transform 300ms var(--ease);
}

.testimonial-arrows button + button {
  border-left: 0;
}

.testimonial-arrows button:hover {
  background: var(--moss);
  color: var(--white);
  transform: translateY(-0.2rem);
}

.testimonial-stage {
  padding-bottom: 0;
  grid-column: 2;
  grid-row: 1;
}

.testimonials-shell > .testimonial-count {
  position: static;
  margin-top: 2rem;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: end;
}

.about-role {
  margin-bottom: 2rem;
}

.about-copy blockquote {
  max-width: 39rem;
  padding: 1.4rem 0 1.4rem 2rem;
  margin: 2rem 0 1.25rem;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
}

.about-cta {
  margin-top: 0.5rem;
}

.credentials {
  padding-top: 1.25rem;
  border-top: 0;
}

.credentials dt[data-counter-target] {
  font-variant-numeric: tabular-nums;
}

.studio-collage {
  grid-template-rows: 28rem 24rem;
}

.studio-image-main {
  grid-column: 1 / 8;
  grid-row: 1;
}

.studio-card-address {
  background: var(--moss);
  grid-column: 8 / 13;
  grid-row: 1;
}

.studio-card-hours {
  background: var(--moss);
  grid-column: 1 / 7;
  grid-row: 2;
}

.studio-image-corner {
  grid-column: 7 / 13;
  grid-row: 2;
}

.studio-card h3,
.studio-card .studio-address h3 {
  font-size: clamp(2.2rem, 2.9vw, 3.35rem);
}

.studio-card-hours .schedule-row small {
  background: rgba(255, 255, 255, 0.09);
  color: var(--sand);
}

.cta-contacts {
  width: auto;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.cta-contacts a {
  min-width: 0;
  overflow: visible;
  align-items: center;
  padding: 0;
  background: transparent;
  text-align: center;
  transition: color 300ms ease, transform 300ms var(--ease);
}

.cta-contacts a::after {
  display: none;
}

.cta-contacts a span {
  margin-bottom: 0.55rem;
}

.cta-contacts a strong {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.cta-contacts a:hover {
  background: transparent;
  color: inherit;
  transform: translateY(-0.2rem);
}

.cta-contacts a:hover span,
.cta-contacts a:hover strong {
  color: var(--clay-soft);
}

@media (max-width: 1100px) {
  .testimonial-heading {
    grid-column: 1;
    grid-row: 1;
  }

  .testimonial-arrows {
    margin-top: 2rem;
    grid-column: 1;
    grid-row: 3;
  }

  .testimonial-stage {
    grid-column: 1;
    grid-row: 2;
  }

  .testimonials-shell > .testimonial-count {
    grid-column: 1;
    grid-row: 3;
  }

  .studio-collage {
    grid-template-rows: 26rem 24rem;
  }

  .studio-image-main {
    grid-column: 1 / 8;
    grid-row: 1;
  }

  .studio-card-address {
    grid-column: 8 / 13;
    grid-row: 1;
  }

  .studio-card-hours {
    grid-column: 1 / 7;
    grid-row: 2;
  }

  .studio-image-corner {
    grid-column: 7 / 13;
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  .hero-support {
    width: 100%;
    gap: 1.5rem;
  }

  .testimonial-heading {
    display: flex;
  }

  .testimonial-heading h2 {
    margin-top: 3rem;
  }

  .testimonial-arrows {
    margin-top: 2rem;
  }

  .testimonial-stage {
    padding-bottom: 0;
  }

  .about-copy blockquote {
    padding: 1.25rem 0 1.25rem 1.5rem;
    margin: 1.75rem 0 1rem;
    font-size: 1.75rem;
  }

  .credentials {
    margin-top: 2.5rem;
    padding-top: 0;
  }

  .credentials div + div {
    padding-top: 1.25rem;
    border-top: 0;
  }

  .studio-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 22rem auto auto 16rem;
  }

  .studio-image-main {
    grid-column: 1;
    grid-row: 1;
  }

  .studio-card-address {
    grid-column: 1;
    grid-row: 2;
  }

  .studio-card-hours {
    grid-column: 1;
    grid-row: 3;
  }

  .studio-image-corner {
    grid-column: 1;
    grid-row: 4;
  }

  .cta-contacts {
    width: 100%;
    gap: 2rem;
    flex-direction: column;
  }

  .cta-contacts a {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   V5 — viewport-balanced hero and refined editorial interactions
   -------------------------------------------------------------------------- */

.brand {
  gap: 0.9rem;
}

.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  font-size: 1.05rem;
}

.brand-copy {
  font-size: 0.82rem;
}

.brand-copy small {
  font-size: 0.54rem;
}

.hero-wash {
  display: block;
  right: -8%;
  width: 57%;
  background: #e4ddd1;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  min-height: 100svh;
  padding-top: var(--header-height);
  padding-bottom: 2.5rem;
}

.hero-copy {
  align-self: center;
}

.hero-support {
  width: min(43rem, 72%);
  margin-left: 5vw;
  grid-template-columns: minmax(15rem, 21rem) auto;
  gap: 2rem;
  align-items: end;
}

.hero-support > p {
  max-width: 21rem;
}

.hero-figure {
  top: calc(50% + 2.2rem);
  width: min(34vw, 34rem);
  translate: 0 -50%;
}

.hero-note {
  display: block;
  align-self: end;
  margin-bottom: 0.35rem;
}

.support-note a,
.support-note .support-note-visual {
  display: inline-block;
  transition: border-color 300ms ease, color 300ms ease, transform 300ms var(--ease);
}

.support-note a:hover,
.support-note .support-note-visual:hover {
  border-color: var(--clay);
  color: var(--clay);
  transform: translateX(0.3rem);
}

.testimonials.section {
  padding-block: clamp(4.75rem, 6vw, 6rem);
}

.testimonial-stage {
  min-height: 21rem;
  padding-top: 1rem;
}

.testimonial-stars {
  margin-top: 1.5rem;
}

.testimonial-stage blockquote {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 2.7vw, 3rem);
}

.testimonial-arrows {
  grid-column: 2;
  justify-self: end;
}

.testimonials-shell > .testimonial-count {
  width: 9rem;
  grid-column: 1;
  justify-self: start;
}

.testimonial-count #testimonial-current {
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.testimonial-count #testimonial-total {
  font-size: 0.82rem;
}

.about-copy blockquote {
  max-width: 42rem;
  padding-block: 1.6rem;
  margin: 2rem 0 1.35rem;
  font-size: clamp(1.45rem, 1.9vw, 2.05rem);
}

.schedule-row strong {
  display: block;
  width: 100%;
  justify-self: stretch;
  font-variant-numeric: tabular-nums;
  text-align: left;
}

.studio-card-hours .schedule-row {
  grid-template-columns: minmax(0, 1.55fr) minmax(9rem, 0.9fr) 7.5rem;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.cta-contacts {
  margin-top: 0.5rem;
}

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

.cta-contacts a strong {
  display: inline-block;
  transition: color 300ms ease, transform 300ms var(--ease);
}

.cta-contacts a:hover {
  transform: none;
}

.cta-contacts a:hover span {
  color: var(--sand);
}

.cta-contacts a:hover strong {
  color: var(--clay-soft);
  transform: translateY(-0.15rem);
}

@media (max-width: 1100px) {
  .hero-figure {
    top: calc(50% + 2rem);
    width: 38vw;
    translate: 0 -50%;
  }

  .testimonial-arrows {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
  }

  .testimonials-shell > .testimonial-count {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }

  .studio-card-hours .schedule-row {
    grid-template-columns: minmax(0, 1.35fr) minmax(9rem, 0.8fr);
  }
}

@media (max-width: 760px) {
  .brand {
    gap: 0.75rem;
  }

  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1rem;
  }

  .brand-copy {
    font-size: 0.75rem;
  }

  .brand-copy small {
    font-size: 0.5rem;
  }

  .hero-wash {
    display: block;
    width: 72%;
    opacity: 0.72;
  }

  .hero-grid {
    padding-top: calc(var(--header-height) + 2.2rem);
    padding-bottom: 1.5rem;
  }

  .hero-support {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
  }

  .hero-support > p {
    max-width: 27rem;
  }

  .hero-figure {
    top: auto;
    width: 84vw;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
    margin-top: 1.1rem;
    margin-bottom: 4.25rem;
    translate: none;
  }

  .hero-note {
    display: none;
  }

  .testimonials.section {
    padding-block: 5.5rem;
  }

  .testimonial-stage {
    min-height: 27rem;
  }

  .testimonial-stage blockquote {
    font-size: clamp(1.9rem, 8.5vw, 2.55rem);
  }

  .testimonial-count #testimonial-current {
    font-size: 2rem;
  }

  .about-copy blockquote {
    font-size: 1.65rem;
  }

  .studio-card-hours .schedule-row {
    grid-template-columns: 1fr;
  }

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

@media (max-height: 800px) {
  .hero-note {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   V6 — directed portrait, restored process and split closing composition
   -------------------------------------------------------------------------- */

.hero-figure figcaption {
  padding-top: 0.9rem;
  border-top: 0;
  justify-content: space-between;
}

.hero-availability {
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0;
}

.hero-review-inline {
  margin-left: auto;
}

.studio-card-hours .schedule-row,
.studio-card-hours .schedule-row > span,
.studio-card-hours .schedule-row strong,
.studio-card-hours .appointment-note {
  color: var(--white);
}

.studio-card-hours .schedule-row > span {
  font-weight: 600;
  letter-spacing: 0.055em;
}

.studio-card-hours .schedule-row small {
  width: 100%;
  min-width: 7.75rem;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
}

.faq-panel {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 420ms var(--ease), opacity 300ms ease;
}

.faq-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.cta-inner.cta-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: center;
  text-align: left;
}

.cta-copy h2 {
  margin-bottom: 0;
}

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

.cta-action .cta-contacts {
  width: 100%;
  gap: 2.2rem;
  align-items: flex-start;
  margin-top: 0;
  flex-direction: column;
}

.cta-action .cta-contacts a {
  width: auto;
  align-items: flex-start;
  text-align: left;
}

.cta-action > .button {
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .cta-inner.cta-editorial {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .cta-action .cta-contacts {
    gap: 1.75rem;
  }
}

@media (max-width: 760px) {
  .hero-figure figcaption {
    gap: 0.65rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-review-inline {
    width: auto;
    margin-left: 0;
  }

  .hero-availability {
    font-size: 0.95rem;
  }

  .studio-card-hours .schedule-row small {
    width: max-content;
  }

  .cta-inner.cta-editorial {
    gap: 3rem;
    text-align: left;
  }

  .cta-action {
    width: 100%;
  }

  .cta-action .cta-contacts a {
    width: 100%;
  }

  .cta-action > .button {
    width: 100%;
    margin-top: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   V7 — interaction hardening and centered process rhythm
   -------------------------------------------------------------------------- */

.brand-copy > span:first-child {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}

.brand-copy small {
  margin-top: 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.process.section {
  padding-block: clamp(6rem, 8vw, 8rem);
}

.process-grid {
  align-items: center;
}

.process-steps li:last-child {
  min-height: auto;
}

.testimonials::after {
  pointer-events: none;
}

.testimonial-arrows {
  position: relative;
  z-index: 4;
}

.testimonial-arrows button {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.testimonials-shell > .testimonial-count {
  margin-right: 1.5rem;
  justify-self: end;
}

@media (max-width: 1100px) {
  .testimonials-shell > .testimonial-count {
    margin-right: 0;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .brand-copy > span:first-child {
    font-size: 1.08rem;
  }

  .brand-copy small {
    font-size: 0.66rem;
  }

  .process.section {
    padding-block: 6rem;
  }
}

/* --------------------------------------------------------------------------
   V8 — fixed testimonial stage and stronger wordmark
   -------------------------------------------------------------------------- */

.brand-copy > span:first-child {
  font-size: 1.8rem;
}

.testimonials-shell {
  position: relative;
  height: 31.5rem;
}

.testimonial-stage {
  height: 21rem;
  min-height: 21rem;
  overflow: hidden;
}

.testimonial-arrows {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
}

.testimonials-shell > .testimonial-count {
  position: absolute;
  bottom: 0.75rem;
  left: calc(33.333% + 1.5rem);
  margin: 0;
}

@media (max-width: 1100px) {
  .testimonials-shell {
    height: 39.5rem;
  }

  .testimonials-shell > .testimonial-count {
    left: 50%;
  }
}

@media (max-width: 760px) {
  .brand-copy > span:first-child {
    font-size: 1.45rem;
  }

  .testimonials-shell {
    height: 50.75rem;
  }

  .testimonial-stage {
    height: 30rem;
    min-height: 30rem;
  }

  .testimonials-shell > .testimonial-count {
    right: 8.5rem;
    left: auto;
  }
}

/* --------------------------------------------------------------------------
   V9 — unclipped fixed reviews
   -------------------------------------------------------------------------- */

.brand-copy > span:first-child {
  font-size: 1.6rem;
}

.testimonial-stage {
  overflow: visible;
}

.testimonial-arrows,
.testimonials-shell > .testimonial-count {
  grid-row: auto;
  grid-column: auto;
  align-self: auto;
  justify-self: auto;
}

@media (max-width: 1100px) {
  .testimonial-stage {
    height: 26rem;
    min-height: 26rem;
  }
}

@media (max-width: 760px) {
  .brand-copy > span:first-child {
    font-size: 1.4rem;
  }

  .testimonial-stage {
    height: 30rem;
    min-height: 30rem;
  }
}

/* --------------------------------------------------------------------------
   V14 — exact viewport hero and clearer studio information
   -------------------------------------------------------------------------- */

.hero {
  height: 100svh;
  min-height: 100svh;
}

.hero-grid {
  height: 100%;
  min-height: 0;
}

.hero-availability {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.065em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-availability::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--clay);
  content: "";
  flex: 0 0 auto;
}

.schedule-heading {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
}

.schedule-heading span {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

@media (max-width: 760px) {
  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-grid {
    height: auto;
    min-height: 100svh;
  }

  .hero-availability {
    font-size: 0.82rem;
    letter-spacing: 0.055em;
  }
}

/* --------------------------------------------------------------------------
   V15 — responsive-only refinement
   --------------------------------------------------------------------------

@media (max-width: 1100px) {
  .mobile-menu-contact {
    display: grid;
    gap: 0.65rem;
    align-items: start;
    padding-top: 1.5rem;
    color: var(--white);
  }

  .mobile-menu-contact a {
    width: fit-content;
    max-width: 100%;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 4vw, 2.65rem);
    letter-spacing: -0.025em;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 0px) {
  .hero-eyebrow,
  .hero-availability {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-grid {
    display: flex;
    height: auto;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 2.2rem);
    padding-bottom: 1.5rem;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-copy {
    display: contents;
  }

  .hero-title {
    position: relative;
    z-index: 2;
    order: 1;
    text-align: left;
  }

  .title-line-indent {
    padding-left: 0;
  }

  .hero-figure {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 2rem auto 0;
    aspect-ratio: 4 / 4.75;
    order: 2;
    translate: none;
  }

  .media-frame-hero img {
    object-position: 54% 63%;
  }

  .hero-figure figcaption {
    justify-content: flex-end;
  }

  .hero-support {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 2rem 0 0;
    order: 3;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-support > p {
    max-width: 31rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: auto;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .support-intro,
  .studio-heading,
  .faq-grid {
    display: block;
  }

  .support-intro .section-kicker,
  .studio-heading .section-kicker {
    margin-bottom: 3rem;
  }

  .support-intro h2,
  .studio-heading h2 {
    margin-bottom: 2rem;
  }

  .faq-heading {
    position: relative;
    top: auto;
  }

  .faq-list {
    margin-top: 4rem;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .about-label {
    width: 100%;
  }

  .vertical-note {
    display: none;
  }

  .about-portrait {
    width: 100%;
    height: clamp(22rem, 80vw, 31rem);
    margin: 3rem 0 0;
    order: 2;
  }

  .media-frame-about img {
    object-position: 50% 20%;
  }

  .about-copy {
    padding-top: 3rem;
    order: 3;
  }

  .credentials {
    width: 100%;
    gap: 0;
    margin-top: 2.5rem;
    order: 4;
    grid-template-columns: 1fr;
  }

  .credentials div {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    padding-block: 1.4rem;
    flex-direction: column;
  }

  .credentials div + div {
    padding: 1.4rem 0;
  }

  .credentials dt {
    margin: 0;
    font-size: clamp(3rem, 13vw, 4.25rem);
  }

  .credentials dd {
    width: 100%;
    margin: 0;
    font-size: 0.88rem;
    letter-spacing: 0.07em;
    text-align: center;
  }

  .testimonial-heading {
    display: block;
  }

  .testimonial-heading .section-kicker {
    margin-bottom: 2.25rem;
  }

  .testimonial-heading h2 {
    margin-top: 0;
  }

  .testimonials-shell > .testimonial-count {
    display: none;
  }

  .testimonial-arrows {
    right: auto;
    bottom: 0;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
  }

  .cta-action > .button,
  .cta-inner .button {
    width: auto;
    max-width: none;
    align-self: flex-start;
  }

  .mobile-menu-contact {
    gap: 0.55rem;
  }

  .mobile-menu-contact a {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .footer-row {
    gap: 0.65rem 1.2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-height: 700px) and (max-width: 0px) {
  .mobile-menu-inner {
    overflow-y: auto;
    padding-block: 1.25rem;
  }

  .mobile-menu nav {
    margin-top: 1rem;
  }

  .mobile-menu nav a {
    font-size: clamp(1.75rem, 5vw, 2.65rem);
  }

  .mobile-menu-contact {
    margin-top: 1.5rem;
    padding-bottom: 1rem;
  }
}

@media (min-width: 761px) and (max-width: 0px) {
  .testimonials-shell {
    height: 45.5rem;
  }
}

*/

/* --------------------------------------------------------------------------
   V17 — correzioni responsive isolate dalla versione desktop
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .mobile-menu {
    transition: transform 450ms var(--ease);
  }

  .menu-open .menu-toggle > span:not(.sr-only) {
    background: var(--white);
  }

  .mobile-menu-inner {
    overflow-y: auto;
  }

  .mobile-menu-footer {
    display: grid;
    gap: 1.4rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-light);
  }

  .mobile-menu-contact {
    display: grid;
    gap: 0.45rem;
    padding: 0;
    border: 0;
    margin: 0;
  }

  .mobile-menu-contact a {
    width: fit-content;
    max-width: 100%;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.125rem;
    letter-spacing: 0;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .mobile-menu-cta {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .hero-eyebrow,
  .hero-availability {
    display: none;
  }

  .hero-title {
    text-align: left;
  }

  .title-line-indent {
    padding-left: 0;
  }

  .hero-figure {
    width: 100%;
    margin: 1.5rem 0 4.25rem;
    aspect-ratio: 4 / 4.75;
  }

  .media-frame-hero img {
    object-position: 54% 63%;
  }

  .hero-figure figcaption {
    align-items: flex-end;
    justify-content: flex-end;
  }

  .hero-actions,
  .hero-actions .button {
    width: auto;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .about-portrait {
    width: 100%;
    height: clamp(18rem, 72vw, 31rem);
    margin: 3rem 0 0;
  }

  .media-frame-about img {
    object-position: 50% 20%;
  }

  .credentials {
    gap: 0;
  }

  .credentials div {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    padding-block: 1.4rem;
    flex-direction: column;
    text-align: center;
  }

  .credentials div + div {
    padding: 1.4rem 0;
  }

  .credentials dt {
    margin: 0;
    font-size: clamp(3rem, 13vw, 4.25rem);
  }

  .credentials dd {
    width: 100%;
    margin: 0;
    font-size: 0.88rem;
    letter-spacing: 0.07em;
    text-align: center;
  }

  .testimonial-heading {
    display: block;
  }

  .testimonial-heading .section-kicker {
    margin-bottom: 2.25rem;
  }

  .testimonial-heading h2 {
    margin-top: 0;
  }

  .testimonials-shell > .testimonial-count {
    display: none;
  }

  .testimonial-arrows {
    right: auto;
    bottom: 0;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
  }

  .cta-action > .button,
  .cta-inner .button {
    width: auto;
    max-width: none;
    align-self: flex-start;
  }

  .mobile-menu-contact a {
    font-size: 1.125rem;
  }
}

@media (max-height: 700px) and (max-width: 1100px) {
  .mobile-menu-inner {
    padding-block: 1.25rem;
  }

  .mobile-menu nav {
    margin-top: 1rem;
  }

  .mobile-menu nav a {
    font-size: clamp(1.75rem, 5vw, 2.65rem);
  }

  .mobile-menu-footer {
    margin-top: 1.5rem;
    padding-bottom: 1rem;
  }
}

@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;
  }
  [data-reveal],
  .hero-eyebrow,
  .hero-support,
  .hero-figure,
  .hero-note,
  .scroll-cue { opacity: 1; transform: none; }
  .title-line > span { transform: none; }
  .hero-figure::after { display: none; }
}
