@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00ff, U+0131, U+0152-0153, U+02bb-02bc, U+02c6,
    U+02da, U+02dc, U+0304, U+0308, U+0329, U+2000-206f, U+20ac, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+feff, U+fffd;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/fraunces-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02ba, U+02bd-02c5, U+02c7-02cc, U+02ce-02d7,
    U+02dd-02ff, U+0304, U+0308, U+0329, U+1d00-1dbf, U+1e00-1e9f,
    U+1ef2-1eff, U+2020, U+20a0-20ab, U+20ad-20c0, U+2113, U+2c60-2c7f,
    U+a720-a7ff;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00ff, U+0131, U+0152-0153, U+02bb-02bc, U+02c6,
    U+02da, U+02dc, U+0304, U+0308, U+0329, U+2000-206f, U+20ac, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+feff, U+fffd;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02ba, U+02bd-02c5, U+02c7-02cc, U+02ce-02d7,
    U+02dd-02ff, U+0304, U+0308, U+0329, U+1d00-1dbf, U+1e00-1e9f,
    U+1ef2-1eff, U+2020, U+20a0-20ab, U+20ad-20c0, U+2113, U+2c60-2c7f,
    U+a720-a7ff;
}

:root {
  --cream: #fff8f1;
  --cream-deep: #f7eadf;
  --paper: #fffdf9;
  --ink: #2e1e2a;
  --ink-soft: #62515c;
  --berry: #8d244f;
  --berry-dark: #681638;
  --coral: #f36b7f;
  --coral-soft: #ffd3d6;
  --butter: #f7d66d;
  --lilac: #cfc3ff;
  --mint: #b9e4d0;
  --sky: #bfe8f4;
  --line: rgba(46, 30, 42, 0.16);
  --shadow-sm: 0 10px 30px rgba(71, 31, 50, 0.09);
  --shadow-lg: 0 28px 70px rgba(71, 31, 50, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --page-padding: clamp(1.1rem, 4vw, 2rem);
  --content: 74rem;
  --narrow: 49rem;
  --header-height: 4.75rem;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  min-width: 20rem;
  margin: 0;
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main {
  display: block;
}

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

img,
video {
  height: auto;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--butter);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

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

.container--narrow {
  width: min(100%, calc(var(--narrow) + (2 * var(--page-padding))));
}

.section {
  position: relative;
  padding-block: clamp(3.25rem, 7vw, 6rem);
}

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

.section--berry {
  overflow: hidden;
  background: var(--berry);
  color: white;
}

.section--butter {
  background: var(--butter);
}

.section--mint {
  background: color-mix(in srgb, var(--mint) 68%, white);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.75rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 8vw, 5rem);
}

.section-heading--center h2 {
  margin-inline: auto;
}

.section-heading p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--berry);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.65rem;
  height: 0.22rem;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.section--berry .eyebrow,
.contact-shell .eyebrow {
  color: var(--butter);
}

.lede {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2.6vw, 1.32rem);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--berry);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  font-size: 1.3em;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(0.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--berry);
  color: white;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 9px 0 var(--berry-dark);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(3px);
  box-shadow: 0 6px 0 var(--berry-dark);
}

.button:active {
  transform: translateY(7px);
  box-shadow: 0 2px 0 var(--berry-dark);
}

.button svg {
  width: 1.15rem;
  height: 1.15rem;
}

.button--light {
  border-color: var(--ink);
  background: white;
  color: var(--ink);
  box-shadow: 0 7px 0 var(--ink);
}

.button--light:hover {
  box-shadow: 0 4px 0 var(--ink);
}

.button--yellow {
  background: var(--butter);
  color: var(--ink);
  box-shadow: 0 9px 0 #caa638;
}

.button--yellow:hover {
  box-shadow: 0 6px 0 #caa638;
}

.button--small {
  min-height: 2.85rem;
  padding: 0.72rem 1rem;
  box-shadow: none;
  font-size: 0.88rem;
}

.announcement {
  position: relative;
  z-index: 50;
  background: var(--ink);
  color: white;
  font-size: 0.77rem;
  font-weight: 700;
}

.announcement__inner {
  display: flex;
  min-height: 2.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
}

.announcement a {
  color: var(--butter);
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 241, 0.92);
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(46, 30, 42, 0.07);
}

.site-nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.62rem;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0.28rem;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.1) saturate(1.08);
}

.brand__text {
  display: grid;
  gap: 0.18rem;
}

