/* Estevita Clinic Shortcodes 1.1.18: home and gallery showcase. */
.evc-home .evc-hero--minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 0 64px;
  background-color: var(--evc-deep);
  text-align: center;
}

.evc-home .evc-hero__shade {
  background:
    linear-gradient(rgba(16, 21, 38, 0.58), rgba(16, 21, 38, 0.42)),
    linear-gradient(180deg, rgba(7, 24, 37, 0.04), rgba(7, 24, 37, 0.18));
}

.evc-home .evc-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(760px, calc(100% - 12vw));
  min-height: auto;
  padding: 90px 0;
}

.evc-home .evc-hero__copy {
  max-width: 760px;
  margin: 0 auto;
}

.evc-home .evc-hero__badge {
  display: inline-block;
  margin-bottom: 28px;
  border: 0;
  background: transparent;
  color: var(--evc-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 0;
}

.evc-home .evc-hero h1 {
  margin: 0 0 24px;
  color: #f4efe6;
  font-family: var(--evc-font-display);
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.evc-home .evc-hero h1 em {
  color: var(--evc-gold);
  font-style: italic;
}

.evc-home .evc-hero p {
  max-width: 480px;
  margin: 0 auto 40px;
  color: rgba(244, 239, 230, 0.8);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.65;
}

.evc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.evc-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 46px;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.evc-hero-btn--primary {
  background: var(--evc-gold);
  color: var(--evc-deep);
  padding: 15px 34px;
}

.evc-hero-btn--primary:hover {
  box-shadow: 0 12px 30px rgba(186, 146, 98, 0.35);
  transform: translateY(-2px);
}

.evc-hero-btn--text {
  position: relative;
  color: #f4efe6;
  opacity: 0.92;
}

.evc-hero-btn--text::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: rgba(244, 239, 230, 0.42);
  transition: background 0.24s ease;
}

.evc-hero-btn--text:hover,
.evc-hero-btn--text:focus {
  background: transparent !important;
  box-shadow: none !important;
  color: #f4efe6 !important;
  opacity: 0.92;
  transform: none !important;
}

.evc-hero-btn--text:hover::after,
.evc-hero-btn--text:focus::after {
  background: rgba(244, 239, 230, 0.42);
}

.evc-home .evc-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 54px;
  overflow: hidden;
  border-top: 1px solid rgba(186, 146, 98, 0.22);
  background: rgba(16, 21, 38, 0.55);
  backdrop-filter: blur(8px);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.evc-home .evc-marquee__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: auto;
  animation: evcHeroMarquee 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.evc-home .evc-marquee span {
  display: inline-flex;
  align-items: center;
  color: rgba(244, 239, 230, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.evc-home .evc-marquee span.is-main {
  color: var(--evc-gold);
  font-weight: 700;
}

.evc-home .evc-marquee span::after {
  content: "✦";
  width: auto;
  height: auto;
  margin: 0 26px;
  border-radius: 0;
  background: transparent;
  color: rgba(186, 146, 98, 0.52);
  font-size: 10px;
}

@keyframes evcHeroMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.evc-services-v3 {
  background: #faf7f2;
  color: var(--evc-deep);
  font-family: var(--evc-font-sans);
  padding: 100px 6vw 54px;
}

.evc-services-v3__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.evc-services-v3__head {
  max-width: 640px;
  margin-bottom: 56px;
}

.evc-services-v3__head > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--evc-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.evc-services-v3__head h2 {
  margin: 0 0 18px;
  color: var(--evc-deep);
  font-family: var(--evc-font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.evc-services-v3__head h2 em {
  color: var(--evc-gold);
  font-style: italic;
}

.evc-services-v3__head p {
  margin: 0;
  color: rgba(7, 24, 37, 0.62);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
}

.evc-services-v3__groups {
  display: grid;
  gap: 46px;
}

.evc-services-group {
  display: grid;
  gap: 22px;
}

.evc-services-group__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.evc-services-group__head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--evc-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.evc-services-group__head h3 {
  margin: 0;
  color: var(--evc-deep);
  font-family: var(--evc-font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.evc-services-feature {
  display: flex;
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: 22px;
  background: var(--evc-deep);
}

.evc-services-feature__aside {
  position: relative;
  display: grid;
  flex: 0 0 280px;
  align-content: center;
  justify-items: center;
  min-height: 260px;
  background: rgba(186, 146, 98, 0.16);
  padding: 48px;
  text-align: center;
}

.evc-services-feature__aside span {
  position: absolute;
  top: 22px;
  left: 22px;
  border-radius: 30px;
  background: var(--evc-gold);
  color: var(--evc-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  text-transform: uppercase;
}

.evc-services-feature__aside strong {
  color: #f4efe6;
  font-family: var(--evc-font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
}

.evc-services-feature__aside small {
  margin-top: 14px;
  color: rgba(244, 239, 230, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.evc-services-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 54px;
}

.evc-services-feature__body h3,
.evc-services-card h3 {
  margin: 0 0 14px;
  font-family: var(--evc-font-display);
  font-weight: 500;
  letter-spacing: 0;
}

.evc-services-feature__body h3 {
  color: #f4efe6;
  font-size: 31px;
}

.evc-services-feature__body p {
  max-width: 540px;
  margin: 0 0 22px;
  color: rgba(244, 239, 230, 0.78);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.evc-services-v3__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.evc-services-v3__grid--hair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.evc-services-v3__grid--aesthetic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evc-services-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  border: 1px solid rgba(7, 24, 37, 0.1);
  border-radius: 18px;
  background: #fff;
  padding: 32px 28px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.evc-services-card:hover {
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(7, 24, 37, 0.1);
  transform: translateY(-6px);
}

.evc-services-card h3 {
  color: var(--evc-deep);
  font-size: 21px;
  line-height: 1.22;
}

.evc-services-card p {
  flex: 1;
  margin: 0 0 20px;
  color: rgba(7, 24, 37, 0.62);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

.evc-services-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--evc-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.evc-services-feature .evc-services-link {
  color: var(--evc-gold);
}

.evc-services-link span {
  display: inline-block;
  transition: transform 0.24s ease;
}

.evc-services-link:hover span {
  transform: translateX(5px);
}

.evc-operations-banner {
  background: #faf7f2;
  padding: 0 6vw 100px;
}

.evc-operations-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.evc-operations-banner__link {
  display: block;
  border-radius: 22px;
}

.evc-operations-banner img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(7, 24, 37, 0.08);
}

.evc-operations-banner__link:hover img,
.evc-operations-banner__link:focus img {
  transform: none;
  filter: none;
}

.evc-gallery-section {
  background: #faf7f2;
}

.evc-gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.evc-gallery-head h2 {
  margin: 0;
  color: var(--evc-deep);
  font-family: var(--evc-serif);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.evc-gallery-head p {
  margin: 0 0 22px;
  color: var(--evc-muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.evc-gallery-card {
  overflow: hidden;
  border: 1px solid rgba(7, 24, 37, 0.1);
  border-radius: var(--evc-radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 24, 37, 0.06);
}

.evc-gallery-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--evc-mist);
}

.evc-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evc-gallery-card figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  background: rgba(7, 24, 37, 0.78);
  color: #fff;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evc-gallery-card > div {
  padding: 22px;
}

.evc-gallery-card h3 {
  margin: 0;
  color: var(--evc-deep);
  font-family: var(--evc-serif);
  font-size: 28px;
  line-height: 1.12;
}

.evc-gallery-card p {
  margin: 12px 0 0;
  color: var(--evc-muted);
  line-height: 1.65;
}

.evc-gallery-card span {
  display: block;
  margin-top: 16px;
  color: var(--evc-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evc-gallery-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--evc-deep);
  font-weight: 800;
  text-decoration: none;
}

.evc-gallery-empty {
  border: 1px dashed rgba(7, 24, 37, 0.24);
  border-radius: var(--evc-radius);
  background: #fff;
  padding: 34px;
  text-align: center;
}

.evc-gallery-empty h3 {
  margin: 0;
  color: var(--evc-deep);
  font-family: var(--evc-serif);
  font-size: 34px;
}

.evc-gallery-empty p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--evc-muted);
  line-height: 1.7;
}
