/* Stefania Nuti Coach - Local site styles */

:root {
  --color-white: #ffffff;
  --color-cream: #f8f6f4;
  --color-light-blue: #e5f0fe;
  --color-blue: #003a96;
  --color-purple-dark: #280064;
  --color-purple: #8015e8;
  --color-purple-light: #ba83f0;
  --color-coral: #ed5829;
  --color-coral-light: #f9c5b4;
  --color-gray: #595959;
  --color-gray-light: #c7c7c7;
  --color-text: #333333;

  --font-heading: "Nunito Sans", "Helvetica Neue", sans-serif;
  --font-body: "Nunito Sans", "Helvetica Neue", sans-serif;
  --font-nav: "Signika", "Helvetica Neue", sans-serif;

  --logo-width: 424px;
  --logo-height: 86px;
  --header-top-height: 116px;
  --header-nav-height: 44px;
  --header-height: calc(var(--header-top-height) + var(--header-nav-height));
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-width: 1140px;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(40, 0, 100, 0.08);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--color-purple);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-coral);
}

.container {
  width: min(var(--container-width), 92vw);
  margin: 0 auto;
}

/* Typography — h1 matches Wix font_0 (Nunito Sans, normal weight) */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-purple-dark);
  line-height: 1.25;
  font-weight: 600;
}

h1 {
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4em;
  font-size: 40px;
}

h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); margin-bottom: 1rem; }

p { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 0.75rem;
}

/* Section wave dividers (from original Wix SVG) */
.wave {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.wave svg {
  display: block;
  width: 100%;
  height: var(--wave-height, 55px);
}

.wave-bottom {
  margin-bottom: -1px;
}

.wave-top svg {
  transform: scaleY(-1);
}

.wave-top {
  margin-top: -1px;
}

/* Header nav with dropdown — matches stefanianuticoach.com (Wix) */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.35rem);
  flex-wrap: nowrap;
}

.nav-link,
.main-nav > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-nav);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000000;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
  padding: 0.35rem 0;
  background: transparent;
  border: none;
  transition: color var(--transition);
}

.nav-link-label {
  display: inline-block;
}

.nav-link:hover,
.main-nav > a:hover,
.nav-link:focus-visible,
.nav-item.has-submenu:hover > .nav-link,
.nav-item.has-submenu:focus-within > .nav-link {
  color: var(--color-purple-dark);
}

.nav-link.active,
.main-nav > a.active {
  color: var(--color-purple-dark);
}

.nav-item {
  position: relative;
}

.nav-item.has-submenu > .nav-link {
  cursor: pointer;
}

.submenu-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.85;
  transform: translateY(1px);
  transition: transform var(--transition);
}

.nav-item.has-submenu:hover > .nav-link .submenu-arrow,
.nav-item.has-submenu.open > .nav-link .submenu-arrow,
.nav-item.has-submenu:focus-within > .nav-link .submenu-arrow {
  transform: translateY(1px) rotate(180deg);
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--color-white);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1100;
}

.submenu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.submenu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #000000;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background-color var(--transition);
}

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--color-purple-dark);
  background: var(--color-white);
}

.submenu a.active {
  color: var(--color-purple-dark);
  background: var(--color-white);
}

.nav-item.has-submenu:hover > .submenu,
.nav-item.has-submenu:focus-within > .submenu,
.nav-item.has-submenu.open > .submenu {
  display: block;
}

.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--header-nav-height);
  overflow: visible;
}

.header-nav-row .main-nav {
  justify-content: center;
}

.img-circle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-circle {
  width: min(303px, 72vw);
  height: min(303px, 72vw);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(40, 0, 100, 0.18);
  border: 4px solid var(--color-white);
}

/* Background-image sections */
.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40, 0, 100, 0.82), rgba(0, 58, 150, 0.65));
  z-index: 0;
}

.section-bg .container {
  position: relative;
  z-index: 1;
}

.section-bg h2,
.section-bg h3,
.section-bg p {
  color: var(--color-white);
}

.section-bg-light-overlay::before {
  background: rgba(255, 255, 255, 0.88);
}

