:root {
  --ink: #0c0b0a;
  --ink-soft: #151210;
  --ink-warm: #1e1916;
  --paper: #f1ebe4;
  --paper-soft: #e4d8cc;
  --sand: #cbb39d;
  --sand-light: #dccbbb;
  --rose: #aa696b;
  --rose-dark: #794647;
  --muted: #a89e96;
  --line: rgba(242, 235, 228, 0.15);
  --line-dark: rgba(20, 17, 15, 0.16);
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --radius: 24px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--sand) var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 15%, rgba(170, 105, 107, .12), transparent 28rem),
    radial-gradient(circle at 85% 78%, rgba(203, 179, 157, .12), transparent 32rem),
    #070605;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button, input {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.ambient {
  position: fixed;
  z-index: -1;
  width: 30vw;
  height: 30vw;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
  pointer-events: none;
}

.ambient-one {
  top: 10vh;
  left: 2vw;
  background: var(--rose);
}

.ambient-two {
  right: 4vw;
  bottom: 2vh;
  background: var(--sand);
}

.site-shell {
  position: relative;
  width: min(100%, 620px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink);
  border-inline: 1px solid rgba(255, 255, 255, .055);
  box-shadow: 0 0 90px rgba(0, 0, 0, .62);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 22px;
  background: rgba(12, 11, 10, .84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: min-height .25s ease, background .25s ease;
}

.site-header.is-compact {
  min-height: 62px;
  background: rgba(12, 11, 10, .96);
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 9px;
  letter-spacing: .11em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--sand);
  font-size: 7px;
  letter-spacing: .18em;
}

.menu-button {
  position: relative;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-content: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--paper);
  transition: transform .25s ease;
}

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

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

.site-nav {
  position: fixed;
  z-index: 2;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 100px 34px 40px;
  background: rgba(10, 9, 8, .98);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.site-nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(35px, 11vw, 58px);
  font-style: italic;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 34px 22px 58px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 36%),
    var(--ink);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 90px;
  right: -130px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(203, 179, 157, .14);
  border-radius: 50%;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #7eaa79;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(126,170,121,.12);
}

.hero-kicker-divider {
  width: 20px;
  height: 1px;
  margin-inline: 2px;
  background: var(--line);
}

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

.hero-name {
  margin-bottom: 14px;
  color: var(--sand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
}

.hero h1 {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(43px, 12.4vw, 72px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .83;
}

.hero h1 span {
  display: block;
}

.hero-title-accent {
  color: var(--sand-light);
  font-size: .66em;
  font-style: italic;
  letter-spacing: -.045em;
  line-height: 1.2;
}

.hero-lead {
  width: min(92%, 440px);
  margin-bottom: 26px;
  color: #c2b9b1;
  font-size: 13px;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  width: calc(100% + 44px);
  margin: 0 -22px 18px;
  overflow: hidden;
  background: #171310;
  border-block: 1px solid var(--line);
  aspect-ratio: 4 / 4.55;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(12,11,10,.8));
  pointer-events: none;
}

.hero-work-caption {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  padding: 7px 12px;
  color: rgba(255,255,255,.82);
  background: rgba(0,0,0,.56);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: 8px;
  letter-spacing: .11em;
  white-space: nowrap;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.vera-hero-visual {
  aspect-ratio: 4 / 5.2;
  background:
    radial-gradient(circle at 50% 34%, rgba(219, 152, 91, .2), transparent 34%),
    radial-gradient(circle at 50% 76%, rgba(119, 45, 48, .18), transparent 38%),
    #0b0808;
}

.vera-hero-visual > img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 0 34px rgba(225, 151, 87, .34)) saturate(.97) contrast(1.03);
  -webkit-mask-image: radial-gradient(ellipse 64% 96% at 50% 53%, #000 58%, rgba(0,0,0,.94) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse 64% 96% at 50% 53%, #000 58%, rgba(0,0,0,.94) 76%, transparent 100%);
}

.vera-hero-visual::before {
  position: absolute;
  z-index: 0;
  top: 12%;
  left: 50%;
  width: 58%;
  height: 62%;
  content: "";
  background: rgba(225, 146, 76, .22);
  border-radius: 50%;
  filter: blur(38px);
  transform: translateX(-50%);
  animation: candleGlow 4.5s ease-in-out infinite alternate;
}

.vera-hero-visual::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 68%, rgba(11,8,8,.82));
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  display: grid;
  width: 82px;
  height: 82px;
  padding: 12px;
  align-content: space-between;
  color: var(--ink);
  background: rgba(241,235,228,.88);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.hero-stamp span {
  font-family: var(--display);
  font-size: 11px;
  font-style: italic;
}

