@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --gold: #d2a458;
  --gold-dark: #946426;
  --black: #0f0f0f;
  --ink: #171717;
  --nude: #f5e6d3;
  --ivory: #fffaf3;
  --white: #ffffff;
  --muted: #6d6258;
  --line: rgba(210, 164, 88, 0.22);
  --hairline: rgba(15, 15, 15, 0.1);
  --shadow: 0 28px 70px rgba(15, 15, 15, 0.14);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease-out, transform 260ms ease-out;
  will-change: transform, opacity;
}

.site-header.header-hidden {
  opacity: 0;
  transform: translateY(-22px);
}

.site-header.header-compact {
  top: 12px;
}

.nav {
  position: relative;
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 4vw, 62px);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  margin-right: 0;
  filter: none;
  pointer-events: auto;
  transform: translate(-10px, 6px);
}

.brand img {
  display: block;
  width: clamp(184px, 14.2vw, 232px);
  height: auto;
  max-height: 66px;
  object-fit: contain;
  filter: none;
}

.site-header .brand {
  filter: none;
  transform: translate(-76px, 8px);
}

.site-header .brand img {
  width: clamp(204px, 15.4vw, 258px);
  max-height: 76px;
  filter: contrast(1.34) brightness(0.72) saturate(0.92);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 40px;
  border: 1px solid rgba(201, 164, 108, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  cursor: pointer;
}

.nav-links {
  display: contents;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 2.7vw, 40px);
  min-height: 46px;
  padding: 0 clamp(34px, 3.7vw, 56px);
  border: 1px solid rgba(148, 100, 38, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 14% -18%, rgba(255, 255, 255, 0.68), transparent 36%),
    radial-gradient(circle at 86% 130%, rgba(210, 164, 88, 0.12), transparent 42%),
    linear-gradient(105deg, rgba(255, 250, 243, 0.7), rgba(245, 230, 211, 0.48) 58%, rgba(232, 205, 165, 0.42)),
    linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(241, 224, 198, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    inset 0 -1px 0 rgba(148, 100, 38, 0.08),
    0 14px 34px rgba(77, 54, 31, 0.13),
    0 4px 12px rgba(15, 15, 15, 0.06);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  pointer-events: auto;
  min-width: 0;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.nav-center a,
.dropbtn {
  color: rgba(34, 28, 22, 0.78);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  padding: 7px 0;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
}

.nav-center a:hover,
.dropbtn:hover {
  color: var(--gold-dark);
}

.nav-links > .nav-book {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-left: 0;
  padding: 0 28px;
  border: 1px solid rgba(255, 250, 243, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(226, 207, 184, 0.96));
  color: rgba(47, 34, 27, 0.94);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.145em;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 250, 243, 0.42);
  text-transform: uppercase;
  box-shadow:
    0 1px 0 rgba(255, 250, 243, 0.5),
    0 11px 26px rgba(38, 24, 17, 0.2),
    0 26px 58px rgba(77, 54, 31, 0.18);
  isolation: isolate;
  overflow: hidden;
  pointer-events: auto;
  transition: transform 220ms ease-out, border-color 220ms ease-out, box-shadow 220ms ease-out;
  white-space: nowrap;
}

.magnetic-cta {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  will-change: transform;
}

.nav-links > .nav-book::before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -42%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 243, 0.46), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%) skewX(-18deg);
  transition: opacity 240ms ease-out, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.nav-links > .nav-book::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.74), transparent 34%),
    radial-gradient(circle at 90% 120%, rgba(214, 170, 111, 0.22), transparent 42%),
    linear-gradient(180deg, #fff9ee 0%, #ead9c4 58%, #d8bd9f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -8px 16px rgba(122, 82, 52, 0.12),
    inset 0 0 0 1px rgba(117, 78, 49, 0.14);
  pointer-events: none;
  z-index: 1;
}

.nav-book-icon {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 1.4px solid rgba(74, 51, 37, 0.68);
  border-radius: 3px;
  background:
    linear-gradient(rgba(74, 51, 37, 0.68), rgba(74, 51, 37, 0.68)) 0 3px / 100% 1px no-repeat;
  box-shadow:
    inset 3px 0 0 -2px rgba(74, 51, 37, 0.58),
    inset -3px 0 0 -2px rgba(74, 51, 37, 0.58),
    0 1px 0 rgba(255, 250, 243, 0.45);
  opacity: 0.96;
}

.nav-book-label {
  position: relative;
  z-index: 2;
}

.nav-links > .nav-book:hover {
  color: rgba(35, 25, 20, 0.98);
  border-color: rgba(255, 250, 243, 0.72);
  box-shadow:
    0 13px 30px rgba(38, 24, 17, 0.24),
    0 28px 62px rgba(77, 54, 31, 0.21);
  transform: translate3d(var(--magnetic-x, 0px), calc(var(--magnetic-y, 0px) - 1px), 0);
}

.nav-links > .nav-book:hover::before {
  opacity: 1;
  transform: translateX(480%) skewX(-18deg);
}

.nav-links > .nav-book:hover::after {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.82), transparent 34%),
    radial-gradient(circle at 90% 120%, rgba(229, 181, 118, 0.26), transparent 42%),
    linear-gradient(180deg, #fffdf6 0%, #efddc7 58%, #dec4a5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -8px 16px rgba(122, 82, 52, 0.13),
    inset 0 0 0 1px rgba(117, 78, 49, 0.16);
}

.nav-center a:focus-visible,
.dropbtn:focus-visible,
.dropdown-menu a:focus-visible,
.nav-links > .nav-book:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.nav-mobile-extra {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 250px;
  display: grid;
  gap: 2px;
  padding: 12px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.62), transparent 36%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(241, 224, 198, 0.9));
  border: 1px solid rgba(148, 100, 38, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(77, 54, 31, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 180ms ease-out;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 8px 10px;
  border-radius: var(--radius);
}

.dropdown-menu a:hover {
  background: rgba(148, 100, 38, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease-out, background 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.service-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 24% -18%, rgba(238, 202, 151, 0.18), transparent 34%),
    radial-gradient(circle at 88% 118%, rgba(188, 136, 91, 0.16), transparent 42%),
    linear-gradient(180deg, #35231d 0%, #1f1512 58%, #0d0908 100%);
  color: rgba(255, 250, 243, 0.98);
  border-color: rgba(255, 250, 243, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.42),
    inset 0 -10px 18px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 250, 243, 0.075),
    0 1px 0 rgba(255, 250, 243, 0.1),
    0 13px 30px rgba(19, 11, 8, 0.26),
    0 26px 58px rgba(77, 54, 31, 0.18);
}

.btn-primary:hover {
  background:
    radial-gradient(circle at 24% -18%, rgba(238, 202, 151, 0.22), transparent 34%),
    radial-gradient(circle at 88% 118%, rgba(205, 151, 101, 0.2), transparent 42%),
    linear-gradient(180deg, #3f2a22 0%, #261a16 58%, #110c0a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.46),
    inset 0 -10px 18px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 250, 243, 0.09),
    0 15px 34px rgba(19, 11, 8, 0.3),
    0 28px 62px rgba(77, 54, 31, 0.21);
}

.btn-outline {
  color: rgba(34, 28, 22, 0.78);
  border-color: rgba(148, 100, 38, 0.18);
  background:
    radial-gradient(circle at 24% -18%, rgba(255, 255, 255, 0.68), transparent 36%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(241, 224, 198, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    inset 0 -1px 0 rgba(148, 100, 38, 0.08),
    0 8px 22px rgba(77, 54, 31, 0.09);
}

.btn-outline:hover {
  color: rgba(22, 18, 15, 0.86);
  border-color: rgba(148, 100, 38, 0.24);
  background:
    radial-gradient(circle at 24% -18%, rgba(255, 255, 255, 0.74), transparent 36%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(236, 216, 186, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 rgba(148, 100, 38, 0.09),
    0 10px 24px rgba(77, 54, 31, 0.1);
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 34%, rgba(255, 248, 239, 0.2) 0%, rgba(255, 248, 239, 0.1) 22%, rgba(255, 248, 239, 0) 50%),
    linear-gradient(92deg, rgba(49, 33, 22, 0.36) 0%, rgba(49, 33, 22, 0.2) 30%, rgba(49, 33, 22, 0.08) 52%, rgba(49, 33, 22, 0) 70%),
    var(--hero-image, url("Images/HomeHero.webp")) var(--hero-position, 66% 34%) / var(--hero-size, cover) no-repeat;
  transform: scale(1.03);
  filter: none;
}

.hero::after {
  display: none;
}

.services-hero::before {
  background:
    radial-gradient(ellipse at 20% 34%, rgba(255, 248, 239, 0.2) 0%, rgba(255, 248, 239, 0.1) 22%, rgba(255, 248, 239, 0) 50%),
    linear-gradient(92deg, rgba(49, 33, 22, 0.36) 0%, rgba(49, 33, 22, 0.2) 30%, rgba(49, 33, 22, 0.08) 52%, rgba(49, 33, 22, 0) 70%),
    var(--hero-image, url("Images/HomeHero.webp")) 66% 34% / cover no-repeat;
  filter: none;
}

.services-hero::after {
  display: none;
}

.services-hero .hero-inner {
  max-width: min(100vw - 40px, 700px);
  margin-left: clamp(32px, 8vw, 120px);
  margin-right: auto;
  padding-top: 136px;
  padding-bottom: 92px;
}

.services-hero .hero-inner::before {
  content: none;
}

.services-hero h1 {
  max-width: 640px;
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(15, 15, 15, 0.28);
}

.services-hero .lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(15, 15, 15, 0.22);
}

.services-hero .eyebrow {
  color: #f3d29b;
  text-shadow: 0 1px 10px rgba(15, 15, 15, 0.18);
}

.services-hero-media {
  display: none;
}

.hero-inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 120px 0 78px;
  z-index: 3;
}

.service-detail-page .hero-inner {
  width: auto;
  max-width: min(100vw - 40px, 700px);
  margin-left: clamp(32px, 8vw, 120px);
  margin-right: auto;
  padding-top: 136px;
  padding-bottom: 92px;
}

.service-detail-page .hero {
  align-items: start;
  padding-bottom: 0;
}

.service-detail-page .hero h1 {
  max-width: 640px;
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(15, 15, 15, 0.28);
}

.service-detail-page .hero .lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(15, 15, 15, 0.22);
}

.service-detail-page .hero .eyebrow {
  color: #f3d29b;
  text-shadow: 0 1px 10px rgba(15, 15, 15, 0.18);
}

.service-detail-page .hero-actions {
  margin-top: 22px;
}

.cosmetic-tattoo-service-page .hero {
  min-height: 100svh;
}

.cosmetic-tattoo-service-page .hero-inner {
  width: auto;
  max-width: min(100vw - 40px, 700px);
  margin-left: clamp(32px, 8vw, 120px);
  margin-right: auto;
  padding-top: 136px;
  padding-bottom: 92px;
}

.cosmetic-tattoo-service-page .hero h1 {
  max-width: 640px;
}

.cosmetic-tattoo-service-page .hero .lead {
  max-width: 560px;
}

.cosmetic-tattoo-service-page .hero-actions {
  margin-top: 22px;
}

.consultation-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(28px, 4.8vw, 68px);
  align-items: end;
  padding-bottom: 68px;
}

.consultation-hero {
  min-height: min(720px, calc(100vh - 76px));
  background:
    radial-gradient(circle at 82% 18%, rgba(210, 164, 88, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(245, 230, 211, 0.82), rgba(255, 250, 243, 0.98)),
    var(--nude);
  color: var(--ink);
}

.consultation-hero::before {
  background:
    radial-gradient(ellipse at 18% 44%, rgba(255, 250, 243, 0.78), transparent 52%),
    radial-gradient(circle at 78% 34%, rgba(210, 164, 88, 0.12), transparent 30%),
    linear-gradient(104deg, rgba(255, 250, 243, 0.72), rgba(245, 230, 211, 0.5) 58%, rgba(255, 250, 243, 0.86)),
    var(--hero-image, url("Images/HomeHero.webp")) 72% 28% / cover no-repeat;
  transform: none;
  filter: none;
}

.consultation-hero::after {
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(255, 250, 243, 0.72));
}

.consultation-hero .lead {
  color: rgba(23, 23, 23, 0.72);
}

.consultation-hero .eyebrow {
  color: #f3d29b;
}

.consultation-hero-copy {
  max-width: 820px;
}

.hero-trust-card {
  position: relative;
  padding: 28px 28px 26px;
  border: 1px solid rgba(159, 123, 68, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 12%, rgba(210, 164, 88, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(245, 230, 211, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 24px 64px rgba(159, 123, 68, 0.14);
  backdrop-filter: blur(12px);
}

.hero-trust-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(159, 123, 68, 0.1);
  border-radius: 6px;
  pointer-events: none;
}

.hero-trust-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-trust-card ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(159, 123, 68, 0.14);
  background: rgba(159, 123, 68, 0.12);
  list-style: none;
}

.hero-trust-card li {
  padding: 13px 14px;
  background: rgba(255, 250, 243, 0.66);
  color: rgba(23, 23, 23, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mobile-consultation-cta {
  display: none;
}

.mobile-plan-cta {
  display: none;
}

.eyebrow {
  display: inline-flex;
  color: #f3d29b;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-left: 32px solid rgba(201, 164, 108, 0.62);
  padding-left: 12px;
  margin-bottom: 28px;
}

.hero-inner > .eyebrow {
  border-left-color: rgba(201, 164, 108, 0.86);
  text-shadow: 0 2px 10px rgba(15, 15, 15, 0.32);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  margin: 0 0 28px;
  text-wrap: balance;
}

h3 {
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0 0 14px;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.85rem, 4.75vw, 4.72rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 4.15rem);
  max-width: 860px;
}

h3 {
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 164, 108, 0.18);
  border-top: 1px solid rgba(201, 164, 108, 0.18);
  border-bottom: 1px solid rgba(201, 164, 108, 0.18);
}

.proof-row div {
  background: #100f0e;
  color: var(--white);
  padding: 28px 30px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.proof-row strong {
  display: block;
  color: var(--gold);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 9px;
}

.proof-row .stat-odometer {
  display: flex;
  align-items: flex-start;
  gap: 1px;
  min-height: 1.04em;
  overflow: hidden;
}

.stat-odo-digit {
  display: inline-block;
  height: 1em;
  overflow: hidden;
}

.stat-odo-strip {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.stat-odo-strip span,
.stat-odo-static {
  display: block;
  height: 1em;
  line-height: 1;
}

.stat-odo-static {
  transform: translateY(-0.01em);
}

.section {
  padding: 116px 0;
  position: relative;
}

.section.dark {
  background:
    radial-gradient(circle at 10% 10%, rgba(201, 164, 108, 0.09), transparent 28%),
    linear-gradient(135deg, #0f0f0f, #15120f 58%, #0b0b0b);
  color: var(--white);
  border-top: 1px solid rgba(201, 164, 108, 0.14);
  border-bottom: 1px solid rgba(201, 164, 108, 0.14);
}

.section.nude {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.72), rgba(245, 230, 211, 0.92)),
    var(--nude);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.section-copy {
  max-width: 720px;
}

.section-copy + .grid,
.section-copy + .gallery {
  margin-top: 46px;
}

.section-copy p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 18px;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.legal-page {
  background:
    radial-gradient(circle at 14% 0%, rgba(201, 164, 108, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(245, 230, 211, 0.56) 32%, rgba(255, 250, 243, 0.98)),
    var(--ivory);
}

.legal-section {
  padding: 146px 0 120px;
}

.legal-section .container {
  width: min(100vw - 48px, 1040px);
}

.legal-copy {
  max-width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(34px, 4.8vw, 54px);
  border: 1px solid rgba(159, 123, 68, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 14%, rgba(210, 164, 88, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(245, 230, 211, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 28px 64px rgba(77, 54, 31, 0.08);
}

.legal-copy .eyebrow {
  margin-bottom: 22px;
}

.legal-copy h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4vw, 3.7rem);
  line-height: 0.96;
}

.legal-copy h2 {
  max-width: 24ch;
  margin: 42px 0 14px;
  font-size: clamp(1.48rem, 2.1vw, 2.05rem);
  line-height: 1.02;
}

.legal-copy h3 {
  margin: 30px 0 10px;
  color: rgba(23, 23, 23, 0.86);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-copy p {
  max-width: 66ch;
  color: #5d534a;
  line-height: 1.72;
}

.legal-copy p + h2,
.legal-copy p + h3 {
  scroll-margin-top: 110px;
}

.dark .section-copy p,
.dark p {
  color: rgba(255, 255, 255, 0.75);
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow:
    inset 0 0 0 1px rgba(15, 15, 15, 0.18),
    var(--shadow);
  background: var(--black);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(201, 164, 108, 0.18);
  position: relative;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.image-panel.wide {
  aspect-ratio: 16 / 10;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.9) contrast(1.03);
}

.soft-frame-panel {
  background: rgba(255, 250, 243, 0.92);
  border-color: rgba(222, 198, 159, 0.28);
  box-shadow: 0 30px 72px rgba(159, 123, 68, 0.14);
}

.soft-frame-panel::after {
  inset: 22px;
  border-color: rgba(222, 198, 159, 0.44);
  border-radius: 8px;
}

.soft-frame-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.16) 0%, rgba(255, 250, 243, 0.05) 12%, rgba(255, 250, 243, 0) 22%, rgba(255, 250, 243, 0) 78%, rgba(255, 250, 243, 0.05) 88%, rgba(255, 250, 243, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.08), rgba(255, 250, 243, 0.02) 24%, rgba(15, 15, 15, 0.02) 100%);
  pointer-events: none;
  z-index: 1;
}

.lip-blush-problem-panel img {
  object-position: 68% 50%;
}

.nano-brows-problem-panel img {
  object-position: 32% 42%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.card {
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-top: 2px solid rgba(201, 164, 108, 0.46);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 44px rgba(15, 15, 15, 0.07);
}

.card p {
  color: var(--muted);
  margin: 0;
}

.consultation-cta-card {
  min-height: 196px;
  padding: 38px 42px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.consultation-cta-card .btn {
  margin-top: 32px;
}

.consultation-cta-card p {
  line-height: 1.65;
}

.split > .card.reveal:not(.consultation-cta-card) .btn {
  margin-top: 30px;
}

.consultation-cta-card--button-only {
  min-height: 0;
  padding: 28px 32px;
  justify-content: center;
  width: fit-content;
  min-width: clamp(320px, 26vw, 420px);
  max-width: 100%;
}

.consultation-cta-card--button-only .btn {
  margin-top: 0;
}

.consultation-cta-card--about {
  min-height: 0;
  width: min(100%, 520px);
  padding: 32px 36px 34px;
}

.consultation-cta-card--about p {
  max-width: 28ch;
}

.brow-feathering-page main > .section:first-of-type .card p {
  color: #514840;
  font-weight: 500;
}

.dark .card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(201, 164, 108, 0.2);
  border-top-color: rgba(201, 164, 108, 0.58);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.card .num {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 26px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  border-bottom: 1px solid rgba(201, 164, 108, 0.42);
  padding-bottom: 9px;
}

.service-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  isolation: isolate;
  border: 1px solid rgba(201, 164, 108, 0.18);
  box-shadow: 0 22px 50px rgba(15, 15, 15, 0.12);
  text-decoration: none;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.04) 10%, rgba(15, 15, 15, 0.42) 52%, rgba(15, 15, 15, 0.92)),
    linear-gradient(90deg, rgba(201, 164, 108, 0.18), transparent 44%);
  z-index: -1;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  pointer-events: none;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--service-card-image-position, 50% 50%);
  z-index: -2;
  transition: transform 500ms ease;
  transform: translate(var(--service-card-image-shift-x, 0), var(--service-card-image-shift-y, 0)) scale(var(--service-card-image-scale, 1.08));
  filter: saturate(0.86) contrast(1.08);
  pointer-events: none;
}

.service-card:hover img {
  transform: translate(var(--service-card-image-shift-x, 0), var(--service-card-image-shift-y, 0)) scale(var(--service-card-image-hover-scale, 1.14));
}

.nano-brows-service-card img {
  object-position: 104% 24%;
  transform: scale(1.72);
}

.nano-brows-service-card:hover img {
  transform: scale(1.78);
}

.service-card p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 92%;
  font-size: 0.97rem;
  line-height: 1.55;
}

