:root {
  --bg: #07070d;
  --bg-2: #0d0a13;
  --plum: #221329;
  --plum-2: #342234;
  --panel: rgba(31, 24, 34, .78);
  --panel-strong: rgba(40, 32, 43, .88);
  --line: rgba(216, 163, 80, .35);
  --line-soft: rgba(216, 163, 80, .16);
  --gold: #d8a350;
  --gold-soft: #f3d48c;
  --gold-dark: #8c5c22;
  --text: #f7edda;
  --muted: #d9cab7;
  --soft: #a99a8a;
  --max: 1608px;
  --side: clamp(18px, 5.2vw, 120px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at 72% 18%, rgba(75, 38, 67, .5) 0, rgba(75, 38, 67, 0) 34rem),
    radial-gradient(circle at 12% 36%, rgba(98, 60, 31, .22) 0, rgba(98, 60, 31, 0) 24rem),
    linear-gradient(180deg, #09080e 0%, #06060b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(239, 195, 102, .75) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(239, 195, 102, .35) 0 1px, transparent 1.5px);
  background-position: 2% 8%, 80% 12%;
  background-size: 210px 190px, 310px 270px;
  opacity: .22;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(calc(100% - (var(--side) * 2)), var(--max));
  margin-inline: auto;
}

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

.header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2.6vw, 48px);
  width: min(calc(100% - 72px), 1800px);
  margin: 0 auto;
  padding: 30px 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand > span:last-child {
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 84px;
  aspect-ratio: 1;
  color: var(--gold);
  border: 1px solid rgba(216, 163, 80, .34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 163, 80, .14), transparent 62%),
    rgba(7, 7, 13, .4);
  box-shadow: 0 0 28px rgba(216, 163, 80, .15);
}

.brand__mark svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(24px, 1.9vw, 38px);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-soft);
  text-shadow: 0 0 20px rgba(216, 163, 80, .18);
}

.brand small {
  display: block;
  margin-top: 7px;
  color: #cbb996;
  font-size: 14px;
  letter-spacing: 0;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.45vw, 46px);
  color: #f0dec4;
  font-size: 18px;
  font-weight: 500;
}

.nav a {
  position: relative;
  padding: 10px 0;
  transition: color .22s ease, text-shadow .22s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .22s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-soft);
  text-shadow: 0 0 18px rgba(216, 163, 80, .45);
}

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

.nav__mobile-actions {
  display: none;
}

.header-cta {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-width: 270px;
  min-height: 76px;
  padding: 0 28px;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 16px;
  border: 1px solid rgba(216, 163, 80, .8);
  border-radius: 9px;
  background: rgba(17, 16, 24, .68);
  box-shadow: inset 0 0 0 1px rgba(255, 239, 191, .04);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.header-cta svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(216, 163, 80, .55));
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  background: rgba(33, 25, 33, .86);
  box-shadow: 0 0 22px rgba(216, 163, 80, .24), inset 0 0 18px rgba(216, 163, 80, .08);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  color: var(--gold-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 10, 16, .72);
  cursor: pointer;
}

@media (min-width: 1361px) {
  .nav-toggle {
    display: none !important;
  }
}

.nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 1px;
  margin: 0;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, -7px);
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, 7px);
}

.hero {
  min-height: 872px;
  padding: 188px 0 66px;
  border-bottom: 1px solid rgba(216, 163, 80, .22);
}