.hero-stamp strong {
  justify-self: end;
  font-size: 18px;
}

.primary-action {
  display: flex;
  min-height: 76px;
  margin-bottom: 26px;
  padding: 15px 15px 15px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--paper), var(--sand-light));
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,.38);
}

.action-copy {
  display: grid;
  gap: 4px;
}

.action-copy strong {
  font-size: 12px;
  letter-spacing: .11em;
}

.action-copy small {
  color: rgba(12,11,10,.58);
  font-size: 10px;
}

.action-arrow {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-size: 21px;
}

.hero-facts {
  display: grid;
  gap: 12px;
}

.hero-facts p {
  display: grid;
  grid-template-columns: 24px 1fr;
  margin: 0;
  color: #c9c0b8;
  font-size: 12px;
  line-height: 1.45;
}

.hero-facts span {
  color: var(--sand);
  font-family: var(--display);
  font-style: italic;
}

.section {
  padding: 76px 22px;
}

.section-head {
  margin-bottom: 32px;
}

.section-index {
  margin-bottom: 19px;
  color: var(--rose);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
}

.section h2,
.contacts h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(40px, 12vw, 66px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .92;
}

.section h2 em,
.contacts h2 em {
  color: var(--sand);
  font-weight: 400;
}

.section-intro {
  max-width: 460px;
  margin: 0;
  color: #a9a099;
  font-size: 13px;
  line-height: 1.65;
}

.services {
  background: var(--paper);
  color: var(--ink);
}

.services .section-index {
  color: var(--rose-dark);
}

.services .section-intro {
  color: #675e58;
}

.services-grid {
  display: grid;
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 395px;
  padding: 22px;
  overflow: hidden;
  background: #dfd1c4;
  border: 1px solid rgba(12,11,10,.09);
  border-radius: var(--radius);
}

.service-card.has-photo {
  min-height: 565px;
}

.service-card:nth-child(2) {
  background: #d6b7b5;
}

.service-card:nth-child(3) {
  background: #e7ded5;
}

.service-card-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 20%, rgba(203,179,157,.2), transparent 32%),
    var(--ink-warm);
  border-color: rgba(255,255,255,.08);
}

.service-card-wide {
  min-height: auto;
  background: var(--sand-light);
}

.service-topline {
  display: flex;
  margin-bottom: 58px;
  justify-content: space-between;
  color: rgba(12,11,10,.52);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.service-card-dark .service-topline {
  color: rgba(241,235,228,.5);
}

.service-card.has-photo .service-topline {
  margin-bottom: 17px;
}

.service-photo {
  position: relative;
  z-index: 1;
  height: 178px;
  margin: 0 0 24px;
  overflow: hidden;
  background: #9d7868;
  border-radius: 17px;
}

.service-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 62%, rgba(0,0,0,.36));
  pointer-events: none;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.service-card:hover .service-photo img {
  transform: scale(1.035);
}

.service-card:nth-child(1) .service-photo img { object-position: 52% 52%; }
.service-card:nth-child(2) .service-photo img { object-position: 50% 52%; }
.service-card:nth-child(3) .service-photo img { object-position: 56% 52%; }

.service-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 9px;
  color: rgba(255,255,255,.78);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: 39px;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .9;
}

.service-card > p,
.service-wide-copy p {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin-bottom: 20px;
  color: rgba(12,11,10,.67);
  font-size: 12px;
  line-height: 1.55;
}

.service-card-dark > p {
  color: rgba(241,235,228,.64);
}

.service-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0 0 55px;
  list-style: none;
  font-size: 10px;
  letter-spacing: .03em;
}

.service-card li::before {
  margin-right: 8px;
  color: var(--rose-dark);
  content: "•";
}

.service-card-dark li::before {
  color: var(--sand);
}

.service-bottom {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  padding-top: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(12,11,10,.14);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
}

.service-card-dark .service-bottom {
  border-color: rgba(241,235,228,.15);
}

.service-bottom a {
  text-transform: uppercase;
}

.service-symbol {
  position: absolute;
  top: 70px;
  right: 10px;
  width: 165px;
  height: 120px;
  opacity: .35;
}

.service-symbol-brows::before,
.service-symbol-brows::after {
  position: absolute;
  top: 42px;
  width: 72px;
  height: 24px;
  content: "";
  border-top: 5px solid var(--rose-dark);
  border-radius: 60% 80% 0 0;
  transform: rotate(-7deg);
}

.service-symbol-brows::before { left: 3px; }
.service-symbol-brows::after { right: 3px; transform: scaleX(-1) rotate(-7deg); }