.service-card-cue {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-card-cue::after {
  content: " /";
  color: rgba(201, 164, 108, 0.92);
}

.consultation-guidance-section {
  padding-top: 12px;
}

.consultation-guidance {
  width: min(100%, 990px);
  margin-inline: auto;
  padding: 46px 50px;
  border: 1px solid rgba(159, 123, 68, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 12%, rgba(210, 164, 88, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(245, 230, 211, 0.72));
  box-shadow: 0 24px 56px rgba(159, 123, 68, 0.1);
}

.consultation-guidance h2 {
  margin-bottom: 12px;
}

.consultation-guidance p {
  max-width: 760px;
  margin-bottom: 0;
}

.consultation-guidance .actions {
  margin-top: 22px;
}

.process-cta {
  width: min(100%, 940px);
  margin: 0 auto;
  padding: 40px 46px;
  border: 1px solid rgba(159, 123, 68, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 16%, rgba(210, 164, 88, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(245, 230, 211, 0.78));
  box-shadow: 0 28px 64px rgba(159, 123, 68, 0.12);
  text-align: center;
}

.process-cta h2 {
  margin-bottom: 12px;
}

.services-process-section .section-copy {
  max-width: 760px;
}

.section.dark.services-process-section {
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 10% 10%, rgba(201, 164, 108, 0.09), transparent 28%),
    linear-gradient(135deg, #0f0f0f, #15120f 58%, #0b0b0b);
  color: var(--white);
  border-top: 1px solid rgba(201, 164, 108, 0.14);
  border-bottom: 1px solid rgba(201, 164, 108, 0.14);
}

.services-process-section .section-copy h2 {
  max-width: 720px;
  color: var(--white);
}

.services-process-grid {
  width: 100%;
  margin: 38px auto 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.section.dark.services-process-section .services-process-card {
  min-height: 0;
  padding: 30px;
  border-color: rgba(201, 164, 108, 0.2);
  border-top-color: rgba(201, 164, 108, 0.58);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 16%, rgba(201, 164, 108, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.045);
  box-shadow: none;
  color: var(--white);
  backdrop-filter: blur(10px);
}

.services-process-card:nth-child(2) {
  transform: none;
}

.services-process-card:nth-child(3) {
  transform: none;
}

.services-process-card .num {
  margin-bottom: 16px;
  font-size: 0.68rem;
  padding-bottom: 6px;
  letter-spacing: 0.16em;
}

.services-process-card h3 {
  margin-bottom: 10px;
  font-size: clamp(0.96rem, 1.05vw, 1.12rem);
  color: var(--white);
}

.services-process-card p {
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.58;
}

.process-cta p {
  margin: 0;
  color: var(--ink);
  max-width: 680px;
  margin-inline: auto;
}

.process-cta .actions {
  justify-content: center;
  margin-top: 24px;
}

.nano-brows-hero::before {
  background:
    radial-gradient(ellipse at 20% 34%, rgba(255, 248, 239, 0.2) 0%, rgba(255, 248, 239, 0.1) 22%, rgba(255, 248, 239, 0) 50%),
    linear-gradient(92deg, rgba(49, 33, 22, 0.36) 0%, rgba(49, 33, 22, 0.2) 30%, rgba(49, 33, 22, 0.08) 52%, rgba(49, 33, 22, 0) 70%),
    var(--hero-image, url("Images/HomeHero.webp")) 66% 34% / cover no-repeat;
  transform: scale(1.02);
  filter: none;
}

.nano-brows-hero::after {
  display: none;
}

.service-card-transition-lock {
  overflow: hidden;
}

.service-card-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.service-card-transition-frame {
  position: fixed;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(15, 15, 15, 0.22);
  transition:
    top 620ms cubic-bezier(0.22, 1, 0.36, 1),
    left 620ms cubic-bezier(0.22, 1, 0.36, 1),
    width 620ms cubic-bezier(0.22, 1, 0.36, 1),
    height 620ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-transition-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    object-position 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nano-brows-page .dark .card p {
  color: rgba(255, 255, 255, 0.84);
}

.nano-brows-best-for-section {
  padding-top: 18px;
}

.nano-brows-best-for-grid,
.nano-brows-checks-layout,
.nano-brows-healed-layout,
.nano-brows-cta-layout {
  align-items: stretch;
}

.nano-brows-best-for-grid .card,
.nano-brows-checks-card,
.nano-brows-healed-card,
.nano-brows-cta-layout .card {
  height: 100%;
}

.nano-brows-best-for-grid .card {
  background:
    radial-gradient(circle at 84% 16%, rgba(210, 164, 88, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(245, 230, 211, 0.8));
  border-color: rgba(159, 123, 68, 0.12);
}

.nano-brows-best-for-grid h3,
.nano-brows-healed-card h3 {
  margin-bottom: 12px;
}

.nano-brows-cta-layout {
  align-items: end;
}

.nano-brows-cta-layout .card {
  height: auto;
  align-self: end;
}

.nano-brows-checks-card {
  display: flex;
  align-items: center;
}

.nano-brows-checks-card .detail-list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nano-brows-checks-card .detail-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(159, 123, 68, 0.14);
  color: var(--muted);
  font-weight: 500;
}

.nano-brows-checks-card .detail-list li:first-child {
  padding-top: 0;
}

.nano-brows-checks-card .detail-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.nano-brows-healed-card {
  background:
    radial-gradient(circle at 86% 16%, rgba(210, 164, 88, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(245, 230, 211, 0.72));
}

.nano-brows-cta-layout .section-copy h2 {
  max-width: 560px;
}

.feathering-best-for-section {
  padding-top: 18px;
}

.feathering-best-for-grid,
.feathering-checks-layout,
.feathering-healed-layout,
.feathering-cta-layout {
  align-items: stretch;
}

.feathering-best-for-grid .card,
.feathering-checks-card,
.feathering-healed-card,
.feathering-cta-layout .card {
  height: 100%;
}

.feathering-best-for-grid .card {
  background:
    radial-gradient(circle at 84% 16%, rgba(210, 164, 88, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(245, 230, 211, 0.8));
  border-color: rgba(159, 123, 68, 0.12);
}

.feathering-best-for-grid h3,
.feathering-healed-card h3 {
  margin-bottom: 12px;
}

.feathering-checks-card {
  display: flex;
  align-items: center;
}

.feathering-checks-card .detail-list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.feathering-checks-card .detail-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(159, 123, 68, 0.14);
  color: var(--muted);
  font-weight: 500;
}

.feathering-checks-card .detail-list li:first-child {
  padding-top: 0;
}

.feathering-checks-card .detail-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.feathering-healed-card {
  background:
    radial-gradient(circle at 86% 16%, rgba(210, 164, 88, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(245, 230, 211, 0.72));
}

.feathering-cta-layout .section-copy h2 {
  max-width: 560px;
}

.lip-blush-cta-layout,
.lip-neutralisation-cta-layout,
.scalp-cta-layout {
  align-items: end;
}

.lip-blush-cta-layout .card,
.lip-neutralisation-cta-layout .card,
.scalp-cta-layout .card {
  height: auto;
  align-self: end;
}

.nano-brows-cta-layout .card .btn,
.feathering-cta-layout .card .btn,
.lip-blush-cta-layout .card .btn,
.lip-neutralisation-cta-layout .card .btn,
.scalp-cta-layout .card .btn {
  margin-top: 26px;
}

.beauty-maintenance-page .maintenance-intro-section {
  padding: 72px 0 42px;
}

.beauty-maintenance-page .maintenance-grid-section {
  padding-top: 58px;
}

.beauty-maintenance-page .maintenance-cta-section {
  padding: 58px 0 76px;
}

.maintenance-service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(0);
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out;
}

.maintenance-service-card p {
  margin-bottom: 0;
}

.maintenance-service-link {
  margin-top: auto;
  padding-top: 24px;
  color: rgba(34, 28, 22, 0.86);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 220ms ease-out, color 220ms ease-out;
}

.maintenance-service-link::after {
  content: " /";
  color: rgba(201, 164, 108, 0.92);
  display: inline-block;
  transition: transform 220ms ease-out, color 220ms ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .beauty-maintenance-page .maintenance-service-card:hover,
  .beauty-maintenance-page .maintenance-service-card:focus-within {
    transform: translateY(-2px);
    border-color: rgba(182, 145, 89, 0.24);
    box-shadow:
      0 24px 52px rgba(77, 54, 31, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.74);
  }

  .beauty-maintenance-page .maintenance-service-card:hover .maintenance-service-link,
  .beauty-maintenance-page .maintenance-service-card:focus-within .maintenance-service-link {
    color: rgba(34, 28, 22, 0.94);
  }

  .beauty-maintenance-page .maintenance-service-card:hover .maintenance-service-link::after,
  .beauty-maintenance-page .maintenance-service-card:focus-within .maintenance-service-link::after {
    transform: translateX(3px);
    color: rgba(201, 164, 108, 1);
  }
}

.beauty-detail-page .hero::before {
  background:
    radial-gradient(ellipse at 16% 20%, rgba(255, 248, 239, 0.22) 0%, rgba(255, 248, 239, 0.08) 24%, rgba(255, 248, 239, 0) 48%),
    linear-gradient(180deg, rgba(18, 14, 12, 0.14) 0%, rgba(18, 14, 12, 0.08) 16%, rgba(18, 14, 12, 0.04) 36%, rgba(18, 14, 12, 0.18) 52%, rgba(18, 14, 12, 0.5) 72%, rgba(18, 14, 12, 0.8) 100%),
    linear-gradient(96deg, rgba(58, 39, 25, 0.32) 0%, rgba(58, 39, 25, 0.14) 34%, rgba(58, 39, 25, 0.02) 64%),
    var(--hero-image, url("Images/HomeHero.webp")) 56% 26% / cover no-repeat;
}

.beauty-detail-page .detail-intro-card,
.beauty-detail-page .faq-card {
  background:
    radial-gradient(circle at 86% 16%, rgba(210, 164, 88, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(245, 230, 211, 0.76));
}

.beauty-detail-page .detail-list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.beauty-detail-page .detail-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(159, 123, 68, 0.14);
  color: var(--muted);
  font-weight: 500;
}

.beauty-detail-page .detail-list li:first-child {
  padding-top: 0;
}

.beauty-detail-page .detail-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.signature-services {
  padding: 88px 0 92px;
  overflow: hidden;
}

.specialist-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(201, 164, 108, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(245, 230, 211, 0.5)),
    var(--ivory);
}

.specialist-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

@media (min-width: 901px) {
  .specialist-copy {
    order: 1;
  }

  .specialist-portrait-wrap {
    order: 2;
  }
}

.specialist-portrait-wrap {
  position: relative;
}

.specialist-portrait {
  aspect-ratio: 4 / 5.2;
  background: rgba(255, 250, 243, 0.92);
  border-color: rgba(159, 123, 68, 0.14);
  box-shadow: 0 30px 72px rgba(159, 123, 68, 0.14);
}

.specialist-portrait img {
  object-position: 50% 50%;
  transform: scale(1);
  transform-origin: center top;
  filter: saturate(0.9) contrast(1.04);
}

.rebecca-portrait-panel img {
  object-position: 50% 42%;
}

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

.specialist-copy h2 {
  max-width: 560px;
  margin-bottom: 22px;
}

.specialist-copy p {
  max-width: 560px;
}

.natural-confidence-panel {
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(241, 224, 198, 0.82));
  border-color: rgba(222, 198, 159, 0.7);
  box-shadow: 0 30px 72px rgba(159, 123, 68, 0.14);
}

.natural-confidence-panel::after {
  inset: 9px;
  border-color: rgba(255, 250, 243, 0.42);
  border-radius: 6px;
}

.natural-confidence-panel img {
  border-radius: 6px;
  object-position: 52% 42%;
  transform: scale(1.06);
  filter: saturate(0.92) contrast(1.02);
}

.specialist-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.specialist-point {
  min-height: 74px;
  display: flex;
  align-items: flex-end;
  padding: 14px 18px;
  border: 1px solid rgba(159, 123, 68, 0.16);
  border-top: 2px solid rgba(201, 164, 108, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(245, 230, 211, 0.48));
  box-shadow: 0 18px 44px rgba(15, 15, 15, 0.06);
  color: rgba(23, 23, 23, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.signature-services::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 108, 0.42), transparent);
}

.signature-services .container {
  position: relative;
}

.signature-services-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 370px);
  gap: clamp(34px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(22px, 3vw, 30px);
}

.signature-services-head h2 {
  max-width: 720px;
}

.signature-note {
  padding: 24px 0 4px 26px;
  border-left: 1px solid rgba(201, 164, 108, 0.46);
}

.signature-note span,
.service-type,
.service-outcome {
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signature-note span {
  color: var(--gold);
  margin-bottom: 13px;
}

.signature-note p {
  margin: 0;
  color: var(--muted);
}

.signature-service-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1.08fr;
  gap: clamp(16px, 2.2vw, 26px);
  align-items: stretch;
}

.signature-card {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  min-height: 416px;
  padding: 0;
  border-color: rgba(15, 15, 15, 0.12);
  box-shadow: 0 30px 70px rgba(15, 15, 15, 0.16);
  transform: translateY(0);
  transition: border-color 220ms ease-out, box-shadow 220ms ease-out, transform 220ms ease-out;
}

.signature-card:nth-child(2) {
  margin-top: 18px;
}

.signature-card::before {
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.02) 0%, rgba(15, 15, 15, 0.22) 34%, rgba(15, 15, 15, 0.82) 76%, rgba(15, 15, 15, 0.96)),
    linear-gradient(90deg, rgba(15, 15, 15, 0.42), transparent 38%),
    linear-gradient(180deg, rgba(201, 164, 108, 0.16), transparent 28%);
}

.signature-card::after {
  inset: 18px;
  border-color: rgba(255, 255, 255, 0.18);
}

.signature-card .service-spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    radial-gradient(circle 230px at var(--spotlight-x) var(--spotlight-y), rgba(255, 250, 243, 0.13), rgba(210, 164, 88, 0.06) 30%, transparent 64%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 243, 0),
    inset 0 0 34px rgba(210, 164, 88, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease-out, box-shadow 420ms ease-out;
}

.signature-card:hover .service-spotlight,
.signature-card:focus-visible .service-spotlight,
.signature-card.service-spotlight-active .service-spotlight {
  opacity: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 243, 0.1),
    inset 0 0 34px rgba(210, 164, 88, 0.07);
}

.signature-card img {
  filter: saturate(0.82) contrast(1.08);
}

.signature-card:nth-child(1) img {
  object-position: 50% 62%;
  transform: scale(1.02);
  transform-origin: center top;
}

.signature-card:nth-child(1):hover img,
.signature-card:nth-child(1):focus-visible img {
  transform: scale(1.05);
}

.signature-card:nth-child(2) img {
  object-position: 50% 89%;
  transform: translateX(-1%) scale(1.98);
  transform-origin: center bottom;
}

.signature-card:nth-child(2):hover img,
.signature-card:nth-child(2):focus-visible img {
  transform: translateX(-1%) scale(2.02);
}

.signature-card:nth-child(3) img {
  object-position: 50% 34%;
}

.signature-card:hover,
.signature-card:focus-visible {
  border-color: rgba(201, 164, 108, 0.38);
  transform: translateY(-6px);
}

.service-index {
  position: absolute;
  top: 25px;
  left: 27px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-index::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(201, 164, 108, 0.62);
}

.service-type {
  position: absolute;
  top: 25px;
  right: 27px;
  z-index: 1;
  max-width: 150px;
  color: rgba(255, 255, 255, 0.66);
  text-align: right;
}

.service-card-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 110px 27px 48px;
}

