@font-face {
  font-family: "DM Serif Display";
  src: url("../fonts/dm-serif-display-v17-latin-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("../fonts/fira-sans-v18-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("../fonts/fira-sans-v18-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("../fonts/fira-sans-v18-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --header-height: 228px;
  --brand-sticky-offset: 160px;
  --sticky-nav-height: 64px;
  --content-width: 1280px;
  --section-padding-desktop: 70px;
  --section-padding-tablet: 50px;
  --section-padding-mobile: 30px;
  --column-gap: 40px;
  --color-primary: #911556;
  --color-accent: #BE136D;
  --color-light: #FDF2F8;
  --color-rose: #F7D1E4;
  --color-soft-accent: #D578A2;
  --color-muted: #5A5A5A;
  --radius: 15px;
  --radius-card: 20px;
  --shadow-soft: 0 22px 55px rgba(145, 21, 86, 0.10);
  --font-body: "Fira Sans", Arial, sans-serif;
  --font-heading: "DM Serif Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #FFFFFF;
  color: #000000;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration-color: transparent;
  text-underline-offset: 0.18em;
  transition: color 400ms ease, text-decoration-color 400ms ease, background 400ms ease, transform 400ms ease;
}

a:hover,
a:focus-visible {
  color: var(--color-primary);
  text-decoration-color: currentColor;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(190, 19, 109, 0.35);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 4px;
  color: var(--color-accent);
  font-size: 42px;
  line-height: 1.15;
}

h2 {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--color-accent);
  font-size: 32px;
  line-height: 1.2;
}

.intro-lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

h3 {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 20px;
  line-height: 1.3;
}

p {
  margin-bottom: 0;
}

section[id],
.anchor-target {
  scroll-margin-top: calc(var(--sticky-nav-height) + 24px);
}

.site-header {
  position: sticky;
  top: calc(var(--brand-sticky-offset) * -1);
  z-index: 60;
  background: #FFFFFF;
}

.brand-area {
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px 24px 18px;
}

.brand-logo {
  position: relative;
  z-index: 2;
  width: min(520px, 70vw);
  transition: transform 400ms ease;
}

.brand-logo:hover,
.brand-logo:focus-visible {
  transform: translateY(-2px);
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.mobile-orchid-band {
  display: none;
}

.header-orchid {
  position: absolute;
  z-index: 1;
  width: 330px;
  pointer-events: none;
}

.header-orchid img {
  width: 100%;
  height: auto;
}

.header-orchid-left {
  left: -8px;
  top: -38px;
}

.header-orchid-right {
  right: -8px;
  top: -44px;
}

.nav-shell {
  position: relative;
  z-index: 2;
  background: var(--color-light);
  border-bottom: 2px solid var(--color-rose);
}

.nav-inner {
  width: min(100%, var(--content-width));
  min-height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  padding: 20px 0;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: transparent;
  transition: background 400ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--color-accent);
}

.main-nav a.active::after {
  background: var(--color-accent);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000000;
  text-decoration: none;
}

.icon-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #FFFFFF;
  color: var(--color-accent);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(190, 19, 109, 0.06);
}

.icon-link img {
  width: 21px;
  height: 21px;
  filter: none;
}

.icon-link:hover,
.icon-link:focus-visible {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.icon-link:hover img,
.icon-link:focus-visible img {
  filter: brightness(0) invert(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(190, 19, 109, 0.24);
  border-radius: 14px;
  background: #FFFFFF;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.visually-hidden) {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--color-accent);
  transition: transform 400ms ease, opacity 400ms ease;
}

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

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

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

.site-section {
  width: 100%;
  padding: var(--section-padding-desktop) 24px;
}

.section-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.welcome-section,
.page-background-section {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  padding-bottom: 258px;
  background-color: #FFFFFF;
  background-image: image-set(url("../images/hg-content.avif") type("image/avif"), url("../images/hg-content.webp") type("image/webp"));
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: min(68vw, 980px) auto;
}

.welcome-section {
  min-height: 1238px;
}

.page-background-section {
  min-height: 760px;
}

.legal-section,
.privacy-section {
  min-height: 0;
  padding-bottom: 128px;
  background-image: none;
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.82fr);
  align-items: start;
  gap: 52px;
}

.intro-column {
  padding-top: 8px;
  max-width: 700px;
}

.eyebrow {
  margin-bottom: 4px;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 640px;
  margin-bottom: 42px;
}

.ornament-divider {
  width: min(100%, 560px);
  margin: 22px 0 24px;
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--color-rose);
}