.service-symbol-lips::before,
.service-symbol-lips::after {
  position: absolute;
  left: 34px;
  width: 100px;
  height: 45px;
  content: "";
  border: 2px solid var(--rose-dark);
  border-radius: 100% 0 100% 0;
  transform: rotate(9deg);
}

.service-symbol-lips::before { top: 22px; }
.service-symbol-lips::after { top: 43px; transform: scaleY(-1) rotate(9deg); }

.service-symbol-eyes::before {
  position: absolute;
  top: 30px;
  left: 18px;
  width: 130px;
  height: 50px;
  content: "";
  border-top: 4px solid var(--rose-dark);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.service-symbol-eyes::after {
  position: absolute;
  top: 48px;
  left: 80px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--rose-dark);
  border-radius: 50%;
}

.service-symbol-scalp {
  opacity: .3;
  background-image: radial-gradient(circle, var(--sand) 1.2px, transparent 1.7px);
  background-size: 10px 10px;
  border-radius: 90px 90px 25px 25px;
}

.service-wide-copy {
  display: grid;
  gap: 24px;
  margin-bottom: 55px;
}

.service-card-wide .service-topline {
  margin-bottom: 35px;
}

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

.service-card-wide ul {
  margin-bottom: 0;
}

.service-card-compact {
  min-height: 485px;
}

.service-card-compact .service-topline {
  margin-bottom: 118px;
}

.service-card-compact h3 {
  max-width: 290px;
  font-size: 29px;
  line-height: .94;
}

.service-card-tricho h3 {
  font-size: 26px;
  letter-spacing: -.035em;
}

.service-card-removal {
  background:
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.3), transparent 28%),
    #c9aea8;
}

.service-card-camouflage {
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 18%, rgba(220,203,187,.15), transparent 31%),
    #433533;
  border-color: rgba(255,255,255,.08);
}

.service-card-camouflage .service-topline,
.service-card-camouflage > p {
  color: rgba(241,235,228,.62);
}

.service-card-camouflage li::before {
  color: var(--sand);
}

.service-card-camouflage .service-bottom {
  border-color: rgba(241,235,228,.15);
}

.service-card-accents {
  background:
    radial-gradient(circle at 82% 16%, rgba(170,105,107,.19), transparent 25%),
    #e5d5c5;
}

.service-symbol-removal {
  top: 58px;
  right: 18px;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(121,70,71,.28);
  border-radius: 50%;
}

.service-symbol-removal::before,
.service-symbol-removal::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(121,70,71,.38);
  border-radius: 50%;
}

.service-symbol-removal::before { inset: 22px; }
.service-symbol-removal::after { inset: 45px; background: rgba(121,70,71,.18); }

.service-symbol-camouflage {
  top: 60px;
  right: 12px;
  width: 150px;
  height: 132px;
  opacity: .48;
  background-image:
    radial-gradient(circle, rgba(220,203,187,.78) 1.3px, transparent 1.8px),
    radial-gradient(circle, rgba(170,105,107,.7) 1.2px, transparent 1.7px);
  background-position: 0 0, 5px 5px;
  background-size: 11px 11px;
  border-radius: 62% 38% 52% 48%;
  transform: rotate(-8deg);
  -webkit-mask-image: radial-gradient(ellipse, #000 48%, transparent 74%);
  mask-image: radial-gradient(ellipse, #000 48%, transparent 74%);
}

.portfolio {
  background: var(--ink-soft);
}

.portfolio-filters {
  display: flex;
  gap: 7px;
  width: calc(100% + 22px);
  padding: 0 22px 15px 0;
  margin-bottom: 15px;
  overflow-x: auto;
  scrollbar-width: none;
}

.portfolio-filters::-webkit-scrollbar {
  display: none;
}

.portfolio-filter {
  flex: 0 0 auto;
  padding: 10px 13px;
  color: #a79e97;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.portfolio-filter span {
  margin-left: 5px;
  color: #6f6761;
  font-size: 8px;
}

.portfolio-filter.is-active {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.portfolio-filter.is-active span {
  color: var(--rose-dark);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(165px, 52vw, 245px);
  gap: 9px;
}

.work-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--paper);
  background: #2b2420;
  border: 1px solid var(--line);
  border-radius: 18px;
  cursor: zoom-in;
  text-align: left;
  transition: opacity .28s ease, transform .28s var(--ease);
}

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

.work-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(8,7,6,.86));
  pointer-events: none;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .35s ease;
}

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

.work-card > span {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  gap: 3px;
}

.work-card strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.05;
}