.service-card-copy::before {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  margin-bottom: 16px;
  background: var(--gold);
}

.signature-card h3 {
  max-width: 280px;
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 600;
  letter-spacing: 0;
}

.signature-card p {
  max-width: 330px;
}

.service-outcome {
  margin-top: 18px;
  max-width: 310px;
  color: rgba(245, 230, 211, 0.78);
}

.service-artifact {
  position: absolute;
  left: 27px;
  bottom: 25px;
  z-index: 1;
  display: inline-flex;
  max-width: calc(100% - 62px);
  color: rgba(255, 250, 243, 0.52);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}

.service-touch-cue {
  display: none;
}

.signature-card:hover .service-artifact,
.signature-card:focus-visible .service-artifact {
  opacity: 1;
  transform: translateY(0);
}

.marquee {
  overflow: hidden;
  background: #11100f;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  white-space: nowrap;
  border-top: 1px solid rgba(201, 164, 108, 0.18);
  border-bottom: 1px solid rgba(201, 164, 108, 0.18);
}

.marquee-track {
  display: inline-flex;
  gap: 42px;
  padding: 13px 0;
  animation: marquee 46s linear infinite;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee-track span::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 18px;
  vertical-align: middle;
  background: var(--gold);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-page .gallery-proof-note {
  margin-top: 20px;
  color: rgba(23, 23, 23, 0.58);
  font-size: 0.92rem;
  line-height: 1.62;
}

.gallery-page .gallery-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 24px;
}

.gallery-page .gallery-filter-row button {
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(159, 123, 68, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.64);
  color: rgba(23, 23, 23, 0.66);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.085em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease-out,
    background-color 180ms ease-out,
    color 180ms ease-out,
    transform 180ms ease-out,
    box-shadow 180ms ease-out;
}

.gallery-page .gallery-filter-row button.is-active {
  border-color: rgba(159, 123, 68, 0.3);
  background: rgba(34, 28, 22, 0.94);
  color: rgba(255, 250, 243, 0.92);
  box-shadow: 0 12px 24px rgba(19, 11, 8, 0.12);
}

.gallery-page .gallery-filter-row button:hover {
  border-color: rgba(159, 123, 68, 0.24);
  color: rgba(23, 23, 23, 0.82);
  transform: translateY(-1px);
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(201, 164, 108, 0.2);
  box-shadow: 0 18px 44px rgba(15, 15, 15, 0.09);
  position: relative;
}

.gallery-page .gallery-card,
.gallery-page .gallery-showcase-card {
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(210, 164, 88, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.14), rgba(15, 15, 15, 0.06));
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out,
    opacity 220ms ease-out;
}

.gallery-page .gallery-card::after,
.gallery-page .gallery-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.02) 0%, rgba(15, 15, 15, 0.12) 56%, rgba(15, 15, 15, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.gallery-page .gallery-card[hidden] {
  display: none;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
  transition: transform 420ms ease-out, filter 420ms ease-out;
}

.gallery-page .gallery-card:hover,
.gallery-page .gallery-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 164, 108, 0.3);
  box-shadow: 0 22px 48px rgba(15, 15, 15, 0.12);
}

.gallery-page .gallery-card:hover img,
.gallery-page .gallery-showcase-card:hover img {
  transform: scale(1.02);
  filter: saturate(0.92) contrast(1.05);
}

.gallery-page .gallery-play-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 250, 243, 0.22);
  border-radius: 999px;
  background: rgba(17, 15, 13, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gallery-page .gallery-play-badge::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 11px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid rgba(255, 250, 243, 0.88);
}

.gallery-page .gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 12px 11px;
  border: 1px solid rgba(255, 250, 243, 0.16);
  border-radius: 10px;
  background: rgba(15, 15, 15, 0.42);
  color: rgba(255, 250, 243, 0.86);
  backdrop-filter: blur(12px);
}

.gallery-page .gallery-card-service,
.gallery-page .gallery-card-label {
  display: block;
}

.gallery-page .gallery-card-service {
  color: rgba(255, 250, 243, 0.74);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-page .gallery-card-label {
  color: rgba(255, 250, 243, 0.94);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
}

.gallery-page .gallery-outcomes .card p {
  color: rgba(255, 255, 255, 0.84);
}

.gallery-page .gallery-empty-state {
  margin-top: 34px;
}

.gallery-page .gallery-instagram-embed {
  margin-top: 34px;
}

.gallery-page .gallery-instagram-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: clip;
  border: 1px solid rgba(201, 164, 108, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 164, 108, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(250, 242, 230, 0.78));
  box-shadow: 0 20px 46px rgba(15, 15, 15, 0.08);
  padding: clamp(16px, 2.6vw, 26px);
}

.gallery-page .gallery-instagram-shell .elfsight-app-c4a2e64b-2073-48de-8581-40abc809a97c {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.gallery-page .gallery-embed-loading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(201, 164, 108, 0.07);
  border: 1px solid rgba(201, 164, 108, 0.16);
  color: rgba(23, 23, 23, 0.62);
  font-size: 0.82rem;
  line-height: 1.5;
  box-sizing: border-box;
  max-width: 100%;
}

.gallery-page .gallery-instagram-shell.is-loaded .gallery-embed-loading {
  display: none;
}

.gallery-page .gallery-embed-loading-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(201, 164, 108, 0.7);
}

.gallery-page .gallery-embed-loading-text {
  min-width: 0;
  overflow-wrap: break-word;
}

.gallery-page .gallery-embed-loading-link {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: normal;
}

.gallery-page .gallery-embed-loading-link:hover {
  color: var(--gold);
}

.gallery-page .gallery-instagram-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.gallery-page .gallery-instagram-cta {
  gap: 8px;
}

.gallery-page .gallery-empty-state-panel {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px;
  border: 1px solid rgba(201, 164, 108, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 164, 108, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.9), rgba(250, 242, 230, 0.74));
  box-shadow: 0 20px 46px rgba(15, 15, 15, 0.08);
  text-align: center;
}

.gallery-page .gallery-empty-state-eyebrow {
  color: rgba(23, 23, 23, 0.56);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-page .gallery-empty-state-panel h3 {
  margin: 0;
  color: rgba(23, 23, 23, 0.9);
}

.process {
  counter-reset: steps;
}

.process .card {
  position: relative;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.1);
  padding: 22px 0;
}

.price strong {
  color: var(--gold-dark);
  white-space: nowrap;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-page .pricing-note {
  margin: -10px 0 6px;
  color: rgba(23, 23, 23, 0.54);
  font-size: 0.86rem;
  line-height: 1.5;
}

.pricing-card-stack {
  display: grid;
  gap: 18px;
}

.pricing-signature-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.pricing-page .pricing-support-section {
  padding-top: 100px;
}

.pricing-page .pricing-support-section + .section {
  padding-top: 102px;
}

.pricing-maintenance-section {
  display: grid;
  gap: 34px;
}

.pricing-signature-card {
  padding: 28px 30px 26px;
}

.pricing-page .pricing-menu-card {
  min-height: 0;
  transform: translateY(0);
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out;
}

.pricing-maintenance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-secondary-card {
  padding: 28px 28px 24px;
}

@media (hover: hover) and (pointer: fine) {
  .pricing-page .pricing-menu-card:hover,
  .pricing-page .pricing-menu-card:focus-within {
    transform: translateY(-1px);
    border-color: rgba(182, 145, 89, 0.22);
    box-shadow:
      0 22px 48px rgba(77, 54, 31, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.74);
  }
}

.pricing-group-title,
.pricing-subhead {
  display: block;
  text-transform: uppercase;
}

.pricing-group-title {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.25;
}

.pricing-subhead {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 15, 15, 0.08);
  color: rgba(23, 23, 23, 0.62);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
}

.pricing-subhead + .price {
  margin-top: 4px;
}

.pricing-page .price span {
  max-width: 36ch;
}

.pricing-signature-card .price span {
  max-width: 42ch;
}

.pricing-secondary-card .price span {
  max-width: 32ch;
}

.pricing-page .price strong {
  white-space: normal;
  text-align: right;
  max-width: 170px;
}

.pricing-cta-note {
  margin: 0 0 18px;
  max-width: 28ch;
  color: rgba(23, 23, 23, 0.62);
}

.form-panel {
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(15, 15, 15, 0.1);
  border-top: 2px solid rgba(201, 164, 108, 0.58);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.consultation-explainer h2 {
  margin-bottom: 28px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.consultation-steps {
  display: grid;
  gap: 1px;
  margin: 0 0 30px;
  border: 1px solid rgba(201, 164, 108, 0.24);
  background: rgba(201, 164, 108, 0.16);
}

.consultation-steps div {
  padding: 22px 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.88), rgba(250, 239, 224, 0.72));
}

.consultation-steps span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.consultation-steps p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

@media (hover: hover) and (pointer: fine) {
  .consultation-page .hero-trust-card,
  .consultation-page .consultation-explainer,
  .consultation-page .consultation-plan-card {
    transform: translateY(0);
    transition:
      transform 220ms ease-out,
      box-shadow 220ms ease-out,
      border-color 220ms ease-out;
  }

  .consultation-page .hero-trust-card:hover,
  .consultation-page .hero-trust-card:focus-within,
  .consultation-page .consultation-explainer:hover,
  .consultation-page .consultation-explainer:focus-within,
  .consultation-page .consultation-plan-card:hover,
  .consultation-page .consultation-plan-card:focus-within {
    transform: translateY(-1px);
    border-color: rgba(182, 145, 89, 0.22);
    box-shadow:
      0 22px 48px rgba(77, 54, 31, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.74);
  }

  .consultation-page .consultation-explainer:hover .consultation-steps div,
  .consultation-page .consultation-explainer:focus-within .consultation-steps div {
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(247, 234, 216, 0.78));
  }
}

.consultation-explainer .actions {
  margin-top: 0;
}

.booking-helper {
  margin: 14px 0 0;
  color: rgba(23, 23, 23, 0.56);
  font-size: 0.82rem;
  font-weight: 800;
}

.consultation-reassurance {
  margin: 14px 0 0;
  color: rgba(23, 23, 23, 0.6);
  font-size: 0.86rem;
  font-weight: 800;
}

.consultation-detail-list {
  display: grid;
  gap: 1px;
  margin-top: 22px;
  border: 1px solid rgba(201, 164, 108, 0.22);
  background: rgba(201, 164, 108, 0.14);
}

.consultation-detail-list p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 14px 16px;
  background: rgba(255, 250, 243, 0.7);
}

.consultation-detail-list strong {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.consultation-detail-list span {
  color: var(--muted);
}

.about-principles {
  display: grid;
  gap: 16px;
}

.about-principles .card {
  padding: 26px 28px;
}

.buyer-checklist-hero::before {
  background:
    radial-gradient(ellipse at 18% 38%, rgba(255, 250, 243, 0.2) 0%, rgba(255, 250, 243, 0.08) 22%, rgba(255, 250, 243, 0) 46%),
    linear-gradient(92deg, rgba(17, 12, 10, 0.52) 0%, rgba(17, 12, 10, 0.42) 24%, rgba(17, 12, 10, 0.28) 42%, rgba(17, 12, 10, 0.08) 64%, rgba(17, 12, 10, 0.01) 100%),
    linear-gradient(180deg, rgba(14, 10, 8, 0.04) 0%, rgba(57, 35, 20, 0.14) 100%),
    var(--hero-image, url("Images/HomeHero.webp")) var(--hero-position, 74% 18%) / cover no-repeat;
}

.buyer-checklist-hero .hero-inner {
  width: auto;
  max-width: min(100vw - 40px, 1040px);
  margin-left: clamp(24px, 6vw, 96px);
  margin-right: auto;
  margin-inline-end: auto;
  padding-left: 0;
  padding-bottom: 72px;
}

.buyer-checklist-hero h1 {
  max-width: 16.5ch;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4.2vw, 4.2rem);
  line-height: 0.94;
}

.buyer-checklist-hero .lead {
  max-width: 42ch;
  color: rgba(255, 250, 243, 0.9);
  line-height: 1.52;
  text-shadow: 0 3px 18px rgba(15, 15, 15, 0.28);
}

.buyer-checklist-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 20px 0 0;
}

.buyer-checklist-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0 0 5px;
  border-bottom: 1px solid rgba(255, 250, 243, 0.28);
  color: rgba(255, 250, 243, 0.82);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.buyer-checklist-hero .hero-actions {
  margin-top: 22px;
}

.buyer-checklist-overview-section {
  padding-top: 74px;
}

.buyer-checklist-grid {
  gap: 24px;
}

.buyer-checklist-card {
  position: relative;
  min-height: 0;
  padding: 28px 28px 30px;
  border: 1px solid rgba(182, 145, 89, 0.16);
  border-top: 1px solid rgba(182, 145, 89, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(250, 244, 236, 0.92));
  box-shadow:
    0 18px 36px rgba(15, 15, 15, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.74) inset;
}

.buyer-checklist-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 66px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 164, 108, 0.44), rgba(201, 164, 108, 0.06));
  pointer-events: none;
}

.buyer-checklist-card .num {
  display: inline-flex;
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: 0;
  color: rgba(173, 124, 45, 0.94);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.buyer-checklist-card h3 {
  max-width: 20ch;
  margin-bottom: 14px;
  padding-top: 14px;
  font-size: clamp(1.08rem, 1.2vw, 1.26rem);
  line-height: 1.24;
  color: var(--ink);
}

.buyer-checklist-card p {
  max-width: 31ch;
  line-height: 1.72;
}

.buyer-checklist-questions-section {
  padding-top: 136px;
  padding-bottom: 150px;
}

.buyer-checklist-questions-layout {
  grid-template-columns: minmax(280px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(42px, 5.4vw, 82px);
  align-items: start;
}

.buyer-checklist-copy {
  max-width: 760px;
  padding-top: 20px;
}

.buyer-checklist-copy h2 {
  max-width: 10ch;
}

.buyer-checklist-copy p {
  max-width: 58ch;
}

.buyer-checklist-intro-tag {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buyer-checklist-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.buyer-checklist-question-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 184px;
  gap: 14px;
  margin: 0;
  padding: 26px 26px 28px 64px;
  border: 1px solid rgba(182, 145, 89, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(251, 246, 239, 0.94));
  box-shadow:
    0 18px 42px rgba(77, 54, 31, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.buyer-checklist-question-card.reveal {
  transition:
    opacity 600ms ease-out,
    transform 600ms ease-out,
    border-color 220ms ease-out,
    box-shadow 220ms ease-out;
}

.buyer-checklist-question-card::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(201, 164, 108, 0.44);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(245, 230, 211, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 6px 14px rgba(201, 164, 108, 0.1);
}

.buyer-checklist-question-card::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 32px;
  width: 8px;
  height: 5px;
  border-left: 1.5px solid var(--gold-dark);
  border-bottom: 1.5px solid var(--gold-dark);
  transform: rotate(-45deg);
}

.buyer-checklist-question-card h3 {
  display: block;
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.buyer-checklist-question-card p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.76;
}

@media (hover: hover) and (pointer: fine) {
  .buyer-checklist-question-card.reveal.visible:hover,
  .buyer-checklist-question-card:hover {
    border-color: rgba(182, 145, 89, 0.28);
    box-shadow:
      0 24px 52px rgba(77, 54, 31, 0.085),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
    transform: translateY(-4px);
    transition-delay: 0ms;
  }
}

.buyer-checklist-question-card.reveal:nth-child(2) {
  transition-delay: 60ms;
}

.buyer-checklist-question-card.reveal:nth-child(3) {
  transition-delay: 120ms;
}

.buyer-checklist-question-card.reveal:nth-child(4) {
  transition-delay: 180ms;
}

.buyer-checklist-question-card.reveal:nth-child(5) {
  transition-delay: 240ms;
}

.buyer-checklist-question-card.reveal:nth-child(6) {
  transition-delay: 300ms;
}

.buyer-checklist-question-card.reveal:nth-child(7) {
  transition-delay: 360ms;
}

.buyer-checklist-question-card.reveal:nth-child(8) {
  transition-delay: 420ms;
}

.buyer-checklist-aftercare-section {
  padding-top: 158px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 253, 248, 0.58), transparent 28%),
    radial-gradient(circle at 84% 82%, rgba(228, 198, 156, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.9), rgba(242, 227, 206, 0.96)),
    var(--nude);
  border-top: 1px solid rgba(201, 164, 108, 0.18);
  border-bottom: 1px solid rgba(201, 164, 108, 0.18);
  color: var(--text);
}

.buyer-checklist-aftercare-layout {
  align-items: start;
}

.buyer-checklist-aftercare-section .section-copy h2 {
  color: var(--text);
}

.buyer-checklist-aftercare-section .section-copy p {
  color: rgba(68, 56, 44, 0.88);
}

.buyer-checklist-cta-card {
  min-height: 0;
  padding: 34px 34px 36px;
  border: 1px solid rgba(214, 184, 141, 0.28);
  border-top-color: rgba(222, 193, 151, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.88), rgba(248, 239, 226, 0.92));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.32) inset,
    0 18px 42px rgba(139, 104, 58, 0.12);
}

