:root {
  --ink: #181714;
  --ink-soft: #282620;
  --paper: #f5f1e9;
  --paper-deep: #ebe4d8;
  --white: #fffdf8;
  --gold: #d8bc8a;
  --gold-deep: #a88248;
  --line: rgba(24, 23, 20, 0.17);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  min-width: 0;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.demo-bar {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.35rem 1rem;
  color: #f0dfbf;
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  background: rgba(245, 241, 233, 0.92);
  backdrop-filter: blur(18px);
  transition: height 350ms var(--ease), border-color 350ms ease, box-shadow 350ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(24, 23, 20, 0.06);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 37px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-name small {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.36em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.5vw, 2.8rem);
}

.primary-nav a {
  position: relative;
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 0.7rem 0 0.45rem;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100svh - 118px);
  max-width: 1536px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) 4vw clamp(3rem, 6vw, 6rem);
}

.hero-copy {
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3vw clamp(1rem, 6vw, 6.5rem) 1rem 2vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.7rem;
  font-size: clamp(4.2rem, 7.6vw, 8.4rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
}

h1 em {
  display: block;
  color: var(--gold-deep);
  font-weight: 400;
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 2.25rem;
  color: #4f4a41;
  font-size: clamp(1.04rem, 1.3vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.7rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, transform 260ms var(--ease);
}

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

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

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

.text-link {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3rem, 6vh, 5rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-meta strong {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
}

.hero-meta span {
  color: #635d53;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 660px;
  padding: 0 2vw 3.5rem 0;
}

.hero-image-wrap {
  height: 100%;
  min-height: 660px;
  overflow: hidden;
  background: #d9d0c4;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  transition: transform 1.2s var(--ease);
}

.hero-visual:hover img {
  transform: scale(1.018);
}

.image-note {
  position: absolute;
  right: 2vw;
  bottom: 0.65rem;
  margin: 0;
  color: #736c62;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-card {
  position: absolute;
  bottom: 6.5rem;
  left: -3rem;
  min-width: 210px;
  padding: 1.2rem 1.35rem;
  color: var(--white);
  background: rgba(24, 23, 20, 0.94);
  box-shadow: 0 25px 60px rgba(24, 23, 20, 0.2);
  animation: float-card 5s ease-in-out infinite;
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.floating-card strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.ticker {
  overflow: hidden;
  padding: 1rem 0;
  color: var(--paper);
  background: var(--gold-deep);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  animation: ticker 34s linear infinite;
}

.ticker span {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-style: italic;
  white-space: nowrap;
}

.ticker i {
  color: #f6e6c8;
  font-size: 0.75rem;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 4vw;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2,
.ritual-intro h2,
.beauty-copy h2,
.contact-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 5.7vw, 6.2rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.section-heading > p:last-child,
.ritual-intro > p:last-child,
.beauty-copy > p,
.contact-copy > p {
  max-width: 560px;
  color: #655f55;
  font-size: 1.05rem;
}

.service-grid {
  border-top: 1px solid var(--line);
}

.service-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.8rem, 3vw, 2.8rem) 0;
  border-bottom: 1px solid var(--line);
  transition: padding 350ms var(--ease), background 350ms ease;
}

.service-card:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  background: rgba(216, 188, 138, 0.08);
}

.service-number {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.service-card h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}

.service-card p {
  max-width: 630px;
  margin-bottom: 0;
  color: #6d665c;
}

.circle-button {
  width: 52px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, transform 260ms var(--ease);
}

.circle-button:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: rotate(45deg);
}

.editorial-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  color: var(--paper);
  background: var(--ink);
}

.editorial-image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
}

.editorial-image > span,
.beauty-image > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.55rem;
  color: #efe5d4;
  background: rgba(24, 23, 20, 0.72);
  font-size: 0.63rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
}

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

.editorial-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.4rem, 5.5vw, 6rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.editorial-copy > p {
  max-width: 520px;
  color: #c9c1b4;
  font-size: 1.04rem;
}

.studio-points {
  margin: 2.1rem 0 2.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.studio-points div {
  display: grid;
  grid-template-columns: 45px 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.studio-points span {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
}

.studio-points p {
  margin: 0;
  color: #e8e0d5;
}

.light-link {
  width: max-content;
  color: var(--gold);
}

.ritual {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 7rem);
}

.ritual-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.ritual-steps {
  border-top: 1px solid var(--line);
}

.ritual-steps article {
  position: relative;
  padding: 2.3rem 1rem 2.5rem 5.5rem;
  border-bottom: 1px solid var(--line);
}

.ritual-steps article > span {
  position: absolute;
  top: 2.7rem;
  left: 0;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.ritual-steps h3 {
  margin-bottom: 0.65rem;
  font-size: 2.25rem;
}

.ritual-steps p {
  max-width: 520px;
  margin-bottom: 0;
  color: #675f55;
}

.beauty-feature {
  max-width: 1440px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  margin: 0 auto clamp(3rem, 7vw, 7rem);
  background: var(--paper-deep);
}

.beauty-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem);
}

.beauty-copy ul {
  margin: 1rem 0 2.3rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.beauty-copy li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

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

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

.beauty-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.beauty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 7vw, 7rem);
}

