:root {
  --background: #f7f3ee;
  --foreground: #31291f;
  --card: #ffffff;
  --card-foreground: #31291f;
  --primary: #a09380;
  --primary-foreground: #fffdf9;
  --secondary: #d2c4b4;
  --secondary-foreground: #51463a;
  --muted: rgba(210, 196, 180, 0.34);
  --muted-foreground: #786b5e;
  --accent: #d2c4b4;
  --border: rgba(160, 147, 128, 0.24);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.08);
  --font-body: "Century Gothic", "AppleGothic", sans-serif;
  --font-heading: "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;
  --container: 1180px;
  --header-topbar-height: 36px;
  --header-main-height: 88px;
  --header-compact-ratio: 0.5;
  --header-height: calc(var(--header-topbar-height) + var(--header-main-height));
  --landing-section-space: clamp(2.85rem, 4.5vw, 3.5rem);
  --landing-section-stack-gap: clamp(1.4rem, 2vw, 1.85rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--foreground);
  background:
    radial-gradient(circle at top left, rgba(210, 196, 180, 0.2), transparent 30%),
    linear-gradient(180deg, #fcfaf7 0%, var(--background) 100%);
}
.beautetech-landing-page .wp-site-blocks {
    background-image: url(../images/bg2.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.wp-site-blocks,
.wp-site-blocks > .wp-block-shortcode,
.wp-block-shortcode {
  margin: 0;
  padding: 0;
}

.wp-block-shortcode {
  display: block;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(247, 243, 238, 0.82);
  border-bottom: 1px solid rgba(160, 147, 128, 0.18);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

body.admin-bar .site-header {
  /* top: 32px; */
}

.header__topbar {
  border-bottom: 1px solid rgba(160, 147, 128, 0.18);
}

.header__topbar-inner {
  min-height: var(--header-topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 0.75rem;*/
}

.topbar__socials,
.topbar__actions {
  display: flex;
  align-items: center;
}

.topbar__cta-area,
.mobile-drawer__cta-area {
  display: flex;
  align-items: center;
  gap: inherit;
}
.toolbar-top-phone {
  padding: .15rem 0 0.15rem 0;
}
.topbar__phone .icon-phone {
  width: 0.9rem;
  height: 0.9rem;
  display: inline-block;
  background-color: #a09380;

  -webkit-mask: url("/wp-content/themes/beautetech/assets/images/icon-phone.svg") no-repeat center / contain;
  mask: url("/wp-content/themes/beautetech/assets/images/icon-phone.svg") no-repeat center / contain;
}

.mobile-drawer__cta-area {
  width: 100%;
}

.topbar__actions {
  justify-content: space-between;
  width: 100%;
}

.topbar__socials {
  gap: 0.5rem;
}

.topbar__socials .widget,
.mobile-drawer__socials .widget,
.footer__socials .widget,
.topbar__cta-area .widget,
.mobile-drawer__cta-area .widget {
  margin: 0;
}

.topbar__socials .textwidget,
.topbar__socials .custom-html-widget,
.topbar__socials ul,
.mobile-drawer__socials .textwidget,
.mobile-drawer__socials .custom-html-widget,
.mobile-drawer__socials ul,
.footer__socials .textwidget,
.footer__socials .custom-html-widget,
.footer__socials ul,
.topbar__cta-area .textwidget,
.topbar__cta-area .custom-html-widget,
.mobile-drawer__cta-area .textwidget,
.mobile-drawer__cta-area .custom-html-widget {
  display: flex;
  align-items: center;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar__cta-area p,
.mobile-drawer__cta-area p,
.topbar__cta-area .wp-block-button,
.mobile-drawer__cta-area .wp-block-button {
  margin: 0;
}

.mobile-drawer__cta-area .wp-block-button {
  width: 100%;
}

.topbar__actions {
  gap: 0.7rem;
}

.topbar__socials {
  margin-left: auto;
}

.topbar__social-link,
.topbar__socials a,
.mobile-drawer__socials a,
.topbar__phone {
  color: var(--muted-foreground);
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.topbar__social-link,
.topbar__socials a,
.mobile-drawer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(160, 147, 128, 0.2);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.topbar__social-link svg,
.topbar__socials a svg,
.mobile-drawer__socials a svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: currentColor;
  stroke: none;
}

.topbar__social-text {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.topbar__phone svg {
  width: 0.9rem;
  height: 0.9rem;
}

.topbar__actions .button,
.topbar__cta-area a,
.topbar__cta-area .wp-block-button__link {
  min-height: 1.5rem;
  padding: 0 0.95rem;
  font-size: 0.76rem;
}

.topbar__social-link:hover,
.topbar__phone:hover {
  color: var(--foreground);
}

.topbar__social-link:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(160, 147, 128, 0.34);
}

.header__inner {
  min-height: var(--header-main-height);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition:
    min-height 0.35s ease,
    gap 0.35s ease;
}

.header__nav {
  min-width: 0;
  margin-left: auto;
}

.header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  border-radius: 50%;
  border: 1px solid rgba(160, 147, 128, 0.24);
  background: rgba(255, 255, 255, 0.86);
  color: var(--foreground);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.header__menu-toggle:hover,
.header__menu-toggle:focus-visible {
  background: #fff;
  border-color: rgba(160, 147, 128, 0.34);
}

.header__menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(193, 95, 53, 0.18);
}

.header__menu-toggle-box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
}

.header__menu-toggle-line {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.24s ease,
    opacity 0.2s ease;
}

.site-header.is-drawer-open .header__menu-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-drawer-open .header__menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-drawer-open .header__menu-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: gap 0.35s ease;
}

.header__nav-item {
  position: relative;
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.footer__social-link,
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(160, 147, 128, 0.2);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  color: var(--muted-foreground);
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.footer__social-link svg,
.footer__socials a svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
  stroke: none;
}

.footer__social-text {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.footer__text {
  color: var(--muted-foreground);
  text-align: center;
}

.footer__text .widget {
  margin: 0;
}

.footer__text p {
  margin: 0;
}

.footer__social-link:hover {
  color: var(--foreground);
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(160, 147, 128, 0.34);
}

.header__nav-link,
.header__nav-button,
.header__submenu a,
.footer__nav a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.header__nav-link,
.header__nav-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 0;
  font-size: 1rem;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    padding 0.35s ease,
    font-size 0.35s ease,
    gap 0.35s ease;
}

.header__nav-button {
  padding-left: 0;
  padding-right: 0;
  color: inherit;
}

.header__nav-item--has-children > .header__nav-link::after,
.header__nav-item--has-children > .header__nav-button::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.header__submenu {
  position: absolute;
  top: calc(100% + 0.15rem);
  left: 50%;
  z-index: 20;
  min-width: 15rem;
  margin: 0;
  padding: 0.7rem 0;
  list-style: none;
  border: 1px solid rgba(160, 147, 128, 0.2);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0.65rem);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.header__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.9rem;
}

.header__nav-item:hover > .header__submenu,
.header__nav-item:focus-within > .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header__nav-item:hover > .header__nav-link::after,
.header__nav-item:hover > .header__nav-button::after,
.header__nav-item:focus-within > .header__nav-link::after,
.header__nav-item:focus-within > .header__nav-button::after {
  transform: rotate(-135deg) translateY(-1px);
}

.header__submenu a {
  display: block;
  padding: 0.55rem 1.1rem;
  line-height: 1.35;
}

.header__submenu a:hover,
.header__submenu a:focus-visible {
  color: var(--foreground);
  background: rgba(210, 196, 180, 0.44);
}

.mobile-drawer {
  display: none;
}

body.beautetech-drawer-open {
  overflow: hidden;
}

body.beautetech-lightbox-open {
  overflow: hidden;
}

.header__nav-link:hover,
.header__nav-button:hover,
.header__submenu a:hover,
.footer__nav a:hover {
  color: var(--foreground);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  font-family: "Cormorant Garamond", "Century Gothic";
  font-size: clamp(1.75rem, 2vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition:
    gap 0.35s ease,
    font-size 0.35s ease,
    letter-spacing 0.35s ease;
}

.logo__mark {
  width: clamp(2.5rem, 3vw, 3.15rem);
  height: auto;
  flex: 0 0 auto;
  transition: width 0.35s ease;
}

.logo__text {
  display: block;
}

.button,
.topbar__cta-area a,
.topbar__cta-area .wp-block-button__link,
.mobile-drawer__cta-area a,
.mobile-drawer__cta-area .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.topbar__cta-area a:hover,
.topbar__cta-area .wp-block-button__link:hover,
.mobile-drawer__cta-area a:hover,
.mobile-drawer__cta-area .wp-block-button__link:hover {
  transform: translateY(-1px);
}

.button--small {
  min-height: 2.8rem;
  padding: 0 1.4rem;
}

.button--large {
  min-height: 3.7rem;
  padding: 0 2.1rem;
}

.button--primary,
.topbar__cta-area a,
.topbar__cta-area .wp-block-button__link,
.mobile-drawer__cta-area a,
.mobile-drawer__cta-area .wp-block-button__link {
  color: var(--primary-foreground);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  box-shadow: 0 18px 36px rgba(160, 147, 128, 0.28);
  text-decoration: none;
}

.button--primary:hover,
.topbar__cta-area a:hover,
.topbar__cta-area .wp-block-button__link:hover,
.mobile-drawer__cta-area a:hover,
.mobile-drawer__cta-area .wp-block-button__link:hover {
  box-shadow: 0 22px 44px rgba(160, 147, 128, 0.36);
}

.site-header.is-compact {
  /* background: rgba(247, 243, 238, 0.54); */
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.site-header.is-drawer-open {
  background: rgba(247, 243, 238, 1);
  backdrop-filter: none;
  overflow: visible;
}

.site-header.is-compact .header__inner {
  min-height: calc(var(--header-main-height) * var(--header-compact-ratio));
  gap: 1rem;
}

.site-header.is-compact .header__nav-list {
  gap: 0.8rem;
}

.site-header.is-compact .header__nav-link,
.site-header.is-compact .header__nav-button {
  gap: 0.3rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
}

.site-header.is-compact .logo {
  gap: 0.55rem;
  font-size: clamp(1.15rem, 1.4vw, 1.5rem);
  letter-spacing: 0.18em;
}

.site-header.is-compact .logo__mark {
  width: clamp(1.45rem, 1.8vw, 1.85rem);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--foreground);
  border-color: var(--border);
}

.button--secondary:hover {
  background: #fff;
  border-color: rgba(160, 147, 128, 0.3);
}

.section {
  padding: var(--landing-section-space) 0;
}

.section,
.service-card,
.cabinet-card {
  scroll-margin-top: calc(var(--header-height) + 1.25rem);
}

.section--muted {
  background:
    linear-gradient(180deg, rgba(210, 196, 180, 0.36) 0%, rgba(247, 243, 238, 0.72) 100%);
}

.section-heading {
  margin-bottom: var(--landing-section-stack-gap);
}

.section-heading--centered {
  text-align: center;
}

.section-heading h2,
.contact-card h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  font-weight: 700;
  line-height: 0.98;
}

.section-heading p,
.contact-card p,
.hero__description {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* .landing-intro {
  padding-top: 0;
} */

.landing-intro__card {
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border: 1px solid rgba(160, 147, 128, 0.18);
  border-radius: calc(var(--radius-lg) + 0.15rem);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 60px rgba(76, 58, 42, 0.08);
}

.landing-intro__card > :first-child {
  margin-top: 0;
}

.landing-intro__card > :last-child {
  margin-bottom: 0;
}

.landing-intro__card h2,
.landing-intro__card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  line-height: 1.05;
}

.landing-intro__card p,
.landing-intro__card li {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.landing-intro__card ul,
.landing-intro__card ol {
  margin: 0;
  padding-left: 1.25rem;
}

.section-empty {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius-lg) + 0.2rem);
  border: 1px solid rgba(160, 147, 128, 0.18);
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.section-empty h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.7rem;
}

