:root {
  --ink: #2c2026;
  --ink-soft: #59464f;
  --paper: #f8eef1;
  --paper-deep: #eedee4;
  --cream: #fff9fa;
  --gold: #c48698;
  --gold-soft: #edcbd4;
  --wine: #a34d67;
  --line: rgba(44, 32, 38, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --header-height: 86px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--cream);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--ink);
  border-bottom: 1px solid rgba(44, 32, 38, 0.14);
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease);
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(248, 238, 241, 0.94);
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 25px;
  color: var(--cream);
  background: var(--wine);
  border: 1px solid var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.button:hover,
.button:focus-visible {
  color: var(--cream);
  background: #7e3950;
  border-color: #7e3950;
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.button-small {
  min-height: 46px;
  padding-inline: 20px;
}

.site-header:not(.scrolled) .header-cta {
  color: var(--ink);
  background: transparent;
  border-color: rgba(44, 32, 38, 0.34);
}

.site-header:not(.scrolled) .header-cta:hover {
  color: var(--ink);
  background: rgba(237, 203, 212, 0.55);
  border-color: rgba(44, 32, 38, 0.34);
}

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

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/images/studio-illustration-hero.webp");
  background-position: center center;
  background-size: cover;
  animation: heroDrift 18s ease-out both;
}

@keyframes heroDrift {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(248, 238, 241, 0.96) 0%, rgba(248, 238, 241, 0.78) 36%, rgba(248, 238, 241, 0.16) 67%, rgba(248, 238, 241, 0.08) 100%),
    linear-gradient(0deg, rgba(163, 77, 103, 0.12), transparent 42%);
}

.hero-inner {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-height) + 42px);
  padding-bottom: 48px;
}

.hero-copy {
  width: min(670px, 62vw);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  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: 30px;
  font-size: clamp(78px, 9.1vw, 142px);
  line-height: 0.79;
  letter-spacing: -0.065em;
}

h1 em,
h2 em {
  color: var(--gold-soft);
  font-weight: 400;
}

.hero h1 em {
  color: var(--wine);
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions,
.visit-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button-light {
  color: var(--cream);
  background: var(--wine);
  border-color: var(--wine);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease), opacity 0.3s ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 25px;
  opacity: 0.7;
}

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

.hero-facts {
  display: grid;
  width: min(720px, 66vw);
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: auto;
  margin-left: auto;
  border-top: 1px solid rgba(44, 32, 38, 0.26);
  border-bottom: 1px solid rgba(44, 32, 38, 0.26);
}

.hero-facts > div,
.hero-facts > a {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  border-right: 1px solid rgba(44, 32, 38, 0.2);
}

.hero-facts > :last-child {
  border-right: 0;
}