.brand__name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__descriptor {
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle {
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-content: center;
  gap: 0.3rem;
  border: 0;
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

.site-nav__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: var(--page-padding);
  left: var(--page-padding);
  display: grid;
  gap: 0.3rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.js .site-nav__panel {
  visibility: hidden;
  transform: translateY(-0.5rem) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.js .site-nav__panel[data-open="true"] {
  visibility: visible;
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.site-nav__links {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links a {
  display: flex;
  min-height: 3.1rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-radius: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  background: var(--coral-soft);
  color: var(--berry-dark);
}

.site-nav__cta {
  margin-top: 0.35rem;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(2rem, 7vw, 5.5rem) clamp(4.5rem, 10vw, 8rem);
  background:
    radial-gradient(circle at 6% 18%, rgba(247, 214, 109, 0.65) 0 8rem, transparent 8.1rem),
    radial-gradient(circle at 92% 88%, rgba(207, 195, 255, 0.62) 0 11rem, transparent 11.1rem),
    var(--cream);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: 9%;
  width: 10rem;
  height: 10rem;
  border: 2px dashed rgba(141, 36, 79, 0.24);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  bottom: 12%;
  left: -5rem;
  width: 14rem;
  height: 14rem;
  transform: rotate(18deg);
  border: 2px solid rgba(243, 107, 127, 0.35);
  border-radius: 40% 60% 68% 32% / 48% 38% 62% 52%;
  content: "";
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.25rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3.05rem, 13vw, 7rem);
}

.hero h1 em {
  position: relative;
  color: var(--berry);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: 0.02em;
  left: 0;
  z-index: -1;
  height: 0.18em;
  transform: rotate(-1.5deg);
  border-radius: 50%;
  background: var(--butter);
  content: "";
}

.hero__intro {
  max-width: 37rem;
  margin-bottom: 1.7rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 3vw, 1.32rem);
}

.hero__note {
  display: flex;
  max-width: 32rem;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.7rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
}

.hero__note::before {
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0.35rem rgba(185, 228, 208, 0.42);
  content: "";
}

.hero__media {
  position: relative;
  width: min(100%, 25rem);
  min-width: 0;
  margin-inline: auto;
}

.hero__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  transform: rotate(1.5deg);
  border: 0.55rem solid var(--paper);
  border-radius: 44% 56% 30% 70% / 36% 34% 66% 64%;
  background: var(--coral-soft);
  box-shadow: var(--shadow-lg);
}

.hero__frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(46, 30, 42, 0.22));
  content: "";
}

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

.hero__badge {
  position: absolute;
  z-index: 2;
  right: -0.35rem;
  bottom: -1.5rem;
  display: grid;
  width: 8.4rem;
  min-height: 8.4rem;
  padding: 1rem;
  place-content: center;
  transform: rotate(-6deg);
  border: 2px solid var(--ink);
  border-radius: 48% 52% 51% 49% / 43% 41% 59% 57%;
  background: var(--butter);
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  box-shadow: 0 8px 0 var(--ink);
}

.hero__badge strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.9rem;
}

.hero__caption {
  position: absolute;
  z-index: 2;
  bottom: 0.8rem;
  left: -0.4rem;
  max-width: 9rem;
  padding: 0.7rem 0.85rem;
  transform: rotate(3deg);
  border-radius: 0.9rem;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.trust-ribbon {
  position: relative;
  z-index: 3;
  margin-top: -2.2rem;
}

.trust-ribbon__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 9px 0 var(--ink);
}

.trust-stat {
  min-width: 0;
  padding: 1.1rem 0.85rem;
  text-align: center;
}

.trust-stat:nth-child(1) {
  background: var(--coral-soft);
}

.trust-stat:nth-child(2) {
  background: var(--butter);
}

.trust-stat:nth-child(3) {
  background: var(--mint);
}

.trust-stat:nth-child(4) {
  background: var(--lilac);
}

.trust-stat strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 5vw, 2.15rem);
  line-height: 1.05;
}

.trust-stat span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.attention-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.studio-collage {
  position: relative;
  max-width: 38rem;
  margin-inline: auto;
  padding: 1rem 1rem 2rem;
}

.studio-collage::before {
  position: absolute;
  inset: 8% -1% 0 8%;
  transform: rotate(5deg);
  border-radius: 28% 72% 63% 37% / 45% 35% 65% 55%;
  background: var(--lilac);
  content: "";
}