.section-empty p {
  margin: 0;
  color: var(--muted-foreground);
}

.hero {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  min-height: calc(100vh - var(--header-height)) - 2rem;
  padding: 1.5rem 0 0;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero__shape--right {
  top: 6rem;
  right: -10rem;
  width: 36rem;
  height: 40rem;
  background: linear-gradient(180deg, rgba(210, 196, 180, 0.4), transparent);
}

.hero__shape--left {
  bottom: 1rem;
  left: 15%;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(180deg, rgba(160, 147, 128, 0.28), transparent);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 3rem;
  align-items: center;
  padding: 1.75rem 0 calc(var(--landing-section-space) - 0.6rem);
}

.hero-slider {
  position: relative;
  z-index: 1;
}

.hero-slider__viewport {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px 40px;
  border-radius: 40px;
  display: grid;
  overflow: hidden;
}

.hero-slider__track {
  display: grid;
}

.hero-slide {
  grid-area: 1 / 1;
  box-sizing: border-box;
  padding: 0.45rem 0.6rem 0.8rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(24px) scale(0.985);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    visibility 0s linear 0.55s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    visibility 0s linear 0s;
}

.hero__content {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 5.2vw, 3.65rem);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: #c7a065;
  font-style: italic;
  font-weight: 700;
}