.work-card small {
  color: rgba(255,255,255,.62);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.work-card-tall {
  grid-row: span 2;
}

.work-card-wide {
  grid-column: 1 / -1;
}

.work-card:nth-child(1) img { object-position: 50% 52%; }
.work-card:nth-child(2) img { object-position: 50% 52%; }
.work-card:nth-child(3) img { object-position: 53% 50%; }
.work-card:nth-child(4) img { object-position: 50% 57%; }
.work-card:nth-child(5) img { object-position: 50% 45%; }
.work-card:nth-child(6) img { object-position: 50% 53%; }
.work-card:nth-child(7) img { object-position: 50% 48%; }
.work-card:nth-child(8) img { object-position: 50% 44%; }
.work-card:nth-child(9) img { object-position: center; }
.work-card:nth-child(10) img { object-position: 50% 42%; }

.work-dialog {
  width: min(calc(100% - 24px), 560px);
  max-width: 560px;
  max-height: calc(100svh - 24px);
  padding: 0;
  overflow: visible;
  color: var(--paper);
  background: transparent;
  border: 0;
}

.work-dialog::backdrop {
  background: rgba(5, 4, 4, .88);
  backdrop-filter: blur(12px);
}

.work-dialog-inner {
  overflow: hidden;
  background: #100e0d;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: 0 25px 80px rgba(0,0,0,.55);
}

.work-dialog-inner > img {
  display: block;
  width: 100%;
  max-height: calc(100svh - 135px);
  object-fit: contain;
  background: #090807;
}

.work-dialog-caption {
  padding: 15px 18px 18px;
}

.work-dialog-caption p {
  margin-bottom: 5px;
  color: var(--sand);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.work-dialog-caption h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.work-dialog-close {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  place-items: center;
  color: var(--paper);
  background: rgba(0,0,0,.56);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(9px);
}

.portfolio-disclaimer {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin: 18px 0 0;
  color: #928980;
  font-size: 9px;
  line-height: 1.55;
}

.portfolio-disclaimer span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--display);
  font-style: italic;
}

.process {
  color: var(--ink);
  background: var(--sand-light);
}

.process .section-index {
  color: var(--rose-dark);
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-list > li > span {
  color: var(--rose-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.process-list h3 {
  margin-bottom: 7px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}

.process-list p {
  max-width: 410px;
  margin: 0;
  color: #5f5650;
  font-size: 11px;
  line-height: 1.58;
}

.safety {
  position: relative;
  overflow: hidden;
  background: #11100f;
}

.safety-visual {
  position: relative;
  display: grid;
  width: 250px;
  height: 250px;
  margin: -15px auto 54px;
  place-items: center;
}

.safety-orbit {
  position: absolute;
  border: 1px solid rgba(203,179,157,.27);
  border-radius: 50%;
}

.safety-orbit-one {
  inset: 0;
  animation: orbit 18s linear infinite;
}

.safety-orbit-one::before {
  position: absolute;
  top: 23px;
  left: 25px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--rose);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--rose);
}

.safety-orbit-two {
  inset: 30px;
  border-style: dashed;
  animation: orbit 13s linear infinite reverse;
}

.safety-core {
  display: grid;
  width: 140px;
  height: 140px;
  place-content: center;
  text-align: center;
  background: radial-gradient(circle at 35% 30%, #decdbc, #ad8b71);
  border-radius: 50%;
  color: var(--ink);
  box-shadow: 0 0 70px rgba(203,179,157,.18);
}

.safety-core span,
.safety-core small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .22em;
}

.safety-core strong {
  margin: 4px 0;
  font-family: var(--display);
  font-size: 37px;
  font-weight: 400;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.safety-grid article {
  min-height: 205px;
  padding: 17px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.safety-grid article > span {
  display: block;
  margin-bottom: 45px;
  color: var(--sand);
  font-size: 8px;
  font-weight: 800;
}

.safety-grid h3 {
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.05;
}

.safety-grid p {
  margin: 0;
  color: #8f8780;
  font-size: 9px;
  line-height: 1.55;
}

.education {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(170,105,107,.12), transparent 42%),
    #211a18;
}

.education-glow {
  position: absolute;
  top: -95px;
  right: -110px;
  width: 310px;
  height: 310px;
  background: rgba(170,105,107,.2);
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}

.education-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 42px;
  align-items: center;
  gap: 10px;
}

.education-status span {
  padding: 9px 13px;
  color: var(--paper);
  background: var(--rose-dark);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.education-status small {
  color: #8f8580;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}

.education .section-head,
.education-modules,
.education-action,
.education-note {
  position: relative;
  z-index: 1;
}

.education-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 22px;
}

.education-modules article {
  min-height: 190px;
  padding: 17px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.education-modules article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--rose);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.education-modules h3 {
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.05;
}

.education-modules p {
  margin: 0;
  color: #978d87;
  font-size: 9px;
  line-height: 1.55;
}

.education-action {
  display: flex;
  min-height: 74px;
  padding: 14px 14px 14px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--paper), var(--sand-light));
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.education-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(0,0,0,.34);
}