.ornament-divider span {
  height: 2px;
  background: currentColor;
}

.ornament-divider picture {
  width: 30px;
  height: 30px;
}

.ornament-divider img {
  width: 30px;
  height: 30px;
}

.benefit-list {
  display: grid;
  gap: 30px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.benefit-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.benefit-icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.benefit-card p {
  max-width: 520px;
}

.contact-card {
  border: 2px solid var(--color-rose);
  border-radius: var(--radius-card);
  padding: 28px 30px 32px;
  background: rgba(253, 242, 248, 0.72);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.contact-page-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: #FFFFFF;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.contact-image {
  display: block;
  margin-bottom: 28px;
}

.contact-map {
  display: block;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
}

.contact-map img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  transition: transform 400ms ease;
}

.contact-map:hover img,
.contact-map:focus-visible img {
  transform: scale(1.025);
}

.contact-image img {
  width: 100%;
  aspect-ratio: 2 / 1;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 22px;
}

.appointment-box {
  margin-bottom: 22px;
}

.contact-list {
  margin: 0;
  display: grid;
  gap: 2px;
}

.contact-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 8px;
}

.contact-list dt,
.contact-list dd {
  margin: 0;
}

.contact-list a {
  color: #000000;
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--color-accent);
  text-decoration-color: currentColor;
}

.button {
  min-height: 56px;
  border-radius: var(--radius);
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-accent);
  font-weight: 700;
  text-decoration: none;
  transition: background 400ms ease, color 400ms ease, transform 400ms ease, border-color 400ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #FFFFFF;
  background: var(--color-accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--color-primary);
  color: #FFFFFF;
  background: var(--color-primary);
}

.intro-cta {
  margin-top: 28px;
}

.button-secondary {
  margin-bottom: 30px;
  color: var(--color-accent);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #FFFFFF;
  background: var(--color-accent);
}

.treatment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 56px;
  margin-bottom: 56px;
}

.treatment-intro {
  max-width: 100%;
}

.treatment-jump-card {
  padding: 0;
}

.treatment-jump-card h3 {
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 25px;
}

