@charset "UTF-8";
/* ==========================================================================
   UMA SKIN CLINIC
   Rebuilt stylesheet. Design tokens, type scale and component metrics are
   taken from the live site (Woodmart theme settings + the clinic's custom CSS).
   ========================================================================== */

:root {
  --wd-text-font: "Lato", Arial, Helvetica, sans-serif;
  --wd-title-font: "Italiana", Arial, Helvetica, sans-serif;
  --wd-entities-title-font: "Poppins", Arial, Helvetica, sans-serif;
  --wd-header-el-font: "Jost", Arial, Helvetica, sans-serif;

  --wd-text-color: #777777;
  --wd-title-color: rgb(23, 9, 7);
  --wd-primary-color: rgb(121, 130, 132);
  --wd-link-color: #333333;
  --wd-link-color-hover: #242424;

  --wd-container-width: 1222px;
  --wd-gutter: 15px;

  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 20px rgba(121, 130, 131, 0.2),
                  inset 0 8px 10px rgba(255, 255, 255, 0.5);
  --glass-shadow-soft: 0 8px 20px rgba(121, 130, 131, 0.1),
                       inset 0 8px 10px rgba(255, 255, 255, 0.8);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #fff;
  font-family: var(--wd-text-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--wd-text-color);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; border: 0; }
iframe { max-width: 100%; border: 0; }

a {
  color: var(--wd-link-color);
  text-decoration: none;
  transition: color .25s ease;
}
a:hover { color: var(--wd-link-color-hover); }

/* ---------------------------------------------------------- typography -- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--wd-title-font);
  font-weight: 700;
  color: var(--wd-title-color);
  line-height: 1.4;
  margin: 0 0 20px;
}
h1 { font-size: 3.2rem; line-height: 1.4; margin-bottom: 20px; }
h2 { font-size: 24px; }
h3 { font-size: 22px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { margin: 0 0 20px; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 20px; padding-left: 20px; }
li { margin-bottom: 6px; }

strong, b { font-weight: 700; color: inherit; }
small { font-size: .8em; line-height: 1.2; }

hr { border: 0; border-top: 1px solid rgba(0, 0, 0, .1); margin: 30px 0; }

/* ------------------------------------------------------------- layout -- */
.container {
  width: 100%;
  max-width: var(--wd-container-width);
  margin: 0 auto;
  padding: 0 var(--wd-gutter);
}

.main-page-wrapper { padding-top: 0; }
.site-content { width: 100%; }
.row.content-layout-wrapper { display: block; }

/* WPBakery rows behave as a 12-column flex grid. */
.vc_row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--wd-gutter) * -1);
  margin-right: calc(var(--wd-gutter) * -1);
  position: relative;
}
.vc_row.vc_row-flex,
.vc_row.vc_row-o-equal-height { align-items: stretch; }
.vc_row.vc_row-o-columns-middle { align-items: center; }

.wpb_column {
  width: 100%;
  padding-left: var(--wd-gutter);
  padding-right: var(--wd-gutter);
  min-width: 0;
}
.vc_column-inner { width: 100%; }

@media (min-width: 769px) {
  .vc_col-sm-1  { width: 8.3333%; }
  .vc_col-sm-2  { width: 16.6666%; }
  .vc_col-sm-3  { width: 25%; }
  .vc_col-sm-4  { width: 33.3333%; }
  .vc_col-sm-5  { width: 41.6666%; }
  .vc_col-sm-6  { width: 50%; }
  .vc_col-sm-7  { width: 58.3333%; }
  .vc_col-sm-8  { width: 66.6666%; }
  .vc_col-sm-9  { width: 75%; }
  .vc_col-sm-10 { width: 83.3333%; }
  .vc_col-sm-11 { width: 91.6666%; }
  .vc_col-sm-12 { width: 100%; }
  .vc_col-sm-1\/5 { width: 20%; }
  .vc_col-sm-2\/5 { width: 40%; }
  .vc_col-sm-3\/5 { width: 60%; }
  .vc_col-sm-4\/5 { width: 80%; }
}