.education-action > span {
  display: grid;
  gap: 4px;
}

.education-action strong {
  font-size: 11px;
  letter-spacing: .13em;
}

.education-action small {
  color: rgba(12,11,10,.58);
  font-size: 9px;
}

.education-action i {
  display: grid;
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-size: 18px;
  font-style: normal;
}

.education-note {
  margin: 16px 0 0;
  color: #837a75;
  font-size: 9px;
  line-height: 1.55;
}

.price {
  color: var(--ink);
  background: var(--paper);
}

.price .section-index { color: var(--rose-dark); }
.price .section-intro { color: #675e58; }

.price code,
.config-note code {
  padding: .15em .4em;
  color: inherit;
  background: rgba(0,0,0,.07);
  border-radius: 5px;
  font-size: .9em;
}

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

.price-row {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 19px 0;
  align-items: start;
  border-bottom: 1px solid var(--line-dark);
}

.price-row > span {
  color: var(--rose-dark);
  font-size: 8px;
  font-weight: 800;
}

.price-row div {
  display: grid;
  gap: 4px;
}

.price-row strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
}

.price-row small {
  color: #71675f;
  font-size: 8px;
  line-height: 1.4;
}

.price-row b {
  padding-top: 2px;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.faq {
  background: #171310;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: grid;
  grid-template-columns: 1fr 25px;
  gap: 18px;
  padding: 21px 0;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.15;
}

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

.faq summary i {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq summary i::before,
.faq summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--paper);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq details > p {
  max-width: 450px;
  padding: 0 45px 22px 0;
  margin: 0;
  color: #aaa19a;
  font-size: 11px;
  line-height: 1.65;
}

.contacts {
  padding: 76px 22px 38px;
  color: var(--ink);
  background: var(--sand-light);
}

.contact-vera {
  position: relative;
  margin: 0 0 45px;
  overflow: hidden;
  background: #171310;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}

.contact-vera::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 47%, rgba(12,11,10,.78)),
    linear-gradient(90deg, rgba(12,11,10,.12), transparent 50%);
  pointer-events: none;
}

.contact-vera > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .7s var(--ease);
}

.contact-vera:hover > img {
  transform: scale(1.025);
}

.contact-vera-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 94px;
  height: 94px;
  padding: 14px;
  align-content: space-between;
  color: var(--ink);
  background: rgba(241,235,228,.9);
  border-radius: 50%;
  backdrop-filter: blur(9px);
}

.contact-vera-badge span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.contact-vera-badge strong {
  justify-self: end;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
}

.contact-vera figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: rgba(255,255,255,.82);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contacts .section-index { color: var(--rose-dark); }

.contact-copy > p:last-child {
  max-width: 450px;
  margin-bottom: 30px;
  color: #5e554f;
  font-size: 12px;
  line-height: 1.6;
}

.contact-actions {
  display: grid;
  gap: 8px;
}

.contact-action {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 40px;
  min-height: 71px;
  padding: 13px;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  background: var(--ink-warm);
  border-radius: 16px;
  transition: transform .2s ease, opacity .2s ease;
}

.contact-action:hover:not(.is-disabled) {
  transform: translateX(3px);
}

.contact-action-main {
  color: var(--ink);
  background: var(--rose);
}

.contact-action-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-action-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}

.contact-action-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.contact-action-main .contact-action-icon {
  background: rgba(255,255,255,.22);
  border-color: rgba(12,11,10,.08);
}

.contact-action-icon-location {
  color: var(--sand-light);
  font-family: var(--display);
  font-size: 25px;
  font-style: italic;
}

.contact-action strong {
  font-size: 10px;
  letter-spacing: .13em;
}

.contact-action small {
  color: rgba(241,235,228,.55);
  font-size: 8px;
  line-height: 1.35;
}

.contact-action-main small {
  color: rgba(12,11,10,.58);
}

.contact-action i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(241,235,228,.17);
  border-radius: 50%;
  font-size: 16px;
  font-style: normal;
}

.contact-action-main i {
  border-color: rgba(12,11,10,.16);
}

.contact-action.is-disabled {
  opacity: .42;
  cursor: not-allowed;
}

.contact-action[hidden] {
  display: none;
}

.contact-action.is-disabled small::after {
  content: " · ссылка не указана";
}