.treatment-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.treatment-buttons a {
  border: 1px solid var(--color-rose);
  border-radius: var(--radius);
  padding: 9px 14px;
  color: var(--color-primary);
  background: rgba(253, 242, 248, 0.72);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.treatment-buttons a:hover,
.treatment-buttons a:focus-visible {
  border-color: var(--color-accent);
  color: #FFFFFF;
  background: var(--color-accent);
}

.treatment-list {
  display: grid;
  gap: 28px;
}

.treatment-card {
  scroll-margin-top: calc(var(--sticky-nav-height) + 24px);
  border: 2px solid var(--color-rose);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: 34px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.treatment-visual {
  width: 100%;
}

.treatment-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.treatment-content {
  max-width: 760px;
}

.treatment-content h2 {
  margin-bottom: 14px;
  color: var(--color-accent);
}

.treatment-content p + p {
  margin-top: 14px;
}

.treatment-content ul {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.treatment-content li {
  position: relative;
  padding-left: 22px;
}

.treatment-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateY(-50%);
}

.treatment-content ul + p {
  margin-top: 16px;
}

.treatment-offer {
  margin-top: 28px;
}

.treatment-offer h3 {
  margin-bottom: 10px;
  color: var(--color-accent);
}

.treatment-offer .price-list {
  margin-bottom: 0;
}

.treatment-offer .price-list + .offer-note {
  margin: 14px 0 0;
}

.treatment-offer .price-list li {
  padding-left: 0;
}

.treatment-offer .price-list li::before {
  content: none;
}

.treatment-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.treatment-actions .button-secondary {
  margin-bottom: 0;
}

.offer-intro {
  max-width: min(50%, 640px);
  margin: 0 auto 42px;
  text-align: center;
}

.contact-intro {
  max-width: min(50%, 640px);
  margin: 0 auto 42px;
  text-align: center;
}

.offer-intro h1 {
  max-width: 100%;
}

.offer-intro .intro-lead,
.contact-intro .intro-lead {
  max-width: 100%;
}

.offer-intro .ornament-divider,
.contact-intro .ornament-divider {
  margin-right: auto;
  margin-left: auto;
}

.offer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 28px;
}

.offer-column {
  min-height: 100%;
  border: 2px solid var(--color-rose);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  display: grid;
  align-content: start;
  gap: 30px;
  background: rgba(255, 255, 255, 0.76);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.offer-group {
  display: flex;
  flex-direction: column;
}

.offer-group + .offer-group {
  border-top: 1px solid var(--color-rose);
  padding-top: 28px;
}

.offer-group h2 {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 28px;
}

.offer-note {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 16px;
}

.price-list {
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: auto minmax(18px, 1fr) auto;
  align-items: baseline;
  gap: 8px;
}

.price-title {
  min-width: 0;
}

.price-dots {
  height: 1px;
  border-bottom: 2px dotted rgba(145, 21, 86, 0.34);
}

.price-value {
  font-weight: 600;
  white-space: nowrap;
}

.offer-link {
  width: fit-content;
  margin-top: auto;
  border: 1px solid var(--color-rose);
  border-radius: var(--radius);
  padding: 10px 16px;
  color: var(--color-primary);
  background: rgba(253, 242, 248, 0.72);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.offer-link:hover,
.offer-link:focus-visible {
  border-color: var(--color-accent);
  color: #FFFFFF;
  background: var(--color-accent);
}

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

.gallery-item {
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 24px rgba(145, 21, 86, 0.10);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 50% 100%, #B2166A 0%, #A0145F 30%, #911556 62%, #7E114B 100%);
  color: #FFFFFF;
  padding: 150px 24px 70px;
  text-align: center;
}

.rating-badge {
  position: absolute;
  left: 50%;
  top: 0;
  width: 190px;
  transform: translate(-50%, -50%);
  display: block;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 22px 45px rgba(70, 0, 35, 0.22);
  transition: transform 400ms ease;
}

.rating-badge:hover,
.rating-badge:focus-visible {
  transform: translate(-50%, -54%);
}

.rating-badge img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.footer-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.site-footer address {
  margin: 0 0 32px;
  font-style: normal;
  font-weight: 400;
}

.site-footer address a {
  font-weight: 400;
}

.site-footer a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-rose);
  text-decoration-color: currentColor;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 34px;
  margin-bottom: 26px;
}

.footer-nav a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 700;
}

.footer-nav a.active {
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.ai-image-note {
  margin: 0 0 12px;
  font-size: 14px;
  opacity: 0.82;
}

.copyright {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(32, 0, 18, 0.82);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-stage {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  width: min(900px, 92vw);
  max-height: 86vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.30);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-accent);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-accent);
  font-size: 42px;
  line-height: 1;
  padding-bottom: 5px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 400ms ease, color 400ms ease, transform 400ms ease;
}

.lightbox-prev {
  left: -78px;
}

.lightbox-next {
  right: -78px;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: var(--color-accent);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.04);
}

.anchor-target {
  min-height: 1px;
}

.visually-hidden,
.spam-check {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.email-obfuscated {
  display: inline;
  direction: rtl;
  unicode-bidi: bidi-override;
}

.email-obfuscated-noise {
  display: none;
}

.section-header {
  margin-bottom: 40px;
}

.contact-columns,
.legal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--column-gap);
  align-items: start;
}

.legal-columns {
  grid-template-columns: minmax(0, 35%) minmax(0, 65%);
}

.legal-section .section-header,
.privacy-section .section-header {
  margin-bottom: 34px;
}

.legal-column,
.privacy-section .section-inner > p {
  font-size: 18px;
  line-height: 1.62;
}

.legal-column h2,
.legal-column h3,
.privacy-section h2,
.privacy-section h3 {
  max-width: none;
  line-height: 1.15;
}

.legal-column h2,
.privacy-section h2 {
  margin: 36px 0 16px;
  font-size: 32px;
}

.legal-column h3,
.privacy-section h3 {
  margin: 26px 0 10px;
  font-size: 24px;
}

.legal-column h2:first-child,
.legal-column h3:first-child,
.privacy-section h2:first-child,
.privacy-section h3:first-child {
  margin-top: 0;
}

