:root {
  --blush: #f6e9e4;
  --plum: #3d2233;
  --rose: #c98b8b;
  --gold: #c9a227;
  --off-white: #fdfaf8;
  --white: #ffffff;
  --ink-soft: #65505d;
  --rose-ink: #7c4f58;
  --gold-ink: #735b0f;
  --line: rgba(61, 34, 51, 0.16);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Karla", Arial, sans-serif;
  --container: 78rem;
  --gutter: clamp(1.1rem, 5vw, 4rem);
  --section-space: clamp(4.75rem, 10vw, 8.5rem);
  --radius-small: 1rem;
  --radius-card: 1.75rem;
  --radius-large: 3.5rem;
  --radius-pill: 999px;
  --shadow-soft: 0 1.5rem 3.75rem rgba(61, 34, 51, 0.1);
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--off-white);
  color: var(--plum);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
blockquote {
  font-family: var(--font-display);
  font-weight: 500;
}

h1,
h2 {
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 13vw, 7.4rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.7rem, 9vw, 5.25rem);
}

h3 {
  line-height: 1.12;
}

em {
  font-weight: 500;
}

::selection {
  background: var(--rose);
  color: var(--plum);
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--plum);
  color: var(--off-white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
}

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

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

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

.eyebrow {
  margin-bottom: 1rem;
  color: var(--rose-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-heading > p:last-child {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.section-heading--center {
  max-width: 55rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--plum);
  color: var(--off-white);
  box-shadow: 0 0.75rem 1.75rem rgba(61, 34, 51, 0.16);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--plum);
  font-weight: 700;
  text-underline-offset: 0.35em;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(253, 250, 248, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: grid;
  min-height: 4.75rem;
  grid-template-columns: 3rem 1fr 3rem;
  align-items: center;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  line-height: 0.85;
  text-align: center;
  text-decoration: none;
}

.wordmark small {
  margin-top: 0.48rem;
  color: var(--rose-ink);
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-toggle,
.mobile-phone {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--plum);
}

.nav-toggle {
  gap: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 1px;
  background: currentColor;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.2rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.2rem) rotate(-45deg);
}

.mobile-phone {
  justify-self: end;
}

.mobile-phone svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.desktop-nav,
.header-book {
  display: none;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1.25rem var(--gutter) 1.5rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.mobile-nav:not([hidden]) {
  display: grid;
  gap: 0.2rem;
}

.mobile-nav > a:not(.button) {
  padding: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav .button {
  margin-top: 0.65rem;
}

.hero {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7.5rem);
  background:
    radial-gradient(circle at 5% 28%, rgba(201, 139, 139, 0.2) 0 7rem, transparent 7.1rem),
    var(--blush);
}

.hero::after {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(201, 162, 39, 0.36);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 43rem;
  margin-inline: auto;
  text-align: center;
}

.hero-intro {
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
}

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

.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.8rem 0 0;
  color: var(--rose-ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-note span {
  color: var(--gold-ink);
}

.hero-collage {
  position: relative;
  width: min(calc(100% - 2rem), 31rem);
  aspect-ratio: 0.9;
  margin-inline: auto;
  padding: 1.1rem;
}

.collage-orbit {
  position: absolute;
  inset: 5% 2% 7% 5%;
  border: 1px solid rgba(61, 34, 51, 0.2);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.photo-slot {
  position: absolute;
  overflow: hidden;
  background: #e8cbc4;
  box-shadow: 0 1rem 2rem rgba(61, 34, 51, 0.12);
}

.hero-photo {
  border-radius: 7rem 7rem 2rem 2rem;
}

.hero-photo--one {
  top: 2%;
  left: 2%;
  z-index: 2;
  width: 60%;
  height: 82%;
}

.hero-photo--two {
  right: 2%;
  bottom: 1%;
  z-index: 3;
  width: 46%;
  height: 69%;
  background: #d7b0ae;
}

.hero-photo img,
.look-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo--one img {
  object-position: 50% 50%;
}

.hero-photo--two img {
  object-position: 58% 50%;
}

.services-section {
  background: var(--off-white);
}

.service-menu {
  display: grid;
  gap: 1.25rem;
}

.service-group {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 0 1rem 2.5rem rgba(61, 34, 51, 0.055);
}

.service-group h3 {
  margin-bottom: 1.55rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rose);
  font-size: 1.8rem;
  text-align: center;
}

.service-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, auto) minmax(1rem, 1fr) auto;
  gap: 0.65rem;
  align-items: end;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(61, 34, 51, 0.09);
}

.service-list li:last-child {
  border-bottom: 0;
}

.service-copy {
  display: grid;
  min-width: 0;
  gap: 0.2rem;
}

.service-copy strong {
  line-height: 1.25;
}

.service-copy span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.leader {
  margin-bottom: 0.42rem;
  border-bottom: 2px dotted rgba(61, 34, 51, 0.24);
}

.price {
  min-width: 3.25rem;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1;
  text-align: right;
}

.menu-note {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-align: center;
}

.lookbook-section {
  background: var(--plum);
  color: var(--off-white);
}

.lookbook-section .eyebrow {
  color: #e6b9b8;
}

.lookbook-section .section-heading > p:last-child {
  color: #e7dce2;
}

.lookbook-grid {
  display: grid;
  gap: 0.9rem;
}

.look-tile {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--blush);
}