.buyer-checklist-cta-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.buyer-checklist-cta-card p {
  margin-bottom: 22px;
  line-height: 1.7;
  color: rgba(86, 72, 58, 0.88);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.field label {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15, 15, 15, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fffdf9;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(201, 164, 108, 0.34);
  border-color: rgba(201, 164, 108, 0.7);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.step-status {
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.site-footer {
  background: #0d0c0b;
  color: var(--white);
  padding: 54px 0 24px;
  border-top: 1px solid rgba(201, 164, 108, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(332px, 1.38fr) 1fr 1fr 1fr;
  gap: 24px 34px;
  align-items: start;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  margin: 8px 0;
  font-size: 0.92rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-studio {
  width: 240px;
  max-width: 240px;
  margin-top: -54px;
}

.footer-grid > div:not(.footer-studio) {
  padding-top: 24px;
}

.site-footer .brand {
  display: inline-flex;
  margin: 0 0 8px;
}

.site-footer .brand img {
  width: min(252px, 100%);
  max-height: none;
}

.site-footer h3 {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.site-footer .footer-address {
  display: grid;
  gap: 3px;
  margin: 0 0 18px;
  width: 100%;
  max-width: 240px;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.76);
  white-space: normal;
  line-height: 1.22;
  font-size: 0.92rem;
}

.site-footer .footer-address span {
  display: block;
}

.footer-hours {
  width: 100%;
  max-width: 240px;
  padding-left: 26px;
}

.footer-hours-list {
  display: grid;
  gap: 7px;
}

.footer-hours-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  align-items: baseline;
  gap: 6px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-hours-day,
.footer-hours-time {
  display: block;
}

.footer-hours h3 {
  margin-bottom: 8px;
}

.footer-hours-day,
.footer-hours-time {
  font-size: 0.84rem;
  line-height: 1.24;
  white-space: nowrap;
}

.footer-hours-time {
  text-align: right;
  white-space: nowrap;
}

.checklist-section {
  overflow: hidden;
}

.checklist-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(201, 164, 108, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(245, 230, 211, 0.28), transparent);
  pointer-events: none;
}

.checklist-layout {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  position: relative;
}

.guide-asset {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  align-items: end;
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #12100e, #1a1713 62%, #0f0f0f);
  border: 1px solid rgba(201, 164, 108, 0.22);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.guide-asset::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 164, 108, 0.24);
  border-radius: 6px;
  pointer-events: none;
}

.guide-asset::after {
  content: "Precision / Proof / Protocol";
  position: absolute;
  right: 28px;
  top: 28px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guide-photo {
  align-self: stretch;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 38%;
  filter: saturate(0.78) contrast(1.08);
}

.guide-cover {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-glow-x: 50%;
  --tilt-glow-y: 50%;
  position: relative;
  margin: 76px 0 24px -38px;
  padding: clamp(28px, 4vw, 44px);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(245, 230, 211, 0.94));
  border: 1px solid rgba(201, 164, 108, 0.4);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.28);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, 0, 0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
  z-index: 1;
}

.guide-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 180px at var(--tilt-glow-x) var(--tilt-glow-y), rgba(255, 250, 243, 0.18), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease-out;
}

.guide-cover:hover,
.guide-cover:focus-within {
  box-shadow: 0 36px 86px rgba(0, 0, 0, 0.3);
}

.guide-cover:hover::after,
.guide-cover:focus-within::after {
  opacity: 1;
}

.guide-label {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-cover h3 {
  margin: 26px 0 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.75rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--black);
}

.guide-lines {
  display: grid;
  gap: 8px;
  width: 72%;
  margin-bottom: 24px;
}

.guide-lines span {
  height: 1px;
  background: rgba(15, 15, 15, 0.16);
}

.guide-lines span:nth-child(2) {
  width: 78%;
}

.guide-lines span:nth-child(3) {
  width: 54%;
}

.guide-cover ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.guide-cover li {
  display: flex;
  gap: 11px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.guide-cover li::before {
  content: "";
  width: 22px;
  height: 1px;
  margin-top: 0.82em;
  flex: 0 0 auto;
  background: var(--gold);
}

.guide-cover p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.checklist-copy {
  align-self: center;
  padding: 18px 0;
}

.checklist-copy h2 {
  max-width: 720px;
}

.checklist-cta {
  margin-top: 32px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(201, 164, 108, 0.34);
}

.checklist-cta p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
}

.checklist-cta .actions {
  margin-top: 28px;
}

.protocol-section {
  overflow: hidden;
}

.protocol-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(201, 164, 108, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 164, 108, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 32% 42%, black, transparent 70%);
  pointer-events: none;
}

.protocol-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
  position: relative;
}

.protocol-intro {
  position: relative;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(201, 164, 108, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 12%, rgba(201, 164, 108, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.18);
}

.protocol-intro::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  pointer-events: none;
}

.protocol-mark {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.protocol-intro h2 {
  max-width: 600px;
}

.protocol-map-draw {
  display: block;
  width: min(100%, 360px);
  margin: 30px 0 0;
  color: var(--gold);
  opacity: 0.88;
}

.protocol-map-line {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 1300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.protocol-map-line-main {
  stroke-width: 1.7;
}

.protocol-map-line-soft {
  stroke-width: 1.1;
  opacity: 0.46;
  transition-delay: 170ms;
}

.protocol-map-line-guide {
  stroke-width: 0.9;
  opacity: 0.36;
  transition-delay: 320ms;
}

.protocol-map-point {
  fill: currentColor;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.3);
  transition: opacity 420ms ease-out 760ms, transform 520ms cubic-bezier(0.22, 1, 0.36, 1) 760ms;
}

.protocol-intro.visible .protocol-map-line {
  stroke-dashoffset: 0;
}

.protocol-intro.visible .protocol-map-point {
  opacity: 0.72;
  transform: scale(1);
}

.protocol-seal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  border: 1px solid rgba(201, 164, 108, 0.22);
  background: rgba(201, 164, 108, 0.18);
}

.protocol-seal span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 15, 0.58);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.protocol-steps {
  position: relative;
  display: grid;
  gap: 18px;
}

.protocol-steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 164, 108, 0.75), transparent);
}

.protocol-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 30px 28px 0;
  color: var(--white);
}

.protocol-card.reveal {
  transform: translateY(18px);
  transition:
    opacity 680ms ease-out,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.protocol-card.reveal:nth-child(2) {
  transition-delay: 110ms;
}

.protocol-card.reveal:nth-child(3) {
  transition-delay: 220ms;
}

.protocol-card.reveal.visible {
  transform: translateY(0);
}

.protocol-card::after {
  content: "";
  position: absolute;
  left: 58px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 164, 108, 0.35), transparent);
}

.protocol-card:last-child::after {
  display: none;
}

.protocol-card .num {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: var(--black);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 34px rgba(201, 164, 108, 0.16);
}

.protocol-card h3 {
  color: var(--white);
  margin-top: 3px;
}

.protocol-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.proof-section {
  overflow: hidden;
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 164, 108, 0.12), transparent 30%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent);
  pointer-events: none;
}

.proof-layout {
  position: relative;
}

.proof-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(32px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 54px);
}

.proof-guide {
  padding: 24px 0 0 26px;
  border-left: 1px solid rgba(201, 164, 108, 0.42);
}

.proof-guide span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-guide p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(230px, auto);
  gap: 16px;
}

.proof-inspection-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 18px;
  border: 1px solid rgba(159, 123, 68, 0.16);
  background: rgba(201, 164, 108, 0.1);
}

.proof-inspection-bar span {
  position: relative;
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 250, 243, 0.48);
  color: rgba(23, 23, 23, 0.56);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 520ms ease-out,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.proof-inspection-bar span::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 123, 68, 0.62), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

.proof-inspection-bar span:nth-child(2) {
  transition-delay: 90ms;
}

.proof-inspection-bar span:nth-child(3) {
  transition-delay: 180ms;
}

.proof-inspection-bar span:nth-child(4) {
  transition-delay: 270ms;
}

.proof-inspection-bar span.is-inspected {
  opacity: 1;
  transform: translateY(0);
}

.proof-inspection-bar span.is-inspected::after {
  transform: scaleX(1);
}

.proof-frame {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(201, 164, 108, 0.2);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  isolation: isolate;
}

.proof-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  z-index: 1;
  pointer-events: none;
}

.proof-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.05) 12%, rgba(15, 15, 15, 0.38) 56%, rgba(15, 15, 15, 0.92)),
    linear-gradient(90deg, rgba(201, 164, 108, 0.13), transparent 44%);
  z-index: -1;
}

.proof-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(0.88) contrast(1.04) brightness(0.98);
  z-index: -2;
  transition: transform 650ms ease-out, filter 650ms ease-out;
}

.proof-gallery > .proof-frame:nth-child(2) > img {
  object-fit: cover;
  object-position: 56% 48%;
}

.proof-gallery > .proof-reveal-frame:nth-child(2) > .proof-cursor-reveal {
  background-position: 56% 48%;
}

.proof-frame:hover img {
  transform: scale(1.018);
  filter: saturate(0.92) contrast(1.06) brightness(1.01);
}

.proof-reveal-frame {
  --proof-x: 50%;
  --proof-y: 48%;
  --proof-radius: 0px;
  cursor: default;
}

.proof-reveal-frame .proof-cursor-reveal {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--proof-image) 50% 38%/cover no-repeat;
  clip-path: circle(var(--proof-radius) at var(--proof-x) var(--proof-y));
  filter: saturate(1) contrast(1.06) brightness(1.08);
  opacity: 0.92;
  pointer-events: none;
  transition: clip-path 260ms ease-out, opacity 260ms ease-out;
}

.proof-reveal-frame .proof-cursor-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--proof-x) var(--proof-y), rgba(255, 250, 243, 0.18), rgba(255, 250, 243, 0.04) 34%, transparent 58%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.035), rgba(15, 15, 15, 0.025));
}

.proof-reveal-frame.proof-reveal-active {
  --proof-radius: 148px;
}

.proof-reveal-frame.proof-reveal-active::before {
  border-color: rgba(255, 250, 243, 0.24);
}

.proof-touch-cue {
  display: none;
}

.proof-frame-large {
  grid-row: span 2;
  min-height: 560px;
}

.proof-frame figcaption {
  position: relative;
  z-index: 2;
  padding: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.proof-frame figcaption span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-note {
  min-height: 260px;
  padding: 28px;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(201, 164, 108, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
}

.proof-note::after {
  display: none;
}

.proof-note blockquote {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.08;
}

.proof-note p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.proof-swipe-cue {
  display: none;
}

.proof-dots {
  display: none;
}

.proof-mobile-track {
  min-width: 0;
}

.testimonial-section {
  overflow: visible;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 164, 108, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(245, 230, 211, 0.7), rgba(255, 250, 243, 0.96)),
    var(--ivory);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 4.8vw, 68px);
  align-items: start;
}

.testimonial-head {
  position: sticky;
  top: 120px;
  max-width: 470px;
}

.testimonial-head .eyebrow {
  margin-bottom: 20px;
}

.testimonial-head h2 {
  max-width: 500px;
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3vw, 3.25rem);
}

.testimonial-head p {
  max-width: 390px;
  margin: 0;
  color: rgba(23, 23, 23, 0.62);
  font-weight: 600;
}

.testimonial-swipe-cue {
  display: none;
  margin-top: 18px;
  color: rgba(23, 23, 23, 0.48);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.testimonial-swipe-cue::after {
  content: " ->";
}

.testimonial-grid {
  display: grid;
  gap: 18px;
  padding-bottom: 80px;
}

.testimonial-mobile-track {
  position: relative;
  min-width: 0;
}

.testimonial-dots {
  display: none;
}

.testimonial-card {
  position: relative;
  top: 108px;
  z-index: 1;
  padding: clamp(22px, 2.5vw, 28px);
  border: 1px solid rgba(159, 123, 68, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(245, 230, 211, 0.7)),
    var(--ivory);
  box-shadow: 0 22px 52px rgba(159, 123, 68, 0.09);
}

.testimonial-card:nth-child(1) {
  position: sticky;
  top: 108px;
}

.testimonial-card:nth-child(2) {
  position: sticky;
  top: 126px;
  z-index: 2;
}

.testimonial-card:nth-child(3) {
  position: sticky;
  top: 144px;
  z-index: 3;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(159, 123, 68, 0.1);
  border-radius: 6px;
  pointer-events: none;
}

.testimonial-card blockquote {
  position: relative;
  margin: 0 0 20px;
  color: rgba(23, 23, 23, 0.76);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.06rem, 1.25vw, 1.3rem);
  font-weight: 600;
  line-height: 1.26;
}

.testimonial-card div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(159, 123, 68, 0.16);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.testimonial-card strong {
  color: var(--ink);
}

.testimonial-card span {
  color: var(--gold-dark);
  text-align: right;
}

.persona-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.98)),
    var(--ivory);
}

.persona-head {
  max-width: 820px;
  margin-bottom: clamp(42px, 5vw, 52px);
}

.persona-head p {
  max-width: 620px;
  color: var(--muted);
  font-weight: 600;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.persona-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(245, 230, 211, 0.42));
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-top: 2px solid rgba(201, 164, 108, 0.48);
  box-shadow: 0 18px 44px rgba(15, 15, 15, 0.07);
  overflow: hidden;
}

.persona-card::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.persona-card:nth-child(2) {
  transform: translateY(-18px);
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.96), rgba(25, 21, 17, 0.96));
  border-color: rgba(201, 164, 108, 0.28);
  border-top-color: var(--gold);
  color: var(--white);
}

.persona-card:nth-child(2) p,
.persona-card:nth-child(2) small {
  color: rgba(255, 255, 255, 0.72);
}

.persona-type {
  display: block;
  margin-bottom: 32px;
  padding-bottom: 16px;
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(201, 164, 108, 0.28);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.persona-card:nth-child(2) .persona-type {
  color: var(--gold);
}

.persona-card h3 {
  max-width: 260px;
  margin-bottom: 18px;
}

.persona-card p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.persona-card small {
  display: block;
  margin-top: auto;
  padding-top: 32px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.final-cta-section {
  overflow: hidden;
  border-top: 1px solid rgba(201, 164, 108, 0.2);
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(201, 164, 108, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(15, 15, 15, 0.035), transparent 42%);
  pointer-events: none;
}

.final-cta-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.67fr);
  position: relative;
}

.final-cta-copy {
  align-self: center;
}

.final-cta-copy h2 {
  max-width: 760px;
}

.final-cta-copy .actions {
  margin-top: 28px;
}

.final-cta-copy .btn {
  min-width: 320px;
}

.final-cta-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin-top: 22px;
  border: 1px solid rgba(201, 164, 108, 0.28);
  background: rgba(201, 164, 108, 0.14);
}

.final-cta-steps span {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 250, 243, 0.72);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    background-color 520ms ease-out;
}

.final-cta-steps span::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 123, 68, 0.58), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

.final-cta-steps span:nth-child(2) {
  transition-delay: 130ms;
}

.final-cta-steps span:nth-child(2)::after {
  transition-delay: 250ms;
}

.final-cta-steps span:nth-child(3) {
  transition-delay: 260ms;
}

.final-cta-steps span:nth-child(3)::after {
  transition-delay: 380ms;
}

.final-cta-steps.is-active span {
  background: rgba(255, 250, 243, 0.84);
}

.final-cta-steps.is-active span::after {
  transform: scaleX(1);
}

.final-cta-steps span + span {
  border-left: 1px solid rgba(201, 164, 108, 0.28);
}

.consult-invite {
  position: relative;
  align-self: stretch;
  min-height: 524px;
  display: flex;
  align-items: flex-end;
  padding: clamp(18px, 2vw, 24px);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.92);
  color: var(--white);
  border: 1px solid rgba(159, 123, 68, 0.14);
  box-shadow: 0 30px 72px rgba(159, 123, 68, 0.14);
  overflow: hidden;
  isolation: isolate;
}

.consult-invite::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(159, 123, 68, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.consult-invite::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0) 58%, rgba(15, 15, 15, 0.12) 82%, rgba(15, 15, 15, 0.36) 100%);
  z-index: -1;
}

.consult-invite img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(1.02) contrast(1.03) brightness(1.18);
  z-index: -2;
  transition: filter 650ms ease-out, transform 650ms ease-out;
}

.consult-overlay {
  position: relative;
  z-index: 1;
  width: min(74%, 184px);
  margin-left: 8px;
  margin-bottom: 8px;
  padding: 12px;
  border: 1px solid rgba(201, 164, 108, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(28, 23, 18, 0.68), rgba(17, 15, 13, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.08),
    0 18px 40px rgba(15, 15, 15, 0.26);
  backdrop-filter: blur(8px);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), background 520ms ease-out;
}

.consult-invite:hover img,
.consult-invite:focus-within img {
  filter: saturate(1.04) contrast(1.04) brightness(1.22);
  transform: scale(1.012);
}

.consult-invite:hover .consult-overlay,
.consult-invite:focus-within .consult-overlay {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(28, 23, 18, 0.72), rgba(17, 15, 13, 0.82));
}

.consult-label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.consult-assurance {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(201, 164, 108, 0.22);
  background: rgba(201, 164, 108, 0.16);
}

.consult-assurance span {
  padding: 8px 9px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 250, 243, 0.82);
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-warm {
  background: var(--ivory);
}

.home-warm .hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--nude);
  color: var(--ink);
}

.home-warm .hero::before {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 250, 243, 0.18) 0%, rgba(255, 250, 243, 0.11) 32%, rgba(255, 250, 243, 0) 58%),
    radial-gradient(ellipse at 21% 47%, rgba(255, 250, 243, 0.46) 0%, rgba(255, 250, 243, 0.22) 29%, rgba(245, 230, 211, 0.065) 45%, rgba(245, 230, 211, 0) 64%),
    radial-gradient(ellipse at 70% 34%, rgba(255, 250, 243, 0) 0%, rgba(15, 15, 15, 0.036) 38%, rgba(15, 15, 15, 0) 58%),
    linear-gradient(104deg, rgba(255, 250, 243, 0.32) 0%, rgba(255, 250, 243, 0.15) 28%, rgba(245, 230, 211, 0.032) 49%, rgba(15, 15, 15, 0.008) 78%),
    linear-gradient(180deg, rgba(255, 250, 243, 0) 0%, rgba(255, 250, 243, 0.024) 62%, rgba(15, 15, 15, 0.03) 100%);
  z-index: 1;
  filter: none;
  transform: none;
}

.home-warm .hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-image, url("Images/HomeHero.webp")) 66% 34% / cover no-repeat;
  filter: saturate(1.02) contrast(1.08);
  pointer-events: none;
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(var(--hero-parallax-scale, 1.07));
  transform-origin: 68% 40%;
  will-change: transform;
}