.studio-collage img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  transform: rotate(-2deg);
  border: 0.55rem solid white;
  border-radius: 2rem 7rem 2rem 2rem;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.studio-collage__note {
  position: absolute;
  right: -0.25rem;
  bottom: -0.4rem;
  max-width: 12rem;
  padding: 1rem 1.1rem;
  transform: rotate(3deg);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  background: var(--butter);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.25;
  box-shadow: 0 6px 0 var(--ink);
}

.attention-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.55rem, 9vw, 5.2rem);
}

.attention-copy .lede {
  margin-bottom: 1.7rem;
}

.attention-points {
  display: grid;
  gap: 0;
  margin: 0 0 1.8rem;
  padding: 0;
  list-style: none;
}

.attention-points li {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 0.8rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
}

.attention-points li:last-child {
  border-bottom: 1px solid var(--line);
}

.attention-points span {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--berry);
  font-weight: 900;
}

.attention-points strong {
  display: block;
  margin-bottom: 0.18rem;
}

.attention-points p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 18rem;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 7px 0 var(--ink);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-0.35rem) rotate(-0.5deg);
  box-shadow: 0 12px 0 var(--ink);
}

.service-card:nth-child(even):hover {
  transform: translateY(-0.35rem) rotate(0.5deg);
}

.service-card::after {
  position: absolute;
  right: -2.2rem;
  bottom: -2.7rem;
  width: 8.5rem;
  height: 8.5rem;
  border: 1.5rem solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.service-card--coral {
  background: var(--coral-soft);
}

.service-card--yellow {
  background: var(--butter);
}

.service-card--mint {
  background: var(--mint);
}

.service-card--lilac {
  background: var(--lilac);
}

.service-card--sky {
  background: var(--sky);
}

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

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-card__number {
  color: rgba(46, 30, 42, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card__arrow {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.service-card:hover .service-card__arrow {
  transform: rotate(-35deg);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  margin: 2.5rem 0 0.8rem;
  font-size: clamp(2rem, 8vw, 3.6rem);
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 30rem;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
}

.choice-callout {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.6rem, 5vw, 3.2rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 0 var(--coral);
}

.choice-callout::after {
  position: absolute;
  right: -3rem;
  bottom: -5rem;
  width: 13rem;
  height: 13rem;
  border: 2.5rem solid rgba(247, 214, 109, 0.15);
  border-radius: 50%;
  content: "";
}

.choice-callout h2 {
  max-width: 15ch;
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 7vw, 3.7rem);
}

.choice-callout p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.choice-callout .button {
  position: relative;
  z-index: 1;
  justify-self: start;
}

.work-reel {
  display: flex;
  gap: 1rem;
  margin-inline: calc(var(--page-padding) * -1);
  padding: 0.25rem var(--page-padding) 1.5rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--page-padding);
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--coral) var(--cream-deep);
}

.work-card {
  flex: 0 0 min(78vw, 20rem);
  scroll-snap-align: start;
}

.work-card:nth-child(even) {
  padding-top: 2rem;
}

.work-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 0.45rem solid white;
  border-radius: 7rem 1.5rem 1.5rem;
  background: var(--cream-deep);
  box-shadow: var(--shadow-sm);
}

.work-card:nth-child(even) .work-card__image {
  border-radius: 1.5rem 1.5rem 7rem;
}

.work-card__image img,
.work-card__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.work-card__label {
  margin-top: 0.9rem;
}

.work-card__label span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--berry);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card__label strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.gallery-note {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.review-layout {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.rating-block {
  position: relative;
  display: grid;
  min-height: 21rem;
  padding: 2rem;
  place-content: center;
  border: 2px solid white;
  border-radius: 47% 53% 62% 38% / 40% 33% 67% 60%;
  background: var(--butter);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 10px 0 var(--coral);
}

.rating-block__score {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(5rem, 22vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.rating-block__stars {
  margin-top: 1.25rem;
  color: var(--berry);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}

.rating-block p {
  margin: 0.45rem 0 0;
  font-weight: 800;
}

.review-copy h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.55rem, 9vw, 5rem);
}

.review-copy > p {
  max-width: 40rem;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.76);
}

.review-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.review-themes span {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.83rem;
  font-weight: 700;
}

.review-copy .text-link {
  color: var(--butter);
}

.steps {
  display: grid;
  gap: 1.8rem;
  counter-reset: visit-step;
}

.step {
  position: relative;
  padding: 1.5rem 0 1.5rem 4.8rem;
  counter-increment: visit-step;
  border-top: 1px solid var(--line);
}

.step::before {
  position: absolute;
  top: 1.4rem;
  left: 0;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  transform: rotate(-5deg);
  border: 2px solid var(--ink);
  border-radius: 44% 56% 51% 49%;
  background: var(--butter);
  content: counter(visit-step, decimal-leading-zero);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.step:nth-child(2)::before {
  background: var(--mint);
}

.step:nth-child(3)::before {
  background: var(--lilac);
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
}

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

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--paper);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 4.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 3.4rem 1rem 1.1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--berry);
  content: "+";
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item__content {
  padding: 0 1.1rem 1.25rem;
  color: var(--ink-soft);
}