.section-bg-light-overlay h2,
.section-bg-light-overlay h3,
.section-bg-light-overlay p {
  color: var(--color-text);
}

/* Reflection image columns — Wix comp-lxb28dr2 (3 boxes, full width, white blockquotes) */
.reflection-columns {
  display: grid;
  grid-template-columns: minmax(0, 326fr) minmax(0, 325fr) minmax(0, 325fr);
  gap: 0;
  width: 100%;
  margin: 0;
  min-height: 539px;
  position: relative;
  z-index: 2;
}

.reflection-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 539px;
  padding: clamp(2rem, 8vw, 7rem) clamp(0.75rem, 2vw, 1.25rem);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.reflection-col--1 {
  background-image: url("../images/service-family.jpg");
}

.reflection-col--2 {
  background-image: url("../images/service-emotional.jpg");
}

.reflection-col--3 {
  background-image: url("../images/service-resentment.jpg");
}

.reflection-col::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reflection-col--1::before {
  background: rgba(0, 0, 0, 0.49);
}

.reflection-col--2::before {
  background: rgba(0, 0, 0, 0.1);
}

.reflection-col--3::before {
  background: rgba(0, 0, 0, 0.3);
}

.reflection-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.8em;
  font-weight: 400;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  max-width: 310px;
}

/* Service blocks — Wix comp-lxb2r2l7 two-column layout */
.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 407fr) minmax(0, 573fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.services-title {
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.4em;
  font-weight: 700;
  color: #280064;
  text-align: left;
  margin: 0 0 1.5rem;
}

.services-intro {
  max-width: none;
  margin: 0;
  text-align: left;
}

.services-intro p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 400;
  text-align: justify;
  color: #000000;
  margin-bottom: 1rem;
}

.service-blocks {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: none;
  margin: 0;
}

.service-block {
  padding-bottom: 0;
  border-bottom: none;
}

.service-block h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.4em;
  font-weight: 400;
  color: #000000;
  margin: 0 0 1rem;
}

.service-block p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 400;
  text-align: justify;
  color: #000000;
  margin: 0;
}

.services-descubre {
  padding: 96px 0 2.5rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.services-descubre-title {
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.4em;
  font-weight: 700;
  text-align: center;
  color: #000000;
  max-width: 800px;
  margin: 0 auto;
}

.descubre-accent {
  color: #6c0289;
}

.reveal-ltr {
  overflow: hidden;
}

.reveal-ltr__inner {
  transform: translateX(-48px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1),
    opacity 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.reveal-ltr.is-visible .reveal-ltr__inner {
  transform: translateX(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ltr__inner {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

.intervention-hero {
  position: relative;
  padding: 0;
  margin-top: -1px;
  background: #280064;
  overflow: visible;
}

.intervention-hero-inner {
  width: 100%;
  padding: calc(var(--header-height) + 2rem) clamp(1.25rem, 4vw, 3rem) calc(3.5rem + 53px);
}

.intervention-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  width: 100%;
}

.intervention-hero-media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
}

.intervention-hero-media img {
  width: 70%;
  height: auto;
  display: block;
  animation: intervention-hero-image-in 1.1s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

@keyframes intervention-hero-image-in {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intervention-hero-media img {
    animation: none;
  }
}

.intervention-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intervention-hero-copy h1,
.intervention-hero-copy .intervention-hero-intro,
.intervention-hero-copy .intervention-hero-secondary {
  width: 50%;
  max-width: 100%;
}

.intervention-hero-copy h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff;
  margin: 0 0 1.25rem;
  text-align: left;
}

.intervention-hero-intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4em;
  color: #ffffff;
  text-align: justify;
  margin: 0;
}

.intervention-hero-intro p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4em;
  color: #ffffff;
  text-align: justify;
  margin: 0 0 1rem;
}

.intervention-hero-intro p:last-child {
  margin-bottom: 0;
}

.intervention-hero-subtitle {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff;
  margin: 1.75rem 0 0.75rem;
  text-align: left;
}

.intervention-hero-secondary p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4em;
  color: #ffffff;
  text-align: justify;
  margin: 0 0 1rem;
}

.intervention-hero-secondary p:last-child {
  margin-bottom: 0;
}