.look-image {
  position: absolute;
  inset: 0;
}

.look-image--one {
  object-position: 50% 50%;
}

.look-image--two {
  object-position: 42% 50%;
}

.look-image--three {
  object-position: 48% 52%;
}

.look-image--four {
  object-position: 76% 50%;
}

.look-image--five {
  object-position: 78% 50%;
}

.look-image--six {
  object-position: 82% 46%;
}

.look-tile figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  padding: 3.75rem 1.25rem 1.2rem;
  background: linear-gradient(transparent, rgba(40, 22, 32, 0.86));
  color: var(--off-white);
}

.look-tile figcaption strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
}

.look-tile figcaption span {
  color: #f0dada;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stylists-section {
  background: var(--blush);
}

.stylist-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.stylist-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.25rem;
  border: 1px solid rgba(61, 34, 51, 0.1);
  border-radius: var(--radius-card);
  background: rgba(253, 250, 248, 0.72);
  text-align: center;
}

.portrait {
  position: relative;
  width: min(11rem, 62vw);
  aspect-ratio: 1;
  flex: 0 0 auto;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 0.5rem solid var(--off-white);
  border-radius: 50%;
  background: #ddbcb3;
  box-shadow: 0 1rem 2rem rgba(61, 34, 51, 0.12);
}

.portrait span {
  position: absolute;
  display: block;
}

.portrait-halo {
  top: 9%;
  left: 10%;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(61, 34, 51, 0.2);
  border-radius: 50%;
}

.portrait-neck {
  bottom: 24%;
  left: 43%;
  width: 18%;
  height: 24%;
  border-radius: var(--radius-pill);
  background: #a87061;
}

.portrait-face {
  top: 22%;
  left: 35%;
  z-index: 2;
  width: 32%;
  height: 40%;
  border-radius: 48% 48% 45% 45%;
  background: #b98270;
}

.portrait-hair {
  top: 14%;
  left: 25%;
  z-index: 3;
  width: 53%;
  height: 55%;
  border-radius: 48% 52% 42% 45%;
  background: var(--plum);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 67% 76%, 55% 35%, 38% 69%, 8% 100%);
}

.portrait-body {
  bottom: -12%;
  left: 14%;
  width: 74%;
  height: 48%;
  border-radius: 50% 50% 0 0;
  background: var(--rose);
}

.portrait--nia {
  background: #c49b80;
}

.portrait--nia .portrait-face,
.portrait--nia .portrait-neck {
  background: #754b3a;
}

.portrait--nia .portrait-hair {
  top: 8%;
  left: 18%;
  width: 67%;
  height: 62%;
  background: repeating-radial-gradient(circle at 50% 42%, #2b1923 0 0.5rem, #4e2b3d 0.6rem 0.95rem);
  clip-path: none;
}

.portrait--nia .portrait-body {
  background: var(--gold);
}

.portrait--mateo {
  background: #d8b7a0;
}

.portrait--mateo .portrait-face,
.portrait--mateo .portrait-neck {
  background: #a96e50;
}

.portrait--mateo .portrait-hair {
  top: 17%;
  left: 30%;
  width: 43%;
  height: 24%;
  border-radius: 60% 60% 20% 20%;
  background: #34232c;
  clip-path: none;
}

.portrait--mateo .portrait-body {
  background: #7f6374;
}

.stylist-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.stylist-card p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}

