:root {
  --ink: #0b090a;
  --ink-soft: #1b1416;
  --burgundy: #750306;
  --burgundy-bright: #9f0408;
  --blush: #f2ab9e;
  --paper: #fff9f7;
  --paper-deep: #f7ece9;
  --line-dark: rgba(11, 9, 10, 0.18);
  --line-light: rgba(242, 171, 158, 0.28);
  --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --display: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --page-gutter: clamp(1.25rem, 5vw, 5.5rem);
  --section-space: clamp(5.5rem, 11vw, 10rem);
}

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

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

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

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--paper);
  background: var(--burgundy-bright);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.4rem;
  padding: 0 var(--page-gutter);
  color: var(--paper);
  border-bottom: 1px solid var(--line-light);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark > span {
  font-family: var(--display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.wordmark small {
  margin-left: 0.5rem;
  color: var(--blush);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  gap: clamp(1.25rem, 3vw, 3rem);
}

.site-nav a,
.header-call {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.8rem 0;
  color: rgba(255, 249, 247, 0.78);
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: flex;
  justify-self: end;
  justify-content: space-between;
  align-items: center;
  width: min(10.5rem, 100%);
  min-height: 2.8rem;
  padding: 0 0.25rem 0 1rem;
  border-left: 1px solid var(--line-light);
}

.header-call span:last-child {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--ink);
  background: var(--blush);
  border-radius: 50%;
  font-size: 1rem;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: max(52rem, 100svh);
  padding: 10rem var(--page-gutter) 5rem;
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 55%, rgba(159, 4, 8, 0.25), transparent 36%),
    var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(11, 9, 10, 0.97) 31%, rgba(11, 9, 10, 0.58) 57%, rgba(11, 9, 10, 0.1) 100%),
    linear-gradient(0deg, rgba(11, 9, 10, 0.9) 0%, transparent 34%);
  content: "";
}

.hero-art {
  position: absolute;
  z-index: -2;
  top: 5.4rem;
  right: -5vw;
  bottom: 0;
  width: min(72vw, 71rem);
  overflow: hidden;
}

.hero-art picture,
.hero-art img {
  width: 100%;
  height: 100%;
}

.hero-art img {
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.025);
  animation: reveal-art 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-rule {
  position: absolute;
  top: 5.4rem;
  bottom: 0;
  left: 54.5%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-light) 16%, var(--line-light) 84%, transparent);
}