.hero__description {
  max-width: 32rem;
  margin-top: 1.25rem;
  font-size: 1.03rem;
}

.hero__actions-row {
  margin-top: 1.5rem;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card,
.hero-cabinet-card {
  position: relative;
  width: min(100%, 34rem);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-card {
  aspect-ratio: 3 / 4;
}

.hero-card img,
.hero-cabinet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cabinet-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 238, 0.96));
  border: 1px solid rgba(160, 147, 128, 0.18);
}

.hero-cabinet-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hero-cabinet-card__media img {
  display: block;
  transition: transform 0.55s ease;
}

.hero-cabinet-card:hover .hero-cabinet-card__media img {
  transform: scale(1.04);
}

.hero-cabinet-card__badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--foreground);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-cabinet-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.1rem 1.1rem;
}

.hero-cabinet-card__heading {
  display: grid;
  gap: 0.2rem;
}

.hero-cabinet-card__eyebrow {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-cabinet-card__heading h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.3vw, 2.15rem);
  line-height: 0.94;
}

.hero-cabinet-card__description {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-cabinet-card__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.hero-cabinet-card__meta--overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
}

.hero-cabinet-card__meta-item {
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 24px rgba(31, 24, 19, 0.12);
}

.hero-cabinet-card__meta-item span {
  color: var(--muted-foreground);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-cabinet-card__meta-item p {
  margin: 0;
  line-height: 1.35;
  font-size: 0.86rem;
  color: var(--foreground);
}

.hero-cabinet-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-cabinet-card__link::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
}