.stylist-card .text-link {
  margin-top: auto;
}

.process-section {
  background: var(--off-white);
}

.process-layout {
  display: grid;
  gap: 2.5rem;
}

.process-layout .section-heading {
  margin-bottom: 0;
  text-align: center;
}

.process-layout .section-heading > p:last-child {
  margin-inline: auto;
}

.timeline {
  position: relative;
  display: grid;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0;
  gap: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 1.5rem;
  width: 1px;
  background: var(--rose);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding-block: 1.2rem;
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--rose);
  border-radius: 50%;
  background: var(--off-white);
  color: var(--rose-ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.timeline h3 {
  margin: 0 0 0.45rem;
  font-size: 1.45rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.reviews-section {
  background: var(--blush);
}

.review-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.review-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding: clamp(2rem, 6vw, 3.5rem);
  border: 1px solid rgba(61, 34, 51, 0.1);
  border-radius: var(--radius-card);
  background: var(--off-white);
  box-shadow: 0 1rem 3rem rgba(61, 34, 51, 0.07);
}

.quote-mark {
  height: 3.5rem;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 0.85;
}

.review-card blockquote {
  margin-bottom: 2rem;
  font-size: clamp(1.45rem, 4vw, 2.05rem);
  line-height: 1.35;
}

.review-card figcaption {
  display: grid;
  margin-top: auto;
}

.review-card figcaption strong {
  font-size: 0.92rem;
}

.review-card figcaption span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.booking-section {
  background: var(--off-white);
}

.booking-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.booking-form,
.studio-details {
  min-width: 0;
  height: 100%;
  padding: clamp(1.4rem, 5vw, 2.75rem);
  border-radius: var(--radius-card);
}

.booking-form {
  display: grid;
  align-content: start;
  gap: 1.15rem;
  background: var(--blush);
}

.form-row {
  display: grid;
  gap: 1.15rem;
}

.field {
  display: grid;
  min-width: 0;
  gap: 0.45rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
}

.field label span {
  color: var(--ink-soft);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(61, 34, 51, 0.24);
  border-radius: 0.85rem;
  background: var(--off-white);
  color: var(--plum);
}

.field input,
.field select {
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
}

.field textarea {
  min-height: 8rem;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #796b73;
  opacity: 1;
}

.button--submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -0.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-align: center;
}

.form-success {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(61, 34, 51, 0.18);
  border-radius: 0.85rem;
  background: var(--off-white);
  color: var(--plum);
  font-weight: 700;
  text-align: center;
}

.studio-details {
  display: flex;
  flex-direction: column;
  background: var(--plum);
  color: var(--off-white);
}

.studio-details .eyebrow {
  color: #e6b9b8;
}

.studio-details h3 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
}

.studio-details address {
  color: #eadfe5;
  font-style: normal;
}

.detail-list {
  display: grid;
  margin: 2rem 0;
  gap: 0;
}

.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid rgba(253, 250, 248, 0.18);
}

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

.detail-list dd {
  color: #eadfe5;
  text-align: right;
}

.studio-phone {
  align-self: flex-start;
  margin-bottom: 1.5rem;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-underline-offset: 0.3em;
}

.map-placeholder {
  position: relative;
  min-height: 12rem;
  margin-top: auto;
  overflow: hidden;
  border-radius: 1.15rem;
  background: #efdeda;
  color: var(--plum);
}

.map-placeholder svg {
  width: 100%;
  height: 100%;
  min-height: 12rem;
}

.map-road {
  fill: none;
  stroke: rgba(61, 34, 51, 0.28);
  stroke-width: 12;
}

.map-road--small {
  stroke-width: 6;
}

.map-pin-ring {
  fill: rgba(201, 139, 139, 0.3);
}

.map-pin {
  fill: var(--plum);
}