.hero__backdrop {
  position: absolute;
  inset: 0 0 -484px;
  z-index: -2;
  isolation: isolate;
  overflow: hidden;
  background-color: #07070d;
  background-image:
    linear-gradient(90deg, #07070d 0%, rgba(7, 7, 13, .98) 30%, rgba(7, 7, 13, .76) 43%, rgba(7, 7, 13, .22) 60%, rgba(7, 7, 13, .04) 100%),
    linear-gradient(180deg, rgba(6, 6, 11, .02) 0%, rgba(6, 6, 11, 0) 70%, rgba(6, 6, 11, .32) 86%, #07070d 100%),
    radial-gradient(circle at 72% 28%, rgba(85, 37, 74, .2), transparent 29rem);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  filter: saturate(.96) contrast(1.02);
}

.hero__backdrop::before {
  content: "";
  position: absolute;
  top: -260px;
  right: 4vw;
  z-index: -1;
  width: clamp(760px, 54vw, 1020px);
  height: 130%;
  background-image: image-set(url("anna2.webp") type("image/webp"), url("anna2.jpeg") type("image/jpeg"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 96%, transparent 100%);
  pointer-events: none;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 73% 27%, rgba(216, 163, 80, .09), transparent 24rem),
    radial-gradient(circle at 45% 48%, rgba(86, 35, 80, .1), transparent 34rem);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(760px, 840px) 1fr;
  align-items: center;
}

.hero__content {
  max-width: 780px;
  margin-left: 60px;
}

.moon-row {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  margin: 0 0 22px 154px;
}

.moon-row span {
  position: relative;
  display: block;
  width: 26px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(120deg, #f9d986, #a2682d);
  box-shadow: 0 0 16px rgba(216, 163, 80, .34);
}

.moon-row span:nth-child(1) {
  background: transparent;
  box-shadow: inset -8px 0 0 var(--gold), 0 0 14px rgba(216, 163, 80, .2);
}

.moon-row span:nth-child(2) {
  opacity: .78;
}

.moon-row span:nth-child(3) {
  background: linear-gradient(120deg, #f8e3a6, #bf8237);
}

.moon-row span:nth-child(4) {
  opacity: .72;
}

.moon-row span:nth-child(5) {
  background: transparent;
  box-shadow: inset 8px 0 0 var(--gold), 0 0 14px rgba(216, 163, 80, .2);
}

.moon-row span:nth-child(6) {
  width: 20px;
  background: transparent;
  box-shadow: inset 7px 0 0 var(--gold);
}

.eyebrow {
  margin: 0 0 8px;
  color: rgba(216, 163, 80, .42);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(58px, 4.8vw, 92px);
  line-height: .94;
  font-weight: 400;
  color: #fff4dc;
  text-wrap: balance;
  text-shadow: 0 10px 32px rgba(0, 0, 0, .7);
}

.hero h1 .accent {
  color: var(--gold);
}

.mobile-break,
.hero__mobile-photo {
  display: none;
}

.hero__lead {
  max-width: 480px;
  margin: 22px 0 26px;
  color: #f3e9dc;
  font-size: clamp(18px, 1.22vw, 22px);
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero__actions .btn:first-child {
  width: 400px;
}

.hero__actions .btn:last-child {
  width: 310px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--gold {
  color: #1a1110;
  border-color: rgba(255, 235, 176, .72);
  background:
    linear-gradient(180deg, #ffe9ad 0%, #d7a04b 52%, #a96d28 100%);
  box-shadow:
    0 0 0 1px rgba(55, 34, 13, .5),
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 0 22px rgba(216, 163, 80, .35);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(55, 34, 13, .5),
    inset 0 1px 0 rgba(255, 255, 255, .65),
    0 0 34px rgba(216, 163, 80, .55);
}

.btn--outline {
  color: var(--gold-soft);
  border-color: rgba(216, 163, 80, .66);
  background: rgba(25, 19, 29, .76);
  box-shadow: inset 0 0 0 1px rgba(255, 231, 175, .04);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(243, 212, 140, .92);
  box-shadow: 0 0 24px rgba(216, 163, 80, .22), inset 0 0 22px rgba(216, 163, 80, .08);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  margin: 0;
  color: #dfc08d;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}

.hero__badges svg {
  width: 22px;
  min-width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(216, 163, 80, .4));
}

.side-ornament {
  position: absolute;
  top: 178px;
  width: 120px;
  height: 650px;
  opacity: .35;
  pointer-events: none;
  background:
    linear-gradient(var(--line), var(--line)) 50% 0 / 1px 100% no-repeat,
    radial-gradient(circle, var(--gold) 0 2px, transparent 2.5px) 50% 0 / 100% 100% no-repeat;
}

.side-ornament::before,
.side-ornament::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 78px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.side-ornament::before {
  top: 0;
}

.side-ornament::after {
  bottom: 0;
}

.side-ornament--left {
  left: max(12px, calc((100vw - var(--max)) / 2 - 96px));
}

.side-ornament--right {
  right: max(12px, calc((100vw - var(--max)) / 2 - 96px));
}

.about {
  margin-top: -1px;
  min-height: 476px;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(216, 163, 80, .22);
  border-bottom: 1px solid rgba(216, 163, 80, .22);
  background:
    linear-gradient(90deg, rgba(8, 8, 14, .9) 0%, rgba(9, 8, 14, .76) 36%, rgba(8, 7, 13, .24) 54%, rgba(7, 7, 12, 0) 73%),
    radial-gradient(circle at 70% 8%, rgba(216, 163, 80, .06), transparent 26rem);
}

.about__grid {
  display: grid;
  grid-template-columns: 475px 260px 1fr;
  gap: 40px;
  align-items: start;
}

.about__copy {
  grid-column: 1 / 2;
}

.about__copy h2,
.contact__copy h2,
.section-title h2 {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 400;
}

.ornament-line {
  width: 250px;
  height: 20px;
  margin: 8px 0 16px;
  background:
    radial-gradient(circle, var(--gold) 0 2px, transparent 2.5px) center / 20px 20px no-repeat,
    linear-gradient(90deg, transparent, var(--line), transparent) center / 100% 1px no-repeat;
}

.about__copy p {
  max-width: 520px;
  margin: 0 0 13px;
  color: #e2d8ca;
  font-size: 16px;
  line-height: 1.55;
}

.about__copy .signature {
  margin-top: 14px;
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 24px;
  line-height: 1.18;
}

.about__stats {
  grid-column: 2 / 3;
  display: grid;
  gap: 17px;
  padding: 10px 0 4px 42px;
  border-left: 1px dashed rgba(216, 163, 80, .3);
}

.stat {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 170px;
  color: #eee1d1;
  text-align: center;
  font-size: 15px;
  line-height: 1.35;
}

.stat svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(216, 163, 80, .34));
}

.stat strong {
  font-weight: 700;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  text-align: center;
}

.section-title > span {
  display: block;
  width: min(180px, 18vw);
  height: 20px;
  background:
    radial-gradient(circle, var(--gold) 0 2px, transparent 2.5px) center / 20px 20px no-repeat,
    linear-gradient(90deg, transparent, var(--line), transparent) center / 100% 1px no-repeat;
}

.section-title h2 {
  color: var(--gold);
}

.section-title--small {
  margin-bottom: 12px;
}

.section-title--small h2 {
  font-size: clamp(28px, 2.4vw, 42px);
}

.section-title--left {
  justify-content: flex-start;
  margin-bottom: 18px;
  text-align: left;
}

.section-title--left > span {
  width: 110px;
}

.services {
  padding: 8px 0 18px;
  border-bottom: 1px solid rgba(216, 163, 80, .22);
  background:
    radial-gradient(circle at 94% 18%, rgba(216, 163, 80, .1), transparent 17rem),
    linear-gradient(180deg, #07070d 0%, #09070e 100%);
}

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

.services .section-title {
  margin-bottom: 10px;
}

.service-card,
.review-card,
.faq-cta,
.contact-form,
.directions {
  position: relative;
  border: 1px solid rgba(216, 163, 80, .35);
  background:
    linear-gradient(180deg, rgba(48, 37, 49, .78), rgba(24, 19, 29, .84)),
    radial-gradient(circle at 50% 0%, rgba(216, 163, 80, .12), transparent 45%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 245, 220, .04),
    0 18px 48px rgba(0, 0, 0, .28);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 364px;
  padding: 30px 24px 20px;
  overflow: hidden;
  border-radius: 8px;
  text-align: center;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(243, 212, 140, .68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 245, 220, .07),
    0 24px 52px rgba(0, 0, 0, .34),
    0 0 28px rgba(216, 163, 80, .13);
}

.card-ornament {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(216, 163, 80, .13);
  opacity: .84;
}

.card-ornament::before,
.card-ornament::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(216, 163, 80, .28);
}

.card-ornament::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.card-ornament::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.service-card__art {
  display: block;
  flex: 0 0 auto;
  width: 250px;
  height: 150px;
  margin: -12px 0 -23px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 0 13px rgba(216, 163, 80, .38));
}

.service-card__art--heart {
  background-image: url("service-heart.webp");
}

.service-card__art--coins {
  background-image: url("service-coins.webp");
}

.service-card__art--eye {
  background-image: url("service-eye.webp");
}

.service-card__art--cards {
  background-image: url("service-cards.webp");
}

.service-card h3,
.why-grid h3,
.process-list h3 {
  margin: 0;
  color: #f1cc7c;
  font-size: 19px;
  line-height: 1.16;
}

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

.why-grid h3 {
  font-size: 20px;
}

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

.service-card p {
  flex: 1;
  margin: 9px 0 14px;
  color: #ddd0c4;
  font-size: 16px;
  line-height: 1.5;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 190px);
  min-height: 46px;
  color: #f4e4c8;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(216, 163, 80, .34);
  border-radius: 6px;
  background: rgba(20, 16, 23, .74);
  transition: border-color .22s ease, box-shadow .22s ease, color .22s ease;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: var(--gold-soft);
  border-color: rgba(243, 212, 140, .74);
  box-shadow: 0 0 16px rgba(216, 163, 80, .2);
}

.directions {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px 30px;
  margin-top: 22px;
  padding: 26px 28px 24px;
  border-radius: 8px;
  overflow: hidden;
}

.directions::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 2% 20%, rgba(216, 163, 80, .14), transparent 12rem),
    radial-gradient(circle at 98% 95%, rgba(74, 35, 74, .25), transparent 18rem);
  pointer-events: none;
}

.directions__heading {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
}

.directions h3 {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.12;
  font-weight: 400;
}

.directions__heading span {
  display: block;
  margin-top: 8px;
  color: #c4aa7a;
  font-size: 15px;
  line-height: 1.4;
}

.directions ul {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.directions li {
  position: relative;
  min-height: 48px;
  padding: 0 0 10px 20px;
  color: #e7dac9;
  font-size: 15px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(216, 163, 80, .12);
}

.directions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 9px rgba(216, 163, 80, .7);
}

.disclaimer {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin: 0;
  color: #b9aa98;
  font-size: 12px;
}

.why {
  padding: 2px 0 24px;
  border-bottom: 1px solid rgba(216, 163, 80, .22);
  background: #08070d;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.why-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 110px;
  padding: 12px 34px 8px;
  text-align: center;
  border-left: 1px solid rgba(216, 163, 80, .22);
}

.why-grid article:first-child {
  border-left: none;
}

.why-grid svg {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-grid h3 {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 230px;
}

.why-grid p {
  margin: 7px 0 0;
  color: #dfd1c3;
  font-size: 16px;
  line-height: 1.48;
}

.process {
  padding: 18px 0 72px;
  border-bottom: 1px solid rgba(216, 163, 80, .22);
  background:
    radial-gradient(circle at 0 42%, rgba(216, 163, 80, .08), transparent 16rem),
    radial-gradient(circle at 100% 44%, rgba(216, 163, 80, .08), transparent 16rem),
    #08070d;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 12px 0 0;
  margin: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 72px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(216, 163, 80, .7) 0 5px, transparent 5px 12px);
  opacity: .58;
}

.process-list li {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.process-list__num {
  position: absolute;
  top: -12px;
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 20px;
  border: 1px solid rgba(216, 163, 80, .65);
  border-radius: 50%;
  background: #0b0a10;
}

.process-list__icon {
  display: grid;
  place-items: center;
  width: 70px;
  aspect-ratio: 1;
  margin: 20px 0 14px;
  color: var(--gold);
  border: 1px solid rgba(216, 163, 80, .62);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 163, 80, .12), transparent 65%),
    #0b0a10;
  box-shadow: 0 0 20px rgba(216, 163, 80, .12);
}