.config-note {
  margin: 17px 0 0;
  color: #675e58;
  font-size: 9px;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 32px 22px 96px;
  color: #8d847d;
  background: #090807;
  font-size: 8px;
  letter-spacing: .05em;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
}

.footer-brand p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.footer-brand strong {
  color: var(--paper);
  font-size: 9px;
  letter-spacing: .16em;
}

.footer-brand small {
  font-size: 7px;
  letter-spacing: .16em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer > p {
  margin: 0;
}

.sticky-booking {
  position: fixed;
  z-index: 90;
  right: max(14px, calc((100vw - 590px) / 2));
  bottom: max(14px, env(safe-area-inset-bottom));
  display: flex;
  min-width: 148px;
  height: 48px;
  padding: 5px 6px 5px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  background: rgba(241,235,228,.94);
  border: 1px solid rgba(12,11,10,.1);
  border-radius: 999px;
  box-shadow: 0 10px 35px rgba(0,0,0,.3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  backdrop-filter: blur(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.sticky-booking.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.sticky-booking.is-context-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.sticky-booking i {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--paper);
  background: var(--rose-dark);
  border-radius: 50%;
  font-size: 15px;
  font-style: normal;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes candleGlow {
  0% { opacity: .62; transform: translateX(-50%) scale(.96); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

@media (min-width: 520px) {
  .site-header,
  .hero,
  .section,
  .contacts,
  .site-footer {
    padding-inline: 34px;
  }

  .hero-visual {
    width: calc(100% + 68px);
    margin-inline: -34px;
  }

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

  .service-card-wide {
    grid-column: 1 / -1;
  }

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

  .portfolio-filters {
    width: calc(100% + 34px);
    padding-right: 34px;
  }

  .process-list li {
    grid-template-columns: 55px 1fr;
  }

  .sticky-booking {
    right: max(18px, calc((100vw - 590px) / 2));
  }
}

@media (min-width: 760px) {
  .site-shell {
    margin-block: 18px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 26px;
  }

  .site-nav {
    position: static;
    display: flex;
    padding: 0;
    gap: 20px;
    background: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 4px 0;
    border: 0;
    color: #a69c94;
    font-family: var(--sans);
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .1em;
  }

  .menu-button {
    display: none;
  }
}

@media (max-width: 374px) {
  .site-header,
  .hero,
  .section,
  .contacts,
  .site-footer {
    padding-inline: 17px;
  }

  .hero-visual {
    width: calc(100% + 34px);
    margin-inline: -17px;
  }

  .hero h1 {
    font-size: 41px;
  }

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

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

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

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

  .safety-grid article {
    min-height: 170px;
  }

  .education-modules {
    grid-template-columns: 1fr;
  }

  .education-modules article {
    min-height: 160px;
  }

  .price-row {
    grid-template-columns: 22px 1fr;
  }

  .price-row b {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

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

.legal-body {
  color: var(--ink);
  background: var(--paper);
}

.legal-page {
  width: min(100% - 36px, 760px);
  padding: 42px 0 80px;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 58px;
  padding: 9px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.legal-page h1 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(43px, 11vw, 78px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}

.legal-page h1 em {
  color: var(--rose-dark);
  font-weight: 400;
}

.legal-updated {
  margin-bottom: 35px;
  color: #71675f;
  font-size: 10px;
}

.legal-warning {
  padding: 20px;
  margin: 34px 0 40px;
  color: var(--paper);
  background: var(--ink-warm);
  border-radius: 18px;
}

.legal-warning strong {
  display: block;
  margin-bottom: 7px;
  color: var(--sand-light);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.legal-warning p {
  margin: 0;
  color: #b8afa8;
  font-size: 11px;
  line-height: 1.55;
}

.legal-page section {
  padding: 25px 0;
  border-top: 1px solid var(--line-dark);
}

.legal-page section h2 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}

.legal-page section p,
.legal-page section li {
  color: #554d48;
  font-size: 12px;
  line-height: 1.7;
}

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

.legal-page section ul {
  padding-left: 19px;
  margin-bottom: 0;
}

/* ---------- refined visual system ---------- */
:root {
  --display: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.site-header {
  min-height: 76px;
  padding: 13px 20px;
  background: rgba(9, 8, 7, .9);
}

.brand {
  gap: 9px;
}

.brand-signature {
  color: var(--paper);
  font-family: var(--display);
  font-size: 32px;
  font-style: italic;
  letter-spacing: -.08em;
  line-height: .8;
}

.brand-copy {
  padding-left: 9px;
  border-left: 1px solid rgba(241, 235, 228, .25);
}

.brand-copy strong {
  font-size: 8px;
  letter-spacing: .19em;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 6px;
  letter-spacing: .18em;
}

.hero {
  position: relative;
  height: calc(100svh - 76px);
  min-height: 680px;
  max-height: 880px;
  padding: 0;
  overflow: hidden;
  background: #100b09;
}

.hero::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: auto;
  height: auto;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 6, 5, .04) 0%, rgba(8, 6, 5, .02) 30%, rgba(8, 6, 5, .46) 58%, rgba(8, 6, 5, .97) 100%),
    linear-gradient(90deg, rgba(8, 6, 5, .24), transparent 68%);
  border: 0;
  border-radius: 0;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 2;
  right: -16%;
  bottom: -20%;
  width: 70%;
  height: 60%;
  content: "";
  background: rgba(205, 118, 70, .14);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  z-index: 1;
  inset: 0;
  margin: 0;
  background: #100b09;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(.92) contrast(1.04);
}

.hero-service-line {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .74);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .18em;
}

.hero-service-line i {
  width: 3px;
  height: 3px;
  background: var(--sand);
  border-radius: 50%;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 22px;
  left: 20px;
}

.hero-name {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 8px;
  letter-spacing: .19em;
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 14px;
  color: #fffaf3;
  font-size: clamp(46px, 12.6vw, 56px);
  letter-spacing: -.065em;
  line-height: .78;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 9px;
  color: var(--sand-light);
  font-size: .74em;
  font-weight: 400;
  line-height: .9;
}

.hero-lead {
  width: min(92%, 430px);
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.45;
}

.primary-action {
  width: 100%;
  min-height: 64px;
  margin: 18px 0 15px;
  padding: 10px 10px 10px 17px;
  border-radius: 16px;
}

.action-copy strong {
  font-size: 11px;
  letter-spacing: .13em;
}

.action-copy small {
  font-size: 9px;
}

.action-arrow {
  width: 44px;
  height: 44px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  color: rgba(255, 255, 255, .56);
  font-size: 8px;
  letter-spacing: .04em;
}

.hero-trust span {
  position: relative;
  padding-left: 11px;
}

.hero-trust span::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: #86a681;
  border-radius: 50%;
}

.section {
  padding: 68px 20px;
}

.section h2,
.contacts h2 {
  font-size: clamp(44px, 12.7vw, 68px);
}

.section-intro {
  font-size: 13px;
  line-height: 1.55;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 212px;
  gap: 9px;
}

.service-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  background: #2a211d;
  border-radius: 18px;
  isolation: isolate;
}

.service-tile::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(7, 6, 5, .88));
}

.service-tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-tile:hover > img {
  transform: scale(1.035);
}

.service-tile-tall {
  grid-row: span 2;
}

.service-tile-wide {
  grid-column: 1 / -1;
}

.service-tile:nth-child(1) > img { object-position: 53% 32%; }
.service-tile:nth-child(2) > img { object-position: center 48%; }
.service-tile:nth-child(3) > img { object-position: center 48%; }
.service-tile:nth-child(4) > img { object-position: center; }

.service-tile-copy {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 14px;
  left: 15px;
  display: grid;
  gap: 5px;
  padding-right: 30px;
}

.service-tile-copy strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .9;
}

.service-tile-copy small {
  color: rgba(255, 255, 255, .66);
  font-size: 8px;
  line-height: 1.35;
}

.service-tile > i {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 15px;
  font-size: 16px;
  font-style: normal;
}

.service-more {
  margin-top: 28px;
}

.service-more > p {
  margin-bottom: 10px;
  color: var(--rose-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .19em;
}

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

.service-more-grid > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  min-height: 78px;
  padding: 14px 0;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.service-more-grid > a > span {
  display: grid;
  gap: 4px;
}

.service-more-grid strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.05;
}

.service-more-grid small {
  color: #746a63;
  font-size: 9px;
  line-height: 1.35;
}

.service-more-grid i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-style: normal;
}