.map-placeholder span {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(253, 250, 248, 0.88);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 4rem 2rem;
  background: var(--plum);
  color: var(--off-white);
  border-top: 1px solid rgba(253, 250, 248, 0.16);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 0.9;
  text-decoration: none;
}

.footer-wordmark small {
  margin-top: 0.6rem;
  color: #e6b9b8;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.footer-inner > p {
  margin-bottom: 1.1rem;
  color: #eadfe5;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.5rem;
  margin-block: 0.4rem 2rem;
}

.social-links a {
  font-weight: 700;
  text-underline-offset: 0.3em;
}

.footer-inner .copyright {
  margin-bottom: 0;
  color: #cdbfc6;
  font-size: 0.8rem;
}

@media (min-width: 40rem) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 52rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 3fr) minmax(20rem, 2fr);
    gap: clamp(2.5rem, 6vw, 6rem);
  }

  .hero-copy {
    margin-inline: 0;
    text-align: left;
  }

  .hero-intro {
    margin-inline: 0;
  }

  .hero-actions,
  .hero-note {
    justify-content: flex-start;
  }

  .section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
    gap: 3rem;
    align-items: end;
  }

  .section-heading--split > p:last-child {
    justify-self: end;
    padding-bottom: 0.35rem;
  }

  .lookbook-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, 15rem);
  }

  .stylist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stylist-card {
    padding-inline: 1rem;
  }

  .look-tile {
    min-height: 0;
  }

  .look-tile--feature {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    min-height: 0;
  }

  .review-grid,
  .booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1.2fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: center;
  }

  .process-layout .section-heading {
    text-align: left;
  }

  .process-layout .section-heading > p:last-child {
    margin-inline: 0;
  }

  .timeline {
    width: 100%;
    margin: 0;
  }
}

@media (min-width: 52rem) and (hover: hover) {
  .look-tile figcaption {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  .look-tile:hover figcaption,
  .look-tile:focus-visible figcaption {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 70rem) {
  .header-inner {
    min-height: 5rem;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .nav-toggle,
  .mobile-phone,
  .mobile-nav {
    display: none !important;
  }

  .desktop-nav {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
  }

  .desktop-nav--left {
    justify-self: end;
  }

  .desktop-nav--right {
    justify-self: start;
    padding-right: 8.5rem;
  }

  .desktop-nav a {
    position: relative;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }

  .header-book {
    position: absolute;
    right: 0;
    display: inline-flex;
    min-height: 2.8rem;
    align-items: center;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-pill);
    background: var(--plum);
    color: var(--off-white);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
  }

  .service-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .service-group {
    height: 100%;
    padding: 2rem 1.5rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .button,
  .text-link,
  .desktop-nav a,
  .social-links a,
  .look-image,
  .look-tile figcaption {
    transition:
      color 180ms ease,
      background-color 180ms ease,
      border-color 180ms ease,
      opacity 220ms ease,
      transform 260ms ease;
  }

  .button--primary:hover {
    background: #542d46;
    transform: translateY(-2px);
  }

  .text-link:hover,
  .desktop-nav a:hover,
  .social-links a:hover {
    color: var(--rose-ink);
  }

  .look-tile:hover .look-image {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* iOS Safari fix: date inputs have an intrinsic minimum width that overflows
   their container on real iPhones (invisible in desktop emulation, which uses
   Chrome's engine, not WebKit's UA styles). Kill the intrinsic sizing. */
input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

/* Standard: back-to-top button with scroll-progress ring */
.btt-button {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 900;
  width: 48px; height: 48px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(17, 17, 17, 0.85); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  display: grid; place-items: center;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btt-button.btt-visible { opacity: 1; visibility: visible; transform: none; }
.btt-button:focus-visible { outline: 3px solid #c9a227; outline-offset: 3px; }
.btt-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.btt-ring circle { fill: none; stroke-width: 3; }
.btt-ring-track { stroke: rgba(255, 255, 255, 0.22); }
.btt-ring-fill { stroke: #c9a227; stroke-dasharray: 125.66; stroke-dashoffset: 125.66; stroke-linecap: round; }
.btt-arrow { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (prefers-reduced-motion: reduce) { .btt-button { transition: none; } }