.price-list {
  align-self: center;
  border-top: 1px solid var(--line);
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

.price-list span {
  color: #4e4941;
}

.price-list strong {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5vw;
  padding: clamp(5rem, 10vw, 9rem) max(4vw, calc((100vw - var(--container)) / 2 + 4vw));
  color: var(--paper);
  background: var(--ink);
}

.contact-copy > p {
  color: #c8c0b5;
}

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

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

.contact-details {
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details span {
  color: #9e968b;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  text-align: right;
}

.contact-details small {
  display: block;
  margin-top: 1.2rem;
  color: #847d74;
  font-size: 0.69rem;
}

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 4vw;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a9a196;
  background: var(--ink);
  font-size: 0.7rem;
}

.site-footer p {
  margin: 0;
}

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

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

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--gold);
}

.booking-dialog {
  width: min(600px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.booking-dialog::backdrop {
  background: rgba(12, 12, 10, 0.72);
  backdrop-filter: blur(5px);
}

.booking-dialog[open] {
  animation: dialog-in 350ms var(--ease);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.dialog-heading h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.dialog-heading > p:last-child {
  color: #6a6359;
}

.booking-dialog form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.booking-dialog label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.booking-dialog label:nth-of-type(3),
.booking-dialog label:nth-of-type(4),
.dialog-submit,
.form-status {
  grid-column: 1 / -1;
}

.booking-dialog input,
.booking-dialog select,
.booking-dialog textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid #a9a094;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
  text-transform: none;
}

.booking-dialog input:focus,
.booking-dialog select:focus,
.booking-dialog textarea:focus {
  border-color: var(--gold-deep);
}

.booking-dialog textarea {
  resize: vertical;
}

.dialog-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

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

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

  .header-cta {
    display: none;
  }

  .menu-toggle {
    z-index: 111;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 27px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 300ms var(--ease);
  }

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

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

  .primary-nav {
    position: fixed;
    z-index: 110;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.3rem;
    padding: 5rem 10vw;
    color: var(--paper);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 300ms ease, transform 300ms var(--ease), visibility 300ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .menu-toggle[aria-expanded="true"] span {
    background: var(--paper);
  }

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

  .hero-copy {
    padding-right: 3rem;
  }

  h1 {
    font-size: clamp(4rem, 8vw, 6.5rem);
  }

  .floating-card {
    left: -1.5rem;
  }

  .editorial-copy {
    padding: 5rem 4rem;
  }

  .beauty-copy {
    padding: 4rem;
  }

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

  .site-footer p:nth-child(2) {
    text-align: right;
  }

  .site-footer p:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .demo-bar {
    min-height: 28px;
    flex-wrap: wrap;
    gap: 0.15rem 0.35rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .site-header,
  .site-header.is-scrolled {
    width: 100%;
    max-width: 100%;
    height: 68px;
    padding: 0 1.25rem;
    backdrop-filter: none;
  }

  .menu-toggle {
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] {
    position: fixed;
    z-index: 120;
    top: 1rem;
    right: 1rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-mark {
    width: 33px;
  }

  .hero {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    padding: 3.8rem 1.25rem 4rem;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    width: 100%;
    max-width: 600px;
    margin-bottom: 1.4rem;
    font-size: clamp(3.65rem, 15.5vw, 6.2rem);
    line-height: 0.9;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .button-dark {
    width: 100%;
  }

  .hero-meta {
    margin-top: 3rem;
  }

  .hero-meta span {
    font-size: 0.64rem;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 3rem;
    padding: 0 0 2.5rem;
  }

  .hero-image-wrap {
    min-height: 500px;
  }

  .image-note {
    right: 0;
    bottom: 0.3rem;
  }

  .floating-card {
    bottom: 5rem;
    left: -0.5rem;
    min-width: 180px;
  }

  .section {
    padding: 6rem 1.25rem;
  }

  .section-heading h2,
  .ritual-intro h2,
  .beauty-copy h2,
  .contact-copy h2 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .service-card {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 0.8rem;
  }

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

  .service-card p {
    font-size: 0.88rem;
  }

  .circle-button {
    width: 42px;
  }

  .editorial-split,
  .beauty-feature,
  .pricing,
  .contact-panel,
  .ritual {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    min-height: 440px;
  }

  .editorial-copy,
  .beauty-copy {
    padding: 5rem 1.25rem;
  }

  .editorial-copy h2 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .ritual {
    gap: 3rem;
  }

  .ritual-intro {
    position: static;
  }

  .ritual-steps article {
    padding-right: 0;
    padding-left: 3.2rem;
  }

  .beauty-feature {
    margin-bottom: 1rem;
  }

  .beauty-image {
    min-height: 420px;
    order: -1;
  }

  .pricing .section-heading {
    margin-bottom: 0;
  }

  .price-list div {
    gap: 1rem;
  }

  .price-list span {
    max-width: 68%;
  }

  .contact-panel {
    padding: 6rem 1.25rem;
  }

  .contact-details div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .contact-details strong {
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem;
  }

  .site-footer p:nth-child(2),
  .site-footer p:last-child {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }

  .booking-dialog {
    width: 100%;
    max-width: none;
    margin: auto 0 0;
    padding: 3.5rem 1.25rem 2rem;
  }

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

  .booking-dialog label,
  .dialog-submit,
  .form-status {
    grid-column: 1;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
