:root {
  --bg: #f4f1ec;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-soft: #ebe1d7;
  --text: #2f2e33;
  --muted: #6f6968;
  --accent: #e8c1b4;
  --accent-strong: #efbca9;
  --stroke: rgba(255, 255, 255, 0.86);
  --shadow: 0 18px 40px rgba(165, 141, 127, 0.14);
  --shadow-soft: 0 12px 26px rgba(165, 141, 127, 0.12);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --section-bleed-inline: 28px;
  --section-content-left: 66px;
  --section-content-right: 118px;
  --section-eyebrow-space: 52px;
  --section-content-gap: 52px;
  --section-title-size: 58px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua",
    "Times New Roman", serif;
  --font-sans: "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  --font-heading: "Montserrat", "SF Pro Display", "SF Pro Text", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  color: var(--text);
  font-family: var(--font-sans);
  background: #f6f2ed;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}

body::before {
  top: -8vw;
  left: -10vw;
  width: 26vw;
  height: 26vw;
  min-width: 260px;
  min-height: 260px;
  background: radial-gradient(
    circle,
    rgba(240, 205, 190, 0.48) 0%,
    rgba(240, 205, 190, 0.16) 42%,
    rgba(240, 205, 190, 0) 74%
  );
}

body::after {
  top: -6vw;
  right: -9vw;
  width: 30vw;
  height: 30vw;
  min-width: 280px;
  min-height: 280px;
  background: radial-gradient(
    circle,
    rgba(240, 205, 190, 0.48) 0%,
    rgba(240, 205, 190, 0.16) 40%,
    rgba(240, 205, 190, 0) 74%
  );
}

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

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

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

button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
}

.page-shell {
  width: min(100%, 1388px);
  margin: 0 auto;
  padding: 38px clamp(24px, 5.7vw, 72px) 72px;
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 0 0;
}