.intervention-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}

.intervention-content {
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.intervention-content .intervention-block h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  color: var(--color-purple-dark);
  margin-bottom: 0.75rem;
}

.intervention-content .intervention-block p,
.intervention-content .intervention-list {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4em;
  color: var(--color-text);
  text-align: justify;
}

.intervention-content .intervention-block p {
  margin-bottom: 1rem;
}

.intervention-list {
  margin: 0.5rem 0 1rem;
  padding-left: 1.35rem;
}

.intervention-list li {
  margin-bottom: 0.35rem;
}

.intervention-content .page-cta .btn {
  min-width: 220px;
}

.intervention-inline-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.intervention-inline-cta .btn {
  min-width: 180px;
}

@media (max-width: 900px) {
  .intervention-hero-inner {
    padding-top: calc(var(--header-height) + 1.5rem);
  }

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

  .intervention-hero-media {
    justify-content: center;
  }

  .intervention-hero-media img {
    width: min(70%, 420px);
  }

  .intervention-hero-copy h1,
  .intervention-hero-copy .intervention-hero-intro,
  .intervention-hero-copy .intervention-hero-secondary {
    width: 100%;
  }

  .intervention-hero-copy h1 {
    font-size: clamp(1.75rem, 6vw, 38px);
  }
}

/* Page templates (sub-pages) */
.page-hero {
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  background: linear-gradient(135deg, var(--color-purple-dark), var(--color-purple));
  color: var(--color-white);
  text-align: center;
}

.page-hero h1 {
  font-size: 56px;
  line-height: normal;
  font-weight: 400;
  letter-spacing: normal;
  color: #ffffff;
  max-width: 980px;
  margin: 0 auto 1rem;
  text-align: center;
}

.page-intro {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  font-size: 1.05rem;
}

.page-content-section {
  padding: var(--section-padding) 0;
}

.page-block {
  max-width: 820px;
  margin: 0 auto 2rem;
}

.page-block h2 {
  font-size: 1.5rem;
  color: var(--color-purple);
}

.page-cta {
  text-align: center;
  margin-top: 3rem;
}

.page-placeholder {
  text-align: center;
  color: var(--color-gray);
  font-style: italic;
  max-width: 600px;
  margin: 2rem auto;
}

.page-effective-date {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  font-size: 1rem;
}

.legal-intro {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text);
}

.legal-block .legal-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.legal-block .legal-list li {
  margin-bottom: 0.35rem;
}

.legal-block .legal-list + p,
.legal-block p + .legal-list {
  margin-top: 1rem;
}


/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(40, 0, 100, 0.06);
  transition: box-shadow var(--transition);
  overflow: visible;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: var(--header-top-height);
  padding: 17px 0 13px;
  gap: 1rem;
}

.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--header-nav-height);
  overflow: visible;
}

.header-nav-row .main-nav {
  justify-content: center;
}

.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  line-height: 0;
}

.logo img {
  display: block;
  width: var(--logo-width);
  height: var(--logo-height);
  max-width: calc(100vw - 12rem);
  object-fit: contain;
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language switcher — Wix-style dropdown with flags */
.lang-switcher {
  position: relative;
  z-index: 120;
  --lang-switcher-radius: 24px;
  --lang-switcher-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.lang-switcher-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 148px;
  height: 36px;
  padding: 0 14px;
  border: none;
  border-radius: var(--lang-switcher-radius);
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--lang-switcher-shadow);
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.lang-switcher-toggle:hover,
.lang-switcher-toggle:focus-visible {
  outline: none;
  background: var(--color-cream);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
}

.lang-switcher.open .lang-switcher-toggle {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}

.lang-flag {
  width: 24px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-label {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lang-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  fill: currentColor;
  transition: transform var(--transition);
}

.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  border-radius: 0 0 var(--lang-switcher-radius) var(--lang-switcher-radius);
  background: var(--color-white);
  box-shadow: var(--lang-switcher-shadow);
  overflow: hidden;
}

.lang-switcher.open {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
}

.lang-switcher.open .lang-dropdown {
  box-shadow: none;
}

.lang-dropdown[hidden] {
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border: none;
  border-top: 1px solid rgba(254, 254, 254, 0.9);
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-align: left;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.lang-option:first-child {
  border-top: none;
}

.lang-option:hover,
.lang-option:focus-visible {
  outline: none;
  background: var(--color-cream);
}

.lang-option.active {
  background: var(--color-light-blue);
  cursor: default;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-purple-dark);
  transition: var(--transition);
}

/* Hero — background matches Wix (image + light purple base, no heavy gradient) */
.hero {
  position: relative;
  min-height: 480px;
  display: block;
  text-align: center;
  color: var(--color-white);
  padding-top: var(--header-height);
  padding-bottom: 55px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgb(40, 0, 100);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-jellyfish.jpg") center top / cover no-repeat;
  opacity: 0.9;
}

.hero-bg::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 138px 2rem 24px;
  text-align: center;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-wave.wave-bottom {
  margin-bottom: 0;
}

#about {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-bottom: 27px;
}