.fact-label {
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.58;
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.scroll-cue {
  position: absolute;
  right: 25px;
  bottom: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.scroll-cue span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.trust-bar {
  color: var(--cream);
  background: var(--ink);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-inner p {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: 15px;
}

.trust-inner p:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-inner span {
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.section {
  padding: 150px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) 1fr;
  gap: 70px;
}

.section-kicker {
  position: relative;
  padding-top: 14px;
  color: var(--wine);
}

.section-kicker::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 1px;
  background: currentColor;
}

h2 {
  margin-bottom: 48px;
  font-size: clamp(54px, 6.25vw, 94px);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.intro h2 em,
.pricing h2 em {
  color: var(--wine);
}

.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.intro-columns p,
.section-heading > p,
.pricing-copy > p,
.experience-copy > p {
  color: var(--ink-soft);
}

.intro-columns p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.85;
}

.services {
  padding-top: 132px;
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: end;
  gap: 90px;
  margin-bottom: 80px;
}

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

.section-heading > p {
  margin-bottom: 8px;
  line-height: 1.8;
}

.section-heading em {
  color: var(--wine);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 34px 34px 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.4s ease, background 0.4s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -90px auto;
  width: 170px;
  height: 170px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.08;
  transition: transform 0.5s var(--ease);
}

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

.service-card:hover:not(.service-card-dark) {
  background: var(--paper);
}

.service-card-featured {
  grid-column: span 2;
}

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

.service-card-dark p {
  color: rgba(251, 247, 240, 0.68) !important;
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card-dark .service-topline,
.service-card-dark .service-icon {
  color: var(--gold-soft);
}

.service-duration {
  opacity: 0.66;
}

.service-icon {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  margin: 42px 0 30px;
  color: var(--gold);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.service-icon svg {
  width: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-featured .service-icon {
  width: 98px;
  height: 98px;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 35px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.service-card p {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-link span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}

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

.serious-note {
  padding: 70px 0;
  color: var(--cream);
  background: var(--wine);
}

.serious-note-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.note-mark {
  color: var(--gold-soft);
  font-size: 30px;
}

.serious-note p {
  max-width: 880px;
  margin: 0;
  color: rgba(251, 247, 240, 0.8);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.45;
}

.serious-note strong {
  color: var(--cream);
  font-weight: 500;
}

.experience {
  background: var(--paper);
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.experience-image {
  position: relative;
  margin: 0;
  padding: 0 0 48px 48px;
}

.experience-image::before {
  content: "";
  position: absolute;
  inset: 52px 48px 0 0;
  border: 1px solid var(--gold);
}

.experience-image img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(50, 35, 24, 0.16);
}

.experience-image figcaption {
  position: absolute;
  right: 0;
  bottom: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.experience-copy h2 {
  margin-bottom: 44px;
}

.experience-copy h2 em {
  color: var(--wine);
}

.large-copy {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.45;
}

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

.value-list div {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  min-height: 65px;
  border-bottom: 1px solid var(--line);
}

.value-list span {
  color: var(--wine);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.value-list strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.specials {
  color: var(--cream);
  background: var(--ink);
}

.section-heading-light > p {
  color: rgba(251, 247, 240, 0.58);
}

.section-heading-light .section-kicker {
  color: var(--gold-soft);
}

.section-heading-light em {
  color: var(--gold-soft);
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.special-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.4s ease, transform 0.4s var(--ease);
}

.special-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.special-number {
  font-size: 9px;
  letter-spacing: 0.14em;
  opacity: 0.5;
}

.special-symbol {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin: 42px 0 56px;
  color: var(--gold-soft);
  border: 1px solid rgba(215, 195, 160, 0.55);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 31px;
}

.special-card h3 {
  margin-bottom: 20px;
  font-size: 29px;
  line-height: 1.1;
}

.special-card p {
  color: rgba(251, 247, 240, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.special-card > a,
.special-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.special-card > a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.special-price span {
  color: rgba(251, 247, 240, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.special-price strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  white-space: nowrap;
}

.appointment-note {
  margin: 28px 0 0;
  color: rgba(251, 247, 240, 0.46);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.pricing {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.pricing-copy p {
  max-width: 470px;
  margin-bottom: 34px;
  line-height: 1.85;
}

.price-list {
  border-top: 1px solid var(--ink);
}

.price-row {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s ease, padding 0.3s var(--ease), background 0.3s ease;
}

.price-row:hover {
  padding-inline: 24px;
  color: var(--cream);
  background: var(--ink);
}

.price-row > span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row span strong {
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 400;
}

.price-row b {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.price-row small {
  padding: 4px 7px;
  color: var(--cream);
  background: var(--wine);
  border-radius: 20px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.visit {
  position: relative;
  min-height: 870px;
  overflow: hidden;
  background: var(--ink);
}

.visit-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(44, 32, 38, 0.04) 20%, rgba(44, 32, 38, 0.2) 100%),
    url("assets/images/studio-illustration-hero.webp") center / cover;
  transform: scaleX(-1);
}

.visit-inner {
  position: relative;
  display: flex;
  min-height: 870px;
  align-items: center;
  justify-content: flex-end;
  padding-block: 90px;
}

.visit-panel {
  width: min(650px, 58vw);
  padding: clamp(48px, 6vw, 78px);
  background: rgba(243, 238, 230, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.visit-panel h2 {
  margin-bottom: 45px;
  font-size: clamp(54px, 6vw, 80px);
}

.visit-panel h2 em {
  color: var(--wine);
}

.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.visit-block {
  padding: 25px 20px 25px 0;
  border-bottom: 1px solid var(--line);
}

.visit-block:nth-child(2) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.visit-block-wide {
  grid-column: 1 / -1;
}

.visit-block > span {
  display: block;
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-block p {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}

.visit-block a,
.visit-block small {
  color: var(--ink-soft);
  font-size: 11px;
}

.visit-block a {
  border-bottom: 1px solid currentColor;
}

.visit-actions {
  margin-top: 40px;
}

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

.booking-cta {
  padding: 130px 0;
  color: var(--cream);
  background: var(--wine);
}

.booking-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.booking-inner h2 {
  margin-bottom: 0;
}

.booking-inner h2 em {
  color: var(--gold-soft);
}

.round-link {
  display: flex;
  width: 190px;
  height: 190px;
  flex: 0 0 190px;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  color: var(--ink);
  background: var(--gold-soft);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.3s ease;
}

.round-link:hover,
.round-link:focus-visible {
  background: var(--cream);
  transform: rotate(-5deg) scale(1.04);
}

.round-link b {
  font-size: 24px;
  font-weight: 400;
}

.site-footer {
  padding: 85px 0 30px;
  color: var(--cream);
  background: #171310;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.55fr;
  gap: 80px;
  padding-bottom: 70px;
}

.brand-footer {
  align-self: start;
}

.footer-contact,
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact p,
.footer-contact a,
.footer-nav a {
  margin-bottom: 8px;
  color: rgba(251, 247, 240, 0.68);
  font-size: 13px;
}

.footer-contact a:hover,
.footer-nav a:hover {
  color: var(--gold-soft);
}

.footer-nav a {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  color: rgba(251, 247, 240, 0.43);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

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

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-delay {
  transition-delay: 0.14s;
}

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

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 46px, 960px);
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 10px;
  }

  .header-cta {
    display: none;
  }

  .hero-facts {
    width: min(750px, 82vw);
  }

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

  .special-card {
    min-height: 450px;
  }

}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
    --shell: calc(100% - 38px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 110px 34px 40px;
    overflow-y: auto;
    color: var(--cream);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s var(--ease);
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu > a:not(.button) {
    padding: 8px 0;
    font-family: var(--serif);
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.05;
  }

  .mobile-menu .button {
    margin-top: 18px;
  }

  body.menu-open .site-header {
    color: var(--cream);
    background: var(--ink);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: min(620px, 92vw);
  }

  h1 {
    font-size: clamp(74px, 16vw, 110px);
  }

  .hero-facts {
    width: 100%;
    margin-left: 0;
  }

  .hero-facts > div,
  .hero-facts > a {
    padding-inline: 16px;
  }

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

  .scroll-cue {
    display: none;
  }

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

  .trust-inner p:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-inner p:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 105px 0;
  }

  .intro-grid,
  .section-heading,
  .experience-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-columns {
    gap: 35px;
  }

  .section-heading {
    margin-bottom: 58px;
  }

  .section-heading > p {
    max-width: 560px;
  }

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

  .service-card-featured {
    grid-column: span 2;
  }

  .service-card {
    min-height: 440px;
  }

  .experience-image {
    width: min(620px, 90%);
  }

  .pricing-copy {
    max-width: 620px;
  }

  .visit-panel {
    width: min(650px, 90vw);
  }

  .booking-inner h2 {
    font-size: clamp(54px, 9vw, 78px);
  }

  .round-link {
    width: 160px;
    height: 160px;
    flex-basis: 160px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

  .footer-nav {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 30px);
  }

  body {
    padding-bottom: 66px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

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

  .hero-media {
    background-position: 63% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(248, 238, 241, 0.95) 0%, rgba(248, 238, 241, 0.58) 100%), linear-gradient(0deg, rgba(163, 77, 103, 0.18), transparent 55%);
  }

  .hero-inner {
    justify-content: flex-end;
    padding-bottom: 28px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 22px;
    font-size: 9px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(68px, 21vw, 92px);
  }

  h2 {
    margin-bottom: 34px;
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: 14px;
  }

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

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

  .hero-facts {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }

  .hero-facts > div,
  .hero-facts > a {
    min-height: 67px;
    padding-inline: 12px;
  }

  .hero-facts > :nth-child(2) {
    border-right: 0;
  }

  .hero-facts > :last-child {
    display: none;
  }

  .fact-label {
    font-size: 7px;
  }

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

  .trust-inner p {
    min-height: 86px;
    gap: 10px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1.3;
  }

  .section {
    padding: 82px 0;
  }

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

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

  .service-card,
  .service-card-featured {
    min-height: 430px;
    grid-column: auto;
    padding: 28px 25px 25px;
  }

  .service-card h3 {
    font-size: 31px;
  }

  .serious-note {
    padding: 55px 0;
  }

  .serious-note-inner {
    align-items: flex-start;
    gap: 20px;
  }

  .experience-image {
    width: 100%;
    padding: 0 0 30px 30px;
  }

  .experience-image::before {
    inset: 30px 30px 0 0;
  }

  .special-card {
    min-height: 420px;
  }

  .appointment-note {
    text-align: left;
  }

  .price-row {
    min-height: 78px;
  }

  .visit,
  .visit-inner {
    min-height: 0;
  }

  .visit-image {
    position: relative;
    height: 310px;
    background-position: 65% center;
  }

  .visit-inner {
    display: block;
    width: 100%;
    padding: 0;
  }

  .visit-panel {
    width: 100%;
    padding: 65px 22px 75px;
    box-shadow: none;
  }

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

  .visit-block:nth-child(2) {
    padding-left: 0;
    border-left: 0;
  }

  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-cta {
    padding: 85px 0;
  }

  .booking-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 48px;
  }

  .booking-inner h2 {
    font-size: 15vw;
  }

  .round-link {
    width: 150px;
    height: 150px;
    flex-basis: 150px;
    align-self: flex-end;
  }

  .site-footer {
    padding-top: 65px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-nav {
    grid-column: auto;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom p:nth-child(2) {
    display: none;
  }

  .mobile-actions {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 66px;
    grid-template-columns: 1fr 1fr;
    color: var(--cream);
    background: var(--ink);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
  }

  .mobile-actions a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-actions a:last-child {
    color: var(--ink);
    background: var(--gold-soft);
  }

  .mobile-actions span {
    font-size: 8px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    opacity: 0.65;
  }

  .mobile-actions strong {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
  }
}