.hero-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.24) 100%);
}

.hero-card__bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(4px);
  animation: pulse 3.2s infinite ease-in-out;
}

.hero-card__bubble--top {
  top: 1rem;
  right: 1rem;
  width: 4.4rem;
  height: 4.4rem;
}

.hero-card__bubble--bottom {
  bottom: 5rem;
  left: -1rem;
  width: 3.3rem;
  height: 3.3rem;
  animation-delay: 0.7s;
}

.hero__dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding-bottom: 0;
  bottom: 40px;
}

.hero-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(160, 147, 128, 0.26);
  transition:
    width 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.hero-dot:hover {
  background: rgba(160, 147, 128, 0.42);
}

.hero-dot.is-active {
  width: 2rem;
  background: var(--primary);
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-top: -1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(160, 147, 128, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--foreground);
  box-shadow: 0 16px 26px rgba(31, 24, 19, 0.1);
  opacity: 0.5;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-slider__arrow svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.hero-slider__arrow:hover {
  background: #fff;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(31, 24, 19, 0.14);
}

.hero-slider__arrow--prev {
  left: -0.25rem;
}

.hero-slider__arrow--next {
  right: -0.25rem;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.promotion-card {
  display: grid;
  gap: 0.95rem;
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 238, 0.98));
  border: 1px solid rgba(160, 147, 128, 0.18);
  box-shadow: var(--shadow-card);
}

.promotion-card {
  background-image: url(../images/part-top-v.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: -50px;
}

.promotion-card__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  margin: 0;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(193, 95, 53, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promotion-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  line-height: 0.98;
}

.promotion-card__description,
.promotion-card__details {
  margin: 0;
  color: var(--muted-foreground);
}

.promotion-card__details {
  padding-top: 0.2rem;
  border-top: 1px solid rgba(160, 147, 128, 0.16);
}

.promotion-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: auto;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(160, 147, 128, 0.22);
  color: var(--foreground);
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.promotion-card__link:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(31, 24, 19, 0.08);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card,
.cabinet-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.service-card {
  min-height: 0;
  height: 100%;
}

.service-card--no-media {
  min-height: clamp(18rem, 32vw, 24rem);
  background:
    linear-gradient(150deg, rgba(160, 147, 128, 0.16), rgba(49, 41, 31, 0.9)),
    var(--card);
}

.service-card--link,
.cabinet-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card--link:focus-visible,
.cabinet-card--link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(193, 95, 53, 0.24), var(--shadow-card);
}

.service-card__media,
.cabinet-card__media {
  position: relative;
}

.service-card img,
.cabinet-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img,
.cabinet-card:hover img {
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 9.5rem;
  padding: 4rem 1.35rem 1.35rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 18%, rgba(0, 0, 0, 0.8) 100%);
  color: #fff9f1;
}

.service-card--no-media .service-card__overlay {
  position: relative;
  inset: auto;
  min-height: 100%;
  padding-top: 1.5rem;
  background: none;
}

.service-card__overlay h3,
.cabinet-card__body h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
}

.service-card__overlay p {
  margin: 0.5rem 0 0;
  color: rgba(255, 249, 241, 0.82);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.section__actions {
  display: flex;
  justify-content: center;
  margin-top: var(--landing-section-stack-gap);
}

.carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.carousel--static {
  display: block;
}

.carousel__viewport {
  overflow: hidden;
}

.carousel--static .carousel__viewport {
  overflow: visible;
}

.carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.35s ease;
  will-change: transform;
}