.about-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.about-wave.wave-bottom {
  margin-bottom: 0;
}

#stronger {
  position: relative;
  z-index: 1;
  margin-top: -1px;
}

#about .about-text {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4em;
  text-align: justify;
}

#about .about-text p {
  color: #ffffff;
  margin-bottom: 1rem;
}

#about .about-list li {
  color: #ffffff;
}

#about .certificates h4 {
  color: #ffffff;
}

.hero h1.hero-title {
  font-size: 40px;
  line-height: 1.4em;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.hero h2.hero-headline {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.4em;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: none;
}

.hero-note {
  font-size: 0.95rem;
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.hero-question {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-coral);
  color: var(--color-white);
  border-color: var(--color-coral);
}

.btn-primary:hover {
  background: #d44a22;
  border-color: #d44a22;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237, 88, 41, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-purple-dark);
  border-color: var(--color-purple);
}

.btn-outline:hover {
  background: var(--color-purple);
  color: var(--color-white);
}

/* Sections */
section {
  padding: var(--section-padding) 0;
}

.section-light {
  background: var(--color-light-blue);
}

.section-cream {
  background: var(--color-cream);
}

.section-white {
  background: var(--color-white);
}

.section-purple {
  background: var(--color-purple-dark);
  color: var(--color-white);
}

/* About / Welcome — matches Wix comp-lxb128rq (purple band, white font_8 text) */
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.about-image {
  position: relative;
  flex-shrink: 0;
}

.about-image img,
.about-image .img-circle {
  width: min(303px, 72vw);
  height: min(303px, 72vw);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(40, 0, 100, 0.18);
  border: 4px solid var(--color-white);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  z-index: -1;
}

.certificates {
  margin-top: 2rem;
}

.certificates h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.cert-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cert-grid img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--color-white);
  padding: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.about-list {
  margin: 0 0 1.5rem 1.25rem;
  padding: 0;
}

.about-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* Stronger section — matches Wix comp-lxb1s0ds (title left, justified body right) */
.stronger-grid {
  display: grid;
  grid-template-columns: minmax(220px, 327px) minmax(0, 653px);
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 68px;
}

.stronger-title h2 {
  font-size: 40px;
  line-height: 1.4em;
  font-weight: 700;
  color: #000000;
  margin: 0;
  text-align: left;
}

.stronger-accent {
  color: #6c0289;
}

.stronger-body {
  font-size: 18px;
  line-height: 1.4em;
  text-align: justify;
}

.stronger-body p {
  margin-bottom: 1rem;
  text-align: justify;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.645, 0.045, 0.355, 1),
    transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.645, 0.045, 0.355, 1),
    transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Reflection — parallax behind title + columns, purple closing band below */
.reflection {
  text-align: center;
}

.reflection-parallax.parallax-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-white);
  padding-top: 65px;
  background-color: #1e0848;
}

.reflection-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.parallax-bg-media {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}

.parallax-bg-media img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 45vh);
  min-height: calc(100% + 320px);
  object-fit: cover;
  object-position: center top;
  display: block;
  will-change: transform;
}

.reflection-parallax.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(232, 230, 230, 0.08);
  z-index: 1;
  pointer-events: none;
}