.hero-code {
  position: absolute;
  right: var(--page-gutter);
  bottom: 4.8rem;
  display: flex;
  align-items: baseline;
  color: rgba(255, 249, 247, 0.85);
  font-size: clamp(0.7rem, 1.1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-code span:first-child {
  margin-right: 0.7rem;
  color: var(--blush);
}

.hero-code span:last-child {
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(50rem, 69%);
  padding-left: clamp(0rem, 4vw, 4rem);
  animation: reveal-copy 900ms 100ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--burgundy-bright);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2rem;
  color: var(--blush);
}

.hero .eyebrow span + span::before {
  margin-right: 2rem;
  color: rgba(242, 171, 158, 0.55);
  content: "/";
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(6rem, 14vw, 13rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.65;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  margin-left: clamp(2.5rem, 8vw, 8rem);
  color: var(--blush);
  font-style: italic;
}

.hero-intro {
  width: min(35rem, 90%);
  margin: clamp(3.5rem, 8vh, 6rem) 0 0;
  padding-left: clamp(0rem, 8vw, 8rem);
  color: rgba(255, 249, 247, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: 2.25rem;
  padding-left: clamp(0rem, 8vw, 8rem);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--paper);
}

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

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

.button-outline {
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 249, 247, 0.42);
  font-size: 0.71rem;
  font-weight: 800;
  gap: 1.5rem;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  color: var(--blush);
  border-color: var(--blush);
}

.micro-note {
  margin: 1.2rem 0 0;
  padding-left: clamp(0rem, 8vw, 8rem);
  color: rgba(255, 249, 247, 0.53);
  font-size: 0.74rem;
}

.hero-edition {
  position: absolute;
  bottom: 2rem;
  left: var(--page-gutter);
  margin: 0;
  color: rgba(255, 249, 247, 0.36);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.section-marker {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: var(--burgundy-bright);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-marker span:first-child {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.direction {
  position: relative;
  display: grid;
  grid-template-columns: 6rem minmax(15rem, 0.7fr) minmax(27rem, 1.3fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  padding: var(--section-space) var(--page-gutter);
  background: var(--paper-deep);
}

.section-heading {
  align-self: start;
}

.section-heading h2,
.panel-copy > h2,
.studio-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.83;
}

.section-heading > p:last-child {
  max-width: 24rem;
  margin: 2.5rem 0 0;
  color: rgba(11, 9, 10, 0.68);
  font-size: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.service-card::after {
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.14;
  transition: transform 350ms ease;
}

.service-card:hover::after {
  transform: scale(1.35);
}

.service-number {
  display: block;
  margin-bottom: auto;
  color: currentColor;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin: 3rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.service-card p {
  max-width: 17rem;
  margin: 0;
  color: currentColor;
  font-size: 0.82rem;
  opacity: 0.72;
}

.service-card-large {
  color: var(--paper);
  background: var(--burgundy);
}

.service-card-dark {
  color: var(--paper);
  background: var(--ink);
}

.service-card-light {
  color: var(--ink);
  background: var(--blush);
}

.service-card-outline {
  color: var(--burgundy);
  background: transparent;
}

.change-panel {
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(34rem, 1.18fr);
  min-height: 52rem;
  color: var(--paper);
  background: var(--ink);
}

.panel-visual {
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(circle at 45% 56%, rgba(242, 171, 158, 0.13), transparent 27%),
    linear-gradient(145deg, var(--burgundy) 0%, #3c0103 74%);
  border-right: 1px solid var(--line-light);
  overflow: hidden;
}

.panel-visual::before,
.panel-visual::after {
  position: absolute;
  content: "";
}

.panel-visual::before {
  top: 8%;
  right: 10%;
  bottom: 8%;
  left: 10%;
  border: 1px solid rgba(242, 171, 158, 0.21);
  border-radius: 50% 50% 46% 54% / 60% 45% 55% 40%;
}

.panel-visual::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line-light);
}

.panel-monogram {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(17rem, 33vw, 35rem);
  font-style: italic;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(242, 171, 158, 0.24);
  transform: translate(-52%, -45%);
}

.strand {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: block;
  border: 2px solid var(--blush);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(242, 171, 158, 0.28));
  transition: width 700ms cubic-bezier(0.2, 0.8, 0.2, 1), height 700ms cubic-bezier(0.2, 0.8, 0.2, 1), border-radius 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.strand-one {
  width: 29rem;
  height: 13rem;
  transform: translate(-50%, -50%) rotate(-21deg);
}

.strand-two {
  width: 23rem;
  height: 9rem;
  border-width: 1px;
  opacity: 0.64;
  transform: translate(-51%, -52%) rotate(-13deg);
}

.strand-three {
  width: 36rem;
  height: 17rem;
  border-width: 1px;
  opacity: 0.38;
  transform: translate(-53%, -53%) rotate(-29deg);
}

.change-panel[data-shape="curl"] .strand-one {
  width: 18rem;
  height: 28rem;
  border-radius: 44% 56% 52% 48%;
  transform: translate(-50%, -50%) rotate(34deg);
}

.change-panel[data-shape="curl"] .strand-two {
  width: 26rem;
  height: 20rem;
  transform: translate(-53%, -49%) rotate(79deg);
}

.change-panel[data-shape="curl"] .strand-three {
  width: 13rem;
  height: 34rem;
  transform: translate(-47%, -52%) rotate(-7deg);
}

.change-panel[data-shape="style"] .strand-one {
  width: 34rem;
  height: 22rem;
  transform: translate(-50%, -50%) rotate(15deg);
}

.change-panel[data-shape="style"] .strand-two {
  width: 16rem;
  height: 31rem;
  transform: translate(-50%, -50%) rotate(58deg);
}

.change-panel[data-shape="style"] .strand-three {
  width: 25rem;
  height: 25rem;
  transform: translate(-50%, -50%) rotate(-55deg);
}

.change-panel[data-shape="child"] .strand-one {
  width: 17rem;
  height: 17rem;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.change-panel[data-shape="child"] .strand-two {
  width: 25rem;
  height: 25rem;
  transform: translate(-50%, -50%) rotate(35deg);
}

.change-panel[data-shape="child"] .strand-three {
  width: 33rem;
  height: 33rem;
  transform: translate(-50%, -50%) rotate(-50deg);
}

.change-panel[data-shape="other"] .strand-one {
  width: 12rem;
  height: 30rem;
  border-radius: 25% 75% 34% 66%;
  transform: translate(-50%, -50%) rotate(62deg);
}

.change-panel[data-shape="other"] .strand-two {
  width: 33rem;
  height: 12rem;
  transform: translate(-50%, -50%) rotate(-47deg);
}

.change-panel[data-shape="other"] .strand-three {
  width: 22rem;
  height: 28rem;
  transform: translate(-50%, -50%) rotate(11deg);
}

.panel-copy {
  position: relative;
  padding: var(--section-space) clamp(2rem, 7vw, 7rem);
}

.section-marker-panel {
  position: absolute;
  top: var(--section-space);
  right: clamp(2rem, 5vw, 5rem);
  color: var(--blush);
}

.panel-copy > .eyebrow {
  color: var(--blush);
}

.panel-copy > h2 {
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.change-options {
  display: none;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-light);
}

.js .change-options {
  display: flex;
}

.change-option {
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  color: rgba(255, 249, 247, 0.68);
  background: transparent;
  border: 1px solid rgba(255, 249, 247, 0.24);
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.change-option:hover {
  color: var(--paper);
  border-color: var(--blush);
}

.change-option[aria-pressed="true"] {
  color: var(--ink);
  background: var(--blush);
  border-color: var(--blush);
}

.conversation-card {
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem 2rem;
  margin-top: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--ink);
  background: var(--paper);
}

.js .conversation-card {
  display: grid;
}

.conversation-label {
  grid-column: 1 / -1;
  margin: 0 0 1rem;
  color: var(--burgundy-bright);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.conversation-card h3 {
  grid-column: 1;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.conversation-card > p:not(.conversation-label, .copy-status) {
  grid-column: 1;
  max-width: 33rem;
  margin: 0.7rem 0 0;
  color: rgba(11, 9, 10, 0.68);
}

.conversation-actions {
  grid-column: 2;
  grid-row: 2 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.copy-button {
  min-height: 3.25rem;
  padding: 0.8rem 1.1rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(11, 9, 10, 0.32);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.copy-button:hover {
  background: var(--blush);
}

.copy-status {
  grid-column: 1 / -1;
  min-height: 1.25rem;
  margin: 0.5rem 0 0;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 700;
}

.noscript-note {
  padding: 1rem;
  color: var(--ink);
  background: var(--blush);
}

.studio {
  position: relative;
  min-height: 53rem;
  padding: var(--section-space) var(--page-gutter);
  color: var(--paper);
  background: var(--burgundy);
  overflow: hidden;
}

.studio > .section-marker {
  color: var(--blush);
}

.studio-name {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: max-content;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(13rem, 32vw, 34rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.6;
  -webkit-text-stroke: 1px rgba(242, 171, 158, 0.28);
  transform: translate(-51%, -50%);
}

.studio-name span:last-child {
  transform: translateY(0.18em);
}

.studio-copy {
  position: relative;
  z-index: 1;
  width: min(42rem, 70%);
  margin: clamp(11rem, 22vw, 20rem) 5vw 0 auto;
  padding-left: clamp(1.5rem, 5vw, 5rem);
  border-left: 1px solid var(--line-light);
}

.studio-copy .eyebrow {
  color: var(--blush);
}

.studio-copy > p:not(.eyebrow) {
  max-width: 32rem;
  margin: 2.5rem 0;
  color: rgba(255, 249, 247, 0.77);
}

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

.visit {
  display: grid;
  grid-template-columns: 5rem minmax(21rem, 0.9fr) minmax(25rem, 1.1fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding: var(--section-space) var(--page-gutter);
  background: var(--paper);
}

.visit-lead h2 {
  margin: 0;
  color: var(--burgundy);
  font-family: var(--display);
  font-size: clamp(6.5rem, 14vw, 14rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.visit-lead h2 span {
  color: var(--blush);
}

.visit-address {
  margin: 3rem 0 0;
  padding-left: clamp(1rem, 5vw, 5rem);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--line-dark);
}

.detail-block + .detail-block {
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.detail-label {
  margin: 0 0 0.9rem;
  color: var(--burgundy-bright);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.phone-display {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
}

.phone-display:hover {
  color: var(--burgundy);
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(11, 9, 10, 0.1);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dd {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.hours-note {
  margin: 0.85rem 0 0;
  color: rgba(11, 9, 10, 0.68);
  font-size: 0.74rem;
}

.visit-actions {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.5rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.social-link:hover {
  color: var(--burgundy);
}

.site-footer {
  padding: clamp(4rem, 8vw, 7rem) var(--page-gutter) 2rem;
  color: var(--paper);
  background: var(--ink);
}

.footer-word {
  padding-bottom: clamp(3rem, 7vw, 6rem);
  color: var(--blush);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(7rem, 22vw, 22rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.55;
}

.footer-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 249, 247, 0.7);
  font-size: 0.82rem;
}

.footer-meta a {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.7rem;
  text-decoration: none;
}

.demo-note {
  margin: 0;
  padding-top: 1.5rem;
  color: rgba(255, 249, 247, 0.62);
  border-top: 1px solid var(--line-light);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}

.mobile-call {
  display: none;
}

@keyframes reveal-copy {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-art {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.025);
  }
}

@media (max-width: 1080px) {
  .direction {
    grid-template-columns: 4rem 1fr;
  }

  .service-grid {
    grid-column: 2;
  }

  .change-panel {
    grid-template-columns: minmax(17rem, 0.65fr) minmax(31rem, 1.35fr);
  }

  .visit {
    grid-template-columns: 4rem 1fr 1.15fr;
  }

  .visit-actions {
    grid-template-columns: 1fr;
  }
}

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

  .site-nav {
    display: none;
  }

  .hero {
    min-height: max(48rem, 94svh);
    padding-top: 9rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(11, 9, 10, 0.97) 0%, rgba(11, 9, 10, 0.73) 60%, rgba(11, 9, 10, 0.3) 100%),
      linear-gradient(0deg, rgba(11, 9, 10, 0.98) 0%, transparent 58%);
  }

  .hero-art {
    right: -38%;
    width: 126%;
    opacity: 0.83;
  }

  .hero-rule {
    left: 72%;
  }

  .hero-content {
    width: 87%;
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(5.7rem, 22vw, 9rem);
  }

  .hero-intro,
  .hero-actions,
  .micro-note {
    padding-left: 0;
  }

  .hero-intro {
    width: min(30rem, 95%);
  }

  .direction,
  .visit {
    grid-template-columns: 3.5rem 1fr;
  }

  .service-grid,
  .visit-details {
    grid-column: 2;
  }

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

  .panel-visual {
    min-height: 27rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .panel-copy {
    padding-left: calc(var(--page-gutter) + 3.5rem);
  }

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

  .conversation-card h3,
  .conversation-card > p:not(.conversation-label, .copy-status),
  .conversation-actions,
  .copy-status {
    grid-column: 1;
  }

  .conversation-actions {
    grid-row: auto;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .studio-copy {
    width: min(38rem, 86%);
    margin-right: 0;
  }

  .footer-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 1.25rem;
    --section-space: 5.5rem;
  }

  body {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }

  .site-header {
    min-height: 4.7rem;
  }

  .wordmark > span {
    font-size: 1.35rem;
  }

  .header-call {
    width: auto;
    min-height: 2.75rem;
    padding-left: 0.8rem;
    gap: 0.65rem;
  }

  .header-call span:first-child {
    display: none;
  }

  .hero {
    min-height: max(44rem, 90svh);
    padding: 7.5rem var(--page-gutter) 5rem;
  }

  .hero-art {
    top: 4.7rem;
    right: -84%;
    width: 180%;
    opacity: 0.75;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(11, 9, 10, 0.98) 0%, rgba(11, 9, 10, 0.77) 62%, rgba(11, 9, 10, 0.28) 100%),
      linear-gradient(0deg, rgba(11, 9, 10, 0.98) 2%, transparent 55%);
  }

  .hero-rule {
    top: 4.7rem;
    left: 82%;
  }

  .hero-content {
    width: 100%;
  }

  .hero .eyebrow {
    display: block;
    max-width: 13rem;
  }

  .hero .eyebrow span {
    display: block;
  }

  .hero .eyebrow span + span {
    margin-top: 0.35rem;
  }

  .hero .eyebrow span + span::before {
    margin-right: 0.6rem;
  }

  .hero h1 {
    font-size: clamp(5.2rem, 27vw, 7rem);
    line-height: 0.69;
  }

  .hero h1 span:last-child {
    margin-left: 1.25rem;
  }

  .hero-intro {
    margin-top: 3rem;
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

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

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

  .micro-note {
    max-width: 19rem;
  }

  .hero-code {
    right: 1.4rem;
    bottom: 2.2rem;
    writing-mode: vertical-rl;
  }

  .hero-code span:last-child {
    display: none;
  }

  .hero-edition {
    display: none;
  }

  .direction,
  .visit {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .direction > .section-marker,
  .visit > .section-marker {
    flex-direction: row;
    align-items: center;
  }

  .direction > .section-marker span:last-child,
  .visit > .section-marker span:last-child {
    margin-left: 0.5rem;
  }

  .service-grid,
  .visit-details {
    grid-column: 1;
  }

  .section-heading h2,
  .panel-copy > h2,
  .studio-copy h2 {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
  }

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

  .service-card {
    min-height: 16rem;
  }

  .service-card h3 {
    font-size: 2.75rem;
  }

  .panel-visual {
    min-height: 21rem;
  }

  .strand-one {
    width: 21rem;
  }

  .strand-two {
    width: 17rem;
  }

  .strand-three {
    width: 26rem;
  }

  .panel-copy {
    padding: var(--section-space) var(--page-gutter);
  }

  .section-marker-panel {
    position: static;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .js .change-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .change-option:last-child {
    grid-column: 1 / -1;
  }

  .conversation-card {
    padding: 1.35rem;
  }

  .conversation-card h3 {
    font-size: 2.75rem;
  }

  .conversation-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .studio {
    min-height: 45rem;
  }

  .studio > .section-marker {
    flex-direction: row;
    align-items: center;
  }

  .studio-name {
    top: 38%;
    font-size: 14rem;
  }

  .studio-copy {
    width: 100%;
    margin: 15rem 0 0;
    padding-left: 1.25rem;
  }

  .visit-lead h2 {
    font-size: 7.8rem;
  }

  .visit-address {
    margin-top: 2.5rem;
    padding-left: 1.25rem;
  }

  .visit-details {
    gap: 2rem;
    padding: 1.5rem;
  }

  .phone-display {
    font-size: 2.55rem;
  }

  .hours-list div {
    display: block;
  }

  .hours-list dd {
    margin-top: 0.15rem;
    color: var(--burgundy);
  }

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

  .footer-word {
    font-size: 7.5rem;
  }

  .mobile-call {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    color: var(--ink);
    background: var(--blush);
    border-top: 1px solid var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-call span:last-child {
    font-variant-numeric: tabular-nums;
  }
}

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