:root {
  --ink: #231a19;
  --ink-soft: #5d4d4b;
  --cream: #f7f1ea;
  --paper: #fffdf9;
  --rose: #d9b5ad;
  --rose-light: #ead7d1;
  --wine: #6f293c;
  --wine-dark: #4f1b2a;
  --sage: #a8ad9c;
  --line: rgba(35, 26, 25, 0.17);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --content: min(1240px, calc(100vw - 64px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body::selection {
  color: var(--paper);
  background: var(--wine);
}

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

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

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

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

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

.concept-note {
  min-height: 34px;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--paper);
  background: var(--wine);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.concept-note span {
  padding-right: 12px;
  border-right: 1px solid rgba(255,255,255,.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.concept-note p {
  margin: 0;
}

.concept-note a {
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-weight: 700;
}

.concept-note a:hover,
.concept-note a:focus-visible {
  border-color: var(--rose);
  color: var(--rose-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  background: rgba(247, 241, 234, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  line-height: 1;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .24em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

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

.menu-toggle {
  display: none;
}

.button {
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .015em;
  transition: transform .25s ease, color .25s ease, background .25s ease, border-color .25s ease;
}

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

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

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

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

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

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

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

.button-outline-light {
  color: var(--paper);
  border-color: rgba(255,255,255,.75);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--wine);
  background: var(--paper);
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  transition: transform .25s ease;
}

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

.hero {
  height: calc(100svh - 116px);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(440px, .9fr) minmax(520px, 1.1fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  height: 100%;
  min-height: 0;
  padding: clamp(38px, 6vh, 72px) clamp(42px, 7vw, 110px) clamp(28px, 4vh, 42px) max(32px, calc((100vw - 1240px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.service-content h2,
.salon-copy h2,
.practical-title h2,
.booking-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(66px, min(7vw, 11vh), 110px);
}

.hero h1 i {
  color: var(--wine);
  font-weight: 400;
}

.hero-title-primary,
.hero-title-secondary {
  display: block;
}

.hero-title-secondary {
  margin-top: .04em;
  font-size: .82em;
}

.hero-lead {
  max-width: 540px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-facts {
  margin: auto 0 0;
  padding: 44px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  list-style: none;
}

.hero-facts li {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 13px;
}

.hero-facts span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  border-bottom-left-radius: 170px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(35, 26, 25, .42));
  pointer-events: none;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 6%;
}

.hero-caption {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 30px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-size: 12px;
}

.hero-caption span {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  font-size: 10px;
}

.section {
  width: var(--content);
  margin-inline: auto;
  padding-block: clamp(100px, 11vw, 160px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.4fr .8fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 65px;
}

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

.section-heading h2,
.service-content h2,
.salon-copy h2,
.practical-title h2,
.booking-intro h2 {
  font-size: clamp(48px, 5.7vw, 82px);
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pathway-card {
  position: relative;
  min-height: 610px;
  padding: 46px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  overflow: hidden;
  border-radius: 28px;
  isolation: isolate;
}

.pathway-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,15,15,.04) 22%, rgba(20,15,15,.8) 100%);
}

.pathway-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.pathway-card:hover img {
  transform: scale(1.035);
}

.pathway-beauty img {
  object-position: center 42%;
}

.pathway-number,
.pathway-content {
  color: var(--paper);
}

.pathway-number {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  font-size: 10px;
}

.pathway-content {
  align-self: end;
  grid-column: 1 / -1;
}

.pathway-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pathway-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.pathway-content ul {
  margin: 28px 0 30px;
  padding: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  border-top: 1px solid rgba(255,255,255,.45);
  list-style: none;
  font-size: 12px;
}

.pathway-content li::before {
  content: "·";
  margin-right: 8px;
}

.service-space {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-photo {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.service-photo img {
  height: 100%;
  object-fit: cover;
}

.service-photo > span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 9px 16px;
  color: var(--paper);
  background: rgba(35, 26, 25, .72);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.service-content {
  padding: clamp(70px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-hair {
  color: var(--ink);
  background: var(--rose-light);
}

.service-beauty {
  color: var(--paper);
  background: var(--wine);
}

.service-beauty .eyebrow {
  color: var(--rose-light);
}

.service-intro {
  max-width: 570px;
  margin: 30px 0 42px;
  color: currentColor;
  opacity: .76;
  font-size: 17px;
}

.price-list {
  margin-bottom: 40px;
  border-top: 1px solid currentColor;
}

.price-list div {
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
}

.price-list strong {
  white-space: nowrap;
}

.price-disclaimer {
  margin: 0;
  padding: 15px 24px;
  color: var(--ink-soft);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 11px;
}

.inspirations {
  padding: clamp(90px, 10vw, 145px) max(32px, calc((100vw - 1240px) / 2));
  color: var(--paper);
  background: var(--ink);
}

.inspirations-heading {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
}

.inspirations .eyebrow {
  color: var(--rose);
}

.inspirations-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}

.inspirations-heading > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 15px;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
}

.inspiration-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 5px;
  isolation: isolate;
}

.inspiration-card-tall {
  grid-row: span 2;
}

.inspiration-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(20,15,15,.8));
}

.inspiration-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.inspiration-card:nth-child(1) img {
  object-position: center 35%;
}

.inspiration-card:nth-child(2) img {
  object-position: center 32%;
}

.inspiration-card:nth-child(3) img,
.inspiration-card:nth-child(4) img {
  object-position: center 25%;
}

.inspiration-card:nth-child(5) img {
  object-position: center 35%;
}

.inspiration-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.inspiration-card div {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.inspiration-card span {
  width: 29px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  font-size: 9px;
}

.inspiration-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.inspiration-note {
  margin: 22px 0 0;
  color: rgba(255,255,255,.48);
  font-size: 10px;
}

.compact-heading {
  grid-template-columns: .65fr 1.35fr;
}

.compact-heading h2 {
  grid-column: 2;
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guidance-grid article {
  min-height: 310px;
  padding: 34px 34px 40px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.guidance-grid article:last-child {
  border-right: 0;
}

.guidance-grid span {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--wine);
  border: 1px solid var(--wine);
  border-radius: 50%;
  font-size: 10px;
}

.guidance-grid h3 {
  max-width: 300px;
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.guidance-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.salon-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--paper);
}

.salon-image {
  min-height: 760px;
  padding: 55px 0 55px 55px;
  display: grid;
  grid-template-rows: 1.08fr .92fr;
  gap: 12px;
}

.salon-space {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.salon-space--hair {
  border-top-right-radius: 220px;
}

.salon-space--beauty {
  border-bottom-right-radius: 34px;
}

.salon-space img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.salon-space--hair img {
  object-position: center 42%;
}

.salon-space--beauty img {
  object-position: center 48%;
}

.salon-space figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--paper);
  background: rgba(31, 20, 19, .82);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.salon-space figcaption span {
  color: #e9aeb9;
}

.salon-copy {
  padding: clamp(70px, 8vw, 130px);
  align-self: center;
}

.salon-copy > p:not(.eyebrow) {
  margin: 32px 0 42px;
  color: var(--ink-soft);
  font-size: 17px;
}

.salon-details {
  margin: 0;
  border-top: 1px solid var(--line);
}

.salon-details div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.salon-details dt {
  font-weight: 700;
}

.salon-details dd {
  margin: 0;
  color: var(--ink-soft);
}

.steps {
  padding-bottom: 0;
}

.step-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.step-list li {
  padding: 28px 32px 34px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.step-list li:not(:last-child) {
  margin-right: 32px;
}

.step-list > li > span {
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--wine);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
}

.step-list h3 {
  margin: 4px 0 8px;
  font-size: 15px;
}

.step-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.practical {
  width: var(--content);
  margin: clamp(100px, 11vw, 160px) auto 0;
  padding: clamp(55px, 7vw, 90px);
  color: var(--paper);
  background: var(--ink);
  border-radius: 34px 34px 0 0;
}

.practical .eyebrow {
  color: var(--rose);
}

.practical-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: .8fr .9fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

.practical-grid > div:not(.map-placeholder) {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.3);
}

.practical-grid p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

.practical-grid strong {
  color: var(--paper);
  font-weight: 600;
}

.detail-label {
  color: var(--rose) !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.map-placeholder {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(25deg, transparent 48%, rgba(255,255,255,.09) 49%, rgba(255,255,255,.09) 51%, transparent 52%),
    linear-gradient(-35deg, transparent 48%, rgba(255,255,255,.07) 49%, rgba(255,255,255,.07) 51%, transparent 52%),
    #342b29;
  background-size: 86px 70px, 115px 90px;
  border-radius: 50% 50% 6px 6px;
}

.map-placeholder p {
  z-index: 2;
  margin: 65px 0 0;
  color: var(--paper);
  text-align: center;
}

.map-ring,
.map-dot {
  position: absolute;
  top: 42%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring {
  width: 74px;
  aspect-ratio: 1;
  border: 1px solid var(--rose);
  animation: pulse 2.5s ease-out infinite;
}

.map-dot {
  width: 12px;
  aspect-ratio: 1;
  background: var(--rose);
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(.4); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

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

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

.faq-list summary {
  padding: 25px 52px 25px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--wine);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -8px 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

.booking {
  padding: clamp(80px, 10vw, 140px) max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 8vw, 130px);
  color: var(--paper);
  background: var(--wine-dark);
}

.booking .eyebrow {
  color: var(--rose);
}

.booking-intro > p:last-child {
  max-width: 480px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.68);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form label > span {
  color: var(--rose-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--paper);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 4px;
  outline: 0;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(217,181,173,.15);
}

.booking-form option {
  color: var(--ink);
}

.booking-form ::placeholder {
  color: rgba(255,255,255,.45);
}

.booking-form .button-primary {
  color: var(--ink);
  background: var(--rose-light);
}

.field-wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--rose-light);
  font-size: 12px;
}

.site-footer {
  min-height: 120px;
  padding: 30px max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
  font-size: 11px;
}

.brand-footer {
  color: var(--paper);
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,.55);
  text-align: center;
}

.site-footer > a:last-child {
  justify-self: end;
}

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

  .main-nav {
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    padding: 20px 32px 28px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 11px;
    justify-self: end;
    display: grid;
    align-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    width: 100%;
    height: 1px;
    display: block;
    background: var(--ink);
  }

  .header-cta {
    display: none;
  }

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

  .hero-copy {
    padding-left: 32px;
    padding-right: 42px;
  }

  .hero h1 {
    font-size: clamp(58px, 8vw, 82px);
  }

  .section-heading {
    grid-template-columns: .7fr 1.3fr;
  }

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

  .service-content,
  .salon-copy {
    padding: 65px 50px;
  }

  .inspiration-grid {
    grid-auto-rows: 220px;
  }
}

@media (min-width: 781px) and (max-height: 820px) {
  .hero-copy {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(62px, 9.5vh, 82px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-facts {
    padding-top: 24px;
  }
}

@media (max-width: 780px) {
  :root {
    --content: calc(100vw - 36px);
  }

  .concept-note {
    min-height: 38px;
    padding-inline: 12px;
    gap: 8px;
    font-size: 9px;
    line-height: 1.3;
  }

  .concept-note span {
    flex: 0 0 auto;
    padding-right: 8px;
  }

  .site-header {
    min-height: 70px;
    padding-inline: 18px;
  }

  .main-nav {
    top: 69px;
    padding-inline: 18px;
  }

  .brand-name {
    font-size: 15px;
  }

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

  .hero-copy {
    min-height: 0;
    padding: 52px 18px 30px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 66px);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 28px;
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-facts {
    width: 100%;
    padding-top: 32px;
  }

  .hero-visual {
    height: 420px;
    min-height: 0;
    border-bottom-left-radius: 90px;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading,
  .compact-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .section-heading > p:last-child,
  .compact-heading h2 {
    grid-column: 1;
  }

  .section-heading h2,
  .service-content h2,
  .salon-copy h2,
  .practical-title h2,
  .booking-intro h2 {
    font-size: clamp(45px, 14vw, 64px);
  }

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

  .pathway-card {
    min-height: 560px;
    padding: 30px;
  }

  .pathway-content ul {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .service-photo {
    min-height: 480px;
  }

  .service-hair .service-photo {
    order: 2;
  }

  .service-content {
    padding: 78px 18px;
  }

  .price-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .inspirations {
    padding: 82px 18px 70px;
    overflow: hidden;
  }

  .inspirations-heading {
    margin-bottom: 38px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .inspirations-heading h2 {
    font-size: clamp(49px, 15vw, 66px);
  }

  .inspiration-grid {
    width: calc(100vw - 18px);
    padding: 0 18px 16px 0;
    display: grid;
    grid-template-columns: none;
    grid-auto-columns: min(78vw, 330px);
    grid-auto-flow: column;
    grid-auto-rows: 470px;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .inspiration-card,
  .inspiration-card-tall {
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
    border-radius: 18px;
  }

  .inspiration-card h3 {
    font-size: 28px;
  }

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

  .guidance-grid article {
    min-height: 280px;
    padding-inline: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guidance-grid article:last-child {
    border-bottom: 0;
  }

  .salon-section {
    grid-template-columns: 1fr;
  }

  .salon-image {
    min-height: 650px;
    padding: 18px 0 0 18px;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
  }

  .salon-space--hair {
    border-top-right-radius: 120px;
  }

  .salon-space--beauty {
    border-bottom-right-radius: 24px;
  }

  .salon-space figcaption {
    left: 12px;
    bottom: 12px;
    padding: 8px 11px;
    font-size: 9px;
  }

  .salon-copy {
    padding: 78px 18px;
  }

  .salon-details div {
    grid-template-columns: 90px 1fr;
  }

  .step-list {
    grid-template-columns: 1fr;
  }

  .step-list li:not(:last-child) {
    margin-right: 0;
  }

  .practical {
    width: 100%;
    margin-top: 88px;
    padding: 72px 18px 18px;
    border-radius: 28px 28px 0 0;
  }

  .practical-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .map-placeholder {
    min-height: 310px;
  }

  .booking {
    padding: 82px 18px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .field-wide {
    grid-column: 1;
  }

  .site-footer {
    padding: 38px 18px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p {
    text-align: left;
  }

  .site-footer > a:last-child {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