.site-logo {
  font-family: "Snell Roundhand", "Apple Chancery", "Brush Script MT", cursive;
  font-size: clamp(1.45rem, 1.45vw, 1.72rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px clamp(24px, 4.3vw, 64px);
  color: #97877f;
}

.site-nav a {
  position: relative;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.2;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

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

.menu-toggle {
  display: none;
  inline-size: 48px;
  block-size: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50%;
  border: 1px solid rgba(114, 101, 94, 0.12);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.section {
  padding: 44px 0;
}

.section-label,
.section-kicker {
  margin: 0 0 var(--section-eyebrow-space);
  color: #b39b8e;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(1rem, 1.32vw, 1.18rem);
  color: #c3aa9a;
}

.section-title,
.hero__title,
.contact__title {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.section-frame {
  width: min(100%, 1520px);
  margin: 0 auto;
  padding: 0 var(--section-content-right) 0 var(--section-content-left);
}

.hero {
  padding-top: clamp(350px, 45vh, 420px);
  padding-bottom: 82px;
  min-height: calc(100svh - 44px);
}

.hero__title {
  max-width: 980px;
  font-family: var(--font-display);
  font-size: clamp(2.95rem, 4.9vw, 4.14rem);
  font-weight: 400;
  letter-spacing: -0.048em;
  line-height: 0.99;
}

.hero__desktop-break {
  display: inline;
}

.section-text {
  max-width: 1020px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.16rem, 1.8vw, 1.4rem);
  line-height: 1.28;
}

.hero__text {
  max-width: 748px;
  margin-top: 32px;
  color: #7f797c;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.3;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 76px;
  padding: 18px 44px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button--primary {
  margin-top: 44px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(243, 200, 184, 0.98), rgba(247, 225, 217, 0.98)),
    var(--surface-strong);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.72),
    inset 0 0 0 1px rgba(130, 113, 102, 0.16),
    0 10px 22px rgba(170, 136, 118, 0.19);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.72),
    inset 0 0 0 1px rgba(130, 113, 102, 0.16),
    0 16px 28px rgba(170, 136, 118, 0.24);
}

.hero__cta {
  min-width: 296px;
  min-height: 64px;
  margin-top: 42px;
  padding: 16px 34px;
  font-size: clamp(1.02rem, 1.25vw, 1.14rem);
  font-weight: 700;
}

.button--large {
  min-width: min(100%, 340px);
}

.about__layout {
  position: relative;
  width: min(100%, 1520px);
  min-height: auto;
  margin: 0 auto;
  padding: 0 var(--section-content-right) 0 var(--section-content-left);
}

.about__content {
  display: grid;
  gap: 0;
  max-width: 1436px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--section-title-size);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about {
  margin-inline: calc(50% - 50vw);
  overflow: visible;
  padding-inline: var(--section-bleed-inline);
  padding-top: var(--section-eyebrow-space);
  padding-bottom: 96px;
  background: #f6f2ed;
}

.about .section-label {
  color: #c4b2a6;
  font-size: 0.98rem;
  letter-spacing: 0.065em;
}

.about__title {
  font-family: var(--font-heading);
  font-size: var(--section-title-size);
  font-weight: 500;
}

.about__text {
  max-width: none;
  color: #757076;
  font-size: clamp(1.72rem, 1.96vw, 1.92rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.about__content .about__text:first-of-type {
  margin-top: var(--section-content-gap);
  max-width: 1368px;
}

.about__text + .about__text {
  max-width: 1450px;
  margin-top: 42px;
}

.about__desktop-break {
  display: inline;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 22px 34px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(249, 247, 243, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 14px 28px rgba(224, 216, 208, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(238, 232, 224, 0.48);
  font-size: clamp(1.12rem, 1.5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
}

.pill-list--compact li {
  min-width: 230px;
}

.about__pills {
  gap: 0 40px;
  margin-top: 52px;
  max-width: 760px;
}

.about__pills li {
  min-width: 194px;
  min-height: 84px;
  padding: 17px 26px;
  border-radius: 19px;
  box-shadow:
    0 14px 26px rgba(224, 216, 208, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(238, 232, 224, 0.5);
  font-size: clamp(1.06rem, 1.2vw, 1.15rem);
  font-weight: 700;
}

.about__education {
  display: grid;
  gap: 4px;
  margin-top: 48px;
  max-width: 980px;
}

.about__education h3,
.work-card__meta h3 {
  margin: 0;
  font-size: clamp(2.14rem, 2.46vw, 2.36rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.about__education p,
.work-card__meta p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.82rem, 2.02vw, 1.98rem);
  line-height: 1.2;
  letter-spacing: -0.038em;
}

.works {
  position: relative;
  z-index: 0;
  margin-inline: calc(50% - 50vw);
  padding-inline: var(--section-bleed-inline);
  padding-top: var(--section-eyebrow-space);
  padding-bottom: 96px;
}

.works::before,
.services::before,
.contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
}

.works::before {
  top: 340px;
  right: 48px;
  width: 280px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(243, 223, 214, 0.48) 0%,
    rgba(243, 223, 214, 0.18) 42%,
    rgba(243, 223, 214, 0) 72%
  );
}

.work-card {
  border-radius: 36px;
  background: #fbfaf7;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 16px 34px rgba(214, 205, 197, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.work-card:hover,
.work-card:focus-within {
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px rgba(214, 205, 197, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.works__frame > .section-title,
.services__frame > .section-title {
  max-width: 980px;
}

.works__layout {
  display: grid;
  gap: 16px;
  width: min(100%, 1202px);
  margin-top: var(--section-content-gap);
}

.works__row {
  display: flex;
  align-items: flex-start;
}

.works__row--top {
  min-height: 499px;
}

.works__row--middle {
  gap: 30px;
  margin-top: 14px;
}

.works__row--bottom {
  gap: 24px;
  margin-top: 16px;
}

.work-card__link {
  display: grid;
  gap: 18px;
  height: 100%;
  padding: 28px;
}

.work-card__frame {
  overflow: hidden;
  border-radius: 26px;
  background: #f7f4ef;
}

.work-card__frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.skincare-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 18px;
}

.skincare-strip img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.work-card--scodit {
  width: min(100%, 657px);
  min-height: 499px;
}

.work-card--scodit .work-card__link {
  gap: 18px;
  padding: 22px 22px 16px;
}

.work-card--scodit .work-card__frame {
  border-radius: 24px;
  background: #2d1d57;
}

.work-card--scodit .work-card__meta {
  padding: 0 14px 2px;
}

.work-card--skincare {
  width: min(100%, 791px);
  min-height: 284px;
}

.work-card--skincare .work-card__link {
  gap: 16px;
  padding: 14px 14px 16px;
}

.work-card--skincare .work-card__frame {
  padding: 6px;
  border-radius: 22px;
  background: #f0f2ee;
}

.work-card--skincare .work-card__meta,
.work-card--casual .work-card__meta,
.work-card--wedding .work-card__meta,
.work-card--fashion .work-card__meta {
  padding: 0 10px 2px;
}

.work-card--casual {
  width: min(100%, 381px);
  min-height: 289px;
}

.work-card--casual .work-card__link {
  gap: 16px;
  padding: 20px 20px 18px;
}

.work-card--casual .work-card__frame {
  border-radius: 18px;
  background: #fbfaf7;
}

.work-card--wedding {
  width: min(100%, 243px);
  min-height: 315px;
}

.work-card--wedding .work-card__link {
  gap: 14px;
  padding: 14px 18px 18px;
}

.work-card--wedding .work-card__frame {
  border-radius: 18px;
  background: #f9f4ee;
}

.work-card--fashion {
  width: min(100%, 638px);
  min-height: 292px;
}

.work-card--fashion .work-card__link {
  gap: 16px;
  padding: 24px 26px 20px;
}

.work-card--fashion .work-card__frame {
  padding: 18px 28px 0;
  border-radius: 28px;
  background: #f6f0ea;
}

.work-card__meta {
  display: grid;
  gap: 6px;
}

.work-card__meta h3 {
  font-size: clamp(1.35rem, 1.52vw, 1.52rem);
  font-weight: 700;
}

.work-card__meta p {
  color: #9f9690;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.2;
}

.services {
  position: relative;
  z-index: 0;
  margin-inline: calc(50% - 50vw);
  padding-inline: var(--section-bleed-inline);
  padding-top: var(--section-eyebrow-space);
  padding-bottom: 96px;
}

.services::before {
  left: -80px;
  top: 44px;
  width: 380px;
  height: 640px;
  background: linear-gradient(
    180deg,
    rgba(243, 223, 214, 0.42) 0%,
    rgba(243, 223, 214, 0.08) 56%,
    rgba(243, 223, 214, 0) 100%
  );
}

.pill-list--services {
  margin-top: var(--section-content-gap);
  justify-content: center;
  gap: 38px 54px;
  padding-left: 0;
}

.pill-list--services li {
  min-width: 0;
  min-height: 68px;
  padding: 17px 30px;
  border-radius: 20px;
  box-shadow:
    0 15px 30px rgba(224, 216, 208, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(238, 232, 224, 0.48);
  font-size: clamp(1.06rem, 1.2vw, 1.14rem);
  font-weight: 700;
}

.pill-list--services li:nth-child(1) {
  width: 195px;
}

.pill-list--services li:nth-child(2) {
  width: 191px;
}

.pill-list--services li:nth-child(3) {
  width: 211px;
}

.pill-list--services li:nth-child(4) {
  width: 248px;
}

.pill-list--services li:nth-child(5) {
  width: 290px;
}

.pill-list--services li:nth-child(6) {
  width: 196px;
}

.pill-list--services li:nth-child(7) {
  width: 188px;
}

.pricing,
.process {
  position: relative;
  z-index: 0;
  margin-inline: calc(50% - 50vw);
  padding-inline: var(--section-bleed-inline);
}

.pricing::before,
.process::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(82px);
}

.pricing {
  padding-top: var(--section-eyebrow-space);
  padding-bottom: 96px;
}

.pricing::before {
  left: -56px;
  top: 16px;
  width: 310px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(243, 223, 214, 0.52) 0%,
    rgba(243, 223, 214, 0.16) 46%,
    rgba(243, 223, 214, 0) 74%
  );
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 28px;
  width: min(100%, 1160px);
  margin-top: var(--section-content-gap);
}

.pricing-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 152px;
  padding: 24px 20px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #efe2d9 0%, #e9d8cf 100%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 14px 26px rgba(224, 213, 204, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.pricing-card h3,
.pricing-card p {
  margin: 0;
}

.pricing-card h3 {
  max-width: 220px;
  font-size: clamp(1.12rem, 1.3vw, 1.26rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-align: center;
  color: #6c666b;
}

.pricing-card p {
  font-size: clamp(1.22rem, 1.45vw, 1.38rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-align: center;
  color: #403c44;
}

.pricing__note {
  max-width: 860px;
  margin: 28px 0 0;
  color: #787276;
  font-size: clamp(1rem, 1.1vw, 1.06rem);
  line-height: 1.36;
}

.process {
  padding-top: var(--section-eyebrow-space);
  padding-bottom: 96px;
}

.process::before {
  right: -72px;
  bottom: -18px;
  width: 340px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(243, 223, 214, 0.5) 0%,
    rgba(243, 223, 214, 0.16) 44%,
    rgba(243, 223, 214, 0) 74%
  );
}

.process-list {
  display: grid;
  gap: 26px;
  width: min(100%, 1000px);
  margin: var(--section-content-gap) 0 0;
  padding: 0;
  list-style: none;
}

.process-list__item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.process-list__number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-top: 2px;
  border: 2px solid #47434c;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: #333039;
}

.process-list__content {
  display: grid;
  gap: 4px;
}

.process-list__content h3,
.process-list__content p {
  margin: 0;
}

.process-list__content h3 {
  font-size: clamp(1.22rem, 1.5vw, 1.34rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.process-list__content p {
  color: #7f7a7e;
  font-size: clamp(1.02rem, 1.18vw, 1.12rem);
  line-height: 1.3;
}

.contact {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 48px;
  align-items: center;
  width: min(100%, 1286px);
  margin: 0 auto;
  padding-top: 86px;
}

.contact::before {
  left: -150px;
  bottom: -52px;
  width: 440px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(243, 223, 214, 0.55) 0%,
    rgba(243, 223, 214, 0.18) 42%,
    rgba(243, 223, 214, 0) 74%
  );
}

.contact__title {
  max-width: none;
  font-size: clamp(1.7rem, 2.2vw, 2.14rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  white-space: nowrap;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(0.98rem, 1.06vw, 1.02rem);
  font-weight: 600;
}

.contact__links a,
.contact__action {
  transition: opacity 180ms ease;
}

.contact__links a:hover,
.contact__links a:focus-visible,
.contact__action:hover,
.contact__action:focus-visible {
  opacity: 0.68;
}

.contact__action {
  cursor: pointer;
}

.contact .button {
  width: 252px;
  min-width: 252px;
  min-height: 64px;
  margin-top: 0;
  padding-inline: 34px;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
}

.chat-dialog {
  position: fixed;
  inset: 0;
  z-index: 32;
  display: grid;
  place-items: center;
  padding: 24px;
}

.chat-dialog[hidden] {
  display: none;
}

.chat-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 28, 26, 0.46);
  backdrop-filter: blur(14px);
}

.chat-dialog__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  width: min(100%, 640px);
  max-height: calc(100svh - 48px);
  overflow: auto;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 80px rgba(28, 25, 24, 0.22);
}

.chat-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-right: 64px;
}

.chat-dialog__eyebrow {
  margin: 0 0 10px;
  color: #c3aa9a;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-dialog__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.chat-dialog__subtitle {
  margin: 10px 0 0;
  color: #7f797c;
  font-size: 1rem;
  line-height: 1.35;
}

.chat-dialog__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(244, 241, 236, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.chat-dialog__close::before,
.chat-dialog__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #6f6968;
}

.chat-dialog__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.chat-dialog__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.chat-dialog__messages {
  display: grid;
  gap: 12px;
  min-height: 112px;
  max-height: 280px;
  overflow: auto;
  padding: 8px 4px 8px 0;
}

.chat-message {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 20px;
  background: #f5efe9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.chat-message p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.42;
  white-space: pre-wrap;
}

.chat-message--visitor {
  justify-self: end;
  background: linear-gradient(180deg, #f2dbcf 0%, #edd3c6 100%);
}

.chat-message--operator {
  justify-self: start;
  background: #f7f3ee;
}

.chat-message--system {
  justify-self: stretch;
  max-width: 100%;
  color: #5c5556;
  background: rgba(244, 241, 236, 0.9);
}

.chat-message--system p {
  text-align: left;
  line-height: 1.5;
}

.chat-message__meta {
  display: block;
  margin-top: 8px;
  color: #988e8a;
  font-size: 0.78rem;
}

.chat-dialog__form {
  display: grid;
  gap: 16px;
}

.chat-dialog__field {
  display: grid;
  gap: 8px;
}

.chat-dialog__field span {
  font-size: 0.94rem;
  font-weight: 600;
}

.chat-dialog__input,
.chat-dialog__textarea {
  width: 100%;
  border: 1px solid rgba(171, 156, 147, 0.24);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(250, 248, 244, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.chat-dialog__input:focus,
.chat-dialog__textarea:focus {
  outline: 2px solid rgba(239, 188, 169, 0.5);
  outline-offset: 1px;
}

.chat-dialog__textarea {
  min-height: 112px;
  resize: vertical;
}

.chat-dialog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.chat-dialog__status {
  margin: 0;
  color: #7f797c;
  font-size: 0.94rem;
  line-height: 1.35;
}

.chat-dialog__submit {
  min-width: 180px;
  min-height: 58px;
  margin-top: 0;
  font-size: 1rem;
}

.chat-dialog__submit[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 27, 25, 0.54);
  backdrop-filter: blur(12px);
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(100%, 1060px);
  max-height: calc(100svh - 48px);
  overflow: auto;
  padding: 26px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 80px rgba(28, 25, 24, 0.24);
}

.lightbox__close {
  justify-self: end;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(244, 241, 236, 0.96);
  cursor: pointer;
}

.lightbox__image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: #f8f5f1;
}

.lightbox__meta {
  display: grid;
  gap: 8px;
}

.lightbox__meta h3 {
  margin: 0;
  font-size: 1.8rem;
}

.lightbox__meta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .page-shell {
    padding-inline: 24px;
  }

  .section-frame {
    padding: 0 54px 0 24px;
  }

  .site-nav {
    gap: 18px 28px;
  }

  .about__layout {
    min-height: auto;
    padding: 0 54px 0 24px;
  }

  .about__content {
    max-width: 100%;
  }

  .about__text {
    font-size: clamp(1.48rem, 2.12vw, 1.76rem);
  }

  .about__pills {
    gap: 20px;
    max-width: 760px;
  }

  .about__pills li {
    min-width: 184px;
  }

  .works__row--middle,
  .works__row--bottom {
    gap: 20px;
  }

  .work-card--skincare {
    flex: 1 1 0;
  }

  .work-card--casual {
    width: min(100%, 340px);
  }

  .work-card--fashion {
    flex: 1 1 0;
  }

  .pill-list--services {
    padding-left: 0;
    gap: 26px 22px;
  }

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

  .pill-list--services li:nth-child(1),
  .pill-list--services li:nth-child(2),
  .pill-list--services li:nth-child(3),
  .pill-list--services li:nth-child(4),
  .pill-list--services li:nth-child(5),
  .pill-list--services li:nth-child(6),
  .pill-list--services li:nth-child(7) {
    width: auto;
  }
}

@media (max-width: 920px) {
  :root {
    --section-eyebrow-space: 44px;
    --section-content-gap: 44px;
    --section-title-size: 48px;
  }

  .site-header {
    align-items: center;
    padding-bottom: 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: calc(100svh - 56px);
    padding-top: 166px;
    padding-bottom: 52px;
  }

  .hero__title {
    max-width: 760px;
    font-size: clamp(2.7rem, 7vw, 3.65rem);
  }

  .hero__text {
    max-width: 620px;
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero__cta {
    margin-top: 30px;
  }

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

  .about__layout {
    min-height: auto;
    padding: 0;
  }

  .about,
  .works,
  .services,
  .pricing,
  .process {
    padding-bottom: 80px;
  }

  .works__row,
  .works__row--middle,
  .works__row--bottom {
    display: grid;
    gap: 18px;
  }

  .works__row--top {
    min-height: auto;
  }

  .work-card--scodit,
  .work-card--skincare,
  .work-card--casual,
  .work-card--wedding,
  .work-card--fashion {
    width: 100%;
    min-height: auto;
  }

  .section-frame {
    padding: 0;
  }

  .pill-list--services {
    margin-top: var(--section-content-gap);
    gap: 16px;
  }

  .pill-list--services li {
    width: 100%;
  }

  .pricing__grid {
    margin-top: var(--section-content-gap);
    gap: 18px;
  }

  .process-list {
    margin-top: var(--section-content-gap);
    gap: 22px;
  }

  .contact .button {
    width: min(100%, 339px);
    min-width: 0;
  }

  .contact__title {
    white-space: normal;
  }

  .chat-dialog__panel {
    width: min(100%, 700px);
    padding: 24px;
    border-radius: 30px;
  }

  .chat-dialog__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .chat-dialog__submit {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --section-eyebrow-space: 32px;
    --section-content-gap: 32px;
    --section-title-size: 34px;
  }

  .page-shell {
    padding: 16px 16px 48px;
  }

  .about,
  .works,
  .services,
  .pricing,
  .process {
    padding-inline: 18px;
    padding-bottom: 64px;
  }

  body::before,
  body::after {
    filter: blur(48px);
  }

  .site-header {
    gap: 16px;
  }

  .site-logo {
    font-size: 1.3rem;
  }

  .menu-toggle {
    inline-size: 44px;
    block-size: 44px;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 36px;
  }

  .section-kicker {
    margin-bottom: 18px;
    font-size: 0.95rem;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(2.15rem, 10.5vw, 2.8rem);
    line-height: 1.02;
  }

  .hero__desktop-break {
    display: none;
  }

  .hero__text {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.46;
  }

  .hero__cta {
    min-height: 60px;
    margin-top: 28px;
  }

  .about__desktop-break {
    display: none;
  }

  .about__text {
    font-size: 1.18rem;
    line-height: 1.34;
  }

  .about__content .about__text:first-of-type {
    margin-top: var(--section-content-gap);
  }

  .about__text + .about__text {
    margin-top: 24px;
  }

  .about__pills {
    gap: 14px;
  }

  .about__pills li {
    min-width: 0;
    min-height: 72px;
  }

  .about__education {
    margin-top: 18px;
  }

  .about__education h3,
  .work-card__meta h3 {
    font-size: 1.18rem;
    line-height: 1.1;
  }

  .about__education p,
  .work-card__meta p {
    font-size: 0.92rem;
    line-height: 1.34;
    letter-spacing: -0.02em;
  }

  .section {
    padding-block: 26px;
  }

  .section-text {
    max-width: 100%;
  }

  .pill-list {
    gap: 14px;
  }

  .pill-list li {
    width: 100%;
    min-height: 70px;
    padding: 16px 18px;
    font-size: 0.98rem;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    margin-top: var(--section-content-gap);
    gap: 14px;
  }

  .pricing-card {
    min-height: 118px;
    padding: 18px 16px;
  }

  .pricing__note {
    margin-top: 20px;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .process-list__item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .process-list__number {
    width: 30px;
    height: 30px;
    margin-top: 4px;
    font-size: 0.82rem;
    border-width: 1.5px;
  }

  .process-list__content h3 {
    font-size: 0.98rem;
    line-height: 1.24;
  }

  .process-list__content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .works__layout,
  .works__row,
  .works__row--middle,
  .works__row--bottom {
    gap: 14px;
  }

  .work-card {
    border-radius: 26px;
  }

  .work-card__link {
    gap: 14px;
    padding: 14px;
  }

  .work-card__frame {
    border-radius: 18px;
  }

  .work-card--fashion .work-card__frame {
    padding: 10px 10px 0;
  }

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

  .skincare-strip img {
    min-height: 170px;
  }

  .button,
  .button--large {
    width: 100%;
  }

  .contact {
    gap: 18px;
    padding-top: 52px;
  }

  .contact__title {
    font-size: 1.32rem;
    line-height: 1.08;
  }

  .contact .button {
    min-height: 62px;
  }

  .contact__links {
    gap: 6px;
    font-size: 0.96rem;
  }

  .chat-dialog {
    align-items: end;
    padding: 0;
  }

  .chat-dialog__panel {
    gap: 16px;
    width: 100%;
    max-height: min(88svh, 760px);
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 0 0;
  }

  .chat-dialog__header {
    flex-direction: column;
    gap: 12px;
    padding-right: 52px;
  }

  .chat-dialog__title {
    font-size: clamp(1.7rem, 8.5vw, 2.1rem);
    line-height: 1.02;
  }

  .chat-dialog__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .chat-dialog__messages {
    min-height: 96px;
    max-height: 204px;
    gap: 10px;
    padding-right: 0;
  }

  .chat-message {
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .chat-message p {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .chat-dialog__input,
  .chat-dialog__textarea {
    border-radius: 16px;
    padding: 13px 14px;
  }

  .chat-dialog__textarea {
    min-height: 104px;
  }

  .chat-dialog__status {
    font-size: 0.9rem;
  }

  .chat-dialog__submit {
    min-height: 56px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox__panel {
    padding: 16px;
    border-radius: 24px;
  }
}

@media (max-width: 460px) {
  :root {
    --section-title-size: 30px;
    --section-eyebrow-space: 28px;
    --section-content-gap: 28px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero__title {
    font-size: clamp(1.95rem, 11vw, 2.45rem);
  }

  .section-label,
  .section-kicker {
    font-size: 0.78rem;
  }

  .pricing-card h3 {
    font-size: 1rem;
  }

  .pricing-card p {
    font-size: 1.18rem;
  }

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