.reflection-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 471px;
  padding: 0;
}

.reflection-hero-content h2 {
  color: var(--color-white);
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.reflection-closing-band {
  position: relative;
  background: var(--color-purple-dark);
  color: var(--color-white);
  padding: 66px 0;
  overflow: visible;
  margin: 0;
}

.reflection-closing-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.reflection-closing-wave.wave-bottom {
  margin-bottom: 0;
}

#services {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  padding-top: calc(var(--section-padding) + 20px);
}

.reflection-closing {
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.4em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.service-cards {
  display: none;
}

/* Family + Methods — matches Wix comp-lxpfzfps + comp-lxb2y73h (#280064 purple band) */
.section-family-purple {
  position: relative;
  overflow: visible;
  padding: 25px 0 0;
  margin-top: -1px;
}

.family-wave {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.family-wave.wave-top {
  top: 0;
  margin-top: 0;
}

.family-grid--close {
  display: grid;
  grid-template-columns: minmax(0, 438px) minmax(0, 452px);
  justify-content: space-between;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  padding: 51px 0 0;
}

.family-col {
  font-size: 18px;
  line-height: 1.4em;
  text-align: justify;
  color: #ffffff;
}

.family-col p {
  margin-bottom: 1rem;
  color: #ffffff;
}

.family-col--right {
  padding-bottom: 60px;
}

.family-col--left {
  padding-bottom: 35px;
}

.family-emphasis {
  font-weight: 700;
}

.family-subtitle {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-coral-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Methods — two wider columns on same purple band */
.methods-grid--wide {
  display: grid;
  grid-template-columns: minmax(0, 392px) minmax(0, 588px);
  justify-content: space-between;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  padding: 92px 0 40px;
}

.methods-col {
  font-size: 18px;
  line-height: 1.4em;
  text-align: justify;
  color: #ffffff;
}

.methods-col p {
  margin-bottom: 1rem;
  color: #ffffff;
}

.methods-col h2 {
  font-size: 40px;
  line-height: 1.4em;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
  text-align: left;
}

.methods-col--left {
  padding-left: 41px;
}

.methods-col--right {
  padding-left: 11px;
}


.methods-image {
  display: none;
}

.quote-block {
  margin: 1.5rem 0;
  padding: 0;
}

.quote-block blockquote {
  font-family: inherit;
  font-size: inherit;
  font-style: italic;
  font-weight: inherit;
  color: #ffffff;
  line-height: 1.4em;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-size: inherit;
  font-style: normal;
  color: #ffffff;
  font-weight: inherit;
}

/* Testimonials — matches Wix comp-lxb3f7eu parallax title + comp-lxb3ifhx slideshow */
.testimonials-section {
  position: relative;
  padding: 0;
  margin-top: -1px;
  z-index: 2;
}

.testimonials-title-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 318px;
  padding-top: 53px;
  background-color: #1e0848;
}

.testimonials-title-band .parallax-bg-media img {
  object-position: center center;
}

.testimonials-title-band.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(232, 230, 230, 0.08);
  z-index: 1;
  pointer-events: none;
}

.testimonials-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}

.testimonials-wave.wave-top svg {
  transform: scaleY(-1);
  display: block;
}

.testimonials-title-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 318px;
  padding: 143px 0 10px;
}

.testimonials-title {
  font-size: 40px;
  line-height: 1.4em;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

.testimonials-carousel {
  position: relative;
  width: 100%;
  min-height: 647px;
  background: #280064;
}

.testimonials-slides {
  position: relative;
  min-height: 647px;
  overflow: hidden;
}

.testimonials-track {
  position: relative;
  min-height: 647px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 647px;
  padding: 133px 80px 88px;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  pointer-events: none;
  z-index: 0;
}

.testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.testimonial-slide-inner {
  position: relative;
  width: min(615px, 100%);
  margin: 0 auto;
}

.testimonial-quote-mark {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 37px;
  height: 30px;
  color: #ffffff;
}

.testimonial-quote-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.4em;
  text-align: center;
  color: #ffffff;
  white-space: pre-line;
  margin: 0;
}

.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 64px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #ffffff;
}