/* Full-bleed rows (VC "stretch row"). */
.row-full-width {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media (min-width: 1252px) {
  .row-full-width:not(.row-stretch) {
    padding-left: calc((100vw - var(--wd-container-width)) / 2);
    padding-right: calc((100vw - var(--wd-container-width)) / 2);
  }
}
.vc_row-no-padding { padding: 0 !important; }

.vc_col-has-fill,
.vc_row-has-fill { background-repeat: no-repeat; }
.wd-bg-center-center { background-position: center center; }
.wd-bg-center-bottom { background-position: center bottom; }
.wd-bg-right-center  { background-position: right center; }
.wd-bg-left-center   { background-position: left center; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.center      { text-align: center; margin: 0 auto; }

/* ---------------------------------------------------------- glassmorph -- */
.glass,
.vc_icon_element-inner,
.info-box-content {
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.glass {
  padding: 20px;
  border-radius: 10px;
}
.glass-box {
  background: var(--glass-bg);
  border-radius: 8px;
  box-shadow: var(--glass-shadow-soft);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 20px;
}
.glass-box strong { font-family: var(--wd-header-el-font); color: #000; }

/* -------------------------------------------------------------- header -- */
.whb-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
}
.whb-general-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}
.whb-general-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 20px;
}
.whb-col-left  { flex: 0 0 auto; }
.whb-col-center { flex: 1 1 auto; display: flex; justify-content: center; }
.whb-col-right { flex: 0 0 auto; }

.site-logo img,
.wd-logo img { display: block; width: 150px; max-width: 150px; height: auto; }

.wd-nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wd-nav-main > li { position: relative; margin: 0; }
.wd-nav-main > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--wd-header-el-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--wd-link-color);
  white-space: nowrap;
  padding: 34px 0;
}
.wd-nav-main > li > a:hover,
.wd-nav-main > li.current-menu-item > a { color: rgba(51, 51, 51, .65); }

.wd-nav-main > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.wd-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0 8px 20px rgba(121, 130, 131, .2);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 10;
}
.wd-dropdown .container { padding: 0; max-width: none; }
.wd-nav-main > li:hover > .wd-dropdown,
.wd-nav-main > li:focus-within > .wd-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.wd-dropdown .sub-menu { list-style: none; margin: 0; padding: 0; }
.wd-dropdown .sub-menu li { margin: 0; }
.wd-dropdown .sub-menu a {
  display: block;
  padding: 7px 25px;
  font-family: var(--wd-header-el-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--wd-link-color);
  white-space: nowrap;
}
.wd-dropdown .sub-menu a:hover { color: rgba(51, 51, 51, .65); }

/* burger (mobile) */
.wd-burger {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--wd-header-el-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--wd-link-color);
}
.wd-burger-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.wd-burger-icon::before,
.wd-burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.wd-burger-icon::before { top: -6px; }
.wd-burger-icon::after  { top: 6px; }

.wd-mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid #000;
  padding: 20px 0 30px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.wd-mobile-nav[hidden] { display: none; }
.wd-mobile-nav.is-open { display: block; }
.wd-nav-mobile { list-style: none; margin: 0 0 20px; padding: 0; }
.wd-nav-mobile > li { margin: 0; border-bottom: 1px solid rgba(0, 0, 0, .08); }
.wd-nav-mobile a {
  display: block;
  padding: 12px 0;
  font-family: var(--wd-header-el-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--wd-link-color);
}
.wd-nav-mobile .wd-dropdown {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  border: 0;
  box-shadow: none;
  padding: 0 0 10px 16px;
  min-width: 0;
}
.wd-nav-mobile .sub-menu a {
  padding: 8px 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--wd-text-color);
}
.wd-mobile-cta { display: inline-block; }

/* -------------------------------------------------------------- button -- */
.btn {
  display: inline-block;
  font-family: var(--wd-text-font);
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  color: #3e3e3e;
  padding: 12px 20px;
  border: 1px solid #000;
  border-radius: 0;
  background: var(--glass-bg);
  box-shadow: 0 8px 20px rgba(121, 130, 131, .1),
              inset 0 8px 10px rgba(255, 255, 255, .4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: box-shadow .8s ease, color .3s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover {
  color: #000;
  box-shadow: 0 20px 20px rgba(0, 0, 0, .1);
}
.btn-size-extra-large { font-size: 16px; padding: 17px 40px; }
.btn-size-large { font-size: 14px; padding: 15px 30px; }
.btn-size-small { font-size: 12px; padding: 9px 16px; }

.wd-button-wrapper { margin-bottom: 0; }
.wd-button-wrapper.text-center { text-align: center; }
.wd-button-wrapper.text-left { text-align: left; }
.wd-button-wrapper.text-right { text-align: right; }

/* --------------------------------------------------------- page title --
   The live site sets the page-title block to display:none site-wide (the
   theme's "title design: disabled" option). The breadcrumb markup is kept
   for structure but stays hidden, exactly as on the original. */
.page-title {
  display: none;
  background: #0a0a0a;
  padding: 18px 0;
}
.breadcrumbs {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
}
.breadcrumbs a { color: #fff; }
.breadcrumbs a:hover { color: rgba(255, 255, 255, .7); }
.breadcrumbs .current { color: rgba(255, 255, 255, .7); }

/* ----------------------------------------------------------- vc icons -- */
.vc_icon_element { margin-bottom: 35px; }
.vc_icon_element-align-center { text-align: center; }
.vc_icon_element-align-left { text-align: left; }
.vc_icon_element-align-right { text-align: right; }

.vc_icon_element-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 114px;
  padding: 20px;
  border: 2px solid #2a2a2a;
  border-radius: 50%;
}
.vc_icon_element-icon {
  font-size: 39.9px;
  line-height: 1;
  color: #2a2a2a;
}

/* ---------------------------------------------------------- info boxes -- */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--wd-gutter) * -1) 30px;
}
.card-grid > .info-box-wrapper {
  display: flex;
  width: 100%;
  padding: 0 var(--wd-gutter);
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .card-grid > .info-box-wrapper { width: 33.3333%; }
}
.card-grid > .info-box-wrapper > .wd-info-box { width: 100%; }