.portfolio-filters {
  margin-bottom: 18px;
}

.portfolio-filter {
  padding: 11px 14px;
  font-size: 9px;
}

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

.work-card > span {
  right: 14px;
  bottom: 13px;
  left: 14px;
}

.work-card strong {
  font-size: 18px;
}

.work-card[data-src*="work-face"] img { object-position: 54% 30%; }
.work-card[data-src*="work-lips-new"] img { object-position: 50% 48%; }
.work-card[data-src*="tricho-density"] img,
.work-card[data-src*="tricho-men"] img { object-position: center; }
.work-card[data-src*="tricho-crown"] img { object-position: center 48%; }
.work-card[data-src*="work-brows-correction"] img { object-position: center; }
.work-card[data-src*="work-procedure"] img { object-position: center; }

.process-list li p {
  max-width: 430px;
}

.contact-vera {
  margin-bottom: 34px;
}

.contact-vera figcaption {
  font-size: 7px;
}

.contact-copy > p:last-child {
  font-size: 13px;
  line-height: 1.55;
}

.footer-brand {
  display: grid;
  align-items: start;
  gap: 3px;
}

.footer-brand > strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: .02em;
}

.footer-brand > small {
  color: var(--sand);
  font-size: 7px;
  letter-spacing: .2em;
}