.home-warm .hero::after {
  height: 19%;
  background:
    radial-gradient(ellipse at 27% 100%, rgba(255, 250, 243, 0.3) 0%, rgba(255, 250, 243, 0.1) 34%, rgba(255, 250, 243, 0) 60%),
    linear-gradient(180deg, transparent 0%, rgba(255, 250, 243, 0.055) 58%, rgba(255, 250, 243, 0.42) 100%),
    linear-gradient(90deg, transparent 70%, rgba(15, 15, 15, 0.034));
  z-index: 2;
  pointer-events: none;
}

.home-warm .hero-inner {
  max-width: min(1160px, calc(100vw - 64px));
  padding: clamp(66px, 8vh, 88px) 0 clamp(198px, 22vh, 250px);
}

.home-warm .hero-inner::before {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--gold), rgba(214, 173, 98, 0.14));
}

.home-warm .hero .eyebrow {
  color: #f3d29b;
}

@media (min-width: 901px) {
  .home-warm .hero .eyebrow {
    color: #8a642b;
    border-left-color: rgba(201, 164, 108, 0.78);
    text-shadow:
      0 1px 1px rgba(255, 255, 255, 0.38),
      0 2px 8px rgba(64, 42, 20, 0.18);
  }
}

.home-warm .lead {
  max-width: 515px;
  color: rgba(23, 23, 23, 0.73);
  line-height: 1.68;
  text-shadow: 0 1px 0 rgba(255, 250, 243, 0.26);
}

.home-warm .hero h1 {
  max-width: 570px;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 4.75vw, 4.72rem);
  line-height: 1;
  letter-spacing: 0;
}

.home-warm .hero h1 span {
  display: block;
}

.home-warm .hero-actions {
  margin-top: 34px;
  gap: 14px;
}

.home-warm .hero-actions .btn {
  min-height: 48px;
  padding: 13px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.075em;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.22),
    0 9px 22px rgba(15, 15, 15, 0.07);
}

.home-warm .hero-actions .btn-primary {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% -18%, rgba(238, 202, 151, 0.18), transparent 34%),
    radial-gradient(circle at 88% 118%, rgba(188, 136, 91, 0.16), transparent 42%),
    linear-gradient(180deg, #35231d 0%, #1f1512 58%, #0d0908 100%);
  color: rgba(255, 250, 243, 0.98);
  border-color: rgba(255, 250, 243, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.42),
    inset 0 -10px 18px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 250, 243, 0.075),
    0 1px 0 rgba(255, 250, 243, 0.1),
    0 13px 30px rgba(19, 11, 8, 0.26),
    0 26px 58px rgba(77, 54, 31, 0.18);
  isolation: isolate;
}

.home-warm .hero-actions .btn-primary::before {
  content: "";
  position: absolute;
  inset: -22% auto -22% -36%;
  width: 30%;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 243, 0.24), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%) skewX(-18deg);
  transition: opacity 240ms ease-out, transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-warm .hero-actions .btn-primary::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 0%, rgba(238, 202, 151, 0.18), transparent 34%),
    radial-gradient(circle at 88% 118%, rgba(188, 136, 91, 0.16), transparent 42%),
    linear-gradient(180deg, #35231d 0%, #1f1512 58%, #0d0908 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.42),
    inset 0 -10px 18px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 250, 243, 0.075);
  pointer-events: none;
}

.hero-cta-label {
  position: relative;
  z-index: 2;
}

.hero-mobile-cue {
  display: none;
}

.home-warm .hero-actions .btn-primary:hover {
  background:
    radial-gradient(circle at 24% -18%, rgba(238, 202, 151, 0.22), transparent 34%),
    radial-gradient(circle at 88% 118%, rgba(205, 151, 101, 0.2), transparent 42%),
    linear-gradient(180deg, #3f2a22 0%, #261a16 58%, #110c0a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.46),
    inset 0 -10px 18px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 250, 243, 0.09),
    0 15px 34px rgba(19, 11, 8, 0.3),
    0 28px 62px rgba(77, 54, 31, 0.21);
  transform: translate3d(var(--magnetic-x, 0px), calc(var(--magnetic-y, 0px) - 1px), 0);
}

.home-warm .hero-actions .btn-primary:hover::before {
  opacity: 1;
  transform: translateX(520%) skewX(-18deg);
}

.home-warm .hero-actions .btn-primary:hover::after {
  background:
    radial-gradient(circle at 24% 0%, rgba(238, 202, 151, 0.22), transparent 34%),
    radial-gradient(circle at 88% 118%, rgba(205, 151, 101, 0.2), transparent 42%),
    linear-gradient(180deg, #3f2a22 0%, #261a16 58%, #110c0a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.46),
    inset 0 -10px 18px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 250, 243, 0.09);
}

.home-warm .hero .btn-outline {
  color: rgba(34, 28, 22, 0.78);
  background:
    radial-gradient(circle at 24% -18%, rgba(255, 255, 255, 0.68), transparent 36%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(241, 224, 198, 0.76));
  border-color: rgba(148, 100, 38, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    inset 0 -1px 0 rgba(148, 100, 38, 0.08),
    0 8px 22px rgba(77, 54, 31, 0.09);
}

.home-warm .hero .btn-outline:hover {
  color: rgba(22, 18, 15, 0.86);
  background:
    radial-gradient(circle at 24% -18%, rgba(255, 255, 255, 0.74), transparent 36%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(236, 216, 186, 0.82));
  border-color: rgba(148, 100, 38, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 rgba(148, 100, 38, 0.09),
    0 10px 24px rgba(77, 54, 31, 0.1);
}

.home-warm .proof-row {
  background: rgba(201, 164, 108, 0.2);
  border-color: rgba(201, 164, 108, 0.24);
}

.home-warm .proof-row div {
  background: rgba(255, 250, 243, 0.98);
  color: var(--ink);
}

.home-warm .proof-row strong {
  color: var(--gold-dark);
}

.home-warm .marquee {
  background: rgba(245, 230, 211, 0.64);
  color: rgba(23, 23, 23, 0.68);
  border-color: rgba(201, 164, 108, 0.2);
}

.home-warm .warm-protocol {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(245, 230, 211, 0.78)),
    var(--nude);
  color: var(--ink);
  border-top: 1px solid rgba(201, 164, 108, 0.24);
  border-bottom: 1px solid rgba(201, 164, 108, 0.2);
}

.home-warm .warm-protocol::before {
  background:
    linear-gradient(rgba(159, 123, 68, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 123, 68, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 34% 42%, black, transparent 72%);
}

.home-warm .protocol-intro {
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 164, 108, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(28, 23, 18, 0.98), rgba(17, 15, 13, 0.98));
  color: var(--white);
  border-color: rgba(201, 164, 108, 0.36);
  box-shadow: 0 30px 78px rgba(159, 123, 68, 0.18);
}

.home-warm .protocol-intro::after {
  border-color: rgba(255, 255, 255, 0.09);
}

.home-warm .protocol-mark {
  color: rgba(255, 255, 255, 0.54);
}

.home-warm .protocol-intro h2 {
  color: var(--white);
}

.home-warm .protocol-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.home-warm .protocol-intro .protocol-mark {
  color: rgba(255, 255, 255, 0.54);
}

.home-warm .protocol-card,
.home-warm .protocol-card h3 {
  color: var(--ink);
}

.home-warm .protocol-card p {
  color: rgba(23, 23, 23, 0.64);
}

.home-warm .protocol-card::after {
  background: linear-gradient(90deg, rgba(159, 123, 68, 0.3), transparent);
}

.home-warm .protocol-seal {
  border-color: rgba(201, 164, 108, 0.3);
  background: rgba(201, 164, 108, 0.16);
}

.home-warm .protocol-seal span {
  background: rgba(255, 255, 255, 0.045);
  color: var(--gold);
}

.home-warm .signature-card {
  border-color: rgba(159, 123, 68, 0.28);
  box-shadow: 0 30px 72px rgba(159, 123, 68, 0.16);
}

.home-warm .signature-services {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.64), rgba(245, 230, 211, 0.9)),
    var(--nude);
}

.home-warm .signature-services::after {
  content: "";
  position: absolute;
  top: 54px;
  right: max(24px, calc((100vw - 1160px) / 2));
  width: 112px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 164, 108, 0.78), transparent);
  pointer-events: none;
}

.home-warm .signature-note {
  border-left-color: rgba(159, 123, 68, 0.42);
}

.home-warm .signature-card:nth-child(2) {
  box-shadow: 0 36px 82px rgba(15, 15, 15, 0.2);
}

.home-warm .service-index::after {
  width: 44px;
  background: rgba(201, 164, 108, 0.74);
}

.home-warm .service-outcome {
  color: rgba(255, 250, 243, 0.82);
}

.home-warm .guide-asset {
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.82), rgba(245, 230, 211, 0.78)),
    #f1dcc1;
  border-color: rgba(201, 164, 108, 0.3);
  box-shadow: 0 28px 72px rgba(159, 123, 68, 0.15);
}

.home-warm .guide-asset::before {
  border-color: rgba(201, 164, 108, 0.24);
}

.home-warm .guide-asset::after {
  color: rgba(23, 23, 23, 0.44);
}

.home-warm .guide-cover {
  box-shadow: 0 28px 68px rgba(159, 123, 68, 0.2);
}

.home-warm .warm-proof {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(245, 230, 211, 0.82)),
    var(--nude);
  color: var(--ink);
  border-top: 1px solid rgba(201, 164, 108, 0.22);
  border-bottom: 1px solid rgba(201, 164, 108, 0.2);
}

.home-warm .warm-proof::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(201, 164, 108, 0.18), transparent 31%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 48%);
}

.home-warm .proof-guide {
  border-left-color: rgba(159, 123, 68, 0.38);
}

.home-warm .proof-guide p {
  color: rgba(23, 23, 23, 0.66);
}

.home-warm .proof-head {
  margin-bottom: clamp(46px, 5.4vw, 60px);
}

.home-warm .proof-frame {
  border-color: rgba(159, 123, 68, 0.28);
  box-shadow: 0 26px 68px rgba(159, 123, 68, 0.16);
}

.home-warm .proof-frame::after {
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.04) 12%, rgba(15, 15, 15, 0.42) 58%, rgba(15, 15, 15, 0.94)),
    linear-gradient(90deg, rgba(201, 164, 108, 0.16), transparent 44%);
}

.home-warm .proof-note {
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.98), rgba(245, 230, 211, 0.76)),
    var(--ivory);
}

.home-warm .proof-note blockquote {
  color: var(--ink);
}

.home-warm .proof-note p {
  color: rgba(23, 23, 23, 0.64);
}

.home-warm .proof-frame figcaption {
  padding-bottom: 28px;
}

.home-warm .testimonial-section {
  border-top: 1px solid rgba(159, 123, 68, 0.1);
  border-bottom: 1px solid rgba(159, 123, 68, 0.1);
}

.home-warm .persona-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(255, 250, 243, 0.9)),
    var(--ivory);
}

.home-warm .persona-head {
  margin-bottom: clamp(46px, 5.4vw, 58px);
}

.home-warm .persona-card {
  border-color: rgba(159, 123, 68, 0.14);
  box-shadow: 0 22px 52px rgba(159, 123, 68, 0.1);
}

.home-warm .persona-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(28, 23, 18, 0.96), rgba(17, 15, 13, 0.96));
  box-shadow: 0 26px 62px rgba(159, 123, 68, 0.16);
}

.home-warm .persona-type {
  margin-bottom: 30px;
}

.also-available-section {
  padding: 72px 0 78px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(245, 230, 211, 0.46)),
    var(--ivory);
  border-top: 1px solid rgba(159, 123, 68, 0.1);
}

.also-available-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  grid-template-areas:
    "copy list"
    "cta list";
  column-gap: clamp(28px, 4vw, 54px);
  row-gap: 18px;
  align-items: start;
}

.also-available-copy {
  grid-area: copy;
}

.also-available-copy h2 {
  max-width: 480px;
  margin-bottom: 18px;
  font-size: clamp(1.72rem, 2.6vw, 2.45rem);
}

.also-available-copy p {
  max-width: 520px;
}

.also-available-list {
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.also-available-list span {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 14px 18px;
  border: 1px solid rgba(159, 123, 68, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.9), rgba(245, 230, 211, 0.36));
  color: rgba(23, 23, 23, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(15, 15, 15, 0.04);
}

.also-available-cta {
  grid-area: cta;
  display: flex;
  justify-content: flex-start;
  align-self: start;
  margin-top: 8px;
}

.also-available-cta .btn {
  min-width: 220px;
}

.home-warm .final-cta-section {
  background:
    linear-gradient(180deg, rgba(245, 230, 211, 0.82), rgba(255, 250, 243, 0.96)),
    var(--nude);
}

.home-warm .final-cta-section::before {
  background:
    radial-gradient(circle at 78% 28%, rgba(201, 164, 108, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(255, 250, 243, 0.52), transparent 46%);
}

.home-warm .consult-invite {
  background: rgba(255, 250, 243, 0.92);
  border-color: rgba(159, 123, 68, 0.14);
  box-shadow: 0 30px 72px rgba(159, 123, 68, 0.14);
}

.home-warm .consult-invite .btn-primary {
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.24),
    inset 0 -1px 0 rgba(37, 24, 17, 0.22),
    0 12px 30px rgba(74, 50, 35, 0.22),
    0 18px 40px rgba(15, 15, 15, 0.16);
}

.site-footer a:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.fineprint {
  border-top: 1px solid rgba(201, 164, 108, 0.22);
  margin-top: 40px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.scroll-top-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 24% -18%, rgba(238, 202, 151, 0.16), transparent 34%),
    radial-gradient(circle at 88% 118%, rgba(188, 136, 91, 0.14), transparent 42%),
    linear-gradient(180deg, #35231d 0%, #1f1512 58%, #0d0908 100%);
  color: rgba(255, 250, 243, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.38),
    inset 0 -10px 18px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 250, 243, 0.07),
    0 12px 28px rgba(19, 11, 8, 0.24),
    0 24px 52px rgba(77, 54, 31, 0.16);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 180ms ease-out,
    visibility 180ms ease-out,
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms ease-out;
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-button:hover {
  border-color: rgba(255, 250, 243, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.42),
    inset 0 -10px 18px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 250, 243, 0.08),
    0 14px 32px rgba(19, 11, 8, 0.28),
    0 28px 58px rgba(77, 54, 31, 0.18);
  transform: translateY(-1px);
}

.scroll-top-button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.scroll-top-button span {
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.045) translateX(10px);
  }
  to {
    transform: scale(1.025) translateX(0);
  }
}

@keyframes navBookRotate {
  from {
    transform: translate(-50%, -50%) rotate(0turn);
  }
  to {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}

@keyframes navBookPulse {
  0%,
  100% {
    box-shadow:
      0 1px 0 rgba(255, 250, 243, 0.5),
      0 11px 26px rgba(38, 24, 17, 0.2),
      0 24px 58px rgba(77, 54, 31, 0.18);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255, 250, 243, 0.58),
      0 13px 30px rgba(38, 24, 17, 0.24),
      0 28px 68px rgba(77, 54, 31, 0.24);
  }
}