.wd-info-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 0 50px;
}
.box-icon-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: -25px;
}
.info-box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  padding: 18px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
}
.info-box-icon img { width: 50px; height: 50px; }

.info-box-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 35px 30px 30px;
}
.info-box-title {
  font-family: var(--wd-title-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--wd-title-color);
  margin: 0 0 10px;
  padding-bottom: 10px;
}
.box-title-style-underlined { border-bottom: 1px solid rgba(0, 0, 0, .12); }
.info-box-inner { flex: 1 1 auto; margin-bottom: 20px; }
.info-box-inner > *:last-child { margin-bottom: 0; }
.info-btn-wrapper { margin-top: auto; }

/* ----------------------------------------------------------- accordion -- */
.vc_tta-container { margin-bottom: 30px; }
.vc_tta-panels { border: 0; }
.vc_tta-panel { border: 2px solid #2a2a2a; margin-bottom: -2px; }
.vc_tta-panel-heading { margin: 0; }
.vc_tta-panel-title { margin: 0; font-size: 22px; }
.vc_tta-panel-title > a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  color: #2a2a2a;
  font-family: var(--wd-title-font);
  font-weight: 700;
  cursor: pointer;
}
.vc_tta-panel-title > a:hover { color: #000; }
.vc_tta-controls-icon {
  order: -1;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  position: relative;
  transition: transform .25s ease;
}
.vc_tta-controls-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 1px;
  width: 11px;
  height: 11px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.vc_tta-panel.vc_active > .vc_tta-panel-heading .vc_tta-controls-icon {
  transform: rotate(180deg);
}
.vc_tta-panel-body {
  display: none;
  padding: 20px;
  border-top: 2px solid #2a2a2a;
}
.vc_tta-panel.vc_active > .vc_tta-panel-body { display: block; }

/* ------------------------------------------------------ mobile toolbar -- */
.wd-toolbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 450;
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow-soft);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, .1);
}
.wd-toolbar-link { flex: 1 1 auto; }
.wd-toolbar-link a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 10px;
  min-height: 55px;
  color: var(--wd-title-color);
}
.wd-toolbar-icon { font-size: 15px; line-height: 1; }
.wd-toolbar-label {
  font-family: var(--wd-header-el-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .wd-toolbar { display: flex; }
  body { padding-bottom: 55px; }
}
@media (max-width: 600px) {
  .wd-toolbar-icon { display: none; }
  .wd-toolbar-label { font-size: 14px; }
}

/* ------------------------------------------------------------ galleries -- */
.wd-images-gallery .gallery-images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 -15px;
}
.wd-gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 50%;
}
@media (min-width: 577px) { .wd-gallery-item { width: 33.3333%; } }
@media (min-width: 769px) { .wd-gallery-item { width: 25%; } }
@media (min-width: 993px) { .wd-gallery-item { width: 16.6666%; } }
.wd-gallery-item p { margin: 0; }
.wd-gallery-image { display: block; margin: 0 auto; }