.faq-item__content p {
  margin: 0;
}

.contact-section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
  background:
    linear-gradient(110deg, rgba(141, 36, 79, 0.98), rgba(104, 22, 56, 0.98)),
    var(--berry);
}

.contact-shell {
  display: grid;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 12px 0 var(--ink);
}

.contact-copy {
  padding: clamp(1.7rem, 6vw, 4rem);
}

.contact-copy h2 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2.65rem, 10vw, 5rem);
}

.contact-copy > p {
  max-width: 34rem;
  margin-bottom: 1.7rem;
  color: var(--ink-soft);
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.contact-list__icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--berry);
}

.contact-list__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.contact-list span:not(.contact-list__icon) {
  font-size: 0.9rem;
  font-weight: 750;
}

.map-wrap {
  position: relative;
  min-height: 25rem;
  background: var(--cream-deep);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.map-wrap__link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  padding: 0.7rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--butter);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 5px 0 var(--ink);
}

.site-footer {
  padding-block: 3.5rem 6rem;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand .brand {
  color: white;
}

.footer-brand .brand__mark {
  border-color: var(--butter);
  background: var(--berry-dark);
}

.footer-brand .brand__mark img {
  filter: contrast(1.12) saturate(1.1);
}

.footer-brand .brand__descriptor {
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand p {
  max-width: 27rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact {
  display: grid;
  gap: 0.45rem;
}

.footer-contact a {
  color: var(--butter);
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
}

.mobile-call {
  position: fixed;
  z-index: 80;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(255, 248, 241, 0.94);
  backdrop-filter: blur(14px);
}

.mobile-call a {
  display: flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  background: var(--berry);
  color: white;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 5px 0 var(--berry-dark);
}

.mobile-call svg {
  width: 1.1rem;
  height: 1.1rem;
}

.scroll-story {
  --scroll-story-gutter: 0.05rem;
  position: absolute;
  z-index: 30;
  top: 0;
  left: var(--scroll-story-gutter);
  right: var(--scroll-story-gutter);
  width: auto;
  height: 100vh;
  opacity: 0.96;
  pointer-events: none;
  visibility: hidden;
}

.scroll-story.is-ready {
  visibility: visible;
}

.scroll-story svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scroll-story__rail {
  fill: none;
  stroke: rgba(141, 36, 79, 0.17);
  stroke-linecap: round;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.scroll-story__progress {
  fill: none;
  stroke: var(--coral);
  stroke-dasharray: 0 1;
  stroke-linecap: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 2px rgba(243, 107, 127, 0.62));
  transition:
    stroke-width 180ms ease,
    filter 180ms ease;
  vector-effect: non-scaling-stroke;
}

.scroll-story__trail {
  fill: var(--coral);
  stroke: rgba(255, 248, 241, 0.9);
  stroke-width: 0.9;
  filter: drop-shadow(0 0 3px rgba(243, 107, 127, 0.82));
  vector-effect: non-scaling-stroke;
}

.scroll-story__direction {
  fill: var(--berry);
  stroke: var(--butter);
  stroke-linejoin: round;
  stroke-width: 1.6;
  filter:
    drop-shadow(0 0 2px rgba(255, 248, 241, 0.95))
    drop-shadow(0 0 5px rgba(141, 36, 79, 0.55));
  vector-effect: non-scaling-stroke;
}

.scroll-story__dot {
  fill: var(--berry);
  stroke: var(--butter);
  stroke-width: 3.5;
  filter:
    drop-shadow(0 0 2px rgba(255, 248, 241, 0.95))
    drop-shadow(0 0 5px rgba(141, 36, 79, 0.55));
  transform-box: fill-box;
  transform-origin: center;
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 180ms ease;
  vector-effect: non-scaling-stroke;
}

.scroll-story.is-scrolling .scroll-story__progress {
  stroke-width: 5;
  filter: drop-shadow(0 0 4px rgba(243, 107, 127, 0.88));
}

.scroll-story.is-scrolling .scroll-story__dot {
  filter:
    drop-shadow(0 0 3px rgba(255, 248, 241, 1))
    drop-shadow(0 0 8px rgba(141, 36, 79, 0.78));
  transform: scale(1.22);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.6rem, 9vw, 7.5rem);
  background:
    radial-gradient(circle at 88% 25%, rgba(207, 195, 255, 0.72) 0 9rem, transparent 9.1rem),
    radial-gradient(circle at 6% 85%, rgba(247, 214, 109, 0.58) 0 7rem, transparent 7.1rem),
    var(--cream);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 58rem;
}

.page-hero h1 {
  max-width: 14ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 11vw, 6.5rem);
}

.page-hero p {
  max-width: 44rem;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 3vw, 1.28rem);
}