@keyframes mobileHeroCueNudge {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateY(4px);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .nav {
    width: min(980px, calc(100vw - 30px));
    gap: clamp(24px, 3.4vw, 42px);
  }

  .nav-center {
    gap: clamp(16px, 1.8vw, 24px);
    min-height: 45px;
    padding-inline: clamp(24px, 2.5vw, 34px);
  }

  .nav-center a,
  .dropbtn {
    font-size: 0.6rem;
    letter-spacing: 0.085em;
  }

  .brand img {
    width: 162px;
  }

  .site-header .brand img {
    width: 186px;
    max-height: 58px;
    filter: contrast(1.34) brightness(0.72) saturate(0.92);
  }

  .site-header .brand {
    transform: translate(-38px, 7px);
  }

}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
  }

  .nav {
    width: min(520px, calc(100vw - 28px));
    min-height: 44px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    padding: 3px 12px;
    border: 1px solid rgba(148, 100, 38, 0.18);
    border-radius: 999px;
    background:
      radial-gradient(circle at 16% -8%, rgba(255, 255, 255, 0.7), transparent 38%),
      radial-gradient(circle at 82% 128%, rgba(210, 164, 88, 0.11), transparent 42%),
      linear-gradient(180deg, rgba(255, 250, 243, 0.88), rgba(241, 224, 198, 0.74));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.62),
      inset 0 -1px 0 rgba(148, 100, 38, 0.08),
      0 8px 22px rgba(77, 54, 31, 0.12);
    backdrop-filter: blur(22px) saturate(1.18);
    -webkit-backdrop-filter: blur(22px) saturate(1.18);
    pointer-events: auto;
    gap: 0;
  }

  .brand {
    min-width: 0;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    filter: none;
    grid-column: 2;
    align-self: center;
    justify-self: center;
    transform: none;
  }

  .site-header .brand {
    position: static;
    top: auto;
    left: auto;
    grid-column: 2;
    align-self: center;
    justify-self: center;
    transform: none;
    z-index: 1;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    grid-column: 3;
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-color: rgba(34, 28, 22, 0.14);
    background: rgba(255, 250, 243, 0.3);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.52),
      0 10px 24px rgba(77, 54, 31, 0.08);
    transition:
      transform 180ms ease-out,
      box-shadow 180ms ease-out,
      border-color 180ms ease-out,
      background-color 180ms ease-out;
  }

  .nav-toggle-lines {
    display: grid;
    gap: 4px;
    width: 16px;
  }

  .nav-toggle-lines span {
    display: block;
    height: 1px;
    border-radius: 999px;
    background: rgba(34, 28, 22, 0.82);
    box-shadow: 0 1px 0 rgba(255, 250, 243, 0.45);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 17px;
    border: 1px solid rgba(148, 100, 38, 0.18);
    border-radius: 18px;
    background:
      radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.64), transparent 36%),
      linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(241, 224, 198, 0.92));
    box-shadow: 0 22px 58px rgba(77, 54, 31, 0.16);
    backdrop-filter: blur(20px) saturate(1.16);
    -webkit-backdrop-filter: blur(20px) saturate(1.16);
  }

  .nav-center {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    padding: 6px 8px;
    border: 1px solid rgba(148, 100, 38, 0.1);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.6), rgba(255, 248, 241, 0.36));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.36),
      0 8px 18px rgba(77, 54, 31, 0.05);
    backdrop-filter: blur(12px);
  }

  .nav-center > a,
  .nav-center > .dropdown > .dropbtn {
    width: 100%;
    padding: 12px 10px;
    text-align: left;
    border-radius: 10px;
  }

  .nav-center > a + a,
  .nav-center > .dropdown + a,
  .nav-center > a + .dropdown {
    border-top: 1px solid rgba(148, 100, 38, 0.1);
  }

  .nav-center > a:active,
  .nav-center > .dropdown > .dropbtn:active {
    background: rgba(148, 100, 38, 0.06);
  }

  .nav-links > .nav-book {
    order: -1;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 2px;
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    text-align: center;
    border-color: rgba(255, 250, 243, 0.18);
    background:
      radial-gradient(circle at 24% -18%, rgba(238, 202, 151, 0.18), transparent 34%),
      radial-gradient(circle at 88% 118%, rgba(188, 136, 91, 0.16), transparent 42%),
      linear-gradient(180deg, #35231d 0%, #1f1512 58%, #0d0908 100%);
    color: rgba(255, 250, 243, 0.98);
    text-shadow: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 250, 243, 0.42),
      inset 0 -10px 18px rgba(0, 0, 0, 0.24),
      inset 0 0 0 1px rgba(255, 250, 243, 0.075),
      0 1px 0 rgba(255, 250, 243, 0.1),
      0 13px 30px rgba(19, 11, 8, 0.26);
  }

  .nav-links > .nav-book::before,
  .nav-links > .nav-book::after {
    display: none;
  }

  .nav-links > .nav-book .nav-book-icon {
    display: none;
  }

  .brand img {
    width: 150px;
    max-height: 40px;
  }

  .site-header .brand img {
    width: 166px;
    max-height: 44px;
    filter: contrast(1.34) brightness(0.72) saturate(0.92);
  }

  .nav-mobile-extra {
    display: block;
  }

  .nav-links.open {
    display: grid;
  }

  .home-warm .hero-inner {
    max-width: min(100vw - 40px, 680px);
    padding-top: 58px;
    padding-bottom: 132px;
  }

  .home-warm .hero h1 {
    max-width: 500px;
    margin-bottom: 16px;
    font-size: clamp(2.28rem, 6.6vw, 3.52rem);
    line-height: 1.04;
  }

  .home-warm .lead {
    max-width: 500px;
    font-size: clamp(1rem, 2.6vw, 1.1rem);
    line-height: 1.62;
  }

  .home-warm .hero-actions {
    margin-top: 28px;
    gap: 10px;
  }

  .home-warm .hero-actions .btn {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 0.7rem;
    letter-spacing: 0.065em;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    display: none;
    gap: 4px;
    margin: 6px 8px 10px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(148, 100, 38, 0.1);
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.82), rgba(245, 233, 216, 0.62));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      0 8px 16px rgba(77, 54, 31, 0.05);
  }

  .dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: grid;
  }

  .also-available-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .also-available-section {
    padding: 56px 0 64px;
  }

  .also-available-copy h2 {
    margin-bottom: 14px;
  }

  .also-available-copy p {
    margin-bottom: 0;
  }

  .also-available-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .also-available-list span {
    min-height: 54px;
    padding: 12px 14px;
    font-size: 0.66rem;
    letter-spacing: 0.075em;
  }

  .also-available-cta {
    margin-top: 0;
    width: 100%;
    padding-top: 12px;
    padding-right: 74px;
  }

  .also-available-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    justify-content: center;
  }

  .dropdown-menu a {
    padding: 9px 10px;
    border-radius: 8px;
  }

  .dropdown-menu a:active {
    background: rgba(148, 100, 38, 0.08);
  }

  .split,
  .grid,
  .grid.two,
  .checklist-layout,
  .protocol-layout,
  .consultation-hero-inner,
  .final-cta-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 30px 26px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .site-footer {
    padding: 58px 0 24px;
  }

  .footer-studio {
    margin-top: 0;
  }

  .footer-grid > div:not(.footer-studio) {
    padding-top: 0;
  }

  .pricing-maintenance-grid {
    grid-template-columns: 1fr;
  }

  .consultation-cta-card--button-only {
    width: 100%;
    min-width: 0;
  }

  .site-footer .brand {
    margin-bottom: 10px;
  }

  .site-footer .brand img {
    width: min(210px, 100%);
  }

  .site-footer h3 {
    margin-bottom: 13px;
  }

  .site-footer a {
    margin: 7px 0;
    font-size: 0.88rem;
  }

  .fineprint {
    margin-top: 30px;
    padding-top: 18px;
    font-size: 0.82rem;
  }

  .consultation-hero-inner {
    gap: 20px;
    padding-top: 98px;
    padding-bottom: 44px;
  }

  .consultation-page .consultation-hero {
    min-height: auto;
  }

  .consultation-page .consultation-hero h1 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: clamp(2.28rem, 6.6vw, 3.52rem);
    line-height: 1.04;
  }

  .consultation-page .consultation-hero .lead {
    max-width: 540px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-trust-card {
    max-width: 420px;
  }

  .consultation-page .hero-trust-card {
    max-width: 100%;
    padding: 18px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.46),
      0 16px 38px rgba(159, 123, 68, 0.1);
  }

  .consultation-page .hero-trust-card::after {
    inset: 10px;
  }

  .consultation-page .hero-trust-card span {
    margin-bottom: 12px;
    font-size: 0.62rem;
  }

  .consultation-page .hero-trust-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consultation-page .hero-trust-card li {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 10px 11px;
    font-size: 0.62rem;
    letter-spacing: 0.07em;
  }

  .mobile-consultation-cta {
    display: grid;
    gap: 10px;
    max-width: 420px;
  }

  .mobile-consultation-cta .btn {
    width: 100%;
  }

  .mobile-consultation-cta p {
    margin: 0;
    color: rgba(23, 23, 23, 0.6);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .consultation-explainer > .actions,
  .consultation-explainer > .consultation-reassurance {
    display: none;
  }

  .consultation-page .consultation-booking-section {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .consultation-page .form-panel,
  .consultation-page .consultation-plan-card {
    padding: 28px;
  }

  .consultation-page .consultation-explainer h2,
  .consultation-page .consultation-plan-card h2 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 9vw, 2.48rem);
    line-height: 1.02;
  }

  .consultation-page .consultation-steps {
    margin-bottom: 0;
  }

  .consultation-page .consultation-steps div {
    padding: 17px 18px;
  }

  .consultation-page .consultation-steps span,
  .consultation-page .consultation-detail-list strong {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .consultation-page .consultation-steps p {
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1.58;
  }

  .consultation-page .consultation-plan-card > p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .consultation-page .consultation-detail-list {
    margin-top: 18px;
  }

  .consultation-page .consultation-detail-list p {
    padding: 12px 14px;
  }

  .mobile-plan-cta {
    display: block;
    margin-top: -4px;
  }

  .mobile-plan-cta .btn {
    width: 100%;
  }

  .consultation-page .site-footer {
    padding-top: 54px;
  }

  .consultation-page .site-footer .brand {
    margin-bottom: 8px;
  }

  .consultation-page .site-footer .brand img {
    width: min(210px, 100%);
  }

  .protocol-intro {
    padding: 34px;
  }

  .proof-head,
  .signature-services-head,
  .proof-gallery,
  .proof-inspection-bar,
  .specialist-points,
  .signature-service-grid,
  .testimonial-layout,
  .persona-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-head {
    position: static;
    max-width: 660px;
  }

  .testimonial-swipe-cue {
    display: inline-flex;
    align-items: center;
    transition: opacity 180ms ease-out, transform 180ms ease-out;
  }

  .testimonial-swipe-cue.is-dismissed {
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
  }

  .proof-swipe-cue {
    display: inline-flex;
    align-items: center;
    margin: 10px 0 18px;
    color: rgba(23, 23, 23, 0.5);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: opacity 180ms ease-out, transform 180ms ease-out;
  }

  .proof-swipe-cue::after {
    content: " ->";
  }

  .proof-swipe-cue.is-dismissed {
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
  }

  .proof-gallery {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(76vw, 1fr);
    gap: 12px;
    overflow-x: auto;
    padding: 0 18px 6px 0;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .proof-gallery::-webkit-scrollbar {
    display: none;
  }

  .proof-mobile-track {
    position: relative;
    overflow: hidden;
  }

  .proof-mobile-track::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 250, 243, 0), rgba(255, 250, 243, 0.98));
    pointer-events: none;
    z-index: 2;
  }

  .proof-frame,
  .proof-frame-large,
  .proof-note {
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .proof-gallery .reveal,
  .proof-gallery .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .proof-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    position: relative;
    z-index: 3;
  }

  .proof-dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(148, 100, 38, 0.18);
    transition: transform 180ms ease-out, background-color 180ms ease-out;
  }

  .proof-dots span.is-active {
    background: rgba(148, 100, 38, 0.62);
    transform: scale(1.08);
  }

  .testimonial-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(76vw, 1fr);
    gap: 12px;
    overflow-x: auto;
    padding: 0 18px 4px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .testimonial-mobile-track {
    overflow: hidden;
  }

  .testimonial-mobile-track::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 250, 243, 0), rgba(255, 250, 243, 0.98));
    pointer-events: none;
    z-index: 2;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-dots {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    z-index: 3;
  }

  .testimonial-dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(148, 100, 38, 0.18);
    transition: transform 180ms ease-out, background-color 180ms ease-out, opacity 180ms ease-out;
  }

  .testimonial-dots span.is-active {
    background: rgba(148, 100, 38, 0.62);
    transform: scale(1.08);
  }

  .testimonial-card,
  .testimonial-card:nth-child(1),
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(3) {
    position: relative;
    top: auto;
    min-height: 250px;
    scroll-snap-align: start;
  }

  .testimonial-grid .reveal,
  .testimonial-grid .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .testimonial-card {
    transition: transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out;
  }

  .testimonial-card:active {
    transform: translate3d(0, 1px, 0) scale(0.992);
    box-shadow: 0 16px 34px rgba(159, 123, 68, 0.1);
    border-color: rgba(159, 123, 68, 0.22);
  }

  .signature-card,
  .signature-card:nth-child(2) {
    min-height: 390px;
    margin-top: 0;
  }

  .specialist-layout {
    gap: 28px;
  }

  .also-available-section {
    padding: 58px 0 62px;
  }

  .also-available-layout {
    gap: 22px;
  }

  .rebecca-portrait-panel,
  .specialist-portrait.rebecca-portrait-panel {
    aspect-ratio: 4 / 5;
  }

  .rebecca-portrait-panel img,
  .specialist-portrait.rebecca-portrait-panel img {
    object-fit: cover;
    object-position: 50% 50%;
    transform: scale(1);
  }

  .signature-card {
    transition: transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out;
  }

  .signature-card:active {
    transform: translate3d(0, 1px, 0) scale(0.992);
    box-shadow: 0 18px 38px rgba(15, 15, 15, 0.16);
    border-color: rgba(201, 164, 108, 0.32);
  }

  .signature-note {
    max-width: 620px;
  }

  .persona-card:nth-child(2) {
    transform: none;
  }

  .proof-guide {
    max-width: 620px;
  }

  .proof-frame-large {
    grid-row: auto;
    min-height: 420px;
  }

  .protocol-card {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding-right: 0;
  }

  .protocol-card .num {
    width: 52px;
    height: 52px;
  }

  .protocol-steps::before {
    left: 25px;
  }

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

  .guide-photo {
    min-height: 280px;
  }

  .guide-cover {
    margin: -46px 18px 12px;
  }

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

  .proof-row div {
    padding: 24px;
  }

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

  .section {
    padding: 74px 0;
  }

  .consultation-guidance {
    padding: 28px 24px;
  }

  .nano-brows-best-for-grid .card,
  .nano-brows-checks-card,
  .nano-brows-healed-card,
  .nano-brows-cta-layout .card {
    padding: 24px;
  }

  .feathering-best-for-grid .card,
  .feathering-checks-card,
  .feathering-healed-card,
  .feathering-cta-layout .card {
    padding: 24px;
  }

  .services-process-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-process-card {
    min-height: 0;
    max-width: 420px;
    margin-inline: auto;
    transform: none;
  }

  .process-cta {
    width: 100%;
    padding: 28px 24px;
  }

  .services-process-cta-section .process-cta {
    padding: 24px 0 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    text-align: left;
  }

  .services-process-cta-section .process-cta .actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .consultation-page .consultation-hero {
    min-height: auto;
  }

  .consultation-page .consultation-hero-inner {
    gap: 24px;
    padding-top: 90px;
    padding-bottom: 38px;
  }

  .consultation-page .consultation-hero h1 {
    font-size: clamp(2.28rem, 6.6vw, 3.52rem);
  }

  .consultation-page .hero-trust-card {
    padding: 14px;
    margin-top: 6px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 8px 20px rgba(159, 123, 68, 0.07);
  }

  .consultation-page .hero-trust-card li {
    min-height: 44px;
  }

  .consultation-page .hero-trust-card ul {
    grid-template-columns: 1fr 1fr;
  }

  .services-hero + .section .grid > .nano-brows-service-card {
    --service-card-image-shift-x: 0px;
    --service-card-image-position: 104% 24%;
    --service-card-image-scale: 1.72;
    --service-card-image-hover-scale: 1.78;
  }

  .consultation-page .form-panel,
  .consultation-page .consultation-plan-card {
    padding: 24px;
  }

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

  /* 2-col mobile footer: logo full-width top, address+hours left, links right */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
  }

  .footer-studio {
    display: contents;
  }

  .site-footer .brand {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    margin-bottom: 8px;
  }

  .site-footer .brand img {
    width: min(180px, 100%);
  }

  .site-footer .footer-address {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    padding-left: 0;
    white-space: normal;
    max-width: 100%;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .footer-hours {
    grid-column: 1;
    grid-row: 3;
    margin-top: -132px;
    padding-left: 0;
    max-width: 100%;
  }

  .footer-hours-list {
    gap: 6px;
  }

  .footer-hours-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
  }

  .footer-hours-time {
    text-align: left;
  }

  .footer-grid > div:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-grid > div:nth-child(3) {
    grid-column: 1;
    grid-row: 4;
    margin-top: -151px;
  }

  .footer-grid > div:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
  }

  .site-footer h3 {
    margin-bottom: 10px;
  }

  .site-footer a {
    margin: 5px 0;
  }

  .site-footer p {
    max-width: 100%;
  }

  .fineprint {
    margin-top: 20px;
    padding-top: 14px;
    padding-right: 72px;
    font-size: 0.8rem;
  }

  .home-warm .hero {
    min-height: 640px;
  }

  .home-warm .hero::before {
    background:
      radial-gradient(ellipse at 18% 14%, rgba(255, 248, 239, 0.46) 0%, rgba(255, 248, 239, 0.2) 24%, rgba(255, 248, 239, 0) 52%),
      linear-gradient(94deg, rgba(58, 39, 25, 0.44) 0%, rgba(58, 39, 25, 0.16) 34%, rgba(58, 39, 25, 0.02) 72%),
      linear-gradient(180deg, rgba(16, 12, 10, 0.06) 0%, rgba(16, 12, 10, 0.14) 100%);
  }

  .home-warm .hero .hero-media {
    background: var(--hero-image, url("Images/HomeHero.webp")) 76% 28% / 112% auto no-repeat;
    transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(var(--hero-parallax-scale, 1.036));
    transform-origin: 56% 34%;
  }

  .home-warm .hero h1 {
    max-width: 348px;
    margin-bottom: 18px;
    font-size: clamp(1.92rem, 8.9vw, 2.64rem);
    line-height: 1.06;
  }

  .hero-inner {
    padding-top: 88px;
    padding-bottom: 18px;
  }

  .service-detail-page .hero {
    min-height: 100svh;
    align-items: start;
    padding-bottom: 0;
  }

  .service-detail-page .hero::before {
    background:
      radial-gradient(ellipse at 16% 20%, rgba(255, 248, 239, 0.22) 0%, rgba(255, 248, 239, 0.08) 24%, rgba(255, 248, 239, 0) 48%),
      linear-gradient(180deg, rgba(18, 14, 12, 0.14) 0%, rgba(18, 14, 12, 0.08) 16%, rgba(18, 14, 12, 0.04) 36%, rgba(18, 14, 12, 0.18) 52%, rgba(18, 14, 12, 0.5) 72%, rgba(18, 14, 12, 0.8) 100%),
      linear-gradient(96deg, rgba(58, 39, 25, 0.32) 0%, rgba(58, 39, 25, 0.14) 34%, rgba(58, 39, 25, 0.02) 64%),
      var(--hero-image, url("Images/HomeHero.webp")) 50% 30% / cover no-repeat;
  }

  .service-detail-page .hero-inner {
    width: min(100vw - 28px, 360px);
    margin: 0 auto;
    padding-top: 154px;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
  }

  .service-detail-page .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: #f3d29b;
    text-shadow: 0 1px 8px rgba(15, 15, 15, 0.18);
  }

  .service-detail-page h1 {
    max-width: 305px;
    margin-bottom: 12px;
    font-size: clamp(1.28rem, 5.8vw, 1.78rem);
    line-height: 0.96;
    text-wrap: balance;
    text-shadow: 0 2px 18px rgba(15, 15, 15, 0.24);
  }

  .service-detail-page .lead {
    max-width: 292px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    line-height: 1.42;
    text-shadow: 0 2px 10px rgba(15, 15, 15, 0.2);
  }

  .service-detail-page .hero-actions {
    margin-top: 14px;
  }

  .service-detail-page .hero-actions .btn {
    width: 100%;
    min-height: 40px;
    padding: 10px 16px;
    font-size: 0.64rem;
  }

  .cosmetic-tattoo-service-page .hero {
    min-height: 100svh;
    align-items: center;
  }

  .cosmetic-tattoo-service-page .mobile-editorial-hero .hero-inner {
    width: min(100vw - 28px, 360px);
    max-width: min(100vw - 28px, 360px);
    min-height: calc(100svh - 136px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    padding-top: 108px;
    padding-bottom: 0;
    transform: none;
  }

  .cosmetic-tattoo-service-page .mobile-editorial-hero .eyebrow {
    margin-bottom: 22px;
  }

  .cosmetic-tattoo-service-page .mobile-editorial-hero h1 {
    max-width: 10.2ch;
    margin-bottom: 22px;
  }

  .cosmetic-tattoo-service-page .mobile-editorial-hero .lead {
    max-width: 23ch;
  }

  .cosmetic-tattoo-service-page .mobile-editorial-hero .hero-actions {
    margin-top: 28px;
  }

  .hero::before {
    background:
      radial-gradient(ellipse at 13% 11%, rgba(255, 248, 239, 0.38) 0%, rgba(255, 248, 239, 0.2) 23%, rgba(255, 248, 239, 0) 50%),
      linear-gradient(94deg, rgba(58, 39, 25, 0.7) 0%, rgba(58, 39, 25, 0.5) 27%, rgba(58, 39, 25, 0.22) 50%, rgba(58, 39, 25, 0.02) 74%),
      linear-gradient(180deg, rgba(16, 12, 10, 0.02) 0%, rgba(16, 12, 10, 0.08) 100%),
      var(--hero-image, url("Images/HomeHero.webp")) var(--hero-position-mobile, 90% 30%) / var(--hero-size-mobile, cover) no-repeat;
  }

  .about-page .hero::before {
    background:
      radial-gradient(ellipse at 13% 11%, rgba(255, 248, 239, 0.38) 0%, rgba(255, 248, 239, 0.2) 23%, rgba(255, 248, 239, 0) 50%),
      linear-gradient(94deg, rgba(58, 39, 25, 0.7) 0%, rgba(58, 39, 25, 0.5) 27%, rgba(58, 39, 25, 0.22) 50%, rgba(58, 39, 25, 0.02) 74%),
      linear-gradient(180deg, rgba(16, 12, 10, 0.02) 0%, rgba(16, 12, 10, 0.08) 100%),
      var(--hero-image, url("Images/HomeHero.webp")) 58% 28% / cover no-repeat;
  }

  .beauty-maintenance-page .mobile-editorial-hero::before {
    background:
      radial-gradient(ellipse at 13% 11%, rgba(255, 248, 239, 0.38) 0%, rgba(255, 248, 239, 0.2) 23%, rgba(255, 248, 239, 0) 50%),
      linear-gradient(94deg, rgba(58, 39, 25, 0.7) 0%, rgba(58, 39, 25, 0.5) 27%, rgba(58, 39, 25, 0.22) 50%, rgba(58, 39, 25, 0.02) 74%),
      linear-gradient(180deg, rgba(16, 12, 10, 0.02) 0%, rgba(16, 12, 10, 0.08) 100%),
      var(--hero-image, url("Images/HomeHero.webp")) 72% 34% / cover no-repeat;
  }

  .brow-lamination-page .hero::before {
    background:
      radial-gradient(ellipse at 13% 11%, rgba(255, 248, 239, 0.38) 0%, rgba(255, 248, 239, 0.2) 23%, rgba(255, 248, 239, 0) 50%),
      linear-gradient(94deg, rgba(58, 39, 25, 0.7) 0%, rgba(58, 39, 25, 0.5) 27%, rgba(58, 39, 25, 0.22) 50%, rgba(58, 39, 25, 0.02) 74%),
      linear-gradient(180deg, rgba(16, 12, 10, 0.02) 0%, rgba(16, 12, 10, 0.08) 100%),
      var(--hero-image, url("Images/HomeHero.webp")) 64% 34% / cover no-repeat;
  }

  .nano-brows-hero::before {
    background:
      radial-gradient(ellipse at 16% 20%, rgba(255, 248, 239, 0.22) 0%, rgba(255, 248, 239, 0.08) 24%, rgba(255, 248, 239, 0) 48%),
      linear-gradient(180deg, rgba(18, 14, 12, 0.14) 0%, rgba(18, 14, 12, 0.08) 16%, rgba(18, 14, 12, 0.04) 36%, rgba(18, 14, 12, 0.18) 52%, rgba(18, 14, 12, 0.5) 72%, rgba(18, 14, 12, 0.8) 100%),
      linear-gradient(96deg, rgba(58, 39, 25, 0.32) 0%, rgba(58, 39, 25, 0.14) 34%, rgba(58, 39, 25, 0.02) 64%),
      var(--hero-image, url("Images/HomeHero.webp")) var(--hero-position-mobile, 102% 30%) / cover no-repeat;
  }

  .nano-brows-hero .hero-inner {
    padding-top: 108px;
    padding-bottom: 0;
  }

  .brow-feathering-page .hero::before {
    background:
      radial-gradient(ellipse at 16% 20%, rgba(255, 248, 239, 0.22) 0%, rgba(255, 248, 239, 0.08) 24%, rgba(255, 248, 239, 0) 48%),
      linear-gradient(180deg, rgba(18, 14, 12, 0.14) 0%, rgba(18, 14, 12, 0.08) 16%, rgba(18, 14, 12, 0.04) 36%, rgba(18, 14, 12, 0.18) 52%, rgba(18, 14, 12, 0.5) 72%, rgba(18, 14, 12, 0.8) 100%),
      linear-gradient(96deg, rgba(58, 39, 25, 0.32) 0%, rgba(58, 39, 25, 0.14) 34%, rgba(58, 39, 25, 0.02) 64%),
      var(--hero-image, url("Images/HomeHero.webp")) 82% 30% / cover no-repeat;
  }

  .lip-blush-page .hero::before {
    background:
      radial-gradient(ellipse at 16% 20%, rgba(255, 248, 239, 0.22) 0%, rgba(255, 248, 239, 0.08) 24%, rgba(255, 248, 239, 0) 48%),
      linear-gradient(180deg, rgba(18, 14, 12, 0.14) 0%, rgba(18, 14, 12, 0.08) 16%, rgba(18, 14, 12, 0.04) 36%, rgba(18, 14, 12, 0.18) 52%, rgba(18, 14, 12, 0.5) 72%, rgba(18, 14, 12, 0.8) 100%),
      linear-gradient(96deg, rgba(58, 39, 25, 0.32) 0%, rgba(58, 39, 25, 0.14) 34%, rgba(58, 39, 25, 0.02) 64%),
      var(--hero-image, url("Images/HomeHero.webp")) 62% 64% / cover no-repeat;
  }

  .lip-neutralisation-page .hero::before {
    background:
      radial-gradient(ellipse at 16% 20%, rgba(255, 248, 239, 0.22) 0%, rgba(255, 248, 239, 0.08) 24%, rgba(255, 248, 239, 0) 48%),
      linear-gradient(180deg, rgba(18, 14, 12, 0.14) 0%, rgba(18, 14, 12, 0.08) 16%, rgba(18, 14, 12, 0.04) 36%, rgba(18, 14, 12, 0.18) 52%, rgba(18, 14, 12, 0.5) 72%, rgba(18, 14, 12, 0.8) 100%),
      linear-gradient(96deg, rgba(58, 39, 25, 0.32) 0%, rgba(58, 39, 25, 0.14) 34%, rgba(58, 39, 25, 0.02) 64%),
      var(--hero-image, url("Images/HomeHero.webp")) var(--hero-position-mobile, 46% 72%) / cover no-repeat;
  }

  .scalp-micropigmentation-page .hero::before {
    background:
      radial-gradient(ellipse at 16% 20%, rgba(255, 248, 239, 0.22) 0%, rgba(255, 248, 239, 0.08) 24%, rgba(255, 248, 239, 0) 48%),
      linear-gradient(180deg, rgba(18, 14, 12, 0.14) 0%, rgba(18, 14, 12, 0.08) 16%, rgba(18, 14, 12, 0.04) 36%, rgba(18, 14, 12, 0.18) 52%, rgba(18, 14, 12, 0.5) 72%, rgba(18, 14, 12, 0.8) 100%),
      linear-gradient(96deg, rgba(58, 39, 25, 0.32) 0%, rgba(58, 39, 25, 0.14) 34%, rgba(58, 39, 25, 0.02) 64%),
      var(--hero-image, url("Images/HomeHero.webp")) 66% 18% / cover no-repeat;
  }

  .brow-wax-tint-page .hero::before {
    background:
      radial-gradient(ellipse at 16% 20%, rgba(255, 248, 239, 0.22) 0%, rgba(255, 248, 239, 0.08) 24%, rgba(255, 248, 239, 0) 48%),
      linear-gradient(180deg, rgba(18, 14, 12, 0.14) 0%, rgba(18, 14, 12, 0.08) 16%, rgba(18, 14, 12, 0.04) 36%, rgba(18, 14, 12, 0.18) 52%, rgba(18, 14, 12, 0.5) 72%, rgba(18, 14, 12, 0.8) 100%),
      linear-gradient(96deg, rgba(58, 39, 25, 0.32) 0%, rgba(58, 39, 25, 0.14) 34%, rgba(58, 39, 25, 0.02) 64%),
      var(--hero-image, url("Images/HomeHero.webp")) 68% 26% / cover no-repeat;
  }

  .lash-lift-tint-page .hero::before {
    background:
      radial-gradient(ellipse at 13% 11%, rgba(255, 248, 239, 0.38) 0%, rgba(255, 248, 239, 0.2) 23%, rgba(255, 248, 239, 0) 50%),
      linear-gradient(94deg, rgba(58, 39, 25, 0.7) 0%, rgba(58, 39, 25, 0.5) 27%, rgba(58, 39, 25, 0.22) 50%, rgba(58, 39, 25, 0.02) 74%),
      linear-gradient(180deg, rgba(16, 12, 10, 0.02) 0%, rgba(16, 12, 10, 0.08) 100%),
      var(--hero-image, url("Images/HomeHero.webp")) 64% 34% / cover no-repeat;
  }

  .spray-tanning-page .hero::before {
    background:
      radial-gradient(ellipse at 16% 20%, rgba(255, 248, 239, 0.22) 0%, rgba(255, 248, 239, 0.08) 24%, rgba(255, 248, 239, 0) 48%),
      linear-gradient(180deg, rgba(18, 14, 12, 0.14) 0%, rgba(18, 14, 12, 0.08) 16%, rgba(18, 14, 12, 0.04) 36%, rgba(18, 14, 12, 0.18) 52%, rgba(18, 14, 12, 0.5) 72%, rgba(18, 14, 12, 0.8) 100%),
      linear-gradient(96deg, rgba(58, 39, 25, 0.32) 0%, rgba(58, 39, 25, 0.14) 34%, rgba(58, 39, 25, 0.02) 64%),
      var(--hero-image, url("Images/HomeHero.webp")) 72% 24% / cover no-repeat;
  }

  .facial-waxing-page .hero::before {
    background:
      radial-gradient(ellipse at 16% 20%, rgba(255, 248, 239, 0.22) 0%, rgba(255, 248, 239, 0.08) 24%, rgba(255, 248, 239, 0) 48%),
      linear-gradient(180deg, rgba(18, 14, 12, 0.14) 0%, rgba(18, 14, 12, 0.08) 16%, rgba(18, 14, 12, 0.04) 36%, rgba(18, 14, 12, 0.18) 52%, rgba(18, 14, 12, 0.5) 72%, rgba(18, 14, 12, 0.8) 100%),
      linear-gradient(96deg, rgba(58, 39, 25, 0.32) 0%, rgba(58, 39, 25, 0.14) 34%, rgba(58, 39, 25, 0.02) 64%),
      var(--hero-image, url("Images/HomeHero.webp")) 74% 24% / cover no-repeat;
  }

  .services-hero::before {
    background: var(--hero-image, url("Images/HomeHero.webp")) 64% 26% / 152% auto no-repeat;
  }

  .services-hero .hero-inner {
    max-width: min(100vw - 28px, 430px);
    margin-left: auto;
    padding-top: 94px;
    padding-bottom: 62px;
  }

  .services-hero .hero-inner::before {
    content: none;
  }

  .services-hero h1 {
    max-width: 360px;
    margin-bottom: 14px;
  }

  .services-hero .lead {
    max-width: 342px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .services-hero {
    display: grid;
    align-items: start;
    min-height: 75vh;
    padding-bottom: 0;
    background: #171311;
    color: var(--white);
  }

  .services-hero::before {
    content: "";
    display: block;
    inset: 0 -18%;
    background:
      radial-gradient(ellipse at 13% 11%, rgba(255, 248, 239, 0.38) 0%, rgba(255, 248, 239, 0.2) 23%, rgba(255, 248, 239, 0) 50%),
      linear-gradient(94deg, rgba(58, 39, 25, 0.7) 0%, rgba(58, 39, 25, 0.5) 27%, rgba(58, 39, 25, 0.22) 50%, rgba(58, 39, 25, 0.02) 74%),
      linear-gradient(180deg, rgba(16, 12, 10, 0.02) 0%, rgba(16, 12, 10, 0.08) 100%),
      var(--hero-image, url("Images/HomeHero.webp")) 68% 36% / cover no-repeat;
    transform: translateX(10%) scale(1.03);
    transform-origin: center center;
  }

  .services-hero .hero-inner {
    width: min(100vw - 28px, 360px);
    max-width: min(100vw - 28px, 360px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-self: start;
    margin: 0 auto;
    padding-top: 108px;
    padding-bottom: 0;
  }

  .services-hero .eyebrow {
    margin-bottom: 22px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: #f3d29b;
    text-shadow: 0 1px 8px rgba(15, 15, 15, 0.18);
  }

  .services-hero h1 {
    max-width: 10.2ch;
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 8.3vw, 3.25rem);
    line-height: 0.94;
    text-wrap: balance;
    text-shadow: 0 2px 18px rgba(15, 15, 15, 0.24);
  }

  .services-hero .lead {
    max-width: 23ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(15, 15, 15, 0.2);
  }

  .services-hero .hero-actions {
    margin-top: 28px;
  }

  .services-hero .hero-actions .btn {
    width: 100%;
    min-height: 40px;
    padding: 10px 16px;
    font-size: 0.64rem;
  }

  .mobile-editorial-hero {
    min-height: 100svh;
    align-items: center;
    padding-bottom: 0;
  }

  .mobile-editorial-hero::before {
    background:
      radial-gradient(ellipse at 13% 11%, rgba(255, 248, 239, 0.38) 0%, rgba(255, 248, 239, 0.2) 23%, rgba(255, 248, 239, 0) 50%),
      linear-gradient(94deg, rgba(58, 39, 25, 0.7) 0%, rgba(58, 39, 25, 0.5) 27%, rgba(58, 39, 25, 0.22) 50%, rgba(58, 39, 25, 0.02) 74%),
      linear-gradient(180deg, rgba(16, 12, 10, 0.02) 0%, rgba(16, 12, 10, 0.08) 100%),
      var(--hero-image, url("Images/HomeHero.webp")) 90% 30% / cover no-repeat;
  }

  .mobile-editorial-hero .hero-inner {
    width: min(100vw - 28px, 360px);
    max-width: min(100vw - 28px, 360px);
    min-height: calc(100svh - 136px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    padding-top: 108px;
    padding-bottom: 0;
    transform: none;
  }

  .mobile-editorial-hero .eyebrow {
    margin-bottom: 22px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: #f3d29b;
    text-shadow: 0 1px 10px rgba(15, 15, 15, 0.18);
  }

  .mobile-editorial-hero .hero-inner > .eyebrow {
    border-left-color: rgba(201, 164, 108, 0.86);
    text-shadow: 0 2px 10px rgba(15, 15, 15, 0.32);
  }

  .mobile-editorial-hero h1 {
    max-width: var(--mobile-hero-title-width, 10.2ch);
    margin-bottom: 22px;
    font-size: var(--mobile-hero-title-size, clamp(2.35rem, 8.3vw, 3.25rem));
    line-height: 0.94;
    text-wrap: balance;
    text-shadow: 0 2px 18px rgba(15, 15, 15, 0.28);
  }

  .mobile-editorial-hero .lead {
    max-width: var(--mobile-hero-lead-width, 23ch);
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--mobile-hero-lead-size, 1rem);
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(15, 15, 15, 0.22);
  }

  .mobile-editorial-hero .hero-actions {
    width: min(100%, 33rem);
    margin-top: 28px;
  }

  .mobile-editorial-hero .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 13px 20px;
    font-size: 0.82rem;
    letter-spacing: 0.075em;
  }

  .mobile-hero-compact {
    --mobile-hero-title-width: 8.5ch;
    --mobile-hero-lead-width: 18.5ch;
  }

  .mobile-hero-standard {
    --mobile-hero-title-width: 10.2ch;
    --mobile-hero-lead-width: 23ch;
  }

  .mobile-hero-wide {
    --mobile-hero-title-width: 10.2ch;
    --mobile-hero-lead-width: 23ch;
  }

  .mobile-hero-xwide {
    --mobile-hero-title-width: 12ch;
    --mobile-hero-lead-width: 25ch;
  }

  .home-warm .mobile-editorial-hero {
    --mobile-hero-title-width: 10.2ch;
    --mobile-hero-lead-width: 23ch;
  }

  .home-warm .mobile-editorial-hero::before {
    background:
      radial-gradient(ellipse at 18% 14%, rgba(255, 248, 239, 0.46) 0%, rgba(255, 248, 239, 0.2) 24%, rgba(255, 248, 239, 0) 52%),
      linear-gradient(94deg, rgba(58, 39, 25, 0.58) 0%, rgba(58, 39, 25, 0.2) 34%, rgba(58, 39, 25, 0.03) 72%),
      linear-gradient(180deg, rgba(16, 12, 10, 0.08) 0%, rgba(16, 12, 10, 0.18) 100%),
      var(--hero-image, url("Images/HomeHero.webp")) 72% 28% / cover no-repeat;
  }

  .home-warm .mobile-editorial-hero .hero-media {
    display: none;
  }

  .home-warm .mobile-editorial-hero .hero-inner {
    min-height: calc(100svh - 142px);
    padding-top: 108px;
    padding-bottom: 0;
    transform: none;
  }

  .home-warm .mobile-editorial-hero h1,
  .home-warm .mobile-editorial-hero .lead {
    color: var(--white);
  }

  .home-warm .mobile-editorial-hero .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .home-warm .mobile-editorial-hero .btn-outline {
    color: rgba(255, 250, 243, 0.92);
    border-color: rgba(255, 250, 243, 0.2);
    background:
      radial-gradient(circle at 24% -18%, rgba(255, 255, 255, 0.22), transparent 36%),
      linear-gradient(180deg, rgba(255, 250, 243, 0.18), rgba(255, 250, 243, 0.08));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset 0 -1px 0 rgba(255, 255, 255, 0.06),
      0 10px 24px rgba(19, 11, 8, 0.18);
  }

  .home-warm .mobile-editorial-hero .hero-mobile-cue {
    color: rgba(255, 250, 243, 0.76);
  }

  .home-warm .mobile-editorial-hero .hero-mobile-cue span {
    border-color: rgba(255, 250, 243, 0.3);
  }

  .services-hero-media {
    display: none;
  }

  .home-warm .hero-inner {
    max-width: min(100vw - 28px, 430px);
    padding-top: 52px;
    padding-bottom: 86px;
  }

  .home-warm .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .home-warm .lead {
    max-width: 342px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-actions,
  .actions {
    gap: 8px;
  }

  .hero-actions .btn,
  .checklist-cta .btn,
  .consult-invite .btn {
    width: 100%;
  }

  .home-warm .hero-actions {
    margin-top: 28px;
  }

  .home-warm .hero-actions .btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.66rem;
  }

  .hero-mobile-cue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: rgba(23, 23, 23, 0.5);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 220ms ease-out, transform 220ms ease-out;
  }

  .hero-mobile-cue span {
    width: 26px;
    height: 1px;
    background: rgba(148, 100, 38, 0.32);
    animation: mobileHeroCueNudge 1.8s ease-in-out infinite;
    transform-origin: center;
  }

  .hero-mobile-cue.is-dismissed {
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
  }

  .magnetic-cta {
    transition:
      transform 180ms ease-out,
      box-shadow 180ms ease-out,
      border-color 180ms ease-out,
      filter 180ms ease-out;
  }

  .magnetic-cta:active {
    transform: translate3d(0, 1px, 0) scale(0.985);
  }

  .nav-links > .nav-book:active {
    box-shadow:
      0 1px 0 rgba(255, 250, 243, 0.42),
      0 7px 16px rgba(38, 24, 17, 0.16),
      0 14px 30px rgba(77, 54, 31, 0.14);
    border-color: rgba(255, 250, 243, 0.7);
    filter: saturate(1.02);
  }

  .nav-links > .nav-book:active::after {
    background:
      radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.86), transparent 34%),
      radial-gradient(circle at 90% 120%, rgba(229, 181, 118, 0.22), transparent 42%),
      linear-gradient(180deg, #fffdf7 0%, #eadac7 58%, #d4bc9f 100%);
  }

  .nav-toggle:active {
    transform: translate3d(0, 1px, 0) scale(0.975);
    border-color: rgba(148, 100, 38, 0.24);
    background: rgba(255, 250, 243, 0.44);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      0 6px 16px rgba(77, 54, 31, 0.08);
  }

  .nav-toggle:active .nav-toggle-lines span {
    background: rgba(34, 28, 22, 0.92);
  }

  .home-warm .hero-actions .btn-primary:active {
    box-shadow:
      inset 0 1px 0 rgba(255, 250, 243, 0.38),
      inset 0 -7px 14px rgba(0, 0, 0, 0.2),
      inset 0 0 0 1px rgba(255, 250, 243, 0.07),
      0 8px 18px rgba(19, 11, 8, 0.2),
      0 14px 28px rgba(77, 54, 31, 0.14);
    filter: saturate(1.03);
  }

  .home-warm .hero-actions .btn-primary:active::after {
    background:
      radial-gradient(circle at 24% 0%, rgba(245, 216, 176, 0.2), transparent 34%),
      radial-gradient(circle at 88% 118%, rgba(188, 136, 91, 0.14), transparent 42%),
      linear-gradient(180deg, #38251e 0%, #201613 58%, #0f0a09 100%);
  }

  .home-warm .hero .btn-outline:active {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.62),
      inset 0 -1px 0 rgba(148, 100, 38, 0.08),
      0 5px 14px rgba(77, 54, 31, 0.08);
    background:
      radial-gradient(circle at 24% -18%, rgba(255, 255, 255, 0.76), transparent 36%),
      linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(232, 211, 181, 0.84));
    color: rgba(22, 18, 15, 0.9);
  }

  .scroll-top-button {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }

  .consultation-page .scroll-top-button {
    bottom: 76px;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .proof-row div {
    padding: 22px 24px;
  }

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

  .gallery-page .gallery-instagram-shell {
    padding: 14px;
  }

  .price {
    display: block;
  }

  .pricing-page .price {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 18px;
  }

  .pricing-page .price strong {
    justify-self: end;
  }

  .guide-asset {
    padding: 18px;
  }

  .guide-asset::after {
    display: none;
  }

  .guide-cover {
    margin-left: 0;
    margin-right: 0;
    padding: 26px;
  }

  .guide-cover {
    transition:
      transform 180ms ease-out,
      box-shadow 180ms ease-out,
      border-color 180ms ease-out,
      filter 180ms ease-out;
  }

  .guide-cover:active {
    transform: translate3d(0, 1px, 0) scale(0.992);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
    filter: saturate(1.02);
  }

  .guide-cover:active::after {
    opacity: 1;
    background: radial-gradient(circle 180px at 50% 22%, rgba(255, 250, 243, 0.24), transparent 58%);
  }

  .proof-frame,
  .proof-frame-large {
    min-height: 350px;
  }

  .proof-frame {
    transition: transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out;
  }

  .proof-frame:active {
    transform: none;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(201, 164, 108, 0.2);
  }

  .testimonial-card div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .testimonial-card span {
    text-align: left;
  }

  .testimonial-layout {
    gap: 24px;
  }

  .proof-reveal-frame {
    cursor: default;
  }

  .proof-touch-cue {
    display: none;
  }

  .proof-note {
    min-height: auto;
  }

  .signature-services-head {
    margin-bottom: 20px;
  }

  .signature-note {
    padding: 18px 0 0 18px;
  }

  .service-index {
    top: 24px;
    left: 24px;
  }

  .service-type {
    top: 24px;
    right: 24px;
    max-width: 122px;
  }

  .service-card-copy {
    padding: 104px 24px 48px;
  }

  .service-artifact {
    left: 24px;
    bottom: 22px;
    opacity: 1;
    transform: none;
  }

  .service-touch-cue {
    display: none;
  }

  .signature-card .service-spotlight {
    opacity: 0.62;
    background:
      radial-gradient(circle 150px at var(--spotlight-x) var(--spotlight-y), rgba(255, 250, 243, 0.1), rgba(210, 164, 88, 0.055) 30%, transparent 64%);
    box-shadow:
      inset 0 0 0 1px rgba(255, 250, 243, 0.06),
      inset 0 0 22px rgba(210, 164, 88, 0.05);
  }

  .persona-card {
    min-height: 280px;
  }

  .final-cta-steps {
    grid-template-columns: 1fr;
  }

  .final-cta-steps span + span {
    border-left: 0;
    border-top: 1px solid rgba(201, 164, 108, 0.28);
  }

  .buyer-checklist-hero-meta {
    gap: 8px;
  }

  .buyer-checklist-hero-meta span {
    min-height: 0;
    padding: 0 0 5px;
    font-size: 0.6rem;
  }

  .buyer-checklist-grid {
    grid-template-columns: 1fr;
  }

  .buyer-checklist-card::after {
    top: 62px;
  }

  .buyer-checklist-card h3,
  .buyer-checklist-card p {
    max-width: none;
  }

  .buyer-checklist-questions-section {
    padding-top: 108px;
    padding-bottom: 122px;
  }

  .buyer-checklist-questions-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .buyer-checklist-copy {
    padding-top: 0;
  }

  .buyer-checklist-question-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .buyer-checklist-question-card {
    min-height: auto;
    padding: 22px 22px 24px 58px;
  }

  .buyer-checklist-question-card::before {
    left: 22px;
    top: 22px;
  }

  .buyer-checklist-question-card::after {
    left: 28px;
    top: 28px;
  }

  .buyer-checklist-aftercare-section {
    padding-top: 128px;
  }

  .buyer-checklist-cta-card {
    padding: 28px;
  }
}