.process-list__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-list h3 {
  min-height: 44px;
  max-width: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.process-list p {
  max-width: 240px;
  margin: 8px 0 0;
  color: #d9cabd;
  font-size: 15px;
  line-height: 1.5;
}

.reviews {
  padding: 18px 0 38px;
  border-bottom: 1px solid rgba(216, 163, 80, .22);
  background:
    radial-gradient(circle at 94% 70%, rgba(216, 163, 80, .12), transparent 16rem),
    #08070d;
}

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

.review-card {
  min-height: 210px;
  padding: 28px 30px 18px;
  border-radius: 8px;
}

.quote {
  position: absolute;
  top: 6px;
  left: 18px;
  color: rgba(216, 163, 80, .42);
  font-family: var(--serif);
  font-size: 62px;
  line-height: 1;
}

.review-card p {
  min-height: 60px;
  margin: 0 0 18px;
  color: #e3d7cc;
  font-size: 17px;
  line-height: 1.42;
}

.review-card__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 54px;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 163, 80, .52);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, #f1c49a 0 15%, transparent 16%),
    radial-gradient(circle at 49% 40%, #382021 0 22%, transparent 23%),
    linear-gradient(135deg, #3b1f24, #d9a675 42%, #171016 43%);
  box-shadow: 0 0 16px rgba(216, 163, 80, .18);
}

.avatar--two {
  background:
    radial-gradient(circle at 50% 32%, #efd0b4 0 15%, transparent 16%),
    radial-gradient(circle at 49% 40%, #6e5c3e 0 22%, transparent 23%),
    linear-gradient(135deg, #3d302a, #d6baa0 42%, #181019 43%);
}

.avatar--three {
  background:
    radial-gradient(circle at 50% 32%, #f2c298 0 15%, transparent 16%),
    radial-gradient(circle at 49% 40%, #8b5730 0 22%, transparent 23%),
    linear-gradient(135deg, #462116, #e2ad78 42%, #181019 43%);
}

.review-card strong {
  display: block;
  color: #f0c56f;
  font-size: 16px;
}

.review-card small {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.review-dots span {
  width: 9px;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 163, 80, .75);
  border-radius: 50%;
}

.review-dots span:first-child {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(216, 163, 80, .5);
}

.faq {
  padding: 16px 0 15px;
  border-bottom: 1px solid rgba(216, 163, 80, .22);
  background:
    radial-gradient(circle at 88% 62%, rgba(216, 163, 80, .16), transparent 17rem),
    linear-gradient(180deg, #08070d, #07070c);
}

.faq__grid {
  display: grid;
  grid-template-columns: 720px 570px 1fr;
  align-items: stretch;
  gap: 20px;
}

.accordion {
  display: grid;
  gap: 4px;
}

.accordion details {
  border: 1px solid rgba(216, 163, 80, .32);
  border-radius: 7px;
  background: rgba(47, 39, 48, .8);
  overflow: hidden;
}

.accordion summary {
  position: relative;
  min-height: 48px;
  padding: 14px 56px 12px 24px;
  color: #f0e4d7;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--gold-soft);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  margin: 0;
  padding: 0 24px 18px;
  color: #d9cabd;
  font-size: 15px;
  line-height: 1.5;
}

.faq-cta {
  min-height: 226px;
  padding: 54px 48px;
  border-radius: 8px;
  display: grid;
  align-content: center;
  justify-items: start;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 13, 21, .96), rgba(24, 18, 27, .86)),
    image-set(url("anna2.webp") type("image/webp"), url("anna2.jpeg") type("image/jpeg"));
  background-repeat: no-repeat;
  background-size: 100% 100%, auto 360%;
  background-position: center, right 20%;
}

.faq-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 13, .96) 0%, rgba(8, 8, 13, .76) 52%, rgba(8, 8, 13, .24) 100%),
    radial-gradient(circle at 82% 50%, rgba(216, 163, 80, .14), transparent 15rem);
  pointer-events: none;
}

.faq-cta > * {
  position: relative;
  z-index: 1;
}

.faq-cta p {
  max-width: 420px;
  margin: 0 0 26px;
  color: #eee0cf;
  font-size: 16px;
  line-height: 1.55;
}

.contact {
  padding: 18px 0 14px;
  background:
    linear-gradient(90deg, rgba(8, 8, 13, .98) 0%, rgba(8, 8, 13, .9) 54%, rgba(8, 8, 13, .5) 100%),
    image-set(url("anna2.webp") type("image/webp"), url("anna2.jpeg") type("image/jpeg"));
  background-repeat: no-repeat;
  background-size: 100% 100%, auto 360%;
  background-position: center, right 20%;
}

.contact__grid {
  display: grid;
  grid-template-columns: 500px 650px 1fr;
  gap: 40px;
  align-items: start;
}

.contact__copy h2 {
  color: var(--gold);
}

.contact__copy p {
  max-width: 430px;
  margin: 8px 0 16px;
  color: #d8cbbc;
  font-size: 16px;
  line-height: 1.55;
}

.contact-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-bottom: 0;
}

.contact-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dfc08d;
  font-size: 13px;
  font-weight: 700;
}

.contact-benefits svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

address {
  display: grid;
  gap: 6px;
  color: #f2dfc0;
  font-style: normal;
}

address strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

address a {
  color: #e1d0bd;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(216, 163, 80, .28);
  border-radius: 7px;
  outline: none;
  background: rgba(38, 31, 40, .82);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input {
  min-height: 47px;
  padding: 0 18px;
}

textarea {
  height: 70px;
  min-height: 70px;
  padding: 12px 18px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #b9aa99;
}

input:focus,
textarea:focus {
  border-color: rgba(243, 212, 140, .82);
  background: rgba(45, 35, 47, .92);
  box-shadow: 0 0 0 3px rgba(216, 163, 80, .12);
}

.contact-form .btn {
  width: 480px;
  max-width: 100%;
  min-height: 48px;
  justify-self: start;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
  box-shadow: none;
}

.form-note {
  min-height: 0;
  margin: 0;
  color: #d9c8a9;
  font-size: 13px;
}

.form-note[data-state="success"] {
  color: #d9bd79;
}

.form-note[data-state="error"] {
  color: #e5a69b;
}

.form-note:empty {
  display: none;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 10px 0 0;
  background: #07070d;
}

.footer-disclaimer {
  width: min(calc(100% - (var(--side) * 2)), var(--max));
  margin: 0 auto 6px;
  color: #8f8274;
  font-size: 11px;
  text-align: center;
}

.footer > .footer-disclaimer {
  justify-self: auto;
  width: min(calc(100% - (var(--side) * 2)), var(--max));
  margin: 0 auto 6px;
  color: #8f8274;
  font-size: 11px;
  text-align: center;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand--footer .brand__mark {
  width: 52px;
}

.brand--footer .brand__mark svg {
  width: 40px;
  height: 40px;
}

.brand--footer strong {
  font-size: 22px;
}

.brand--footer small {
  font-size: 11px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  color: var(--gold);
  border: 1px solid rgba(216, 163, 80, .42);
  border-radius: 50%;
  background: rgba(23, 18, 25, .78);
  transition: transform .22s ease, box-shadow .22s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(216, 163, 80, .24);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer p {
  justify-self: end;
  margin: 0;
  color: #9d8e7f;
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

.footer a {
  text-decoration: underline;
  text-decoration-color: rgba(216, 163, 80, .4);
  text-underline-offset: 3px;
}

.developer-credit {
  color: #b4a28f;
}

.developer-credit a {
  color: var(--gold-soft);
  font-weight: 700;
}

.whatsapp-widget {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 52px;
  height: 52px;
  padding: 0 15px;
  color: var(--gold-soft);
  border: 1px solid rgba(216, 163, 80, .7);
  border-radius: 999px;
  background: rgba(10, 9, 14, .88);
  box-shadow: 0 0 24px rgba(216, 163, 80, .18), inset 0 0 20px rgba(216, 163, 80, .07);
  backdrop-filter: blur(10px);
  transition: width .22s ease, transform .22s ease, box-shadow .22s ease;
}

.whatsapp-widget span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #f2dec0;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transition: max-width .24s ease, opacity .18s ease;
}

.whatsapp-widget svg {
  width: 24px;
  min-width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(216, 163, 80, .3), inset 0 0 22px rgba(216, 163, 80, .1);
}

.whatsapp-widget:hover span,
.whatsapp-widget:focus-visible span {
  max-width: 230px;
  opacity: 1;
}

.mobile-sticky {
  display: none;
}

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

.js .reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

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

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

@media (max-width: 1320px) {
  :root {
    --side: clamp(18px, 3.8vw, 64px);
  }

  .header {
    gap: 24px;
  }

  .nav {
    gap: 24px;
    font-size: 14px;
  }

  .hero {
    min-height: 790px;
  }

  .hero__grid {
    grid-template-columns: minmax(390px, 560px) 1fr;
  }

  .service-card {
    padding-inline: 18px;
  }

  .faq__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
    gap: 24px;
  }

  .contact__grid {
    grid-template-columns: minmax(360px, .8fr) minmax(520px, 1fr);
    gap: 40px;
  }
}

@media (max-width: 1360px) {
  .site-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 15;
    background: rgba(3, 3, 8, .7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
    backdrop-filter: blur(4px);
  }

  body.nav-open .site-shell::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    position: fixed !important;
    top: 30px;
    right: 34px;
    z-index: 45;
    display: grid !important;
    place-items: center;
    order: 3;
    width: 48px;
    min-width: 48px;
    height: 48px;
    color: #17100e;
    border-color: rgba(255, 235, 176, .75);
    background: linear-gradient(180deg, #ffe9ad 0%, #d7a04b 54%, #a96d28 100%);
    box-shadow: 0 0 18px rgba(216, 163, 80, .3), inset 0 1px 0 rgba(255, 255, 255, .48);
  }

  .header-cta {
    order: 2;
    min-width: 170px;
    gap: 18px;
    margin-right: 70px;
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    left: auto;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: min(440px, 100%);
    height: 100dvh;
    padding: 112px 34px 30px;
    color: var(--text);
    background:
      radial-gradient(circle at 100% 0%, rgba(216, 163, 80, .14), transparent 18rem),
      radial-gradient(circle at 0% 68%, rgba(75, 38, 67, .42), transparent 22rem),
      linear-gradient(180deg, rgba(14, 11, 18, .99), rgba(7, 7, 13, .995));
    border-left: 1px solid rgba(216, 163, 80, .38);
    box-shadow: -24px 0 60px rgba(0, 0, 0, .48);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform .3s ease, visibility .3s ease;
  }

  .nav > .nav__link {
    display: flex;
    align-items: center;
    min-height: 61px;
    padding: 13px 4px;
    color: #f4e6d2;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
    border-bottom: 1px solid rgba(216, 163, 80, .18);
  }

  .nav > .nav__link::after,
  .nav__mobile-actions a::after {
    display: none;
  }

  .nav__mobile-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
  }

  .nav__mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    border: 1px solid rgba(216, 163, 80, .62);
    border-radius: 7px;
  }

  .nav__mobile-cta {
    color: #1a120c;
    background: linear-gradient(180deg, #f9dda0, #c98d3c);
    box-shadow: 0 8px 24px rgba(216, 163, 80, .18);
  }

  .nav__mobile-whatsapp {
    color: var(--gold-soft);
    background: rgba(23, 17, 25, .7);
  }

  body.nav-open .nav {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  body.nav-open .nav-toggle {
    color: var(--gold-soft);
    border-color: rgba(216, 163, 80, .52);
    background: rgba(12, 10, 16, .92);
    box-shadow: 0 0 20px rgba(216, 163, 80, .18);
  }

  body.nav-open .whatsapp-widget,
  body.nav-open .mobile-sticky {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translate(-50%, 0) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .hero {
    min-height: 760px;
  }

  .hero__backdrop {
    background-position: center;
  }

  .hero__backdrop::before {
    top: -220px;
  }

  .about__grid {
    grid-template-columns: minmax(340px, 1fr) minmax(260px, .8fr);
  }

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

  .why-grid article:nth-child(odd) {
    border-left: none;
  }

  .why-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(216, 163, 80, .22);
  }

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

  .process-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 18px;
  }

  .process-list::before {
    display: none;
  }

  .review-grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    gap: 28px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer p {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  :root {
    --side: 18px;
  }

  body {
    padding-bottom: 74px;
  }

  .header {
    position: absolute;
    grid-template-columns: 1fr auto;
    gap: 10px;
    width: calc(100% - 36px);
    padding-top: 18px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-prefix {
    display: none;
  }

  .brand__mark {
    width: 50px;
  }

  .brand__mark svg {
    width: 38px;
    height: 38px;
  }

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

  .brand small {
    font-size: 11px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    top: 18px !important;
    right: 18px !important;
    order: 2;
    width: 46px;
    min-width: 46px;
    height: 46px;
    color: #17100e;
    border-color: rgba(255, 235, 176, .75);
    background: linear-gradient(180deg, #ffe9ad 0%, #d7a04b 54%, #a96d28 100%);
    box-shadow: 0 0 18px rgba(216, 163, 80, .34), inset 0 1px 0 rgba(255, 255, 255, .48);
  }

  .nav {
    width: 100%;
    padding: 94px 24px 26px;
    border-left: 0;
  }

  .nav > .nav__link {
    min-height: 57px;
    padding-block: 12px;
    font-size: 26px;
  }

  .nav__mobile-actions {
    padding-top: 22px;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 0;
  }

  .hero__backdrop {
    inset: 0;
    background-image:
      radial-gradient(circle at 70% 12%, rgba(216, 163, 80, .1), transparent 15rem),
      radial-gradient(circle at 45% 18%, rgba(72, 35, 70, .45), transparent 19rem),
      linear-gradient(180deg, rgba(7, 7, 13, .97) 0%, rgba(7, 7, 13, .92) 100%);
    background-size: auto;
    background-position: center;
  }

  .hero__backdrop::before {
    display: none;
  }

  .side-ornament {
    display: none;
  }

  .hero__grid {
    display: block;
  }

  .hero__content {
    margin-left: 0;
  }

  .hero__mobile-photo {
    position: relative;
    display: block;
    height: clamp(460px, 110vw, 520px);
    margin: 10px calc(var(--side) * -1) 0;
    background-image:
      linear-gradient(180deg, #07070d 0%, rgba(7, 7, 13, .08) 13%, rgba(7, 7, 13, .02) 68%, rgba(7, 7, 13, .96) 100%),
      linear-gradient(90deg, rgba(7, 7, 13, .3), transparent 18%, transparent 82%, rgba(7, 7, 13, .3)),
      image-set(url("anna2.webp") type("image/webp"), url("anna2.jpeg") type("image/jpeg"));
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 100%, 100% auto;
    background-position: center, center, center 30%;
  }

  .moon-row {
    gap: 12px;
    margin: 0 0 14px;
  }

  .moon-row span {
    width: 19px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 44px);
    line-height: .95;
    overflow-wrap: break-word;
  }

  .mobile-break {
    display: none;
  }

  .hero__lead {
    max-width: 360px;
    margin: 16px 0 18px;
    font-size: 16px;
    line-height: 1.42;
  }

  .hero__lead,
  .about__copy p,
  .service-card p,
  .directions li,
  .review-card p,
  .accordion p,
  .contact__copy p {
    overflow-wrap: anywhere;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero__actions .btn:first-child,
  .hero__actions .btn:last-child {
    width: 100%;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding-inline: 18px;
    white-space: normal;
    text-align: center;
  }

  .btn span {
    min-width: 0;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    font-size: 12px;
  }

  .hero__badges li {
    align-content: start;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    min-height: 52px;
    line-height: 1.25;
    text-align: center;
  }

  .hero__badges svg {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .about,
  .services,
  .why,
  .process,
  .reviews,
  .faq,
  .contact {
    padding-block: 32px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__copy,
  .about__stats {
    grid-column: auto;
  }

  .about__stats {
    grid-template-columns: 1fr;
    padding-left: 0;
    border-left: none;
    border-top: 1px dashed rgba(216, 163, 80, .3);
    padding-top: 24px;
  }

  .stat {
    justify-self: start;
    grid-template-columns: 40px 1fr;
    justify-items: start;
    align-items: center;
    max-width: none;
    text-align: left;
  }

  .section-title {
    gap: 6px;
  }

  .section-title > span {
    width: 22px;
    min-width: 22px;
  }

  .section-title h2,
  .about__copy h2,
  .contact__copy h2 {
    max-width: 100%;
    font-size: 32px;
  }

  .service-grid,
  .why-grid,
  .review-grid,
  .directions ul,
  .form-row {
    grid-template-columns: 1fr;
  }

  .directions {
    display: block;
    padding: 26px 22px 20px;
  }

  .directions__heading {
    display: block;
    margin-bottom: 22px;
  }

  .directions h3 {
    font-size: 29px;
  }

  .directions__heading span {
    display: block;
    margin-top: 7px;
    font-size: 15px;
  }

  .directions ul {
    gap: 12px;
  }

  .directions li {
    min-height: 0;
    padding: 0 0 13px 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .why-grid article {
    min-height: auto;
    padding-inline: 0;
    border-left: none;
    border-top: 1px solid rgba(216, 163, 80, .22);
  }

  .why-grid article:first-child {
    border-top: none;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-list li {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    justify-items: start;
    column-gap: 16px;
    text-align: left;
  }

  .process-list__num {
    left: 43px;
    top: -6px;
  }

  .process-list__icon {
    grid-row: 1 / 3;
    width: 64px;
    margin: 6px 0 0;
  }

  .process-list__icon svg {
    width: 32px;
    height: 32px;
  }

  .process-list h3 {
    min-height: auto;
    justify-content: flex-start;
  }

  .process-list p {
    margin-top: 5px;
  }

  .faq__grid {
    gap: 18px;
  }

  .faq-cta {
    padding: 34px 22px;
  }

  .contact {
    background-position: 60% bottom;
  }

  .contact-form .btn {
    width: 100%;
  }

  .whatsapp-widget {
    display: none;
  }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 50;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(216, 163, 80, .45);
    border-radius: 12px;
    background: rgba(8, 8, 13, .92);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .45), inset 0 0 16px rgba(216, 163, 80, .08);
    backdrop-filter: blur(12px);
  }

  .mobile-sticky a {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 42px;
    color: #f1dfc0;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid rgba(216, 163, 80, .36);
    border-radius: 8px;
    background: rgba(33, 25, 33, .88);
  }

  .mobile-sticky a:last-child {
    color: #1a1110;
    border-color: rgba(255, 235, 176, .72);
    background: linear-gradient(180deg, #ffe9ad 0%, #d7a04b 52%, #a96d28 100%);
  }
}

@media (max-width: 440px) {
  .brand strong {
    font-size: 16px;
  }

  .brand small {
    max-width: 170px;
  }

  .hero {
    padding-bottom: 0;
  }

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

  .hero__mobile-photo {
    height: 470px;
  }

  .service-card {
    min-height: auto;
  }

  .review-card {
    padding-inline: 24px;
  }
}