/* -------------------------------------------------------- testimonials -- */
.testimonials-grid > .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.testimonial.column {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (min-width: 769px) { .testimonial.column { width: 33.3333%; } }
.testimonial-inner {
  height: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}
.testimonial-content { text-align: center; }
.testimonial-content footer {
  margin-top: 15px;
  font-weight: 600;
  color: #242424;
}
.testimonial-rating { margin-bottom: 10px; }
.star-rating {
  position: relative;
  display: inline-block;
  width: 75px;
  height: 22px;
  overflow: hidden;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 1px;
  color: #bbb;
  white-space: nowrap;
}
.star-rating::before {
  content: "★★★★★";
  position: absolute;
  inset: 0;
}
.star-rating > span {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: rgb(234, 190, 18);
}
.star-rating > span::before { content: "★★★★★"; }

/* --------------------------------------------------- photo gallery ------
   The live site runs these as a Nivo slideshow. Rebuilt as a grid so every
   photograph is visible without JavaScript. */
.wpb_gallery { margin-bottom: 30px; }
.nivoSlider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.nivoSlider > a { display: block; line-height: 0; }
.nivoSlider img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(121, 130, 131, .2);
  transition: transform .35s ease;
}
.nivoSlider > a:hover img { transform: translateY(-3px); }

/* -------------------------------------------------------------- images -- */
.wpb_single_image { margin-bottom: 20px; }
.wpb_single_image figure { margin: 0; }
.wpb_single_image img { display: block; height: auto; }
.vc_align_center figure, .vc_align_center .vc_single_image-wrapper { text-align: center; }
.vc_align_center img { margin: 0 auto; }
.vc_align_right img { margin-left: auto; }

/* ---------------------------------------------------------------- maps -- */
.wpb_gmaps_widget { margin-bottom: 0; }
.wpb_map_wraper { line-height: 0; }
.wpb_map_wraper iframe { display: block; width: 100%; height: 450px; }

/* -------------------------------------------------------------- tables -- */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, .35);
}
.entry-content th,
.entry-content td {
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, .12);
  text-align: left;
  vertical-align: top;
}
.entry-content th {
  font-family: var(--wd-entities-title-font);
  font-weight: 700;
  color: var(--wd-title-color);
  background: rgba(255, 255, 255, .5);
}

/* ---------------------------------------------------------- text block -- */
.wpb_text_column { margin-bottom: 20px; }
.wpb_text_column:last-child { margin-bottom: 0; }
.entry-content { padding-bottom: 0; }