.page-hero__scribble {
  position: absolute;
  z-index: -1;
  top: -3rem;
  right: -2rem;
  width: clamp(9rem, 28vw, 18rem);
  color: rgba(243, 107, 127, 0.35);
}

.category-nav {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav__inner {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 0.4rem;
  padding-block: 0.65rem;
}

.category-nav a {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.category-nav a:hover,
.category-nav a.is-active {
  background: var(--coral-soft);
  color: var(--berry-dark);
}

.treatment-list {
  display: grid;
}

.treatment-section {
  position: relative;
  padding-block: clamp(4.2rem, 9vw, 7.5rem);
  border-bottom: 1px solid var(--line);
}

.treatment-section:nth-child(even) {
  background: var(--paper);
}

.treatment-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 8vw, 6.5rem);
}

.treatment-copy__number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--berry);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.treatment-copy h2 {
  max-width: 13ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.5rem, 9vw, 4.8rem);
}

.treatment-copy > p {
  max-width: 41rem;
  color: var(--ink-soft);
}

.treatment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.treatment-tags li {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 0.75rem;
  font-weight: 750;
}

.treatment-media {
  position: relative;
  max-width: 35rem;
  margin-inline: auto;
}

.treatment-media::before {
  position: absolute;
  inset: 1.5rem -0.7rem -0.7rem 1.5rem;
  transform: rotate(3deg);
  border-radius: 2rem;
  background: var(--mint);
  content: "";
}

.treatment-section:nth-child(3n + 2) .treatment-media::before {
  background: var(--lilac);
}

.treatment-section:nth-child(3n + 3) .treatment-media::before {
  background: var(--butter);
}