.carousel--static .carousel__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transform: none !important;
}

.carousel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  color: var(--foreground);
  flex: 0 0 auto;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.carousel__button:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-1px);
}

.carousel__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cabinet-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  height: 100%;
}

.carousel--static .cabinet-card {
  flex: none;
}

.cabinet-card__body {
  position: relative;
  z-index: 1;
  padding: 1.1rem 1rem 1.25rem;
  text-align: center;
  background-image: url(../images/part-top.svg);
  background-repeat: no-repeat;
  background-position-y: -15px;
}

.cabinet-card__description {
  margin: 0.65rem 0 0;
  color: var(--foreground);
}

.cabinet-card__address {
  margin: 0.55rem 0 0;
  color: var(--muted-foreground);
}

.service-card__link-wrap,
.cabinet-card__link-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.service-card__link,
.cabinet-card__link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.service-card__link:focus-visible,
.cabinet-card__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(193, 95, 53, 0.24) inset;
}

.contact-card {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2.4rem;
  border-radius: calc(var(--radius-xl) + 0.5rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 238, 0.96));
  border: 1px solid rgba(160, 147, 128, 0.18);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.beautetech-cf7--landing {
  margin-top: 2rem;
}

.beautetech-cf7--landing .wpcf7-form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto;
  text-align: left;
}

.beautetech-cf7--landing .wpcf7-form p,
.beautetech-cf7--landing .wpcf7-form label {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.beautetech-cf7--landing .wpcf7-form-control-wrap {
  display: block;
}

.beautetech-cf7--landing input:not([type="submit"]):not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.beautetech-cf7--landing textarea,
.beautetech-cf7--landing select {
  width: 100%;
  min-height: 3.7rem;
  padding: 0 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(160, 147, 128, 0.3);
  background: rgba(255, 255, 255, 0.88);
  color: var(--foreground);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.beautetech-cf7--landing textarea {
  min-height: 8rem;
  padding: 1rem 1.4rem;
  border-radius: 1.7rem;
  resize: vertical;
}

.beautetech-cf7--landing input:not([type="submit"]):not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::placeholder,
.beautetech-cf7--landing textarea::placeholder {
  color: #988c7f;
}

.beautetech-cf7--landing input:not([type="submit"]):not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.beautetech-cf7--landing textarea:focus,
.beautetech-cf7--landing select:focus {
  outline: none;
  border-color: rgba(160, 147, 128, 0.55);
  box-shadow: 0 0 0 4px rgba(160, 147, 128, 0.18);
}

.beautetech-cf7--landing input[type="submit"] {
  width: 100%;
  min-height: 3.8rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #7d5f4a, #b18a68);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.beautetech-cf7--landing input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(125, 95, 74, 0.2);
}

.beautetech-cf7--landing .wpcf7-response-output,
.beautetech-cf7--landing .wpcf7-not-valid-tip,
.beautetech-cf7--landing .beautetech-cf7__note {
  margin: 0;
  color: var(--muted-foreground);
}

.beautetech-cf7--landing .wpcf7-response-output {
  padding: 0.85rem 1rem;
  border-radius: 1.1rem;
}

.beautetech-cf7--landing .wpcf7-not-valid-tip {
  color: #99504d;
  font-size: 0.92rem;
}

.beautetech-cf7--landing .wpcf7-spinner {
  margin: 0;
}

.plugin-placeholder {
  display: grid;
  gap: 1rem;
  justify-items: center;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius-lg) + 0.2rem);
  border: 1px solid rgba(160, 147, 128, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.plugin-placeholder p {
  margin: 0;
  color: var(--muted-foreground);
}

.contact-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input {
  width: 100%;
  min-height: 3.7rem;
  padding: 0 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(160, 147, 128, 0.3);
  background: rgba(255, 255, 255, 0.88);
  color: var(--foreground);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input::placeholder {
  color: #988c7f;
}

.contact-form input:focus {
  outline: none;
  border-color: rgba(160, 147, 128, 0.55);
  box-shadow: 0 0 0 4px rgba(160, 147, 128, 0.18);
}

.beautetech-lightbox-content,
[data-lightbox-content] {
  display: none;
}

.beautetech-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(0.9rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.beautetech-lightbox[hidden] {
  display: none;
}

.beautetech-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.beautetech-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(210, 196, 180, 0.22), transparent 34%),
    rgba(31, 24, 19, 0.5);
  backdrop-filter: blur(10px);
}

.beautetech-lightbox__dialog {
  position: relative;
  width: min(44rem, 100%);
  max-height: min(86dvh, calc(100dvh - 2rem));
  overflow: hidden;
  border: 1px solid rgba(160, 147, 128, 0.24);
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 238, 0.98)),
    var(--card);
  box-shadow: 0 28px 80px rgba(31, 24, 19, 0.24);
  color: var(--foreground);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.24s ease;
}