@media (max-width: 759px) {
  .site-nav {
    inset: 76px 0 0;
    align-content: start;
    height: calc(100svh - 76px);
    padding: 24px 24px 40px;
    gap: 0;
    background: #0a0908;
  }

  .site-nav a {
    padding: 18px 0 16px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: .88;
  }
}

@media (max-width: 374px) {
  .hero {
    min-height: 640px;
  }

  .hero-copy,
  .hero-service-line {
    right: 17px;
    left: 17px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero-lead {
    font-size: 12px;
  }

  .hero-trust {
    gap: 5px 10px;
    font-size: 7px;
  }

  .section {
    padding-inline: 17px;
  }

  .service-showcase {
    grid-auto-rows: 195px;
  }

  .service-tile-copy strong {
    font-size: 22px;
  }
}

@media (min-width: 760px) {
  .site-shell {
    width: min(calc(100% - 32px), 1180px);
  }

  .site-header {
    padding-inline: 42px;
  }

  .site-nav {
    gap: 25px;
  }

  .site-nav a {
    font-size: 9px;
  }

  .hero {
    height: calc(100svh - 112px);
    min-height: 680px;
    max-height: 840px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 7, 6, .99) 0%, rgba(8, 7, 6, .94) 35%, rgba(8, 7, 6, .5) 59%, rgba(8, 7, 6, .05) 85%),
      linear-gradient(180deg, transparent 55%, rgba(8, 7, 6, .55));
  }

  .hero-photo img {
    position: absolute;
    right: 0;
    width: 59%;
    object-position: center 30%;
  }

  .hero-service-line {
    top: 38px;
    right: auto;
    left: 44px;
  }

  .hero-copy {
    right: auto;
    bottom: 52px;
    left: 44px;
    width: min(51%, 560px);
  }

  .hero h1 {
    font-size: clamp(66px, 5.5vw, 78px);
  }

  .hero-lead {
    max-width: 460px;
    font-size: 15px;
  }

  .primary-action {
    width: min(100%, 430px);
  }

  .section,
  .contacts,
  .site-footer {
    padding-inline: 44px;
  }

  .section {
    padding-block: 96px;
  }

  .section-head {
    max-width: 670px;
    margin-bottom: 44px;
  }

  .service-showcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 420px;
    grid-auto-rows: 420px;
    gap: 12px;
  }

  .service-tile-tall,
  .service-tile-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .service-tile-copy strong {
    font-size: 27px;
  }

  .service-tile:nth-child(4) .service-tile-copy strong {
    font-size: 20px;
  }

  .service-more {
    margin-top: 40px;
  }

  .service-more-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
  }

  .works-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 250px;
    gap: 12px;
  }

  .work-card-wide {
    grid-column: span 2;
  }

  .process-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-list li {
    grid-template-columns: 1fr;
    min-height: 205px;
    padding: 22px;
    align-content: start;
    gap: 28px;
    border-right: 1px solid var(--line-dark);
  }

  .process-list li:last-child {
    border-right: 0;
  }

  .process-list h3 {
    font-size: 19px;
  }

  .safety {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 46px 60px;
  }

  .safety .section-head {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    margin-bottom: 0;
  }

  .safety-visual {
    grid-column: 2;
    grid-row: 1;
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .safety-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .safety-grid article {
    min-height: 185px;
  }

  .contacts {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    grid-template-rows: auto 1fr;
    padding-block: 70px;
    gap: 0 52px;
  }

  .contact-vera {
    grid-row: 1 / 3;
    height: 100%;
    min-height: 680px;
    margin: 0;
    aspect-ratio: auto;
  }

  .contact-copy {
    align-self: end;
  }

  .contact-actions {
    align-self: start;
  }
}

@media (min-width: 760px) and (max-width: 959px) {
  .hero h1 {
    font-size: 53px;
  }

  .service-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 340px);
    grid-auto-rows: 340px;
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

  .work-card-wide {
    grid-column: 1 / -1;
  }

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

  .process-list li:last-child {
    grid-column: 1 / -1;
  }

  .process-list li:nth-child(even) {
    border-right: 0;
  }

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