.treatment-media img,
.treatment-media video {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 0.5rem solid white;
  border-radius: 8rem 1.7rem 1.7rem;
  background: var(--cream-deep);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.treatment-section:nth-child(even) .treatment-media img,
.treatment-section:nth-child(even) .treatment-media video {
  border-radius: 1.7rem 1.7rem 8rem;
}

.treatment-media--wide {
  max-width: 40rem;
}

.treatment-media--wide img {
  aspect-ratio: 2 / 1;
  border-radius: 4rem 1.7rem 1.7rem;
}

.treatment-media__label {
  position: absolute;
  right: -0.4rem;
  bottom: 1.1rem;
  z-index: 1;
  max-width: 11rem;
  padding: 0.7rem 0.85rem;
  transform: rotate(-3deg);
  border: 2px solid var(--ink);
  border-radius: 0.85rem;
  background: var(--coral-soft);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.35;
  box-shadow: 0 5px 0 var(--ink);
}

.treatment-media--wide .treatment-media__label {
  position: relative;
  right: auto;
  bottom: auto;
  max-width: 19rem;
  margin: -0.15rem 0.8rem 0 auto;
  transform: rotate(-1deg);
}

.gallery-launch {
  display: none;
}

.js .gallery-launch {
  display: grid;
  width: min(100%, 35rem);
  min-height: 5rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 0.8rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 1.1rem;
  background: white;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 5px 0 var(--ink);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.gallery-launch:hover {
  transform: translateY(-0.15rem);
  background: var(--coral-soft);
  box-shadow: 0 7px 0 var(--ink);
}

.gallery-launch:active {
  transform: translateY(0.15rem);
  box-shadow: 0 2px 0 var(--ink);
}

.js .gallery-launch--face-treatment {
  border-color: var(--berry-dark);
  background: #edf8f4;
  box-shadow: 0 5px 0 var(--berry-dark);
}

.gallery-launch--face-treatment:hover {
  background: #d8eee5;
  box-shadow: 0 7px 0 var(--berry-dark);
}

.gallery-launch--face-treatment:active {
  box-shadow: 0 2px 0 var(--berry-dark);
}

.gallery-launch--face-treatment .gallery-launch__stack span {
  border-color: var(--berry-dark);
}

.gallery-launch--face-treatment
  .gallery-launch__stack
  span:nth-child(1) {
  background: var(--sky);
}

.gallery-launch--face-treatment
  .gallery-launch__stack
  span:nth-child(2) {
  background: var(--butter);
}

.gallery-launch--face-treatment
  .gallery-launch__stack
  span:nth-child(3) {
  background: var(--mint);
}

.gallery-launch--face-treatment
  .gallery-launch__stack
  span:nth-child(3)::before {
  border-color: var(--berry-dark);
}

.gallery-launch--face-treatment .gallery-launch__arrow {
  background: var(--berry-dark);
}

.gallery-launch__stack {
  position: relative;
  display: block;
  width: 3.15rem;
  height: 3.15rem;
  flex: 0 0 auto;
}

.gallery-launch__stack span {
  position: absolute;
  inset: 0.35rem;
  border: 2px solid var(--ink);
  border-radius: 0.55rem;
  background: var(--butter);
}

.gallery-launch__stack span:nth-child(1) {
  transform: rotate(-9deg) translate(-0.2rem, 0.05rem);
  background: var(--lilac);
}

.gallery-launch__stack span:nth-child(2) {
  transform: rotate(8deg) translate(0.18rem, -0.05rem);
  background: var(--mint);
}

.gallery-launch__stack span:nth-child(3) {
  display: grid;
  transform: none;
  place-items: center;
  background: var(--coral-soft);
}

.gallery-launch__stack span:nth-child(3)::before {
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.gallery-launch__copy {
  display: grid;
  min-width: 0;
  gap: 0.15rem;
}

.gallery-launch__copy strong {
  font-size: 0.85rem;
  line-height: 1.3;
}

.gallery-launch__copy small {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.4;
}

.gallery-launch__arrow {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 1.1rem;
}

.gallery-open {
  overflow: hidden;
}

.gallery-dialog {
  width: min(74rem, calc(100% - 1rem));
  max-width: none;
  max-height: calc(100dvh - 1rem);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1.35rem;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 2rem 6rem rgba(46, 30, 42, 0.35);
}

.gallery-dialog::backdrop {
  background: rgba(31, 18, 29, 0.78);
  backdrop-filter: blur(0.25rem);
}

.gallery-dialog__shell {
  display: grid;
  max-height: calc(100dvh - 1rem);
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: inherit;
  background: var(--cream);
}

.gallery-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.gallery-dialog__header .eyebrow {
  margin-bottom: 0.25rem;
  font-size: 0.62rem;
}

.gallery-dialog__header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

.gallery-dialog__close,
.gallery-dialog__control {
  position: relative;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.gallery-dialog__close {
  font-size: 1.75rem;
}

.gallery-control-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 20px;
  max-width: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-dialog__stage {
  position: relative;
  display: grid;
  min-height: min(60dvh, 38rem);
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(243, 107, 127, 0.24), transparent 30%),
    radial-gradient(circle at 80% 85%, rgba(207, 195, 255, 0.2), transparent 30%),
    var(--ink);
  touch-action: pan-y;
}

.gallery-dialog__image,
.gallery-dialog__video {
  display: block;
  width: 100%;
  height: min(60dvh, 38rem);
  opacity: 1;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.gallery-dialog__video {
  background: var(--ink);
}

.gallery-dialog__stage[data-loading="true"] .gallery-dialog__image,
.gallery-dialog__stage[data-loading="true"] .gallery-dialog__video {
  opacity: 0;
}

.gallery-dialog__loader {
  position: absolute;
  z-index: 1;
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 0.25rem solid rgba(255, 255, 255, 0.28);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: gallery-spin 700ms linear infinite;
}

.gallery-dialog__stage[data-loading="true"] .gallery-dialog__loader {
  display: block;
}

@keyframes gallery-spin {
  to {
    transform: rotate(1turn);
  }
}

.gallery-dialog__control {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  background: var(--butter);
  box-shadow: 0 4px 0 var(--ink);
  font-size: 1.2rem;
}

.gallery-dialog__control:hover,
.gallery-dialog__close:hover {
  background: var(--coral-soft);
}

.gallery-dialog__control--previous {
  left: 0.65rem;
}

.gallery-dialog__control--next {
  right: 0.65rem;
}

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

.gallery-dialog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem 0.35rem;
}

.gallery-dialog__footer p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-dialog__count {
  flex: 0 0 auto;
  color: var(--berry);
  font-variant-numeric: tabular-nums;
}

.gallery-dialog__loading-note {
  margin: 0;
  padding: 0 1rem 0.85rem;
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.info-note {
  padding: 1rem 1.1rem;
  border-left: 0.35rem solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.pricing-intro {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.pricing-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.price-tools {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-search {
  position: relative;
}

.price-search svg {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 1.2rem;
  height: 1.2rem;
  transform: translateY(-50%);
  color: var(--ink-soft);
  pointer-events: none;
}

.price-search input {
  width: 100%;
  min-height: 3.45rem;
  padding: 0.85rem 1rem 0.85rem 3rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: white;
  color: var(--ink);
}

.price-search input::placeholder {
  color: #887781;
}

.price-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0.2rem 0 0.8rem;
}

.price-filter {
  flex: 0 0 auto;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.price-filter[aria-pressed="true"] {
  border-color: var(--berry);
  background: var(--berry);
  color: white;
}

.price-groups {
  display: grid;
  gap: 1rem;
}

.price-group {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 6px 0 var(--ink);
}

.price-group[hidden] {
  display: none;
}

.price-group > summary {
  position: relative;
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 3.7rem 1rem 1.15rem;
  background: var(--coral-soft);
  cursor: pointer;
  list-style: none;
}

.price-group:nth-child(3n + 2) > summary {
  background: var(--mint);
}

.price-group:nth-child(3n + 3) > summary {
  background: var(--lilac);
}

.price-group > summary::-webkit-details-marker {
  display: none;
}

.price-group > summary::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  transform: translateY(-50%);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: white;
  content: "+";
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.price-group[open] > summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.price-group__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 5vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.price-group__count {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-group__intro {
  padding: 1.25rem 1.1rem 1.4rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(145deg, var(--paper), var(--cream));
}

.price-group__lede {
  max-width: 52rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.price-category-grid,
.treatment-category-grid {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.price-category,
.treatment-category {
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-left: 0.32rem solid var(--coral);
  border-radius: 0.9rem;
  background: white;
}

.price-category:nth-child(2),
.treatment-category:nth-child(2) {
  border-left-color: #c6a82f;
}

.price-category:nth-child(3),
.treatment-category:nth-child(3) {
  border-left-color: #5a9d7e;
}

.price-category:nth-child(4),
.treatment-category:nth-child(4) {
  border-left-color: #8b75cf;
}

.price-category:nth-child(5),
.treatment-category:nth-child(5) {
  border-left-color: #4d98ae;
}

.price-category strong,
.treatment-category strong {
  display: block;
  margin-bottom: 0.22rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.2;
}

.price-category span,
.treatment-category span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead {
  display: block;
}

.price-table tbody {
  display: grid;
}

.price-table tr {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(3.7rem, 0.35fr)
    minmax(5.5rem, 0.55fr);
  align-items: center;
  gap: 0.35rem 0.8rem;
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line);
}

.price-table thead tr {
  padding-block: 0.75rem;
  border-top: 0;
}

.price-table tr[hidden] {
  display: none;
}

.price-table th,
.price-table td {
  padding: 0;
  border: 0;
}

.price-table th {
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.4;
  text-align: left;
}

.price-table thead th {
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-table thead th:not(:first-child) {
  text-align: right;
  white-space: nowrap;
}

.price-table td {
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-align: right;
}

.price-table td:last-child {
  color: var(--berry);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
}

.price-table td:empty::after {
  content: "—";
}

.price-empty {
  display: none;
  padding: 2rem;
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
  color: var(--ink-soft);
  text-align: center;
}

.price-empty.is-visible {
  display: block;
}

.price-disclaimer {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.contact-page-grid {
  display: grid;
  gap: clamp(2rem, 7vw, 5.5rem);
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 6.3rem;
  padding: 1.1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: white;
  text-decoration: none;
  box-shadow: 0 6px 0 var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 9px 0 var(--ink);
}

.contact-card:nth-child(2) {
  background: var(--mint);
}

.contact-card:nth-child(3) {
  background: var(--lilac);
}

.contact-card__icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--berry);
}

.contact-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.contact-card small {
  display: block;
  margin-bottom: 0.16rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.arrival-note {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-left: 0.4rem solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--paper);
}

.arrival-note h2 {
  margin-bottom: 0.45rem;
  font-size: 1.5rem;
}

.arrival-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.full-map {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--cream-deep);
  box-shadow: 0 9px 0 var(--ink);
}

.full-map iframe {
  width: 100%;
  min-height: 31rem;
  border: 0;
}

.full-map__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--butter);
}

.full-map__footer p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 750;
}

.full-map__footer a {
  font-weight: 850;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.65, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

[hidden] {
  display: none !important;
}

@media (max-width: 47.99rem) {
  .category-nav__inner {
    gap: 0.2rem;
    padding: 0.4rem 0.75rem;
  }

  .category-nav a {
    min-height: 2.5rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.74rem;
  }
}

@media (min-width: 42rem) {
  .trust-ribbon__inner {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .service-card:last-child:nth-child(odd) {
    min-height: 16rem;
    grid-column: 1 / -1;
  }

  .service-card:nth-child(3n + 1) {
    min-height: 22rem;
  }

  .choice-callout {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .step {
    padding: 5rem 1rem 0;
    border-top: 0;
  }

  .step::before {
    top: 0;
  }

  .price-tools {
    grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
  }

  .price-category-grid,
  .treatment-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-category:last-child:nth-child(odd),
  .treatment-category:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .price-filters {
    margin: 0;
    padding-inline: 0;
  }

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

  .contact-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 48rem) {
  body {
    padding-bottom: 0;
  }

  .announcement {
    font-size: 0.8rem;
  }

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

  .site-nav__panel,
  .js .site-nav__panel {
    position: static;
    display: flex;
    visibility: visible;
    align-items: center;
    gap: 1rem;
    padding: 0;
    transform: none;
    border: 0;
    border-radius: 0;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
  }

  .site-nav__links {
    display: flex;
    align-items: center;
  }

  .site-nav__links a {
    min-height: 2.75rem;
    padding-inline: 0.72rem;
    font-size: 0.82rem;
  }

  .site-nav__cta {
    margin-top: 0;
  }

  .scroll-story {
    --scroll-story-gutter: 0.55rem;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

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

  .site-footer {
    padding-bottom: 3rem;
  }

  .price-table thead {
    display: table-header-group;
  }

  .price-table tbody {
    display: table-row-group;
  }

  .price-table tr {
    display: table-row;
  }

  .price-table th,
  .price-table td {
    padding: 1rem 1.15rem;
    border-top: 1px solid var(--line);
  }

  .price-table thead th {
    border-top: 0;
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .price-table thead th:not(:first-child) {
    text-align: right;
  }

  .price-table td,
  .price-table td:last-child {
    color: var(--ink-soft);
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 650;
    text-align: right;
  }

  .price-table td:last-child {
    color: var(--berry);
    font-size: 1rem;
    font-weight: 850;
  }
}

@media (min-width: 60rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 0.98fr);
  }

  .hero__caption {
    bottom: 2rem;
    left: -1.6rem;
  }

  .attention-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

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

  .price-category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .price-category:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .service-card {
    grid-column: span 4;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(5) {
    grid-column: span 7;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(6) {
    grid-column: span 5;
  }

  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    min-height: 19rem;
    grid-column: span 6;
  }

  .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .work-reel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .work-card {
    min-width: 0;
  }

  .review-layout {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.2fr);
  }

  .contact-shell {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .treatment-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  }

  .treatment-section:nth-child(even) .treatment-copy {
    order: 2;
  }

  .treatment-section:nth-child(even) .treatment-media {
    order: 1;
  }

  .contact-page-grid {
    grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card:first-child {
    grid-column: auto;
  }
}

@media (min-width: 82rem) {
  .scroll-story {
    --scroll-story-gutter: max(1rem, calc((100vw - 83rem) / 2));
  }
}

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

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

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

  .scroll-story__direction,
  .scroll-story__trail,
  .scroll-story__progress {
    display: none;
  }
}

@media print {
  .announcement,
  .site-header,
  .mobile-call,
  .scroll-story,
  .price-tools,
  .contact-section,
  .site-footer {
    display: none !important;
  }

  body {
    padding: 0;
    background: white;
    color: black;
    font-size: 10pt;
  }

  .page-hero {
    padding-block: 1rem;
    background: white;
  }

  .page-hero h1 {
    font-size: 28pt;
  }

  .section {
    padding-block: 1rem;
  }

  .price-group {
    break-inside: avoid;
    border: 1px solid #777;
    box-shadow: none;
  }

  .price-group > summary {
    background: #eee !important;
  }

  .price-group:not([open]) > :not(summary) {
    display: block;
  }
}