.beautetech-lightbox.is-open .beautetech-lightbox__dialog {
  transform: translateY(0) scale(1);
}

.beautetech-lightbox__dialog:focus {
  outline: none;
}

.beautetech-lightbox__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(160, 147, 128, 0.24);
  background: rgba(255, 255, 255, 0.88);
  color: var(--foreground);
  box-shadow: 0 10px 22px rgba(31, 24, 19, 0.09);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.beautetech-lightbox__close:hover {
  background: #fff;
  border-color: rgba(160, 147, 128, 0.38);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(31, 24, 19, 0.12);
}

.beautetech-lightbox__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(160, 147, 128, 0.2);
}

.beautetech-lightbox__close span,
.beautetech-lightbox__close span::before {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.beautetech-lightbox__close span {
  transform: rotate(45deg);
}

.beautetech-lightbox__close span::before {
  content: "";
  transform: rotate(90deg);
}

.beautetech-lightbox__body {
  max-height: min(86dvh, calc(100dvh - 2rem));
  overflow-y: auto;
  padding: clamp(1.45rem, 3vw, 2.4rem);
  overscroll-behavior: contain;
}

.beautetech-lightbox__body > .beautetech-lightbox-content,
.beautetech-lightbox__body > [data-lightbox-content] {
  display: block;
}

.beautetech-lightbox__content {
  width: 100%;
}

.beautetech-lightbox__content > :first-child,
.beautetech-lightbox__body > :first-child {
  margin-top: 0;
}

.beautetech-lightbox__content > :last-child,
.beautetech-lightbox__body > :last-child {
  margin-bottom: 0;
}

.beautetech-lightbox__body h1,
.beautetech-lightbox__body h2,
.beautetech-lightbox__body h3,
.beautetech-lightbox__body h4 {
  margin: 0 3rem 1rem 0;
  font-family: var(--font-heading);
  line-height: 1.02;
}

.beautetech-lightbox__body h1,
.beautetech-lightbox__body h2 {
  font-size: 2.35rem;
}

.beautetech-lightbox__body h3 {
  font-size: 1.85rem;
}

.beautetech-lightbox__body p,
.beautetech-lightbox__body li {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.beautetech-lightbox__body a:not(.button):not(.wp-block-button__link) {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.beautetech-lightbox__body form {
  display: grid;
  gap: 1rem;
}

.beautetech-lightbox__body form p,
.beautetech-lightbox__body form label {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.beautetech-lightbox__body input:not([type="submit"]):not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.beautetech-lightbox__body textarea,
.beautetech-lightbox__body select {
  width: 100%;
  min-height: 3.45rem;
  padding: 0 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(160, 147, 128, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: var(--foreground);
}

.beautetech-lightbox__body textarea {
  min-height: 7.5rem;
  padding: 1rem 1.2rem;
  border-radius: 1.4rem;
  resize: vertical;
}

.beautetech-lightbox__body input:not([type="submit"]):not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.beautetech-lightbox__body textarea:focus,
.beautetech-lightbox__body select:focus {
  outline: none;
  border-color: rgba(160, 147, 128, 0.55);
  box-shadow: 0 0 0 4px rgba(160, 147, 128, 0.18);
}

.beautetech-lightbox__body input[type="submit"],
.beautetech-lightbox__body button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0 1.5rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--primary-foreground);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(160, 147, 128, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.beautetech-lightbox__body input[type="submit"]:hover,
.beautetech-lightbox__body button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(160, 147, 128, 0.3);
}

.site-footer {
  padding: 2.25rem 0 2.5rem;
  border-top: 1px solid rgba(160, 147, 128, 0.18);
  background: rgba(247, 243, 238, 0.88);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.site-footer__copy {
  margin: 0;
  color: var(--muted-foreground);
  text-align: center;
}

.pgc-rev-slider-page-view .pgc-rev-slider-page-inner img {
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}
.pgc-rev-lb-b-next-prev-button {
  background-color: var(--primary)!important;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .header__inner {
    gap: 1rem;
  }

  .header__topbar-inner {
    /* gap: 0.65rem; */
  }

  .header__nav-list {
    gap: 0.9rem;
  }

  .header__nav-link,
  .header__nav-button {
    font-size: 0.95rem;
  }
}

@media (max-width: 1080px) {
  .topbar__actions {
    flex-direction: column;
    padding: 0.7rem 0 0.7rem 0;
    gap: 0.2rem;
  }
  .top-divider {
    display: none;
  }
  .promotions-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-cabinet-card__meta {
    grid-template-columns: 1fr;
  }

  .cabinet-card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-topbar-height: 34px;
    --header-main-height: 76px;
    --header-compact-ratio: 0.58;
  }

  .header__nav {
    display: none;
  }

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

  .logo {
    justify-self: start;
    gap: 0.75rem;
    letter-spacing: 0.22em;
  }

.mobile-drawer {
  position: fixed;
  inset: 0;
  display: block;
  visibility: hidden;
  pointer-events: none;
  z-index: 120;
}

  .mobile-drawer__backdrop {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--drawer-offset, var(--header-height));
    height: calc(100dvh - var(--drawer-offset, var(--header-height)));
    border: 0;
    background: rgba(31, 24, 19, 0.38);
    opacity: 0;
    transition: opacity 0.24s ease;
  }

  .mobile-drawer__panel {
    position: fixed;
    top: var(--drawer-offset, var(--header-height));
    right: 0;
    height: calc(100dvh - var(--drawer-offset, var(--header-height)));
    max-height: calc(100dvh - var(--drawer-offset, var(--header-height)));
    width: min(24rem, 100vw);
    padding: 1.15rem 1.1rem 1.35rem;
    border-left: 1px solid rgba(160, 147, 128, 0.22);
    background: rgba(247, 243, 238, 0.98);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }

  .site-header.is-drawer-open .mobile-drawer {
    visibility: visible;
  }

  .site-header.is-drawer-open .mobile-drawer__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-drawer-open .mobile-drawer__panel {
    transform: translateX(0);
    pointer-events: auto;
  }

  .mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }

  .mobile-drawer__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 0.95;
  }

  .mobile-nav__list,
  .mobile-nav__sublist {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-nav__list {
    display: grid;
    gap: 0.8rem;
  }

  .mobile-nav__item {
    display: grid;
    gap: 0.55rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(160, 147, 128, 0.18);
  }

  .mobile-nav__link,
  .mobile-nav__sublink {
    color: var(--muted-foreground);
    transition: color 0.2s ease;
  }

  .mobile-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 0;
    text-align: left;
    font-size: 1.02rem;
    line-height: 1.35;
  }

  .mobile-nav__item--has-children > .mobile-nav__link::after {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    flex: 0 0 auto;
    transition: transform 0.2s ease;
  }

  .mobile-nav__item--has-children > .mobile-nav__link[aria-expanded="true"]::after {
    transform: rotate(225deg) translateY(-1px);
  }

  .mobile-nav__sublist {
    display: grid;
    gap: 0.45rem;
    padding-left: 0.85rem;
    border-left: 1px solid rgba(160, 147, 128, 0.18);
  }

  .mobile-nav__sublist[hidden] {
    display: none;
  }

  .mobile-nav__sublink {
    display: block;
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .mobile-nav__link.is-current,
  .mobile-nav__sublink.is-current,
  .mobile-nav__link:hover,
  .mobile-nav__sublink:hover {
    color: var(--foreground);
  }

  .mobile-drawer__footer {
    margin-top: auto;
    display: grid;
    gap: 0.9rem;
    padding-top: 0.35rem;
  }

  .mobile-drawer__phone {
    justify-content: flex-start;
    font-size: 0.95rem;
  }

  .mobile-drawer__cta,
  .mobile-drawer__cta-area a,
  .mobile-drawer__cta-area .wp-block-button__link {
    width: 100%;
    justify-content: center;
  }

  .mobile-drawer__socials {
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }

  .hero__content {
    max-width: none;
  }

  .hero__visual {
    justify-content: center;
  }

  .hero-cabinet-card {
    width: 100%;
  }

  .hero-slider__arrow {
    width: 3rem;
    height: 3rem;
    margin-top: -1.5rem;
  }

  .hero-slider__arrow--prev {
    left: 0;
  }

  .hero-slider__arrow--next {
    right: 0;
  }
  .hero-slider__viewport {
    padding: 10px 10px;
  }
  .hero__dots {
    bottom: -10px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    /* top: 46px; */
  }
}

@media (max-width: 720px) {
  :root {
    --header-topbar-height: 32px;
  }

  .section {
    padding: 3rem 0;
  }

  .header__topbar-inner {
    gap: 0.55rem;
  }

  .topbar__socials {
    gap: 0.4rem;
  }

  .topbar__actions {
    /* gap: 0.5rem; */
  }

  .topbar__social-link,
  .topbar__socials a,
  .mobile-drawer__socials a {
    width: 1.8rem;
    height: 1.8rem;
  }

  .topbar__phone span {
    /*display: none;*/
  }
  .toolbar-top-phone .topbar__phone:last-child {
    margin-left: 1rem;
  }
  .topbar__phone {
    gap: 0;
  }
  .topbar__cta-area, .toolbar-top-phone{
    width: 100%;
    justify-content: space-between;
    display: flex;
  }
  .topbar__actions .button,
  .topbar__cta-area a,
  .topbar__cta-area .wp-block-button__link {
    min-height: 1.85rem;
    padding: 0 0.75rem;
    font-size: 0.7rem;
  }

  .topbar__actions .button, .topbar__cta-area a {
    min-width: 40%;
  }

  .mobile-drawer__panel {
    width: 100vw;
    padding: 1rem 1rem 1.2rem;
  }

  .site-header:not(.is-drawer-open) .mobile-drawer__panel {
    display:none;
  }

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

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

  .carousel--static .carousel__track {
    grid-template-columns: 1fr;
  }

  .carousel__button {
    display: none;
  }

  .cabinet-card {
    flex-basis: 100%;
  }

  .contact-card {
    padding: 2rem 1.2rem;
  }

  .hero-cabinet-card__body {
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .hero-slide {
    padding: 0.35rem 0.3rem 0.75rem;
  }

  .hero-slider__arrow {
    top: auto;
    bottom: 0.9rem;
    margin-top: 0;
    width: 2.85rem;
    height: 2.85rem;
  }

  .hero-slider__arrow--prev {
    left: calc(50% - 3.35rem);
  }

  .hero-slider__arrow--next {
    right: calc(50% - 3.35rem);
  }

  #cabinets .carousel__track {
    grid-template-columns: repeat(1, minmax(0, 1fr))!important;
  }

  .footer__nav {
    gap: 0.9rem 1.25rem;
  }

  .footer__socials {
    gap: 0.5rem;
  }

  .beautetech-lightbox {
    align-items: end;
    padding: 0.65rem;
  }

  .beautetech-lightbox__dialog {
    width: 100%;
    max-height: calc(100dvh - 1.3rem);
    border-radius: 1.35rem;
  }

  .beautetech-lightbox__body {
    max-height: calc(100dvh - 1.3rem);
    padding: 1.35rem 1.1rem 1.25rem;
  }

  .beautetech-lightbox__body h1,
  .beautetech-lightbox__body h2,
  .beautetech-lightbox__body h3,
  .beautetech-lightbox__body h4 {
    margin-right: 2.85rem;
  }

  .beautetech-lightbox__body h1,
  .beautetech-lightbox__body h2 {
    font-size: 1.95rem;
  }

  .beautetech-lightbox__body h3 {
    font-size: 1.55rem;
  }

  .beautetech-lightbox__close {
    top: 0.7rem;
    right: 0.7rem;
    width: 2.35rem;
    height: 2.35rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  :root {
    --header-topbar-height: 30px;
    --header-compact-ratio: 0.62;
  }

  .header__topbar-inner {
    gap: 0.45rem;
  }

  .header__inner {
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.55rem;
    letter-spacing: 0.18em;
  }

  .logo__mark {
    width: 2.2rem;
  }

  .topbar__social-link {
    width: 1.65rem;
    height: 1.65rem;
  }

  .topbar__social-text {
    font-size: 0.48rem;
  }

  .footer__social-link {
    width: 1.95rem;
    height: 1.95rem;
  }

  .footer__social-text {
    font-size: 0.5rem;
  }

  .topbar__actions .button,
  .topbar__cta-area a,
  .topbar__cta-area .wp-block-button__link {
    min-height: 1.7rem;
    padding: 0 0.65rem;
    font-size: 0.66rem;
  }

  .topbar__phone {
    font-size: 0.65rem;
  }

  .mobile-drawer__title {
    font-size: 1.65rem;
  }

  .hero__title {
    font-size: clamp(1.75rem, 8.1vw, 2.55rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    hyphens: auto;
  }

  .hero-card {
    width: 100%;
  }

  .hero-cabinet-card__heading h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }
}

.beautetech-lightbox-content h2,
.beautetech-lightbox-content p {
  text-align: center;
}
.beautetech-lightbox-content .modal-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.beautetech-lightbox-content .modal-body a {
  width: 50%;
}

@media (max-width: 560px) {
  .beautetech-lightbox-content .modal-body {
    flex-direction: column;
  }
  .beautetech-lightbox-content .modal-body a {
    width: 100%;
  }
}