@media (max-width: 430px) {
  .legal-section {
    padding: 112px 0 82px;
  }

  .legal-section .container {
    width: min(100vw - 28px, 640px);
  }

  .legal-copy {
    max-width: 100%;
    padding: 26px 22px 28px;
    border-radius: 12px;
  }

  .legal-copy .eyebrow {
    margin-bottom: 18px;
  }

  .legal-copy h1 {
    max-width: 11ch;
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 8vw, 2.7rem);
  }

  .legal-copy h2 {
    max-width: 100%;
    margin: 34px 0 12px;
    font-size: clamp(1.3rem, 5.2vw, 1.65rem);
    line-height: 1.05;
  }

  .legal-copy h3 {
    margin: 24px 0 10px;
    font-size: 0.8rem;
    letter-spacing: 0.11em;
  }

  .legal-copy p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.66;
  }

  /* Shared mobile section-copy rhythm based on Beauty Maintenance non-hero sections */
  body:not(.home-warm):not(.consultation-page):not(.buyer-checklist-page) main > .section:not(.consultation-guidance-section):not(.services-process-section):not(.services-process-cta-section) > .container.split {
    gap: 30px;
  }

  body:not(.home-warm):not(.consultation-page):not(.buyer-checklist-page) main > .section:not(.consultation-guidance-section):not(.services-process-section):not(.services-process-cta-section) > .container > .section-copy {
    max-width: 360px;
    padding-top: 0;
  }

  body:not(.home-warm):not(.consultation-page):not(.buyer-checklist-page) main > .section:not(.consultation-guidance-section):not(.services-process-section):not(.services-process-cta-section) > .container > .section-copy .eyebrow {
    margin-bottom: 18px;
  }

  body:not(.home-warm):not(.consultation-page):not(.buyer-checklist-page) main > .section:not(.consultation-guidance-section):not(.services-process-section):not(.services-process-cta-section) > .container > .section-copy h2 {
    max-width: 100%;
    margin-bottom: 16px;
    line-height: 1.02;
  }

  body:not(.home-warm):not(.consultation-page):not(.buyer-checklist-page) main > .section:not(.consultation-guidance-section):not(.services-process-section):not(.services-process-cta-section) > .container > .section-copy p {
    max-width: min(100%, 33ch);
    margin-bottom: 16px;
  }

  body:not(.home-warm):not(.consultation-page):not(.buyer-checklist-page) main > .section:not(.consultation-guidance-section):not(.services-process-section):not(.services-process-cta-section) > .container > .section-copy p:last-child {
    margin-bottom: 0;
  }

  body:not(.home-warm):not(.consultation-page):not(.buyer-checklist-page) main > .section:not(.consultation-guidance-section):not(.services-process-section):not(.services-process-cta-section) > .container > .section-copy + .grid,
  body:not(.home-warm):not(.consultation-page):not(.buyer-checklist-page) main > .section:not(.consultation-guidance-section):not(.services-process-section):not(.services-process-cta-section) > .container > .section-copy + .gallery {
    margin-top: 30px;
  }

  .feathering-best-for-section,
  .pricing-page .pricing-support-section,
  .pricing-page .pricing-support-section + .section {
    padding-top: 74px;
  }

  body:not([class]) .hero-inner,
  .about-page .hero-inner,
  .pricing-page .hero-inner,
  .gallery-page .hero-inner {
    width: min(100vw - 28px, 360px);
    max-width: min(100vw - 28px, 360px);
    min-width: 0;
    min-height: calc(100svh - 136px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    padding-top: 108px;
    padding-bottom: 0;
  }

  body:not([class]) .hero .eyebrow,
  .about-page .hero .eyebrow,
  .pricing-page .hero .eyebrow,
  .gallery-page .hero .eyebrow {
    margin-bottom: 22px;
  }

  body:not([class]) .hero h1,
  .about-page .hero h1,
  .pricing-page .hero h1,
  .gallery-page .hero h1 {
    max-width: 10.2ch;
    min-width: 0;
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 8.3vw, 3.25rem);
    line-height: 0.94;
  }

  body:not([class]) .hero .lead,
  .about-page .hero .lead,
  .pricing-page .hero .lead,
  .gallery-page .hero .lead {
    max-width: 23ch;
    min-width: 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  body:not([class]) .hero-actions,
  .about-page .hero-actions,
  .pricing-page .hero-actions,
  .gallery-page .hero-actions {
    width: min(100%, calc(100vw - 28px));
    max-width: 100%;
    margin-top: 28px;
  }

  body:not([class]) .hero-actions .btn,
  .about-page .hero-actions .btn,
  .pricing-page .hero-actions .btn,
  .gallery-page .hero-actions .btn {
    max-width: 100%;
  }

  .about-page .hero-inner,
  .pricing-page .hero-inner,
  .gallery-page .hero-inner {
    align-self: start;
    min-height: 0;
    justify-content: flex-start;
    width: min(100vw - 28px, 360px);
    max-width: min(100vw - 28px, 360px);
    padding-top: 108px;
    padding-bottom: 0;
  }

  .about-page .hero h1,
  .pricing-page .hero h1,
  .gallery-page .hero h1 {
    max-width: 10.2ch;
    font-size: clamp(2.35rem, 8.3vw, 3.25rem);
    line-height: 0.94;
  }

  .pricing-page .hero h1 {
    max-width: 11ch;
  }

  .gallery-page .hero h1 {
    max-width: 11.5ch;
  }

  .about-page .hero .lead,
  .pricing-page .hero .lead,
  .gallery-page .hero .lead {
    max-width: 23ch;
    font-size: 1rem;
    line-height: 1.5;
  }

  .about-page .hero-actions,
  .pricing-page .hero-actions,
  .gallery-page .hero-actions {
    width: min(100%, 33rem);
    margin-top: 28px;
  }

  .cosmetic-tattoo-service-page .mobile-editorial-hero h1 {
    max-width: 10.6ch;
    font-size: clamp(2.22rem, 7.9vw, 3.05rem);
    line-height: 0.94;
  }

  .beauty-detail-page .mobile-editorial-hero h1 {
    max-width: 9.8ch;
  }

  .beauty-detail-page .mobile-editorial-hero .lead {
    max-width: 22ch;
  }

  .cosmetic-tattoo-service-page .mobile-editorial-hero .lead {
    max-width: 22ch;
    font-size: 1rem;
    line-height: 1.5;
  }

  .lash-lift-tint-page .mobile-editorial-hero {
    --mobile-hero-title-width: 11ch;
  }

  .consultation-page .consultation-hero-inner {
    width: min(100vw - 40px, 324px);
    max-width: min(100vw - 40px, 324px);
    min-width: 0;
  }

  .consultation-page .consultation-hero h1 {
    max-width: min(calc(100vw - 40px), 320px);
    min-width: 0;
    font-size: clamp(1.82rem, 7.6vw, 2.62rem);
    line-height: 0.97;
  }

  .consultation-page .consultation-hero .lead,
  .consultation-page .mobile-consultation-cta,
  .consultation-page .hero-actions {
    max-width: min(calc(100vw - 40px), 320px);
    min-width: 0;
  }

  .buyer-checklist-hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    width: min(100%, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
  }

  .buyer-checklist-hero-meta span {
    min-width: 0;
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .lash-lift-tint-page .mobile-editorial-hero {
    --mobile-hero-title-width: 11ch;
  }

  .nano-brows-page .mobile-editorial-hero::before {
    background:
      radial-gradient(ellipse at 16% 20%, rgba(255, 248, 239, 0.22) 0%, rgba(255, 248, 239, 0.08) 24%, rgba(255, 248, 239, 0) 48%),
      linear-gradient(180deg, rgba(18, 14, 12, 0.14) 0%, rgba(18, 14, 12, 0.08) 16%, rgba(18, 14, 12, 0.04) 36%, rgba(18, 14, 12, 0.18) 52%, rgba(18, 14, 12, 0.5) 72%, rgba(18, 14, 12, 0.8) 100%),
      linear-gradient(96deg, rgba(58, 39, 25, 0.32) 0%, rgba(58, 39, 25, 0.14) 34%, rgba(58, 39, 25, 0.02) 64%),
      var(--hero-image, url("Images/HomeHero.webp")) var(--hero-position-mobile, 82% 30%) / cover no-repeat;
  }
}

@media (max-width: 360px) {
  /* Single-column fallback at very narrow widths */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-studio {
    display: block;
  }

  .site-footer .brand {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    margin-bottom: 10px;
  }

  .site-footer .footer-address {
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 0;
  }

  .footer-hours {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3),
  .footer-grid > div:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}

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

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

  .beauty-maintenance-page .maintenance-service-card {
    transform: none;
  }

  .pricing-page .pricing-menu-card {
    transform: none;
  }

  .consultation-page .hero-trust-card,
  .consultation-page .consultation-explainer,
  .consultation-page .consultation-plan-card {
    transform: none;
  }

  .beauty-maintenance-page .maintenance-service-link,
  .beauty-maintenance-page .maintenance-service-link::after {
    transition: none !important;
  }

  .nav-links > .nav-book::before {
    animation: none !important;
    opacity: 0;
    transform: translateX(-120%) skewX(-18deg);
  }

  .nav-links > .nav-book {
    animation: none !important;
  }

  .home-warm .hero-actions .btn-primary::before {
    animation: none !important;
    opacity: 0;
    transform: translateX(-120%) skewX(-18deg);
  }
}