/* -------------------------------------------------------------- footer -- */
.footer-container {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
.main-footer { padding: 30px 15px; }
.footer-row { align-items: flex-start; }
.footer-logo { width: 150px; margin-bottom: 20px; display: block; }
.footer-container h3 {
  font-size: 22px;
  color: #242424;
  margin-bottom: 20px;
}
.footer-container p { margin-bottom: 20px; }
.footer-container .vc_col-sm-4 p:not(:first-of-type) { margin-bottom: 6px; }
.footer-container a { color: var(--wd-link-color); }
.footer-container a:hover { color: var(--wd-primary-color); }

.wd-social-icons { display: flex; gap: 10px; margin-top: 20px; }
.wd-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 50%;
  color: var(--wd-link-color);
  font-size: 14px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.wd-social-icon:hover {
  background: var(--wd-title-color);
  border-color: var(--wd-title-color);
  color: #fff;
}

.copyrights-wrapper { border-top: 1px solid rgba(0, 0, 0, .1); }
.min-footer {
  padding: 20px 0;
  font-size: 11.2px;
  line-height: 1.2;
  text-align: center;
}
.min-footer strong { color: var(--wd-title-color); }

/* ------------------------------------------------------------ homepage -- */
.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 90px);
  padding: 80px 0;
  background-image: url("/assets/uploads/2024/05/Frame-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.home-hero .container { position: relative; z-index: 2; }
.home-hero h1 { margin-bottom: 14px; }
.home-hero .hero-strap {
  font-family: var(--wd-header-el-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 34px;
}
.home-hero .hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 45px 40px;
  border-radius: 10px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 34px;
  margin-bottom: 34px;
}
.hero-contact a {
  font-family: var(--wd-header-el-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wd-title-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-contact a:hover { color: var(--wd-primary-color); }

.hero-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid #000;
  border-radius: 50%;
  color: #000;
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow-soft);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero-scroll:hover { color: #000; box-shadow: 0 20px 20px rgba(0, 0, 0, .1); }

.partners { padding: 50px 0; background: #fff; }
.partners .partners-label {
  font-family: var(--wd-header-el-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wd-title-color);
  text-align: center;
  margin-bottom: 20px;
}
/* The label only sits beside the logos once there is room for both. */
@media (max-width: 992px) {
  .partners .vc_col-sm-3,
  .partners .vc_col-sm-9 { width: 100%; }
}
@media (min-width: 993px) {
  .partners .partners-label { margin-bottom: 0; }
}

.section-treatments {
  padding: 60px 0 70px;
  background-image: url("/assets/uploads/2024/04/umabg.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.section-treatments h2 { text-align: center; margin-bottom: 45px; }

.section-about { padding: 60px 0 70px; background: #fff; }
.about-inner { max-width: 700px; margin: 0 auto; }
.about-inner h2 { text-align: center; }
/* The portrait ships with its own circular backdrop, so it needs no framing. */
.about-portrait {
  display: block;
  width: 218px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 25px;
}
.about-credentials {
  margin-top: 40px;
  border: 1px solid #000;
  padding: 30px;
}
.about-credentials h2 { margin-bottom: 20px; }
.about-credentials ul { padding-left: 18px; margin-bottom: 0; }

.section-cta {
  padding: 60px 0;
  background-image: url("/assets/uploads/2024/04/umabg.png");
  background-size: cover;
  background-position: center;
  text-align: center;
}
.section-cta h2 { margin-bottom: 25px; }

/* -------------------------------------------------------------- mobile -- */
@media (max-width: 1024px) {
  .whb-general-header-inner { height: 60px; }
  .whb-col-center, .whb-col-right { display: none; }
  .wd-burger { display: inline-flex; }
  .wd-mobile-nav { display: none; }
  .wd-mobile-nav.is-open { display: block; }
  .whb-general-header-inner { justify-content: space-between; }
}

@media (max-width: 768px) {
  .vc_row { margin-left: calc(var(--wd-gutter) * -1); margin-right: calc(var(--wd-gutter) * -1); }
  .wpb_column { margin-bottom: 20px; }
  .wpb_column:last-child { margin-bottom: 0; }
  .home-hero { min-height: auto; padding: 60px 0; }
  .home-hero .hero-inner { padding: 30px 20px; }
  .vc_icon_element-inner { width: 90px; height: 90px; padding: 15px; }
  .vc_icon_element-icon { font-size: 32px; }
  .about-credentials { padding: 20px; }
  .wpb_map_wraper iframe { height: 320px; }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; font-weight: 700; line-height: 1.15; }
  .home-hero .hero-strap { font-size: 13px; }
  .hero-contact { gap: 12px 20px; }
  .hero-contact a { font-size: 11px; }
  /* Keep the 15px side padding: .vc_row inside carries margin:0 -15px and
     would otherwise overhang the viewport and cause horizontal scroll. */
  .main-footer { padding-top: 30px; padding-bottom: 30px; }
}

/* Columns that only exist to reserve space on desktop collapse on mobile. */
@media (max-width: 768px) {
  .wpb_column:empty { display: none; margin: 0; }
}

/* ------------------------------------------------------ booking form -- */
.booking-section { padding: 60px 0 70px; background: #fff; }
.booking-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 10px;
}
.booking-card h2 { text-align: center; margin-bottom: 12px; }
.booking-intro { text-align: center; margin-bottom: 30px; }
.booking-intro a { text-decoration: underline; }

.booking-form .field-row { display: flex; flex-wrap: wrap; gap: 0 20px; }
.booking-form .field-row > .field { flex: 1 1 240px; }
.booking-form .field { margin: 0 0 20px; }
.booking-form label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--wd-header-el-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wd-title-color);
}
.booking-form .field-hint {
  display: block;
  font-family: var(--wd-text-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--wd-text-color);
  margin-top: 2px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--wd-text-font);
  font-size: 14px;
  color: var(--wd-title-color);
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 0;
  transition: border-color .2s ease, background .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.booking-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23170907' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 38px;
}
.booking-form textarea { resize: vertical; min-height: 110px; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--wd-title-color);
  background: rgba(255, 255, 255, .85);
}
.booking-form input:user-invalid,
.booking-form textarea:user-invalid { border-color: #b3413d; }

/* Honeypot — hidden from people, visible to naive bots. */
.field-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-privacy {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.booking-actions .btn { cursor: pointer; font-family: var(--wd-text-font); }
.booking-form.is-sending .btn { opacity: .6; pointer-events: none; }
.booking-status { font-size: 13px; }
.booking-status.is-error { color: #b3413d; }
.booking-status.is-ok { color: #3f7d52; }

.booking-done {
  text-align: center;
  padding: 20px 0;
}
.booking-done h2 { margin-bottom: 12px; }

@media (max-width: 768px) {
  .booking-card { padding: 24px 20px; }
  .booking-form .field-row { gap: 0; }
}