.testimonials-nav svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.testimonials-nav--prev {
  left: 50px;
}

.testimonials-nav--next {
  right: 50px;
}

.testimonials-nav--next svg {
  transform: scaleX(-1);
}

.testimonials-nav:hover,
.testimonials-nav:focus-visible {
  opacity: 0.85;
  outline: none;
}

.testimonials-nav:focus-visible {
  box-shadow: 0 0 0 2px #ffffff;
}

.testimonials-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 4;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonials-dot.is-active {
  background: #ffffff;
  transform: scale(1.2);
}

.testimonials-dot:hover,
.testimonials-dot:focus-visible {
  background: rgba(255, 255, 255, 0.75);
  outline: none;
}

.testimonials-dot:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-slide {
    transition: none;
  }
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(40, 0, 100, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-purple-dark);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-coral);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-light-blue);
  color: var(--color-purple);
  font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-coral);
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--color-gray);
  line-height: 1.8;
}

/* Contact */
.contact-section {
  position: relative;
  padding: 0;
  margin-top: -1px;
  overflow: visible;
  text-align: center;
}

.contact-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  padding: calc(25px + clamp(3rem, 6vw, 5rem)) 0 clamp(4rem, 8vw, 7rem);
}

.contact-section h2 {
  color: #ffffff;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: left;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.contact-section .form-group label {
  color: rgba(255, 255, 255, 0.95);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-purple-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(40, 0, 100, 0.12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-purple);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 1rem;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  padding: 1rem;
  background: #ffebee;
  color: #b71c1c;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

.form-error.show {
  display: block;
}

.contact-form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--color-purple-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-social:hover,
.footer-social:focus-visible {
  opacity: 0.85;
  transform: scale(1.05);
  outline: none;
}

.footer-social svg {
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color var(--transition);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #ffffff;
  outline: none;
}

.site-footer p {
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  :root {
    --header-height: var(--header-top-height);
    --logo-width: min(424px, calc(100vw - 10rem));
    --logo-height: clamp(56px, 14vw, 86px);
    --header-top-height: calc(var(--logo-height) + 30px);
  }

  .header-top {
    padding: 15px 0 15px;
  }

  .header-nav-row {
    min-height: 0;
    border-top: none;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    gap: 0;
    box-shadow: var(--shadow);
    border-top: 1px solid rgba(40, 0, 100, 0.06);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

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

  .nav-link,
  .main-nav > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 400;
  }

  .nav-item.has-submenu > .nav-link {
    cursor: pointer;
  }

  .submenu {
    display: none;
    position: static;
    transform: none;
    left: auto;
    min-width: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 0;
  }

  .submenu::before {
    display: none;
  }

  .submenu a {
    text-align: left;
    padding: 0.75rem 0 0.75rem 1rem;
    font-weight: 300;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .submenu li:last-child a {
    border-bottom: none;
  }

  .nav-item.has-submenu:hover > .submenu {
    display: none;
  }

  .nav-item.has-submenu.open > .submenu {
    display: block;
  }

  .nav-item.has-submenu.open:hover > .submenu {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin: 0 auto;
  }

  .stronger-grid {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }

  .stronger-title h2 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

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

  .family-grid--close,
  .methods-grid--wide {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 2.5rem;
  }

  .methods-grid--wide {
    padding-top: 2rem;
  }

  .family-col--left,
  .family-col--right {
    padding-bottom: 0;
  }

  .methods-col--left,
  .methods-col--right {
    padding-left: 0;
  }

  .methods-col h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .services-title,
  .services-descubre-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .reflection-columns {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .reflection-col {
    min-height: 360px;
  }

  .reflection-quote {
    font-size: clamp(1.15rem, 4.5vw, 24px);
    max-width: min(310px, 88vw);
  }

  .reflection-closing {
    font-size: clamp(1.5rem, 5vw, 34px);
  }

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

  .hero {
    min-height: 420px;
  }

  .hero-content {
    padding-top: clamp(72px, 18vw, 138px);
    padding-bottom: 32px;
  }

  .page-hero h1 {
    font-size: clamp(32px, 8vw, 56px);
  }

  .hero h1.hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .hero h2.hero-headline {
    font-size: clamp(22px, 5.5vw, 30px);
  }
}

@media (max-width: 480px) {
  :root {
    --logo-width: min(424px, calc(100vw - 8.5rem));
    --logo-height: clamp(44px, 12vw, 64px);
    --header-top-height: calc(var(--logo-height) + 24px);
  }

  .lang-switcher-toggle {
    min-width: 132px;
    height: 34px;
    padding: 0 10px;
    font-size: 0.8125rem;
  }

  .lang-flag {
    width: 22px;
    height: 15px;
  }

  .testimonials-title-content {
    min-height: 260px;
    padding-top: 5rem;
  }

  .testimonials-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .testimonials-carousel,
  .testimonials-slides,
  .testimonial-slide {
    min-height: 520px;
  }

  .testimonial-slide {
    padding: 100px 3.5rem 5rem;
  }

  .testimonials-nav--prev {
    left: 12px;
  }

  .testimonials-nav--next {
    right: 12px;
  }

  .testimonials-nav {
    width: 24px;
    height: 48px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 3rem 1rem 1rem;
  }

  .cookie-banner__description {
    margin-right: 0;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }

  .cookie-settings__dialog {
    width: calc(100% - 2rem);
    max-height: calc(100vh - 2rem);
  }

  .cookie-settings__section {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cookie-toggle {
    align-self: flex-end;
  }
}

/* Cookie consent — matches Wix cookie banner + advanced settings modal */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483647;
  background: #000000;
  color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) -8px -7px 20px 0px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.cookie-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 64px;
  padding: 16px 56px 16px 20px;
}

.cookie-banner__description {
  margin: 0;
  line-height: 1.3;
  flex: 1 1 auto;
}

.cookie-banner__policy-link {
  color: #ffffff;
  text-decoration: underline;
  margin-left: 4px;
}

.cookie-banner__policy-link:hover,
.cookie-banner__policy-link:focus-visible {
  color: #ffffff;
  opacity: 0.85;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.cookie-banner__btn {
  min-width: 80px;
  height: 32px;
  padding: 0 16px;
  margin: 0 6px;
  border: 1px solid #ffffff;
  border-radius: 0;
  font: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cookie-banner__btn:hover,
.cookie-banner__btn:focus-visible {
  opacity: 0.85;
  outline: none;
}

.cookie-banner__btn--secondary {
  background: #000000;
  color: #ffffff;
}

.cookie-banner__btn--primary {
  background: #ffffff;
  color: #000000;
}

.cookie-banner__close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
}

.cookie-settings__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.cookie-settings__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, calc(100% - 2rem));
  max-height: 80vh;
  overflow: auto;
  background: #ffffff;
  color: #000000;
  box-shadow: rgba(0, 0, 0, 0.1) -8px -7px 20px 0px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.cookie-settings__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  color: #000000;
  cursor: pointer;
}

.cookie-settings__title {
  margin: 0;
  padding: 24px 24px 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
}

.cookie-settings__sections {
  padding: 8px 24px 0;
}

.cookie-settings__section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-settings__section:last-child {
  border-bottom: none;
}

.cookie-settings__section-copy {
  flex: 1 1 auto;
}

.cookie-settings__section-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
}

.cookie-settings__section-description {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.cookie-settings__footer {
  display: flex;
  justify-content: center;
  padding: 8px 24px 24px;
}

.cookie-settings__save {
  min-width: 172px;
  height: 32px;
  padding: 0 16px;
  margin: 6px;
  border: 1px solid #000000;
  border-radius: 0;
  background: #000000;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__track {
  position: relative;
  display: block;
  width: 48px;
  height: 24px;
  background: #d9d9d9;
  transition: background 0.2s ease;
}

.cookie-toggle__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle__track {
  background: #000000;
}

.cookie-toggle input:checked + .cookie-toggle__track .cookie-toggle__thumb {
  transform: translateX(24px);
}

.cookie-toggle--disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cookie-toggle--disabled .cookie-toggle__track {
  background: #000000;
}

body.cookie-banner-visible {
  padding-bottom: 64px;
}

body.cookie-settings-open {
  overflow: hidden;
}