.legal-column p,
.privacy-section .section-inner > p {
  margin: 0 0 18px;
}

.legal-column p:last-child,
.privacy-section .section-inner > p:last-child {
  margin-bottom: 0;
}

.legal-column ul {
  margin: 0 0 18px;
  padding-left: 24px;
}

.legal-column li {
  margin-bottom: 8px;
}

.legal-column li:last-child {
  margin-bottom: 0;
}

.legal-column ul ul {
  margin-top: 8px;
  margin-bottom: 0;
}

.contact-form-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 32px;
  border-radius: var(--radius);
}

.form-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 40px;
}

.form-result-image {
  margin: 0;
}

.form-result-image img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: contain;
  background: #FFFFFF;
  border-radius: var(--radius-card);
}

.form-result-content {
  border: 2px solid var(--color-rose);
  border-radius: var(--radius-card);
  padding: 34px 36px;
  background: rgba(253, 242, 248, 0.72);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.form-result-content h1 {
  margin-top: 0;
  margin-bottom: 18px;
}

.form-result-lead {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 20px;
}

.form-result-content p {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 20px;
}

.form-result-content .button {
  margin-bottom: 0;
}

.contact-form-column {
  border: 2px solid var(--color-rose);
  border-radius: var(--radius-card);
  padding: 28px 30px 32px;
  background: rgba(253, 242, 248, 0.72);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-field,
.form-field-radio,
.form-field-upload {
  display: flex;
  align-items: center;
  min-height: 56px;
  border: 2px solid var(--color-rose);
  border-radius: 8px;
  padding: 0 16px;
  background: #FFFFFF;
  transition: border-color 400ms ease, box-shadow 400ms ease;
}

.form-field-message {
  align-items: flex-start;
  padding-top: 14px;
  padding-bottom: 14px;
}

.field-name,
.field-email,
.field-phone,
.field-subject,
.field-message,
.form-field-upload,
.upload-note,
.form-consent,
.form-submit {
  grid-column: 1;
}

.form-field-radio {
  margin: 0;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}

.form-field-radio .field-icon {
  align-self: center;
}

.form-field-radio label,
.form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.field-icon {
  display: inline-flex;
  width: 26px;
  min-width: 26px;
  margin-right: 14px;
  color: var(--color-accent);
}

.field-icon svg,
.form-submit svg {
  width: 100%;
  height: auto;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.form-field select {
  min-width: 0;
  color: #000000;
  cursor: pointer;
}

.form-field textarea {
  resize: vertical;
}

.upload-note {
  margin-top: -10px;
}

.form-field:focus-within,
.form-field-radio:focus-within,
.form-field-upload:focus-within {
  border-color: var(--color-accent);
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.form-field:hover,
.form-field-radio:hover,
.form-field-upload:hover {
  border-color: var(--color-accent);
}

.form-consent input,
.form-field-radio input {
  width: 24px;
  height: 24px;
  accent-color: var(--color-accent);
}

.form-submit {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  border: 0;
  border-radius: 16px;
  padding: 16px 28px;
  color: #FFFFFF;
  background: var(--color-accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.form-submit span {
  display: inline-flex;
  width: 28px;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

@media (max-width: 1180px) {
  .nav-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 20px;
  }

  .header-contact {
    gap: 10px;
  }

  .phone-link span:last-child {
    display: none;
  }

  .welcome-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 34px;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 350px;
    --brand-sticky-offset: 286px;
  }

  body {
    font-size: 17px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 29px;
  }

  .brand-area {
    min-height: 0;
    padding: 0 24px 22px;
    flex-direction: column;
  }

  .brand-logo {
    width: min(430px, 68vw);
  }

  .mobile-orchid-band {
    display: block;
    width: calc(100% + 48px);
    height: 150px;
    margin: 0 -24px 20px;
    overflow: hidden;
  }

  .mobile-orchid-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .header-orchid {
    display: none;
  }

  .site-section {
    padding-top: var(--section-padding-tablet);
    padding-bottom: var(--section-padding-tablet);
  }

  .welcome-section,
  .page-background-section {
    min-height: 0;
    padding-bottom: 210px;
    background-size: min(86vw, 820px) auto;
  }

  .legal-section,
  .privacy-section {
    padding-bottom: 118px;
    background-image: none;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-column {
    max-width: 760px;
  }

  .offer-intro {
    max-width: 760px;
  }

  .contact-intro {
    max-width: 760px;
  }

  .treatment-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .treatment-intro,
  .treatment-jump-card {
    max-width: 760px;
  }

  .treatment-card {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 26px;
  }

  .contact-card {
    max-width: 720px;
  }

  .offer-columns {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .offer-column {
    min-height: 0;
  }

  .offer-column-empty {
    display: none;
  }

  .contact-columns,
  .form-result-grid,
  .legal-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-result-image img {
    max-height: 360px;
  }

  .legal-column h2,
  .privacy-section h2 {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 290px;
    --sticky-nav-height: 66px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  .brand-area {
    min-height: 0;
    padding: 0 18px 16px;
  }

  .brand-logo {
    width: min(360px, 72vw);
  }

  .mobile-orchid-band {
    width: calc(100% + 36px);
    height: 120px;
    margin: 0 -18px 14px;
  }

  .nav-inner {
    min-height: 66px;
    padding: 9px 18px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--color-rose);
    border-radius: var(--radius);
    padding: 10px 16px;
    background: #FFFFFF;
    box-shadow: 0 20px 42px rgba(145, 21, 86, 0.14);
  }

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

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .main-nav a::after {
    bottom: 8px;
  }

  .header-contact {
    margin-left: auto;
    gap: 8px;
  }

  .icon-link {
    width: 38px;
    height: 38px;
  }

  .site-section {
    padding: var(--section-padding-mobile) 18px;
  }

  .welcome-section,
  .page-background-section {
    padding-top: 34px;
    padding-bottom: 250px;
    background-image: image-set(url("../images/hg-content-mobil.avif") type("image/avif"), url("../images/hg-content-mobil.webp") type("image/webp"));
    background-size: 100% auto;
    background-position: center bottom;
  }

  .legal-section,
  .privacy-section {
    padding-bottom: 104px;
    background-image: none;
  }

  .eyebrow {
    font-size: 15px;
  }

  .legal-column,
  .privacy-section .section-inner > p {
    font-size: 16px;
    line-height: 1.58;
  }

  .legal-column h2,
  .privacy-section h2 {
    margin: 28px 0 12px;
    font-size: 28px;
  }

  .legal-column h3,
  .privacy-section h3 {
    margin: 22px 0 8px;
    font-size: 22px;
  }

  .legal-column h2:first-child,
  .legal-column h3:first-child,
  .privacy-section h2:first-child,
  .privacy-section h3:first-child {
    margin-top: 0;
  }

  .lead {
    margin-bottom: 32px;
  }

  .ornament-divider {
    grid-template-columns: 1fr 28px 1fr;
  }

  .benefit-list {
    gap: 26px;
  }

  .benefit-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
  }

  .benefit-icon,
  .benefit-icon img {
    width: 62px;
    height: 62px;
  }

  .contact-card {
    padding: 20px 18px 22px;
  }

  .form-result-content {
    padding: 24px 22px;
  }

  .form-result-content p {
    font-size: 20px;
  }

  .contact-page-card {
    padding: 0;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-list div {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 8px;
  }

  .contact-list dd {
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
  }

  .treatment-hero {
    margin-bottom: 38px;
  }

  .treatment-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .treatment-buttons a {
    text-align: center;
  }

  .treatment-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px;
  }

  .treatment-media {
    width: 100%;
  }

  .offer-intro {
    margin-bottom: 32px;
  }

  .contact-intro {
    margin-bottom: 32px;
  }

  .price-list li {
    grid-template-columns: minmax(0, auto) minmax(12px, 1fr) auto;
    gap: 6px;
  }

  .offer-link {
    width: 100%;
    justify-content: center;
    display: inline-flex;
  }

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

  .site-footer {
    padding-top: 110px;
    padding-bottom: 44px;
  }

  .lightbox {
    padding: 24px 18px;
  }

  .lightbox img {
    width: min(100%, 92vw);
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .rating-badge {
    width: 150px;
  }

  .footer-nav {
    gap: 12px;
  }

  .footer-nav a {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 420px) {
  .header-contact .icon-link {
    width: 36px;
    height: 36px;
  }

  .header-contact {
    gap: 6px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 7px;
  }
}

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