:root {
  --honey: #f3c21f;
  --honey-dark: #d4a815;
  --pastel: #fdf2c5;
  --white: #ffffff;
  --text-main: #4e4a45;
  --text-soft: #7b746e;
  --border-soft: #efd79f;
  --col-guide-width: min(1100px, 88%);
  --col-guide-thickness: 2.5px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

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

body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  color: var(--text-main);
  background: var(--white);
}

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

.container {
  width: min(1100px, 88%);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.logo {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: clamp(3.45rem, 3.9vw, 3.95rem);
  letter-spacing: -1px;
  line-height: 0.95;
}

.logo-light {
  display: block;
  flex-shrink: 0;
  width: clamp(128px, 8vw, 152px);
  height: clamp(34px, 2.8vw, 42px);
  margin-left: clamp(0px, 3vw, 2cm);
  line-height: 0;
  font-size: 0;
}

.logo-light img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.logo-dark {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  line-height: 0;
}

.logo-dark img {
  display: block;
  height: auto;
  width: 168px;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--honey);
  color: var(--white);
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.btn-pill:hover {
  background: var(--honey-dark);
  opacity: 0.96;
}

.btn-main {
  width: 300px;
  min-height: 30px;
  padding: 7px 14px;
  font-size: 10px;
  letter-spacing: 3.6px;
}

.btn-small {
  width: 124px;
  height: 24px;
  margin-top: auto;
  font-size: 9.5px;
  letter-spacing: 1.4px;
}

.topbar {
  background: var(--honey);
  min-height: 102px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 100;
  transform: translateZ(0);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: clamp(20px, 2vw, 32px);
}

.topbar .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(48px, 5vw, 100px);
  padding-right: clamp(48px, 5vw, 100px);
}

.main-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  width: min(1040px, calc(100% - 220px));
  margin-left: clamp(44px, 4.2vw, 88px);
  margin-right: auto;
  justify-content: space-between;
  min-width: 0;
  gap: clamp(38px, 3.4vw, 54px);
}

.main-nav a {
  position: relative;
  color: var(--white);
  font-size: clamp(15.5px, 1.08vw, 18px);
  font-weight: 500;
  letter-spacing: 2.4px;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 4px 0;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 2px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.hero {
  background: var(--white);
  padding: 58px 0 6px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: 14px;
  min-height: 315px;
}

.hero-media-placeholder {
  width: min(430px, 100%);
  height: 255px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-trail-image {
  position: absolute;
  left: -132px;
  top: -18px;
  width: 150px;
  height: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.hero-media-image {
  position: relative;
  width: 55%;
  height: auto;
  max-height: 55%;
  object-fit: contain;
  object-position: center;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0;
  color: var(--honey);
  font-family: "Solway", serif;
  font-weight: 400;
  font-size: clamp(2.85rem, 3.35vw, 3.65rem);
  line-height: 1.15;
  letter-spacing: 0.1px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

.hero-copy h1 .line-top {
  display: block;
  text-align: center;
}

.hero-copy h1 .line-bottom {
  display: block;
  text-align: center;
}

.claim {
  padding: 14px 0 38px;
}

.claim-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.claim p {
  margin: 0;
  color: #b4aea8;
  font-size: 14.6px;
  letter-spacing: 2.05px;
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}

.claim-wave-image {
  position: absolute;
  right: -6px;
  bottom: -18px;
  width: 100px;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}

.claim .btn-main {
  margin-top: 26px;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

.what-is {
  background: var(--honey);
  padding: 42px 0;
}

.what-is .container {
  position: relative;
}

.what-is h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Solway", serif;
  font-size: clamp(2rem, 3vw, 2.15rem);
}

.what-is p {
  margin: 0;
  max-width: 900px;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.6;
}

.dotted-right {
  position: absolute;
  right: 4px;
  top: 14px;
  width: 110px;
  height: 120px;
  border: 2px dashed rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.72) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(84deg);
}

.cards {
  padding: 62px 0;
}

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

.card {
  position: relative;
  background: var(--pastel);
  border-radius: 30px;
  min-height: 246px;
  padding: 56px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hex {
  position: absolute;
  left: -26px;
  top: -18px;
  width: 70px;
  height: 62px;
  pointer-events: none;
}

span.hex {
  background-image: url("./hex-card.png?v=3");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

img.hex {
  display: block;
  object-fit: contain;
  z-index: 2;
}

.card h3 {
  margin: 0;
  font-size: 22px;
  font-family: "Solway", serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-main);
}

.card h3 strong {
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--text-main);
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.85px;
  line-height: 1.56;
}

.card p strong {
  font-weight: 700;
}

.card .btn-small {
  width: 82%;
  height: 38px;
  font-size: 11.8px;
  letter-spacing: 3px;
  font-weight: 700;
  align-self: center;
  margin-top: auto;
  margin-bottom: 0;
}

.emotional {
  padding: 26px 0 60px;
}

.emotional h2 {
  margin: 0 0 24px;
  color: var(--honey);
  font-family: "Solway", serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 2.3rem);
  line-height: 1.28;
  letter-spacing: 0.1px;
}

.emotional-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.emotional-cta .btn-main {
  font-size: 12.2px;
}

.emotional-bee-image {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin-left: 8px;
  transform: translateY(4px);
}

.newsletter,
footer .footer-main,
footer .footer-legal {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

body.page-home,
body.page-sobre,
body.page-families,
body.page-espais,
body.page-professionals,
body.page-contacte {
  overflow-x: clip;
}

body.page-home main,
body.page-sobre main,
body.page-families main,
body.page-espais main,
body.page-professionals main,
body.page-contacte main {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

/* ——— Pàgina Home (hero com Professionals) ——— */

body.page-home {
  --home-gutter: clamp(20px, 3.2vw, 56px);
  --home-content-pad: clamp(116px, calc(5vw + 2cm), 164px);
  --home-text-start: calc(var(--home-gutter) + var(--home-content-pad));
  --home-inner-w: min(1180px, 94vw);
  --home-copy-col: min(1120px, 100%);
}

.page-home .home-hero {
  padding: clamp(24px, 3vw, 44px) 0 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.page-home .home-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: var(--home-inner-w);
  margin-left: var(--home-gutter);
  margin-right: auto;
}

.page-home .home-hero-inner .home-copy-rail {
  width: 100%;
  margin: 0;
  padding-left: var(--home-content-pad);
  box-sizing: border-box;
}

.page-home .families-what-band .container.home-copy-rail {
  width: var(--home-inner-w);
  margin-left: var(--home-gutter);
  margin-right: auto;
  padding-left: var(--home-content-pad);
  box-sizing: border-box;
}

.page-home .home-copy-col,
.page-home .home-claim-line {
  display: block;
  width: 100%;
  max-width: var(--home-copy-col);
}

.page-home .home-hero .hero-grid.home-hero-grid {
  --home-hero-row-h: clamp(340px, 38vw, 400px);
  min-height: var(--home-hero-row-h);
  height: auto;
  max-height: none;
  grid-template-columns: minmax(0, 58%) minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 56px);
  padding-bottom: clamp(16px, 2.5vw, 32px);
  align-items: center;
}

.page-home .home-hero .home-hero-grid > .home-hero-media,
.page-home .home-hero .home-hero-grid > .home-hero-copy {
  min-height: 0;
  align-self: center;
}

.page-home .home-hero-media.hero-media-placeholder {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 330px;
  margin-left: 0;
  overflow: visible;
  justify-content: flex-start;
  align-items: center;
}

.page-home .home-hero-media .hero-trail-image {
  left: 0;
  width: clamp(94px, 6.8vw, 118px);
  top: calc(clamp(123px, 8.6vw, 155px) - 2cm);
  height: auto;
  z-index: 3;
}

.page-home .home-hero-illus-clip {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: min(400px, 100%);
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.page-home .home-hero-illus-image {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  max-width: min(100%, 420px);
  height: clamp(220px, 32vw, 330px);
  max-height: 330px;
  margin-left: clamp(0px, 6vw, 96px);
  object-fit: contain;
  object-position: left center;
  transform: none;
  transform-origin: left center;
}

.page-home .home-hero .home-hero-grid > .home-hero-media {
  z-index: 1;
  overflow: visible;
}

.page-home .home-hero .home-hero-grid > .home-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-left: clamp(72px, 8.5vw, 136px);
  padding-bottom: clamp(8px, 1.5vw, 20px);
}

.page-home .home-hero-copy h1.home-hero-heading {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: clamp(12px, 2vw, 32px) 0 0 clamp(0px, 5vw, 76px);
  text-align: left;
  font-size: clamp(2.1rem, 4.2vw, 4.05rem);
  line-height: 1.12;
}

.page-home .home-hero-copy h1 .line-top,
.page-home .home-hero-copy h1 .line-bottom {
  display: block;
  text-align: left;
  white-space: normal;
}

.page-home .home-hero-copy h1 .line-bottom {
  margin-top: 0.06em;
  margin-left: 0;
}

@media (min-width: 1280px) {
  .page-home .home-hero-copy h1 .line-top,
  .page-home .home-hero-copy h1 .line-bottom {
    white-space: nowrap;
  }

  .page-home .home-hero-copy h1 .line-bottom {
    margin-left: clamp(-48px, -4vw, -76px);
  }
}

.page-home .home-hero .claim.home-hero-claim {
  position: relative;
  z-index: 2;
  margin-top: clamp(8px, 1.5vw, 20px);
  padding: clamp(20px, 3vw, 36px) 0 clamp(18px, 2.2vw, 30px);
}

.page-home .home-claim-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: clamp(16px, 2.8vw, 32px);
  padding-left: 0;
}

.page-home .home-claim-line {
  margin: 0;
  position: relative;
}

.page-home .home-claim-line p {
  margin: 0;
  padding-bottom: clamp(14px, 2vw, 22px);
  max-width: 100%;
  width: max-content;
  anchor-name: --home-claim-text;
  text-align: left;
  color: #000;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(22.5px, 2.35vw, 29px);
  font-weight: 300;
  letter-spacing: 2.5px;
  line-height: 1.46;
  text-transform: uppercase;
}

@media (min-width: 1280px) {
  .page-home .home-claim-line p {
    white-space: nowrap;
  }
}

.page-home .home-claim-wavy-wrap {
  position: relative;
  display: inline;
  vertical-align: baseline;
  white-space: nowrap;
}

.page-home .home-claim-wavy-text {
  display: inline;
  vertical-align: baseline;
}

.page-home .home-claim-wavy-wrap .home-claim-wave-image {
  position: absolute;
  left: 50%;
  top: 100%;
  right: auto;
  bottom: auto;
  width: 146px;
  max-width: 146px;
  height: auto;
  margin-top: 0.1em;
  display: block;
  opacity: 0.9;
  pointer-events: none;
  transform: translateX(-50%);
}

.page-home .home-hero-claim .btn-main {
  align-self: flex-start;
  margin: 0;
  width: auto;
  min-width: min(380px, 100%);
  max-width: 100%;
  min-height: 52px;
  padding: 14px clamp(24px, 5vw, 56px);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 3.4px;
  line-height: 1.15;
  white-space: normal;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1100px) {
  body.page-home {
    --home-content-pad: clamp(20px, 4vw, 64px);
  }

  .page-home .home-hero .hero-grid.home-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
    padding-bottom: 0;
  }

  .page-home .home-hero-media.hero-media-placeholder {
    margin-inline: auto;
    min-height: min(280px, 48vw);
    width: min(100%, 94vw);
  }

  .page-home .home-hero-illus-clip {
    min-width: 0;
    justify-content: center;
  }

  .page-home .home-hero-illus-image {
    height: min(280px, 68vw);
    max-height: min(280px, 68vw);
    margin-inline: auto;
    margin-left: auto;
    transform: none;
    transform-origin: center center;
    object-position: center center;
  }

  .page-home .home-hero-media .hero-trail-image {
    left: clamp(-72px, -8vw, -48px);
    top: calc(clamp(48px, 10vw, 88px) - clamp(24px, 4vw, 48px));
  }

  .page-home .home-hero-copy {
    padding-left: 0;
  }

  .page-home .home-hero-copy h1.home-hero-heading {
    margin-left: 0;
    text-align: center;
    font-size: clamp(2.1rem, 7.2vw, 2.9rem);
  }

  .page-home .home-hero-copy h1 .line-top,
  .page-home .home-hero-copy h1 .line-bottom {
    text-align: center;
    white-space: normal;
  }

  .page-home .home-hero-copy h1 .line-bottom {
    margin-left: 0;
  }

  .page-home .home-claim-wrap {
    align-items: center;
    padding-left: clamp(18px, 5vw, 32px);
    padding-right: clamp(18px, 5vw, 32px);
  }

  .page-home .home-claim-line {
    text-align: center;
  }

  .page-home .home-claim-line p {
    white-space: normal;
    width: 100%;
    text-align: center;
    margin-inline: auto;
    font-size: clamp(18px, 4.2vw, 24px);
  }

  .page-home .home-claim-wavy-wrap .home-claim-wave-image {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-home .home-hero-claim .btn-main {
    align-self: center;
    margin-inline: auto;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 980px) {
  .page-home .home-hero-inner {
    margin-left: clamp(16px, 4vw, 32px);
    width: min(1100px, 92vw);
  }

  .page-home .home-hero .hero-grid.home-hero-grid {
    min-height: min(320px, 48vw);
  }

  .page-home .home-hero-media.hero-media-placeholder {
    min-height: min(280px, 42vw);
  }

  .page-home .home-hero-illus-image {
    height: min(330px, 42vw);
    max-height: min(330px, 42vw);
    transform: none;
  }

  .page-home .home-claim-line p {
    white-space: normal;
    width: 100%;
  }
}

.page-home .families-what-band {
  padding: 28px 0 32px;
  min-height: 120px;
  margin-top: clamp(16px, 2vw, 28px);
  position: relative;
  overflow: hidden;
}

.page-home .families-what-band .container {
  position: static;
  min-height: 0;
}

.page-home .families-what-band .home-copy-col {
  position: relative;
  z-index: 2;
}

.page-home .families-what-band .families-what-trail-clip {
  position: absolute;
  right: clamp(-8px, -0.8vw, 4px);
  top: 50%;
  transform: translateY(calc(-50% - clamp(4px, 0.55vw, 10px)));
  width: min(28%, 196px);
  height: clamp(104px, 12.5vw, 136px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.page-home .families-what-band .families-what-trail {
  position: absolute;
  right: clamp(-52px, -4.5vw, -18px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(128px, 15.5vw, 178px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: 100% 50%;
  pointer-events: none;
}

.page-home .families-what-band h2 {
  margin: 0 0 clamp(14px, 1.8vw, 20px);
  color: var(--white);
  font-family: "Solway", serif;
  font-weight: 400;
  font-size: clamp(2.55rem, 3.8vw, 3rem);
  line-height: 1.08;
}

.page-home .families-what-band h2 .families-what-h2-light {
  font-weight: 300;
}

body.page-home main section.what-is.families-what-band .home-copy-col > p {
  margin: 0;
  width: 100%;
  max-width: none;
  min-width: 100%;
  color: #000;
  font-size: clamp(21.5px, 2.05vw, 24px);
  line-height: 1.56;
  font-weight: 400;
  box-sizing: border-box;
}

@supports (width: anchor-size(width)) {
  body.page-home .families-what-band .home-copy-col {
    position-anchor: --home-claim-text;
    width: anchor-size(width);
    max-width: anchor-size(width);
  }

  body.page-home main section.what-is.families-what-band .home-copy-col > p {
    width: 100%;
    max-width: 100%;
  }
}

.page-home .families-what-band p strong {
  font-weight: 700;
}

.page-home .families-what-band p .families-what-line1,
.page-home .families-what-band p .families-what-line2,
.page-home .families-what-band p .families-what-line3 {
  display: block;
  width: 100%;
  max-width: 100%;
}

.page-home .families-what-band p .families-what-line2,
.page-home .families-what-band p .families-what-line3 {
  margin-top: 0.12em;
}

@media (min-width: 1100px) {
  .page-home .families-what-band p .families-what-line1,
  .page-home .families-what-band p .families-what-line2,
  .page-home .families-what-band p .families-what-line3 {
    white-space: nowrap;
  }
}

@media (min-width: 981px) {
  .page-home section.cards {
    padding: 64px 0 88px;
  }

  .page-home section.cards .container.cards-grid {
    width: min(1320px, 94vw);
    gap: 44px;
  }

  .page-home section.cards .card {
    min-height: 320px;
    padding: 72px 42px 36px;
    border-radius: 34px;
    gap: 10px;
  }

  .page-home section.cards .card .hex {
    width: 88px;
    height: 76px;
    left: -30px;
    top: -22px;
  }

  .page-home section.cards .card h3 {
    font-size: 28px;
  }

  .page-home section.cards .card p {
    margin-top: 12px;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.38;
  }

  .page-home section.cards .card .btn-small {
    width: 88%;
    height: 46px;
    font-size: 14.2px;
    letter-spacing: 3.2px;
  }
}

.page-home .emotional {
  padding: 34px 0 52px;
}

.page-home .emotional h2 {
  margin: 0 0 28px;
  font-size: clamp(2.55rem, 4.35vw, 3rem);
  line-height: 1.2;
  transform: translateY(-1cm);
}

.page-home .emotional-cta .btn-main {
  width: 340px;
  min-height: 38px;
  padding: 10px 20px;
  font-size: 13.2px;
  letter-spacing: 3.8px;
}

.page-home .emotional-bee-image {
  margin-left: 18px;
  transform: translateY(-22px) translateX(14px);
}

@media (max-width: 720px) {
  .page-home .emotional h2 {
    font-size: clamp(2.1rem, 6.4vw, 2.55rem);
    line-height: 1.22;
    margin-bottom: 24px;
  }

  .page-home .families-what-band .families-what-trail-clip {
    width: min(34%, 148px);
    height: clamp(88px, 22vw, 118px);
    right: clamp(-6px, -1vw, 8px);
  }

  .page-home .families-what-band .families-what-trail {
    width: clamp(108px, 32vw, 148px);
    right: clamp(-28px, -5vw, -6px);
    opacity: 0.95;
  }

  .page-home .families-what-band .container.home-copy-rail {
    margin-left: clamp(16px, 4vw, 32px);
    width: min(1100px, 92vw);
  }

  .page-home .families-what-band p .families-what-line1,
  .page-home .families-what-band p .families-what-line2,
  .page-home .families-what-band p .families-what-line3 {
    white-space: normal;
  }
}

.newsletter {
  background: var(--honey);
  padding: 58px 0 64px;
}

.newsletter h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Solway", serif;
  font-size: clamp(2.2rem, 3.1vw, 3.2rem);
  font-weight: 300;
  line-height: 1.08;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.newsletter .subtitle {
  margin: 1cm auto 22px;
  max-width: none;
  color: #5f5a54;
  font-size: 19px;
  line-height: 1.5;
  text-align: center;
}

.newsletter .subtitle .subtitle-line {
  display: block;
}

.newsletter .subtitle .subtitle-line-first {
  white-space: nowrap;
}

.newsletter .subtitle .subtitle-line-second {
  margin-top: 0.55em;
  line-height: 1.5;
}

.newsletter-stack {
  --newsletter-field: 320px;
  --newsletter-inner-gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.newsletter-form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--newsletter-inner-gap);
  margin-bottom: 28px;
  width: 100%;
}

.newsletter-form input {
  height: 38px;
  border: none;
  border-radius: 999px;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  color: var(--honey);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0 14px;
  box-sizing: border-box;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: var(--newsletter-field);
  flex: 0 0 var(--newsletter-field);
}

.newsletter-form input::placeholder {
  color: var(--honey);
  font-weight: 600;
  opacity: 1;
}

.newsletter-form input:focus {
  outline: 2px solid rgba(217, 170, 46, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.mail-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 61px;
  margin-left: 1cm;
}

.mail-icon img {
  height: 36px;
  width: auto;
  max-width: 61px;
  object-fit: contain;
  display: block;
}

.checks {
  margin: 0;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.checks label {
  display: block;
  color: rgba(107, 98, 88, 0.96);
  font-size: 19px;
  line-height: 1.45;
  margin-bottom: 9px;
}

.checks input {
  accent-color: var(--white);
  width: 16px;
  height: 16px;
  margin: 0 14px 0 2px;
  vertical-align: middle;
  transform: scale(1.75);
  transform-origin: left center;
}

.legal-text {
  width: 100%;
  margin: 20px 0 0;
  padding: 0;
  color: rgba(107, 98, 88, 0.92);
  font-size: 16px;
  line-height: 1.45;
  text-align: justify;
  text-justify: inter-word;
  box-sizing: border-box;
}

.legal-text .legal-line {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: visible;
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-word;
  line-height: inherit;
}

.legal-text .legal-line::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
  line-height: 0;
  vertical-align: top;
}

.legal-text .legal-line + .legal-line {
  margin-top: 0.42em;
}

.footer-main {
  position: relative;
  background: var(--white);
  border-top: var(--col-guide-thickness) solid var(--honey);
  padding: clamp(36px, 4.5vw, 48px) 0;
  margin-top: 1cm;
}

.footer-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(var(--honey), var(--honey))
      calc(100% / 3 - var(--col-guide-thickness) / 2) 0 / var(--col-guide-thickness) 100% no-repeat,
    linear-gradient(var(--honey), var(--honey))
      calc(200% / 3 - var(--col-guide-thickness) / 2) 0 / var(--col-guide-thickness) 100% no-repeat;
}

.footer-grid {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

@media (min-width: 841px) {
  .footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .footer-grid {
    display: contents;
  }

  .footer-col {
    min-width: 0;
    position: relative;
    z-index: 2;
    align-self: center;
  }

  .footer-col:not(:first-child) {
    border-left: none;
  }
}

.footer-col {
  padding: 10px clamp(18px, 2.4vw, 32px);
  font-family: "Quicksand", sans-serif;
}

.footer-col.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding-left: clamp(12px, 2vw, 28px);
  padding-right: clamp(12px, 2vw, 28px);
}

.footer-col.left .logo-dark {
  display: flex;
  justify-content: center;
  line-height: 0;
}

.footer-col.left .logo-dark img {
  display: block;
  width: min(210px, 78%);
  height: auto;
  max-height: none;
  object-fit: contain;
}

.honeycomb {
  margin-top: clamp(14px, 2vw, 18px);
  line-height: 0;
}

.honeycomb img {
  display: block;
  width: clamp(118px, 11vw, 136px);
  height: auto;
  margin-inline: auto;
}

.footer-col.middle,
.footer-col.right {
  padding-left: clamp(36px, 4.2vw, 56px);
  padding-right: clamp(14px, 2vw, 24px);
}

.footer-col.middle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.38em;
}

.footer-col.right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.middle a,
.footer-col.right p {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
}

.footer-col.right p strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-col.right p:nth-child(1) {
  margin-bottom: 0.72em;
  text-transform: none;
  letter-spacing: 0.02em;
}

.footer-col.right p:nth-child(2) {
  margin-bottom: 1.38em;
}

.footer-col.right p:nth-child(3) {
  margin-bottom: 1.38em;
  text-transform: none;
  letter-spacing: 0.04em;
}

.footer-col.right p:nth-child(4) {
  margin-bottom: 1.38em;
}

.footer-col.right p:nth-child(5) {
  text-transform: none;
  letter-spacing: 0.04em;
}

.footer-legal {
  border-top: var(--col-guide-thickness) solid var(--honey);
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-soft);
  letter-spacing: 0.55px;
  line-height: 1.5;
  padding: clamp(14px, 2vw, 18px) min(4vw, 40px);
}

.footer-legal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  max-width: var(--col-guide-width);
  margin-inline: auto;
}

.footer-legal-row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3.4vw, 40px);
  row-gap: 0.4em;
}

.footer-legal-item {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .claim p {
    font-size: 13.6px;
    letter-spacing: 1.75px;
  }
}

@media (max-width: 980px) {
  .hero-copy h1 {
    font-size: clamp(2.55rem, 4.2vw, 3.2rem);
  }

  .claim p {
    font-size: 12.8px;
    letter-spacing: 1.45px;
  }

  .cards-grid {
    gap: 18px;
  }

  .card {
    min-height: 230px;
    padding: 50px 24px 22px;
  }

  .card h3 {
    font-size: 21px;
  }

  .card p {
    font-size: 11px;
    letter-spacing: 0.6px;
    line-height: 1.48;
  }

  .card .btn-small {
    width: 86%;
    height: 34px;
    font-size: 11px;
    letter-spacing: 2.6px;
  }

  .page-home section.cards .container.cards-grid {
    width: min(1180px, 94vw);
    gap: 28px;
  }

  .page-home section.cards .card {
    min-height: 300px;
    padding: 64px 32px 28px;
  }

  .page-home section.cards .card h3 {
    font-size: 25px;
  }

  .page-home section.cards .card p {
    margin-top: 10px;
    font-size: 13px;
  }

  .footer-col {
    padding: 8px 18px;
  }
}

@media (max-width: 900px) {
  .claim-line {
    flex-direction: column;
    gap: 5px;
  }

  .claim p {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .claim .btn-main {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 840px) {
  .topbar {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .logo-light {
    width: 140px;
    height: 44px;
    margin-left: 0;
  }

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

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--honey);
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px 0 18px;
    margin-left: 0;
    min-width: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    z-index: 20;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    gap: 22px;
  }

  .hero-media-placeholder {
    margin: 0 auto;
    width: min(320px, 86vw);
    height: 170px;
  }

  .hero-trail-image {
    left: -90px;
    top: -12px;
    width: 112px;
  }

  .hero-copy h1 {
    text-align: center;
    font-size: clamp(2.1rem, 7.2vw, 2.9rem);
    line-height: 1.14;
  }

  .hero-copy h1 .line-bottom {
    text-align: center;
  }

  .emotional-bee-image {
    width: 110px;
    margin-left: 4px;
    transform: translateY(2px);
  }

  .claim {
    padding-top: 20px;
  }

  .claim p {
    font-size: 12px;
    letter-spacing: 1.25px;
  }

  .claim-wave-image {
    width: 78px;
    bottom: -14px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .card {
    width: min(90%, 360px);
    min-height: auto;
    padding: 50px 24px 22px;
  }

  .page-home section.cards .card {
    width: min(94%, 420px);
    min-height: 280px;
    padding: 58px 28px 26px;
  }

  .hex {
    left: -18px;
    width: 58px;
    height: 52px;
  }

  .card h3 {
    font-size: 30px;
  }

  .card p {
    font-size: 11px;
    line-height: 1.48;
  }

  .card .btn-small {
    width: 78%;
    height: 36px;
    font-size: 11px;
    letter-spacing: 2.2px;
  }

  .newsletter-stack {
    width: 100%;
    align-items: stretch;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input[type="text"],
  .newsletter-form input[type="email"] {
    width: min(320px, 100%);
    flex: 1 1 auto;
  }

  .newsletter h2 {
    white-space: normal;
  }

  .newsletter .subtitle .subtitle-line-first {
    white-space: normal;
  }

  .legal-text .legal-line {
    white-space: normal;
    text-align: left;
    text-align-last: auto;
  }

  .legal-text .legal-line::after {
    content: none;
  }

  .legal-text .legal-line + .legal-line {
    margin-top: 0.35em;
  }

  .mail-icon {
    display: none;
  }

  .footer-main {
    display: block;
    margin-top: 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .footer-main::before {
    display: none;
  }

  .footer-col:not(:first-child) {
    border-left: none;
    border-top: var(--col-guide-thickness) solid var(--honey);
    padding-top: 16px;
    margin-top: 8px;
  }

  .footer-col:first-child {
    padding-bottom: 4px;
  }

  .footer-col.left {
    margin-left: 0;
  }

  .footer-col.middle,
  .footer-col.right {
    align-items: center;
    padding-left: clamp(18px, 5vw, 32px);
    padding-right: clamp(18px, 5vw, 32px);
  }

  .footer-grid {
    width: 100%;
    max-width: 100%;
  }

  .footer-legal-inner {
    max-width: 100%;
  }

  .middle a,
  .footer-col.right p {
    font-size: clamp(15px, 4vw, 19px);
  }

  .footer-legal {
    font-size: clamp(9px, 2.4vw, 10px);
  }
}

@media (max-width: 540px) {
  .btn-main {
    width: min(305px, 88vw);
  }

  .claim p {
    font-size: 12px;
    letter-spacing: 1.1px;
  }
}

/* ——— Pàgina Sobre Bresca ——— */

.about-page-main {
  background: var(--white);
  padding-top: 55px;
  overflow-x: clip;
}

.about-page-inner {
  --about-content-max: 1360px;
  --about-side-gap: max(16px, calc((100vw - var(--about-content-max)) / 2));
  display: grid;
  grid-template-columns: minmax(300px, 44%) 1fr;
  column-gap: clamp(24px, 4vw, 56px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 48px;
}

.about-left-column {
  grid-column: 1;
  padding-left: var(--about-side-gap);
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.about-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.about-manifest {
  margin: clamp(20px, 3vw, 32px) 0 0;
  padding-right: clamp(8px, 2vw, 24px);
  color: var(--honey);
  font-family: "Solway", serif;
  font-size: clamp(1.38rem, 2.1vw, 1.68rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.about-manifest strong {
  font-weight: 700;
  color: var(--honey);
}

.about-right-column {
  grid-column: 2;
  position: relative;
  padding: clamp(28px, 4vh, 52px) var(--about-side-gap) clamp(32px, 4vh, 56px) 0;
  min-width: 0;
}

.about-right-column h1 {
  margin: 0 0 22px;
  color: var(--honey);
  font-family: "Solway", serif;
  font-weight: 400;
  font-size: clamp(2.55rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0.1px;
}

.about-right-column h1 .about-title-name {
  font-weight: 700;
}

.about-intro-text {
  max-width: none;
}

.about-intro-text p {
  margin: 0 0 1em;
  color: var(--text-main);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(21.5px, 2.05vw, 24px);
  line-height: 1.56;
  font-weight: 400;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

.about-intro-text strong {
  font-weight: 700;
}

.about-intro-text strong:not(.about-hero-closing) {
  color: inherit;
}

.about-name-bold {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: #111111;
}

.about-intro-dues-nenes {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  line-height: inherit;
}

.about-intro-dues-nenes strong {
  font-weight: 700;
}

.about-intro-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.42em;
  top: 100%;
  margin-top: -0.44em;
  display: block;
  pointer-events: none;
  overflow: visible;
}

.about-hero-closing {
  color: var(--honey);
  font-weight: 700;
}

.about-story-block {
  position: relative;
  margin-top: clamp(32px, 5vw, 52px);
}

.about-reality-block {
  margin-top: clamp(32px, 5vw, 48px);
}

.about-story-block h2,
.about-reality-block h2 {
  margin: 0 0 18px;
  color: var(--honey);
  font-family: "Solway", serif;
  font-weight: 400;
  font-size: clamp(2.55rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0.1px;
}

.about-body {
  margin: 0 0 0.85em;
  color: var(--text-main);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.62;
  font-weight: 500;
  max-width: none;
}

.about-list {
  margin: 0 0 1em;
  padding-left: 1.15em;
  color: var(--text-main);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.62;
  font-weight: 500;
}

.about-list li {
  margin-bottom: 0.45em;
}

.about-list li:last-child {
  margin-bottom: 0;
}

.about-name-gold {
  color: var(--honey);
  font-weight: 700;
}

.about-welcome-btn {
  width: 270px;
  min-height: 30px;
  font-size: 10px;
  letter-spacing: 3.6px;
}

.about-cta-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px) var(--about-side-gap) 0;
}

.about-dotted-side {
  position: absolute;
  right: clamp(0px, 2vw, 32px);
  top: 8%;
  width: 110px;
  height: 130px;
  border: 2px dashed var(--honey);
  border-color: var(--honey) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(-72deg);
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width: 980px) {
  .about-page-inner {
    --about-content-max: 100%;
    --about-side-gap: clamp(16px, 3vw, 28px);
    grid-template-columns: 40% 1fr;
    column-gap: clamp(16px, 3vw, 32px);
  }

  .about-right-column {
    padding-top: 24px;
  }
}

@media (max-width: 720px) {
  .about-page-inner {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .about-left-column {
    padding-right: var(--about-side-gap);
    max-width: 480px;
  }

  .about-right-column {
    padding: 28px var(--about-side-gap) 0;
  }

  .about-manifest {
    padding-right: 0;
  }

  .about-dotted-side {
    display: none;
  }
}

/* ——— Pàgina Famílies ——— */

body.page-families {
  --home-gutter: clamp(20px, 3.2vw, 56px);
  --home-content-pad: clamp(116px, calc(5vw + 2cm), 164px);
  --home-text-start: calc(var(--home-gutter) + var(--home-content-pad));
  --home-inner-w: min(1180px, 94vw);
  --home-copy-col: min(1120px, 100%);
  --families-hero-illus-h: clamp(460px, 50vw, 540px);
}

.page-families .families-hero {
  padding: clamp(12px, 1.8vw, 24px) 0 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.page-families .families-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: var(--home-inner-w);
  margin-left: var(--home-gutter);
  margin-right: auto;
}

.page-families .families-hero .hero-grid.families-hero-grid {
  --families-hero-row-h: clamp(380px, 42vw, 450px);
  min-height: var(--families-hero-row-h);
  height: auto;
  max-height: none;
  grid-template-columns: minmax(0, 58%) minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 56px);
  padding-bottom: clamp(16px, 2.5vw, 32px);
  align-items: center;
}

.page-families .families-hero .families-hero-grid > .families-hero-media,
.page-families .families-hero .families-hero-grid > .families-hero-copy {
  min-height: 0;
  align-self: center;
}

.page-families .families-hero-media.hero-media-placeholder {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: var(--families-hero-illus-h);
  margin-left: 0;
  overflow: visible;
  justify-content: flex-start;
  align-items: center;
}

.page-families .families-hero-media .hero-trail-image {
  left: 0;
  width: clamp(94px, 6.8vw, 118px);
  top: calc(clamp(123px, 8.6vw, 155px) + 1cm);
  height: auto;
  z-index: 3;
}

.page-families .families-hero-illus-clip {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: min(420px, 100%);
  max-width: 100%;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.page-families .families-hero-illus-image {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  max-width: calc(100% + 6rem);
  height: var(--families-hero-illus-h);
  max-height: var(--families-hero-illus-h);
  margin-left: clamp(2cm, 2.8vw, 3.2cm);
  object-fit: contain;
  object-position: left center;
  transform: scale(1.3);
  transform-origin: left center;
  clip-path: none;
  -webkit-clip-path: none;
}

.page-families .families-hero .families-hero-grid > .families-hero-media {
  z-index: 1;
  overflow: visible;
}

.page-families .families-hero .families-hero-grid > .families-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-left: clamp(72px, 8.5vw, 136px);
  padding-bottom: clamp(8px, 1.5vw, 20px);
}

.page-families .families-hero-copy h1.families-hero-heading {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 2cm 0 0 2cm;
  text-align: left;
  font-size: clamp(3.05rem, 3.75vw, 4.05rem);
  line-height: 1.12;
}

.page-families .families-hero-copy h1 .line-top,
.page-families .families-hero-copy h1 .line-bottom {
  display: block;
  text-align: left;
  white-space: nowrap;
}

.page-families .families-hero-copy h1 .line-top {
  margin-left: 1.2cm;
}

.page-families .families-hero-copy h1 .line-bottom {
  margin-top: 0.06em;
  margin-left: 0.5cm;
}

.page-families .families-hero .claim.families-hero-claim {
  position: relative;
  z-index: 2;
  margin-top: clamp(2px, 0.6vw, 10px);
  padding: clamp(8px, 1.4vw, 18px) 0 clamp(8px, 1.2vw, 16px);
}

.page-families .families-hero-claim .families-hero-claim-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: clamp(16px, 2.8vw, 32px);
  padding-left: var(--home-content-pad);
  box-sizing: border-box;
}

.page-families .families-hero-claim .families-hero-claim-line {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: min(1120px, 100%);
}

.page-families .families-hero-claim .families-hero-claim-line p {
  margin: 0;
  padding-bottom: clamp(14px, 2vw, 22px);
  max-width: 100%;
  width: max-content;
  text-align: left;
  color: #000;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(22.5px, 2.35vw, 29px);
  font-weight: 300;
  letter-spacing: 2.5px;
  line-height: 1.46;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .page-families .families-hero-claim .families-hero-claim-line p {
    white-space: nowrap;
  }
}

.page-families .families-hero-claim .families-claim-wavy-wrap {
  position: relative;
  display: inline;
  vertical-align: baseline;
  white-space: nowrap;
}

.page-families .families-hero-claim .families-claim-wavy-text {
  display: inline;
  vertical-align: baseline;
}

.page-families .families-hero-claim .families-hero-claim-wave-inline {
  position: absolute;
  left: 50%;
  top: 100%;
  right: auto;
  bottom: auto;
  width: 146px;
  max-width: 146px;
  height: auto;
  margin-top: 0.1em;
  display: block;
  opacity: 0.9;
  pointer-events: none;
  transform: translateX(-50%);
}

.page-families .families-hero-claim .btn-main {
  align-self: flex-start;
  margin: 0;
  width: auto;
  min-width: 380px;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 56px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 3.4px;
  line-height: 1.15;
  white-space: nowrap;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1100px) {
  .page-families .families-hero-copy h1 .line-top,
  .page-families .families-hero-copy h1 .line-bottom {
    white-space: normal;
  }
}

.page-families .families-what-band {
  padding: 28px 0 32px;
  min-height: 120px;
  margin-top: clamp(16px, 2vw, 28px);
  position: relative;
  overflow: hidden;
}

.page-families .families-what-band .container {
  position: static;
  min-height: 0;
}

.page-families .families-what-band .container.home-copy-rail {
  width: var(--home-inner-w);
  margin-left: var(--home-gutter);
  margin-right: auto;
  padding-left: var(--home-content-pad);
  box-sizing: border-box;
}

.page-families .families-what-band .home-copy-col {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: var(--home-copy-col);
}

.page-families .families-what-band .families-what-trail-clip {
  position: absolute;
  right: clamp(-8px, -0.8vw, 4px);
  top: 50%;
  transform: translateY(calc(-50% - clamp(4px, 0.55vw, 10px)));
  width: min(28%, 196px);
  height: clamp(104px, 12.5vw, 136px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.page-families .families-what-band .families-what-trail {
  position: absolute;
  right: clamp(-52px, -4.5vw, -18px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(128px, 15.5vw, 178px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: 100% 50%;
  pointer-events: none;
}

@media (max-width: 720px) {
  .page-families .families-what-band .families-what-trail-clip {
    width: min(34%, 148px);
    height: clamp(88px, 22vw, 118px);
    right: clamp(-6px, -1vw, 8px);
  }

  .page-families .families-what-band .families-what-trail {
    width: clamp(108px, 32vw, 148px);
    right: clamp(-28px, -5vw, -6px);
    opacity: 0.95;
  }

  .page-families .families-what-band .container.home-copy-rail {
    margin-left: clamp(16px, 4vw, 32px);
    width: min(1100px, 92vw);
  }

  .page-families .families-what-band p .families-what-line1,
  .page-families .families-what-band p .families-what-line2 {
    white-space: normal;
  }
}

.page-families .families-what-band h2 {
  margin: 0 0 clamp(14px, 1.8vw, 20px);
  color: var(--white);
  font-family: "Solway", serif;
  font-weight: 400;
  font-size: clamp(2.55rem, 3.8vw, 3rem);
  line-height: 1.08;
}

.page-families .families-what-band h2 .families-what-h2-light {
  font-weight: 300;
}

body.page-families main section.what-is.families-what-band .home-copy-col > p {
  margin: 0;
  width: 100%;
  max-width: none;
  min-width: 100%;
  color: #000;
  font-size: clamp(21.5px, 2.05vw, 24px);
  line-height: 1.56;
  font-weight: 400;
  box-sizing: border-box;
}

.page-families .families-what-band p strong {
  font-weight: 700;
}

.page-families .families-what-band p .families-what-line1,
.page-families .families-what-band p .families-what-line2 {
  display: block;
  width: 100%;
  max-width: 100%;
}

.page-families .families-what-band p .families-what-line2 {
  margin-top: 0.12em;
}

@media (min-width: 1100px) {
  .page-families .families-what-band p .families-what-line1,
  .page-families .families-what-band p .families-what-line2 {
    white-space: nowrap;
  }
}

.page-families .families-list-block {
  padding: 40px 0 25px;
}

.page-families .families-list-block .container {
  width: var(--home-inner-w);
  margin-left: var(--home-text-start);
  margin-right: auto;
}

.page-families .families-list-intro,
.page-families .families-list-block .families-list {
  margin-left: 0;
  margin-right: auto;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
}

.page-families .families-list-block .families-list-intro {
  margin: 0 0 1em;
  line-height: 1.62;
  max-width: none;
}

.page-families .families-list-block .families-list {
  max-width: min(780px, 100%);
  margin-bottom: 1.35em;
  line-height: 1.62;
}

.page-families .families-emotional-quote {
  padding: 30px 0 40px;
}

.page-families .families-emotional-quote .container.center {
  width: min(1180px, 94vw);
  max-width: min(1180px, 94vw);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-families .families-emotional-quote h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
  font-size: clamp(2.65rem, 3.85vw, 3.35rem);
  line-height: 1.22;
}

.page-families .families-emotional-quote h2 .families-emotional-line1,
.page-families .families-emotional-quote h2 .families-emotional-line2,
.page-families .families-emotional-quote h2 .families-emotional-line3 {
  display: block;
}

.page-families .families-emotional-quote h2 .families-emotional-line2,
.page-families .families-emotional-quote h2 .families-emotional-line3 {
  margin-top: 0.06em;
}

@media (min-width: 1100px) {
  .page-families .families-list-block .families-list-intro {
    white-space: nowrap;
  }

  .page-families .families-emotional-quote h2 .families-emotional-line1,
  .page-families .families-emotional-quote h2 .families-emotional-line2,
  .page-families .families-emotional-quote h2 .families-emotional-line3 {
    white-space: nowrap;
  }
}

.page-families .families-plans.cards {
  padding: 52px 0 clamp(50px, 6vw, 68px);
}

.page-families .families-plans .container {
  width: min(1600px, 96vw);
}

.page-families .plans-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.page-families .plans-image {
  display: block;
  width: 1400px;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  border: 0;
  box-shadow: none;
}

.page-families .families-plans .families-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(22px, 4vw, 48px);
  row-gap: clamp(22px, 4vw, 48px);
  justify-content: stretch;
  align-items: start;
}

.page-families .families-plans .families-plans-grid > article {
  min-width: 0;
  max-width: 100%;
}

.page-families .families-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 540px;
  max-width: none;
  width: 100%;
  margin-inline: auto;
  padding: clamp(44px, 4vw, 52px) clamp(28px, 4.5vw, 56px) clamp(30px, 3.2vw, 36px);
  gap: 8px;
  background: #f5e3b8;
  border-radius: 32px;
  overflow: visible;
}

.page-families .families-plan-card.families-plan-card--media {
  display: block;
  padding: 0;
  gap: 0;
  margin: 0;
  margin-inline: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  align-self: stretch;
  min-height: 0;
}

.page-families .families-plan-card.families-plan-card--media .families-plan-card-img-link {
  display: block;
  line-height: 0;
  color: inherit;
  min-width: 0;
  max-width: 100%;
}

.page-families .families-plan-card.families-plan-card--media .families-plan-card-img {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
}

.page-families .families-plan-premium-visual {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  line-height: 0;
}

.page-families .families-plan-premium-quote-overlay {
  position: absolute;
  left: 17.2%;
  width: 75.6%;
  top: 79.4%;
  height: 13.8%;
  display: grid;
  grid-template-columns: 0.196fr 0.269fr 0.268fr 0.267fr;
  align-items: end;
  justify-items: center;
  box-sizing: border-box;
  padding-bottom: 1.2%;
  pointer-events: none;
}

.page-families .families-plan-quote-slot {
  opacity: 0;
  width: 100%;
}

.page-families .families-plan-quote-amt {
  color: #ffffec;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: none;
}

.page-families .families-plan-card .hex {
  left: -24px;
  top: -24px;
}

.page-families .families-plan-card h3 {
  margin: 0;
  text-align: center;
  align-self: stretch;
  font-size: clamp(1.38rem, 2.1vw, 1.68rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.page-families .families-plan-card .families-plan-title-serif {
  font-family: "Solway", serif;
  font-weight: 400;
}

.page-families .families-plan-card .families-plan-title-serif::after {
  content: "\a0";
}

.page-families .families-plan-card .families-plan-title-accent {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  text-transform: none;
}

.page-families .families-plan-card .families-plan-title-accent--premium {
  font-size: 0.88em;
  letter-spacing: 0.12em;
}

.page-families .families-plan-note {
  margin: -4px 0 6px;
  text-align: center;
  align-self: stretch;
  color: var(--text-soft);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(12px, 0.98vw, 13.5px);
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0.02em;
}

.page-families .families-plan-label {
  margin: 5px 0 3px;
  color: var(--text-main);
  font-family: "Solway", serif;
  font-weight: 600;
  font-size: clamp(13px, 1.08vw, 15px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: none;
}

.page-families .families-plan-label strong {
  font-weight: 700;
}

.page-families .families-plan-label:first-of-type {
  margin-top: 2px;
}

.page-families .families-plan-card--premium .families-plan-label:last-of-type {
  margin-top: 10px;
}

.page-families .families-plan-list,
.page-professionals .families-plan-list, .page-espais .families-plan-list {
  margin: 0 0 4px;
  padding-left: 1.05em;
  color: var(--text-main);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(11px, 0.88vw, 12.5px);
  letter-spacing: 0.65px;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-families .families-plan-list li,
.page-professionals .families-plan-list li, .page-espais .families-plan-list li {
  margin-bottom: 0.18em;
}

.page-families .families-plan-list li:last-child,
.page-professionals .families-plan-list li:last-child, .page-espais .families-plan-list li:last-child {
  margin-bottom: 0;
}

.page-families .families-price-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(6px, 0.85vw, 10px);
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
}

.page-families .families-price-pill-wrap {
  position: relative;
  min-width: 0;
}

.page-families .families-price-pill-wrap--featured .families-price-pill-ribbon {
  position: absolute;
  top: -18px;
  left: -12px;
  z-index: 3;
  padding: 4px 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: #555;
  background: var(--white);
  border-radius: 4px;
  box-shadow: none;
  transform: rotate(-35deg);
  transform-origin: left top;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.page-families .families-price-pill.btn-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 68px;
  height: auto;
  padding: 10px 8px;
  border-radius: 16px;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(9.5px, 0.9vw, 13px);
  letter-spacing: 0.55px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.page-families .families-price-pill-wrap--featured .families-price-pill {
  padding-top: 8px;
}

.page-families .families-price-pill-label {
  display: block;
}

.page-families .families-price-pill-amt {
  display: block;
  margin-top: 1px;
  font-size: 1.3em;
  letter-spacing: 0.04em;
}

@media (max-width: 840px) {
  .page-families .families-plan-card {
    min-height: 0;
  }
}

.page-families .families-plan-card .btn-small {
  margin-top: 16px;
  width: min(92%, 280px);
  border-radius: 999px;
}

@media (max-width: 560px) {
  .page-families .families-price-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .page-families .families-plans .families-plans-grid {
    column-gap: 22px;
    row-gap: 22px;
  }

  .page-families .families-hero-inner {
    margin-left: clamp(16px, 4vw, 32px);
    width: min(1100px, 92vw);
  }

  .page-families .families-hero .hero-grid.families-hero-grid {
    min-height: min(320px, 48vw);
  }

  .page-families .families-hero-media.hero-media-placeholder {
    min-height: min(280px, 42vw);
  }

  .page-families .families-hero-illus-image {
    height: min(var(--families-hero-illus-h), 42vw);
    max-height: min(var(--families-hero-illus-h), 42vw);
    transform: none;
  }

  .page-families .families-hero-claim .families-hero-claim-line p {
    white-space: normal;
    width: 100%;
  }
}

@media (max-width: 840px) {
  .page-families .families-hero .hero-grid.families-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
    padding-bottom: 0;
  }

  .page-families .families-hero-media.hero-media-placeholder {
    margin-inline: auto;
    min-height: min(280px, 48vw);
    width: min(100%, 94vw);
  }

  .page-families .families-hero-illus-clip {
    min-width: 0;
    justify-content: center;
  }

  .page-families .families-hero-illus-image {
    height: min(280px, 68vw);
    max-height: min(280px, 68vw);
    margin-inline: auto;
    margin-left: auto;
    transform: none;
    transform-origin: center center;
    object-position: center center;
  }

  .page-families .families-hero-media .hero-trail-image {
    left: clamp(-72px, -8vw, -48px);
    top: calc(clamp(48px, 10vw, 88px) - 2cm);
  }

  .page-families .families-hero-copy {
    padding-left: 0;
  }

  .page-families .families-hero-copy h1.families-hero-heading {
    margin-left: 0;
    text-align: center;
    font-size: clamp(2.1rem, 7.2vw, 2.9rem);
  }

  .page-families .families-hero-copy h1 .line-top,
  .page-families .families-hero-copy h1 .line-bottom {
    text-align: center;
    white-space: normal;
    margin-left: 0;
  }

  .page-families .families-hero-claim .families-hero-claim-wrap {
    align-items: center;
    padding-left: clamp(18px, 5vw, 32px);
    padding-right: clamp(18px, 5vw, 32px);
  }

  .page-families .families-hero-claim .families-hero-claim-line {
    text-align: center;
  }

  .page-families .families-hero-claim .families-hero-claim-line p {
    text-align: center;
    margin-inline: auto;
    font-size: clamp(18px, 4.2vw, 24px);
  }

  .page-families .families-hero-claim .families-hero-claim-wave-inline {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-families .families-hero-claim .btn-main {
    align-self: center;
    margin-inline: auto;
    white-space: normal;
    text-align: center;
  }

  .page-families .families-plans .families-plans-grid {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .page-professionals .professionals-hero .professionals-hero-grid,
  .page-espais .professionals-hero .professionals-hero-grid,
  .page-contacte .professionals-hero .professionals-hero-grid {
    height: auto;
    max-height: none;
    min-height: auto;
  }

  .page-professionals .professionals-hero-media.hero-media-placeholder,
  .page-espais .professionals-hero-media.hero-media-placeholder,
  .page-contacte .professionals-hero-media.hero-media-placeholder {
    width: min(600px, 94vw);
    height: clamp(200px, 48vw, 260px);
    max-height: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-professionals .professionals-hero-media .hero-trail-image,
  .page-espais .professionals-hero-media .hero-trail-image,
  .page-contacte .professionals-hero-media .hero-trail-image {
    width: min(86px, 22vw);
    left: -58px;
    top: 32px;
  }

  .page-professionals .families-hero-illus-image {
    height: auto;
    max-height: min(248px, 46vw);
    max-width: min(600px, 94vw);
    margin-inline: auto;
    object-position: center center;
    -webkit-clip-path: inset(0 12% 0 0);
    clip-path: inset(0 12% 0 0);
    transform: scale(1.18);
    transform-origin: center center;
  }

  .page-professionals .families-hero-illus-clip {
    align-items: center;
    justify-content: center;
  }

  .page-professionals .professionals-hero-placeholder, .page-espais .professionals-hero-placeholder {
    margin-inline: auto;
  }

  .page-professionals .professionals-hero-copy h1,
  .page-professionals .professionals-hero-copy h1 .professionals-hero-line,
  .page-espais .professionals-hero-copy h1,
  .page-espais .professionals-hero-copy h1 .line-top,
  .page-espais .professionals-hero-copy h1 .line-bottom,
  .page-espais .professionals-hero-copy h1 .professionals-h1-mid,
  .page-contacte .professionals-hero-copy h1,
  .page-contacte .professionals-hero-copy h1 .professionals-hero-line {
    text-align: center;
  }

  .page-contacte .professionals-hero .professionals-hero-grid > .professionals-hero-copy {
    align-items: center;
  }

  .page-contacte .professionals-hero-copy .btn-main {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-professionals .professionals-hero-claim .professionals-claim-wrap, .page-espais .professionals-hero-claim .professionals-claim-wrap {
    align-items: center;
  }

  .page-professionals .professionals-hero-claim .professionals-claim-line, .page-espais .professionals-hero-claim .professionals-claim-line {
    width: 100%;
    max-width: min(920px, 100%);
  }

  .page-professionals .professionals-hero-claim .professionals-claim-line p, .page-espais .professionals-hero-claim .professionals-claim-line p {
    text-align: center;
  }

  .page-professionals .professionals-hero-claim .professionals-claim-wave, .page-espais .professionals-hero-claim .professionals-claim-wave {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .page-professionals .professionals-hero-claim .btn-main, .page-espais .professionals-hero-claim .btn-main {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-professionals .professionals-pro-card-inner, .page-espais .professionals-pro-card-inner {
    grid-template-columns: 1fr;
  }

  .page-professionals .professionals-pro-col-right, .page-espais .professionals-pro-col-right {
    align-items: center;
    text-align: center;
  }

  .page-professionals .professionals-pro-col-right .families-plan-label, .page-espais .professionals-pro-col-right .families-plan-label {
    text-align: center;
  }

  .page-professionals .professionals-pro-card h3, .page-espais .professionals-pro-card h3 {
    text-align: center;
  }

  .page-professionals .professionals-inclou-label, .page-espais .professionals-inclou-label {
    text-align: center;
  }

  .page-professionals .professionals-pro-card .families-plan-list, .page-espais .professionals-pro-card .families-plan-list {
    margin-inline: auto;
  }
}

/* ——— Pàgina Professionals ——— */

.page-professionals .professionals-hero, .page-espais .professionals-hero {
  padding: clamp(22px, 3vw, 34px) 0 0;
  position: relative;
  z-index: 1;
}

.page-professionals .professionals-hero {
  overflow: visible;
  padding-top: clamp(24px, 3vw, 44px);
}

.page-professionals .professionals-hero-inner, .page-espais .professionals-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.page-professionals {
  --pro-gutter: clamp(20px, 3.2vw, 56px);
  --pro-content-pad: clamp(116px, calc(5vw + 2cm), 164px);
  --pro-text-start: calc(var(--pro-gutter) + var(--pro-content-pad));
  --pro-content-width: min(1180px, 94vw);
}

.page-professionals .professionals-hero-inner.container {
  width: min(1180px, 94vw);
  margin-left: var(--pro-gutter);
  margin-right: auto;
}

.page-professionals .professionals-hero .hero-grid.professionals-hero-grid, .page-espais .professionals-hero .hero-grid.professionals-hero-grid {
  --pro-hero-row-h: clamp(310px, 34vw, 360px);
  min-height: 0;
  height: var(--pro-hero-row-h);
  max-height: var(--pro-hero-row-h);
  grid-template-columns: minmax(272px, 56%) minmax(200px, 1fr);
  align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
}

.page-professionals .professionals-hero .hero-grid.professionals-hero-grid {
  --pro-hero-row-h: clamp(380px, 42vw, 460px);
  height: auto;
  min-height: var(--pro-hero-row-h);
  max-height: none;
  grid-template-columns: minmax(0, 58%) minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 56px);
  padding-bottom: clamp(16px, 2.5vw, 32px);
  align-items: center;
}

.page-professionals .professionals-hero .professionals-hero-grid > .professionals-hero-media, .page-espais .professionals-hero .professionals-hero-grid > .professionals-hero-media,
.page-professionals .professionals-hero .professionals-hero-grid > .professionals-hero-copy, .page-espais .professionals-hero .professionals-hero-grid > .professionals-hero-copy {
  min-height: 0;
  align-self: center;
}

.page-professionals .professionals-hero-media.hero-media-placeholder, .page-espais .professionals-hero-media.hero-media-placeholder {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: var(--pro-hero-row-h, 340px);
  min-height: 0;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: clamp(-12px, -1.2vw, 0px);
}

.page-professionals .professionals-hero-media.hero-media-placeholder {
  margin-left: 0;
  overflow: visible;
  max-height: none;
  height: auto;
  min-height: clamp(340px, 38vw, 420px);
  align-items: center;
  justify-content: flex-start;
}

.page-professionals .professionals-hero-media .hero-trail-image, .page-espais .professionals-hero-media .hero-trail-image {
  width: clamp(86px, 6vw, 104px);
  left: clamp(-96px, -6.6vw, -70px);
  top: clamp(44px, 3.8vw, 64px);
  height: auto;
  z-index: 3;
}

.page-professionals .professionals-hero-media .hero-trail-image {
  left: 0;
  width: clamp(94px, 6.8vw, 118px);
  top: clamp(123px, 8.6vw, 155px);
}

.page-professionals .families-hero-illus-clip {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: min(520px, 100%);
  min-height: 0;
  height: 100%;
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.page-professionals .families-hero-illus-image {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  max-height: clamp(360px, 40vw, 440px);
  margin-top: 0;
  object-fit: contain;
  object-position: left center;
  -webkit-clip-path: none;
  clip-path: none;
  transform: scale(1.65);
  transform-origin: left center;
}

.page-professionals .professionals-hero .professionals-hero-grid > .professionals-hero-media {
  z-index: 1;
  overflow: visible;
}

.page-professionals .professionals-hero .professionals-hero-grid > .professionals-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-left: clamp(72px, 8.5vw, 136px);
  align-self: center;
  padding-bottom: clamp(8px, 1.5vw, 20px);
}

.page-professionals .professionals-hero-placeholder, .page-espais .professionals-hero-placeholder {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: min(430px, 100%);
  max-width: 430px;
  min-width: 280px;
  height: clamp(170px, 20vw, 230px);
  max-height: 230px;
  margin-top: 0;
  margin-right: auto;
  margin-left: clamp(-6px, -0.5vw, 0px);
  border-radius: 18px;
  background: var(--pastel);
  border: 1px solid var(--border-soft);
}

.page-espais .professionals-hero-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.page-espais .espais-hero-important {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: var(--honey-dark);
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.page-espais .espais-hero-media-image {
  display: block;
}

.page-espais {
  --families-hero-illus-h: clamp(460px, 50vw, 540px);
  --home-gutter: clamp(12px, 2vw, 28px);
  --home-content-pad: clamp(58px, 5.2vw, 86px);
  --home-inner-w: min(1180px, 94vw);
  --home-copy-col: min(1120px, 100%);
}

.page-espais .families-hero {
  padding: clamp(24px, 3vw, 44px) 0 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.page-espais .families-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: var(--home-inner-w);
  margin-left: var(--home-gutter);
  margin-right: auto;
}

.page-espais .families-hero .hero-grid.families-hero-grid {
  --home-hero-row-h: clamp(380px, 42vw, 450px);
  min-height: var(--home-hero-row-h);
  height: auto;
  max-height: none;
  grid-template-columns: minmax(0, 58%) minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 56px);
  padding-bottom: clamp(16px, 2.5vw, 32px);
  align-items: center;
}

.page-espais .families-hero-media.hero-media-placeholder {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 380px;
  margin-left: 0;
  overflow: visible;
  justify-content: flex-start;
  align-items: center;
}

.page-espais .families-hero-media .hero-trail-image {
  left: 0;
  width: clamp(94px, 6.8vw, 118px);
  top: calc(clamp(123px, 8.6vw, 155px) - 1cm);
  height: auto;
  z-index: 3;
}

.page-espais .families-hero-illus-clip {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: min(400px, 100%);
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.page-espais .families-hero-illus-image {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  height: 450px;
  max-height: 450px;
  margin-left: clamp(42px, 4.8vw, 120px);
  object-fit: contain;
  object-position: left center;
  transform: translateX(-2cm) scale(1.82);
  transform-origin: left center;
}

.page-espais .families-hero .families-hero-grid > .families-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-left: clamp(72px, 8.5vw, 136px);
  align-self: center;
  padding-bottom: clamp(8px, 1.5vw, 20px);
}

.page-espais .families-hero-copy h1.families-hero-heading {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0.8cm 0 0 2cm;
  text-align: left;
  font-size: clamp(3.05rem, 3.75vw, 4.05rem);
  line-height: 1.12;
}

.page-espais .families-hero-copy h1 .line-top,
.page-espais .families-hero-copy h1 .line-bottom {
  display: block;
  text-align: left;
  white-space: nowrap;
}

.page-espais .families-hero-copy h1 .line-top {
  margin-left: 1.2cm;
}

.page-espais .families-hero-copy h1 .line-bottom {
  margin-top: 0.06em;
  margin-left: 3cm;
}

.page-espais .families-hero .claim.families-hero-claim {
  position: relative;
  z-index: 2;
  margin-top: calc(clamp(8px, 1.5vw, 20px) - 1.5cm);
  padding: clamp(20px, 3vw, 36px) 0 clamp(18px, 2.2vw, 30px);
}

.page-espais .families-hero-claim .families-hero-claim-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: clamp(16px, 2.8vw, 32px);
  padding-left: var(--home-content-pad);
  box-sizing: border-box;
}

.page-espais .families-hero-claim .families-hero-claim-line {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: min(1120px, 100%);
}

.page-espais .families-hero-claim .families-hero-claim-line p {
  margin: 0;
  padding-bottom: clamp(14px, 2vw, 22px);
  max-width: 100%;
  width: max-content;
  margin-left: 0;
  anchor-name: --home-claim-text;
  text-align: left;
  color: #000;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(22.5px, 2.35vw, 29px);
  font-weight: 300;
  letter-spacing: 2.5px;
  line-height: 1.46;
  text-transform: uppercase;
}

.page-espais .families-hero-claim .families-hero-claim-wrap > .btn-main {
  align-self: flex-start;
  margin: 0;
  margin-inline: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: auto;
  min-width: 380px;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 56px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 3.4px;
  line-height: 1.15;
  white-space: nowrap;
  justify-content: center;
  text-align: center;
}

@media (min-width: 900px) {
  .page-espais .families-hero-claim .families-hero-claim-line p {
    white-space: nowrap;
  }
}

.page-espais .families-hero-claim .families-claim-wavy-wrap {
  position: relative;
  display: inline;
  vertical-align: baseline;
  white-space: nowrap;
}

.page-espais .families-hero-claim .families-claim-wavy-text {
  display: inline;
  vertical-align: baseline;
}

.page-espais .families-hero-claim .families-hero-claim-wave-inline {
  position: absolute;
  left: 50%;
  top: 100%;
  right: auto;
  bottom: auto;
  width: 170px;
  max-width: 170px;
  height: auto;
  margin-top: 0.1em;
  display: block;
  opacity: 0.9;
  pointer-events: none;
  transform: translateX(-50%);
}

.page-espais .families-what-band {
  padding: 28px 0 32px;
  min-height: 120px;
  margin-top: clamp(16px, 2vw, 28px);
  position: relative;
  overflow: hidden;
}

.page-espais .families-what-band .container {
  position: static;
  min-height: 0;
  width: var(--home-inner-w);
  margin-left: var(--home-gutter);
  margin-right: auto;
  padding-left: var(--home-content-pad);
  box-sizing: border-box;
}

.page-espais .families-what-band h2 {
  margin: 0 0 clamp(14px, 1.8vw, 20px);
  font-weight: 400;
  font-size: clamp(2.55rem, 3.8vw, 3rem);
  line-height: 1.08;
}

body.page-espais main section.what-is.families-what-band .container > p {
  margin: 0;
  width: 100%;
  max-width: none;
  min-width: 100%;
  color: #000;
  font-size: clamp(21.5px, 2.05vw, 24px);
  line-height: 1.56;
  font-weight: 400;
  box-sizing: border-box;
}

.page-espais .families-list-block {
  padding: 40px 0 25px;
}

.page-espais .families-list-block .container {
  width: var(--home-inner-w);
  margin-left: var(--home-text-start);
  margin-right: auto;
}

.page-espais .families-list-intro,
.page-espais .families-list-block .families-list {
  margin-left: 0;
  margin-right: auto;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
}

.page-espais .families-list-block .families-list-intro {
  margin: 0 0 1.5em;
  line-height: 1.62;
  max-width: none;
}

.page-espais .families-list-block .families-list {
  max-width: min(780px, 100%);
  margin-bottom: 1.35em;
  line-height: 1.62;
}

.page-espais .families-emotional-quote {
  padding: 30px 0 40px;
}

.page-espais .families-emotional-quote .container.center {
  width: min(1180px, 94vw);
  max-width: min(1180px, 94vw);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-espais .families-emotional-quote h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
  font-size: clamp(2.65rem, 3.85vw, 3.35rem);
  line-height: 1.22;
}

@media (max-width: 980px) {
  .page-espais .families-hero-inner {
    margin-left: clamp(16px, 4vw, 32px);
    width: min(1100px, 92vw);
  }

  .page-espais .families-hero .hero-grid.families-hero-grid {
    min-height: min(320px, 48vw);
  }

  .page-espais .families-hero-media.hero-media-placeholder {
    min-height: min(320px, 45vw);
  }

  .page-espais .families-hero-illus-image {
    height: min(360px, 45vw);
    max-height: min(360px, 45vw);
    transform: none;
  }

  .page-espais .families-hero-claim .families-hero-claim-line p {
    white-space: normal;
    width: 100%;
  }
}

@media (max-width: 840px) {
  .page-espais .families-hero .hero-grid.families-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
    padding-bottom: 0;
  }

  .page-espais .families-hero-media.hero-media-placeholder {
    margin-inline: auto;
    min-height: min(280px, 48vw);
    width: min(100%, 94vw);
  }

  .page-espais .families-hero-illus-clip {
    min-width: 0;
    justify-content: center;
  }

  .page-espais .families-hero-illus-image {
    height: min(280px, 68vw);
    max-height: min(280px, 68vw);
    margin-inline: auto;
    transform: none;
    transform-origin: center center;
    object-position: center center;
  }

  .page-espais .families-hero-media .hero-trail-image {
    left: clamp(-72px, -8vw, -48px);
    top: calc(clamp(48px, 10vw, 88px) - 2cm);
  }

  .page-espais .families-hero-copy {
    padding-left: 0;
  }

  .page-espais .families-hero-copy h1.families-hero-heading {
    margin-left: 0;
    text-align: center;
    font-size: clamp(2.1rem, 7.2vw, 2.9rem);
  }

  .page-espais .families-hero-copy h1 .line-top,
  .page-espais .families-hero-copy h1 .line-bottom {
    text-align: center;
    white-space: normal;
  }

  .page-espais .families-hero-claim .families-hero-claim-wrap {
    align-items: center;
    padding-left: clamp(18px, 5vw, 32px);
    padding-right: clamp(18px, 5vw, 32px);
  }

  .page-espais .families-hero-claim .families-hero-claim-line {
    text-align: center;
  }

  .page-espais .families-hero-claim .families-hero-claim-line p {
    text-align: center;
    margin-inline: auto;
    font-size: clamp(18px, 4.2vw, 24px);
  }

  .page-espais .families-hero-claim .families-hero-claim-wave-inline {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-espais .families-hero-claim .btn-main {
    align-self: center;
    margin-inline: auto;
    white-space: normal;
    text-align: center;
  }
}

.page-professionals .professionals-hero-copy h1, .page-espais .professionals-hero-copy h1 {
  text-align: left;
}

.page-professionals .professionals-hero-copy h1.professionals-hero-heading {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin-left: 2cm;
  font-size: clamp(3.05rem, 3.75vw, 4.05rem);
  line-height: 1.12;
}

.page-professionals .professionals-hero-lines-group {
  display: block;
}

.page-professionals .professionals-hero-copy h1.professionals-hero-heading .professionals-hero-line {
  display: block;
  text-align: left;
  white-space: nowrap;
}

.page-professionals .professionals-hero-copy h1.professionals-hero-heading .professionals-hero-line-last {
  display: block;
  width: 100%;
  text-align: center;
  padding-left: clamp(102px, 12vw, 182px);
  box-sizing: border-box;
}

.page-espais .professionals-hero-copy h1 .line-top,
.page-espais .professionals-hero-copy h1 .line-bottom,
.page-espais .professionals-hero-copy h1 .professionals-h1-mid {
  display: block;
  text-align: left;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .page-professionals .professionals-hero-copy h1.professionals-hero-heading .professionals-hero-line {
    white-space: normal;
  }

  .page-espais .professionals-hero-copy h1 .line-top,
  .page-espais .professionals-hero-copy h1 .line-bottom,
  .page-espais .professionals-hero-copy h1 .professionals-h1-mid {
    white-space: normal;
  }
}

.page-professionals .professionals-hero .claim.professionals-hero-claim, .page-espais .professionals-hero .claim.professionals-hero-claim {
  padding: clamp(28px, 4vw, 46px) 0 clamp(18px, 2.5vw, 28px);
}

.page-professionals .professionals-hero .claim.professionals-hero-claim {
  position: relative;
  z-index: 2;
  margin-top: clamp(8px, 1.5vw, 20px);
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(18px, 2.2vw, 30px);
}

.page-professionals .professionals-claim-wrap, .page-espais .professionals-claim-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: clamp(16px, 2.8vw, 32px);
}

.page-professionals .professionals-claim-line, .page-espais .professionals-claim-line {
  display: block;
  width: 100%;
  max-width: min(920px, 100%);
  margin: 0;
  position: relative;
  padding-bottom: 0;
}

.page-professionals .professionals-claim-wrap {
  padding-left: var(--pro-content-pad);
}

.page-professionals .professionals-claim-line {
  max-width: min(1120px, 100%);
}

.page-professionals .professionals-claim-line p, .page-espais .professionals-claim-line p {
  margin: 0;
  max-width: min(920px, 100%);
  text-align: left;
  color: #b4aea8;
  font-size: 14.6px;
  letter-spacing: 2.05px;
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}

.page-professionals .professionals-claim-line p.professionals-claim-text {
  color: #000;
  font-size: clamp(22.5px, 2.35vw, 29px);
  font-weight: 300;
  letter-spacing: 2.5px;
  line-height: 1.46;
  max-width: min(1120px, 100%);
  width: max-content;
}

.page-professionals .professionals-claim-row {
  display: block;
}

@media (min-width: 900px) {
  .page-professionals .professionals-claim-row {
    white-space: nowrap;
  }
}

.page-professionals .professionals-claim-row + .professionals-claim-row {
  margin-top: 0.12em;
}

.page-professionals .professionals-claim-wavy-wrap {
  position: relative;
  display: inline;
  vertical-align: baseline;
  white-space: nowrap;
}

.page-professionals .professionals-claim-wavy-text {
  display: inline;
  vertical-align: baseline;
}

.page-professionals .professionals-claim-wave-inline {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 0.1em;
  display: block;
  opacity: 0.9;
  pointer-events: none;
}

.page-professionals .professionals-claim-row:first-child .professionals-claim-wave-inline {
  width: 168px;
  max-width: 168px;
  left: 50%;
  right: auto;
  transform: translateX(calc(-50% - 4cm));
}

.page-professionals .professionals-claim-row:last-child .professionals-claim-wave-inline {
  width: 146px;
  max-width: 146px;
  left: 50%;
  right: auto;
  transform: translateX(calc(-50% + 1.5cm));
}

.page-espais .professionals-claim-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  right: auto;
  width: 100px;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}

.page-professionals .professionals-hero-claim .btn-main, .page-espais .professionals-hero-claim .btn-main {
  align-self: flex-start;
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  padding: 5px 24px;
  font-size: 11px;
  letter-spacing: 2.85px;
  line-height: 1.15;
  white-space: nowrap;
}

.page-professionals .professionals-hero-claim .btn-main {
  min-height: 52px;
  padding: 14px 38px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 3.4px;
  line-height: 1.15;
}

.page-professionals .families-what-band, .page-espais .families-what-band {
  padding: 28px 0 32px;
  min-height: 120px;
  overflow: hidden;
}

.page-professionals .families-what-band {
  margin-top: clamp(16px, 2vw, 28px);
  position: relative;
}

.page-professionals .families-what-band .container, .page-espais .families-what-band .container {
  min-height: 0;
}

.page-professionals .families-what-band .container {
  width: min(1180px, 94vw);
  margin-left: var(--pro-text-start);
  margin-right: auto;
  position: static;
}

.page-professionals .families-what-band .container.home-copy-rail {
  width: min(1260px, 96vw);
  margin-left: var(--pro-gutter);
  margin-right: auto;
  padding-left: var(--pro-content-pad);
  box-sizing: border-box;
}

.page-professionals .families-what-band .home-copy-col {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: min(1120px, 100%);
}

.page-professionals .families-what-band .families-what-trail-clip {
  position: absolute;
  right: clamp(-8px, -0.8vw, 4px);
  top: 50%;
  transform: translateY(calc(-50% - clamp(4px, 0.55vw, 10px)));
  width: min(28%, 196px);
  height: clamp(104px, 12.5vw, 136px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.page-professionals .families-what-band .families-what-trail {
  position: absolute;
  right: clamp(-52px, -4.5vw, -18px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(128px, 15.5vw, 178px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: 100% 50%;
  pointer-events: none;
}

.page-espais .families-what-band .families-what-trail-clip {
  position: absolute;
  right: calc((100% - 100vw) / 2 - clamp(14px, 1.75vw, 38px));
  top: 50%;
  transform: translateY(calc(-50% - clamp(4px, 0.55vw, 10px)));
  width: min(28%, 196px);
  height: clamp(104px, 12.5vw, 136px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.page-espais .families-what-band .families-what-trail {
  position: absolute;
  right: clamp(-36px, -3vw, -10px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(128px, 15.5vw, 178px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: 100% 50%;
  pointer-events: none;
}

.page-professionals .families-what-band h2, .page-espais .families-what-band h2 {
  font-weight: 400;
  font-size: clamp(2.2rem, 3.25vw, 2.45rem);
}

.page-professionals .families-what-band h2 {
  font-size: clamp(2.55rem, 3.8vw, 3rem);
  line-height: 1.08;
  margin-bottom: clamp(14px, 1.8vw, 20px);
}

.page-professionals .families-what-band h2 .families-what-h2-light, .page-espais .families-what-band h2 .families-what-h2-light {
  font-weight: 300;
}

.page-professionals .families-what-band p, .page-espais .families-what-band p {
  font-size: clamp(16px, 1.18vw, 18.5px);
  line-height: 1.62;
}

.page-professionals .families-what-band p {
  width: 100%;
  max-width: none;
  min-width: 100%;
  color: #000;
  font-size: clamp(21.5px, 2.05vw, 24px);
  line-height: 1.56;
  font-weight: 400;
  box-sizing: border-box;
}

body.page-professionals main section.what-is.families-what-band .home-copy-col > p {
  margin: 0;
  width: 100%;
  max-width: none;
  min-width: 100%;
  color: #000;
  font-size: clamp(21.5px, 2.05vw, 24px);
  line-height: 1.56;
  font-weight: 400;
  box-sizing: border-box;
}

.page-professionals .families-what-band p strong {
  font-weight: 700;
}

.page-professionals .families-what-band p .families-what-line1, .page-espais .families-what-band p .families-what-line1,
.page-professionals .families-what-band p .families-what-line2, .page-espais .families-what-band p .families-what-line2 {
  display: block;
  width: 100%;
  max-width: 100%;
}

.page-professionals .families-what-band p .families-what-line2, .page-espais .families-what-band p .families-what-line2 {
  margin-top: 0.12em;
}

.page-professionals .families-list-block, .page-espais .families-list-block {
  padding: 40px 0 25px;
}

.page-professionals .families-list-block .container {
  width: min(1260px, 96vw);
  margin-left: var(--pro-text-start);
  margin-right: auto;
}

.page-professionals .families-list-block .families-list, .page-espais .families-list-block .families-list {
  max-width: min(1120px, 100%);
  margin-left: 0;
  margin-right: auto;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
}

.page-professionals .families-list-intro, .page-espais .families-list-intro {
  max-width: 640px;
  margin-left: 0;
  margin-right: auto;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
}

.page-professionals .families-list-intro {
  max-width: min(1090px, 100%);
}

.page-professionals .families-list-block .families-list-intro {
  margin: 0 0 1em;
  line-height: 1.62;
  max-width: none;
}

.page-professionals .families-list-block .families-list {
  max-width: min(1090px, 100%);
  margin-bottom: 1.35em;
  line-height: 1.62;
}

.page-professionals .families-list-outro {
  max-width: min(1090px, 100%);
}

.page-professionals .families-list-outro, .page-espais .families-list-outro {
  max-width: 640px;
  margin-left: 0;
  margin-right: auto;
  margin-top: 1.1em;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.62;
}

.page-professionals .families-list-outro {
  margin-top: 1.5em;
  max-width: none;
}

.page-professionals .families-list-outro {
  max-width: min(1090px, 100%);
}

.page-professionals .families-list-outro .families-list-outro-line1,
.page-professionals .families-list-outro .families-list-outro-line2 {
  display: block;
}

.page-professionals .families-list-outro .families-list-outro-line2 {
  margin-top: 0.1em;
}

.page-professionals .families-list-outro strong {
  font-weight: 700;
}

.page-professionals .families-emotional-quote, .page-espais .families-emotional-quote {
  padding: 30px 0 40px;
}

.page-professionals .families-emotional-quote .container.center, .page-espais .families-emotional-quote .container.center {
  width: min(1360px, 96vw);
  max-width: min(1360px, 96vw);
}

.page-professionals .families-emotional-quote .container.center {
  width: min(1260px, 96vw);
  max-width: min(1260px, 96vw);
  margin-left: var(--pro-text-start);
  margin-right: auto;
  text-align: left;
}

.page-professionals .professionals-quote-plan-stack {
  width: min(1260px, 96vw);
  max-width: min(1260px, 96vw);
  margin-left: var(--pro-text-start);
  margin-right: auto;
}

.page-professionals .professionals-quote-plan-stack .families-emotional-quote .container.center {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.page-professionals .professionals-quote-plan-stack .professionals-plan-wrap {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  justify-content: center;
}

.page-professionals .families-emotional-quote h2, .page-espais .families-emotional-quote h2 {
  font-size: clamp(2.48rem, 4.35vw, 2.95rem);
  line-height: 1.28;
}

.page-professionals .professionals-quote-plan-stack .families-emotional-quote h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  text-align: left;
  font-size: clamp(2.65rem, 3.85vw, 3.35rem);
  line-height: 1.22;
}

.page-professionals .families-emotional-quote h2 .professionals-emotional-line1,
.page-professionals .families-emotional-quote h2 .professionals-emotional-line2,
.page-professionals .families-emotional-quote h2 .professionals-emotional-line3 {
  display: block;
}

.page-professionals .families-emotional-quote h2 .professionals-emotional-line2,
.page-professionals .families-emotional-quote h2 .professionals-emotional-line3 {
  margin-top: 0.06em;
}

.page-professionals .families-emotional-quote h2 .professionals-emotional-line3 {
  align-self: center;
}

.page-professionals .professionals-plan.cards, .page-espais .professionals-plan.cards {
  padding: 28px 0 clamp(50px, 6vw, 70px);
}

.page-professionals .professionals-plan-wrap, .page-espais .professionals-plan-wrap {
  display: flex;
  justify-content: center;
}

.page-professionals .professionals-quote-plan-stack .professionals-plan-wrap {
  padding: 0;
}

.page-professionals .professionals-plan-wrap {
  width: var(--pro-content-width);
  max-width: var(--pro-content-width);
  margin-left: var(--pro-text-start);
  margin-right: auto;
  padding: 0;
}

.page-professionals .professionals-quote-plan-stack .professionals-pro-card.card {
  position: relative;
  width: min(92%, 1400px);
  max-width: min(92%, 1400px);
  margin: 0 auto;
  padding: clamp(48px, 5.5vw, 70px) clamp(48px, 5.5vw, 70px) clamp(40px, 5vw, 60px) clamp(48px, 5.5vw, 70px);
  min-height: 500px;
  display: block;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-sizing: border-box;
}

.page-professionals .professionals-quote-plan-stack .professionals-pro-card.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -10.5rem;
  background: var(--pastel);
  border-radius: 30px;
  z-index: 0;
  pointer-events: none;
}

.page-professionals .professionals-quote-plan-stack .professionals-pro-card-inner {
  position: relative;
  z-index: 1;
}

.page-professionals .professionals-pro-card.card, .page-espais .professionals-pro-card.card {
  width: 100%;
  max-width: 820px;
  min-height: 230px;
  margin: 0 auto;
  padding: 52px 38px 32px 44px;
  display: block;
  overflow: visible;
}

.page-professionals .professionals-pro-card-inner, .page-espais .professionals-pro-card-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.page-professionals .professionals-pro-card .families-plan-title-serif {
  font-family: "Solway", serif;
  font-weight: 400;
}

.page-professionals .professionals-pro-card .families-plan-title-accent {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  text-transform: none;
}

.page-professionals .professionals-pro-col-left, .page-espais .professionals-pro-col-left {
  min-width: 0;
}

.page-professionals .professionals-pro-card h3, .page-espais .professionals-pro-card h3 {
  margin: 0 0 8px;
  text-align: left;
  font-size: clamp(1.38rem, 2.1vw, 1.68rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.page-professionals .professionals-inclou-label, .page-espais .professionals-inclou-label {
  text-align: left;
  margin: 4px 0 2px;
}

.page-professionals .professionals-pro-card .families-plan-list, .page-espais .professionals-pro-card .families-plan-list {
  margin: 0 0 4px;
  padding-left: 1.05em;
  color: var(--text-main);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(11px, 0.88vw, 12.5px);
  letter-spacing: 0.65px;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: left;
}

.page-professionals .professionals-pro-card .families-plan-list li, .page-espais .professionals-pro-card .families-plan-list li {
  margin-bottom: 0.18em;
}

.page-professionals .professionals-pro-card .families-plan-list li:last-child, .page-espais .professionals-pro-card .families-plan-list li:last-child {
  margin-bottom: 0;
}

.page-professionals .professionals-pro-col-right .families-plan-label, .page-espais .professionals-pro-col-right .families-plan-label {
  margin: 0 0 6px;
  color: var(--text-main);
  font-family: "Solway", serif;
  font-weight: 600;
  font-size: clamp(13px, 1.08vw, 15px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: left;
}

.page-professionals .professionals-pro-col-right, .page-espais .professionals-pro-col-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 0;
}

.page-professionals .professionals-price-row, .page-espais .professionals-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 12px);
  width: 100%;
  margin-top: 2px;
  margin-bottom: 0;
}

.page-professionals .professionals-price-row .families-price-pill-wrap, .page-espais .professionals-price-row .families-price-pill-wrap {
  position: relative;
  min-width: 0;
}

.page-professionals .professionals-price-row .families-price-pill.btn-pill, .page-espais .professionals-price-row .families-price-pill.btn-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  height: auto;
  padding: 5px 3px 5px;
  border-radius: 12px;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(6.5px, 0.62vw, 8.5px);
  letter-spacing: 0.65px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.page-professionals .professionals-quote-plan-stack .professionals-pro-card-inner {
  grid-template-columns: 52% 48%;
  gap: clamp(28px, 3.5vw, 48px);
  align-items: start;
}

.page-professionals .professionals-quote-plan-stack .professionals-pro-col-left h3 {
  position: relative;
  top: -10px;
  font-size: clamp(1.72rem, 2.6vw, 2.08rem);
  margin-bottom: 10px;
}

.page-professionals .professionals-quote-plan-stack .professionals-inclou-label,
.page-professionals .professionals-quote-plan-stack .professionals-quotes-heading {
  color: var(--text-main);
  font-family: "Solway", serif;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: left;
}

.page-professionals .professionals-quote-plan-stack .professionals-inclou-label strong,
.page-professionals .professionals-quote-plan-stack .professionals-quotes-heading strong {
  font-weight: 700;
}

.page-professionals .professionals-quote-plan-stack .professionals-inclou-label,
.page-professionals .professionals-quote-plan-stack .professionals-quotes-heading {
  margin: 0 0 16px;
}

.page-professionals .professionals-quote-plan-stack .professionals-pro-card .families-plan-list {
  font-size: clamp(1.1rem, 1.15vw, 1.2rem);
  line-height: 1.7;
}

.page-professionals .professionals-quote-plan-stack .professionals-pro-card .families-plan-list li {
  margin-bottom: 0.3em;
}

.page-professionals .professionals-quote-plan-stack .professionals-pro-col-right {
  --pro-pricing-track: calc(2 * clamp(148px, 17vw, 210px) + clamp(58px, 6.8vw, 84px));
  padding: calc(clamp(1.72rem, 2.6vw, 2.08rem) * 1.08 + 10px) 0 0 clamp(56px, 6.5vw, 84px);
  gap: 0;
  align-items: flex-start;
  overflow: visible;
}

.page-professionals .professionals-quote-plan-stack .professionals-quotes-heading {
  width: var(--pro-pricing-track);
  max-width: none;
}

.page-professionals .professionals-quote-plan-stack .professionals-pricing-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: var(--pro-pricing-track);
  min-width: var(--pro-pricing-track);
  max-width: none;
}

.page-professionals .professionals-quote-plan-stack .professionals-price-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(58px, 6.8vw, 84px);
  margin: 0;
  width: 100%;
}

.page-professionals .professionals-quote-plan-stack .professionals-price-row .families-price-pill-wrap {
  flex: 0 0 clamp(148px, 17vw, 210px);
  width: clamp(148px, 17vw, 210px);
  max-width: clamp(148px, 17vw, 210px);
}

.page-professionals .professionals-quote-plan-stack .professionals-price-row .families-price-pill.btn-pill {
  min-height: clamp(108px, 11.5vw, 136px);
  padding: clamp(18px, 2vw, 26px) clamp(22px, 2.4vw, 32px);
  border-radius: 18px;
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: 0.08em;
}

.page-professionals .professionals-price-row .families-price-pill-label, .page-espais .professionals-price-row .families-price-pill-label {
  display: block;
}

.page-professionals .professionals-price-row .families-price-pill-amt, .page-espais .professionals-price-row .families-price-pill-amt {
  display: block;
  margin-top: 1px;
  font-size: 1.12em;
  letter-spacing: 0.04em;
}

.page-professionals .professionals-quote-plan-stack .professionals-price-row .families-price-pill-amt {
  margin-top: 0.45em;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-professionals .professionals-trial-btn.btn-pill.btn-small, .page-espais .professionals-trial-btn.btn-pill.btn-small {
  margin-top: 8px;
  align-self: center;
  width: auto;
  min-width: min(100%, 280px);
  max-width: 100%;
  height: auto;
  min-height: 24px;
  padding: 7px 14px;
  white-space: normal;
  line-height: 1.25;
  text-align: center;
}

.page-professionals .professionals-quote-plan-stack .professionals-trial-btn.btn-pill.btn-small {
  align-self: stretch;
  display: block;
  width: var(--pro-pricing-track);
  min-width: var(--pro-pricing-track);
  max-width: none;
  box-sizing: border-box;
  min-height: clamp(52px, 5.4vw, 62px);
  margin-top: clamp(24px, 2.8vw, 34px);
  padding: clamp(14px, 1.5vw, 18px) clamp(14px, 1.6vw, 22px);
  font-size: clamp(14px, 1.35vw, 17px);
  letter-spacing: 0.06em;
  white-space: nowrap;
  line-height: 1.2;
  color: var(--white);
  background: var(--honey);
}

.page-professionals .professionals-quote-plan-stack .professionals-trial-btn.btn-pill.btn-small:hover {
  color: var(--white);
}

.page-professionals .professionals-pro-card .hex, .page-espais .professionals-pro-card .hex {
  left: -24px;
  top: -14px;
  width: 88px;
  height: 76px;
  z-index: 3;
}

.page-professionals .professionals-quote-plan-stack .professionals-pro-card .hex {
  left: -34px;
  top: -24px;
  width: 98px;
  height: 86px;
}

@media (min-width: 1100px) {
  .page-professionals .families-what-band p .families-what-line1, .page-espais .families-what-band p .families-what-line1,
  .page-professionals .families-what-band p .families-what-line2, .page-espais .families-what-band p .families-what-line2 {
    white-space: nowrap;
  }

  .page-professionals .families-list-block .families-list-intro {
    white-space: nowrap;
  }

  .page-professionals .families-list-outro .families-list-outro-line1,
  .page-professionals .families-list-outro .families-list-outro-line2 {
    white-space: nowrap;
  }

  .page-professionals .families-emotional-quote h2 .professionals-emotional-line1,
  .page-professionals .families-emotional-quote h2 .professionals-emotional-line2,
  .page-professionals .families-emotional-quote h2 .professionals-emotional-line3 {
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .page-professionals .families-what-band .families-what-trail-clip {
    width: min(34%, 148px);
    height: clamp(88px, 22vw, 118px);
    right: clamp(-6px, -1vw, 8px);
  }

  .page-professionals .families-what-band .families-what-trail {
    width: clamp(108px, 32vw, 148px);
    right: clamp(-40px, -6vw, -12px);
    opacity: 0.95;
  }

  .page-espais .families-what-band .families-what-trail-clip {
    width: min(34%, 148px);
    height: clamp(88px, 22vw, 118px);
    right: calc((100% - 100vw) / 2 - clamp(10px, 2.8vw, 26px));
  }

  .page-espais .families-what-band .families-what-trail {
    width: clamp(108px, 32vw, 148px);
    right: clamp(-28px, -5vw, -6px);
    opacity: 0.95;
  }
}

@media (max-width: 980px) {
  .page-professionals .professionals-hero .professionals-hero-grid,
  .page-espais .professionals-hero .professionals-hero-grid,
  .page-contacte .professionals-hero .professionals-hero-grid {
    height: auto;
    max-height: min(360px, 42vw);
    min-height: 260px;
  }

  .page-professionals .professionals-hero .hero-grid.professionals-hero-grid {
    max-height: none;
    min-height: min(320px, 48vw);
  }

  .page-professionals .professionals-hero-media.hero-media-placeholder {
    min-height: min(280px, 42vw);
    max-height: none;
  }

  .page-professionals .families-hero-illus-image {
    height: auto;
    max-height: min(300px, 42vw);
    -webkit-clip-path: none;
    clip-path: none;
    transform: scale(1.48);
    transform-origin: left center;
    object-position: left center;
  }

  .page-professionals .professionals-hero-inner.container {
    margin-left: clamp(16px, 4vw, 32px);
    width: min(1100px, 92vw);
  }

  .page-professionals .professionals-hero-placeholder, .page-espais .professionals-hero-placeholder {
    max-height: min(230px, 36vw);
    height: auto;
    min-height: 170px;
  }
}

.page-espais .families-list-block .families-list + p.families-list-intro {
  margin-top: 1.35em;
}

/* Rebuild bloque Pla Professional (solo Espais) */
.page-espais .professionals-plan.cards {
  padding: 30px 0 clamp(50px, 6vw, 70px);
}

.page-espais .professionals-plan-wrap {
  width: min(92%, 1460px);
  max-width: min(92%, 1460px);
  margin: 0 auto;
  padding: 0;
  display: block;
  transform: translateX(-20px);
}

.page-espais .professionals-pro-card.card {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 0;
  padding: 64px 80px;
  background: var(--pastel);
  border-radius: 32px;
  overflow: visible;
}

.page-espais .professionals-pro-card .hex {
  position: absolute;
  top: -34px;
  left: -34px;
  z-index: 3;
}

.page-espais .professionals-pro-card-inner {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 64px;
  align-items: start;
}

.page-espais .professionals-pro-col-left {
  min-width: 0;
}

.page-espais .professionals-pro-card h3 {
  margin: -34px 0 24px;
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  line-height: 1.1;
  font-weight: 700;
}

.page-espais .professionals-inclou-label {
  margin: 0 0 28px;
  font-size: clamp(2rem, 2.1vw, 2.6rem);
  line-height: 1.1;
  font-weight: 700;
  text-transform: none !important;
}

.page-espais .professionals-pro-card .families-plan-list {
  margin: 1cm 0 0;
  padding-left: 1.25em;
  list-style: disc;
  font-size: clamp(1.24rem, 1.38vw, 1.56rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.page-espais .professionals-pro-card .families-plan-list li {
  margin-bottom: 0.24em;
}

.page-espais .professionals-pro-col-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  gap: 0;
  margin-left: -57px;
  padding-top: 18px;
  --espais-price-card-w: 260px;
  --espais-price-gap: 56px;
  --espais-price-track: calc(var(--espais-price-card-w) * 2 + var(--espais-price-gap));
  width: var(--espais-price-track);
}

.page-espais .professionals-pro-col-right .families-plan-label {
  margin: 0 0 28px;
  font-size: clamp(2rem, 2.1vw, 2.6rem);
  line-height: 1.1;
  font-weight: 700;
}

.page-espais .professionals-price-row {
  display: flex;
  gap: var(--espais-price-gap);
  align-items: stretch;
  width: var(--espais-price-track);
  margin: 0;
}

.page-espais .professionals-price-row .families-price-pill-wrap {
  flex: 0 0 var(--espais-price-card-w);
  width: var(--espais-price-card-w);
  max-width: var(--espais-price-card-w);
}

.page-espais .professionals-price-row .families-price-pill.btn-pill {
  width: var(--espais-price-card-w);
  min-height: 160px;
  border-radius: 20px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-espais .professionals-price-row .families-price-pill-label {
  font-size: clamp(2.3rem, 2.55vw, 2.95rem);
  letter-spacing: 0.04em;
}

.page-espais .professionals-price-row .families-price-pill-amt {
  margin-top: 0.35em;
  font-size: clamp(2.3rem, 2.55vw, 2.95rem);
  letter-spacing: 0.04em;
}

.page-espais .professionals-trial-btn.btn-pill.btn-small {
  align-self: stretch;
  width: var(--espais-price-track);
  margin-top: 34px;
  min-height: 74px;
  padding: 18px 18px;
  font-size: clamp(1.05rem, 1.1vw, 1.2rem);
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .page-espais .professionals-pro-card.card {
    padding: 44px 32px;
  }

  .page-espais .professionals-pro-card-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .page-espais .professionals-pro-col-right {
    margin-left: 0;
    padding-top: 0;
  }

  .page-espais .professionals-price-row {
    gap: 16px;
  }

  .page-espais .professionals-price-row .families-price-pill.btn-pill {
    min-height: 160px;
  }

  .page-espais .professionals-trial-btn.btn-pill.btn-small {
    margin-top: 22px;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .page-espais .professionals-plan-wrap {
    width: min(94%, 1500px);
    max-width: min(94%, 1500px);
  }

  .page-espais .professionals-pro-card.card {
    padding: 38px 20px 30px;
    border-radius: 24px;
  }

  .page-espais .professionals-pro-card .hex {
    top: -22px;
    left: -14px;
    width: 68px;
    height: auto;
  }

  .page-espais .professionals-price-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Override final: igualar layout de families en espais */
body.page-espais {
  --home-gutter: clamp(20px, 3.2vw, 56px) !important;
  --home-content-pad: clamp(116px, calc(5vw + 2cm), 164px) !important;
  --home-text-start: calc(var(--home-gutter) + var(--home-content-pad)) !important;
  --home-inner-w: min(1180px, 94vw) !important;
  --home-copy-col: min(1120px, 100%) !important;
}

.page-espais .families-what-band,
.page-espais .families-list-block,
.page-espais .families-emotional-quote {
  --home-gutter: clamp(20px, 3.2vw, 56px) !important;
  --home-content-pad: clamp(116px, calc(5vw + 2cm), 164px) !important;
  --home-text-start: calc(var(--home-gutter) + var(--home-content-pad)) !important;
}

.page-espais .families-what-band {
  margin-top: clamp(16px, 2vw, 28px) !important;
  position: relative !important;
}

.page-espais .families-what-band .container {
  width: var(--home-inner-w) !important;
  margin-left: var(--home-gutter) !important;
  margin-right: auto !important;
  padding-left: var(--home-content-pad) !important;
  box-sizing: border-box !important;
}

.page-espais .families-list-block .container {
  width: var(--home-inner-w) !important;
  margin-left: var(--home-text-start) !important;
  margin-right: auto !important;
}

.page-espais .families-emotional-quote .container.center {
  width: min(1180px, 94vw) !important;
  max-width: min(1180px, 94vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.page-espais .families-emotional-quote h2 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-align: center !important;
  font-size: clamp(2.65rem, 3.85vw, 3.35rem) !important;
  line-height: 1.22 !important;
}

.page-espais .families-what-band h2 {
  margin: 0 0 clamp(14px, 1.8vw, 20px) !important;
  font-size: clamp(2.55rem, 3.8vw, 3rem) !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
}

.page-espais .families-what-band h2 .families-what-h2-light {
  white-space: nowrap !important;
}

body.page-espais main section.what-is.families-what-band .container > p {
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 100% !important;
  font-size: clamp(21.5px, 2.05vw, 24px) !important;
  line-height: 1.56 !important;
  font-weight: 400 !important;
}

.page-espais .families-list-intro,
.page-espais .families-list-block .families-list {
  margin-left: 0 !important;
  margin-right: auto !important;
  font-size: clamp(18px, 1.5vw, 22px) !important;
  font-weight: 500 !important;
}

.page-espais .families-list-block .families-list-intro {
  margin: 0 0 1.5em !important;
  line-height: 1.62 !important;
  max-width: none !important;
}

.page-espais .families-list-block .families-list {
  max-width: min(780px, 100%) !important;
  margin-bottom: 1.35em !important;
  line-height: 1.62 !important;
}

/* ——— Pàgina Contacte ——— */

body.page-contacte {
  --contacte-gutter: clamp(12px, 2vw, 28px);
  --contacte-content-pad: clamp(116px, calc(5vw + 2cm), 164px);
  --contacte-text-start: calc(clamp(20px, 3.2vw, 56px) + var(--contacte-content-pad));
  --contacte-inner-w: min(1180px, 94vw);
  --contacte-hero-row-h: clamp(380px, 42vw, 450px);
}

.page-contacte .professionals-hero {
  padding: clamp(24px, 3vw, 44px) 0 clamp(8px, 1.2vw, 16px);
  position: relative;
  z-index: 1;
  max-height: 640px;
  overflow: visible;
}

.page-contacte .professionals-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: var(--contacte-inner-w);
  margin-left: var(--contacte-gutter);
  margin-right: auto;
}

.page-contacte .professionals-hero-inner.container {
  width: var(--contacte-inner-w);
  max-width: var(--contacte-inner-w);
  margin-left: var(--contacte-gutter);
  margin-right: auto;
}

.page-contacte .professionals-hero .hero-grid.professionals-hero-grid {
  --pro-hero-row-h: var(--contacte-hero-row-h);
  min-height: var(--contacte-hero-row-h);
  height: var(--contacte-hero-row-h);
  max-height: var(--contacte-hero-row-h);
  grid-template-columns: minmax(400px, 66%) minmax(200px, 1fr);
  gap: clamp(10px, 1.5vw, 20px);
  padding-bottom: 0;
  align-items: center;
}

.page-contacte .professionals-hero .professionals-hero-grid > .professionals-hero-media {
  min-height: 0;
  align-self: center;
  z-index: 1;
}

.page-contacte .professionals-hero-media.hero-media-placeholder {
  width: 100%;
  max-width: 100%;
  height: var(--contacte-hero-row-h);
  min-height: var(--contacte-hero-row-h);
  max-height: var(--contacte-hero-row-h);
  margin: 0 0 0 6cm;
  padding: 0;
  overflow: visible;
  justify-content: flex-start;
  align-items: center;
}

.page-contacte .professionals-hero-media .hero-trail-image {
  display: none;
}

.page-contacte .professionals-hero .professionals-hero-grid > .professionals-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 2.5vw, 28px);
  padding-left: clamp(72px, 8.5vw, 136px);
  padding-bottom: clamp(8px, 1.5vw, 20px);
  align-self: center;
}

.page-contacte .professionals-hero-copy h1.professionals-hero-heading {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0.8cm 0 0 2.5cm;
  text-align: left;
  color: var(--honey);
  font-family: "Solway", serif;
  font-weight: 400;
  font-size: clamp(3.05rem, 3.75vw, 4.05rem);
  line-height: 1.12;
  letter-spacing: normal;
}

.page-contacte .professionals-hero-copy h1.professionals-hero-heading .professionals-hero-line {
  display: block;
  text-align: left;
  white-space: nowrap;
}

.page-contacte .professionals-hero-copy h1.professionals-hero-heading .professionals-hero-line:first-of-type {
  margin-left: 1.5cm;
}

.page-contacte .professionals-hero-copy h1.professionals-hero-heading .professionals-hero-line:last-of-type {
  margin-top: 0.06em;
  margin-left: 3.5cm;
}

.page-contacte .professionals-hero-copy .btn-main {
  align-self: flex-start;
  margin: 0;
  margin-left: 4.5cm;
  width: auto;
  min-width: 380px;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 56px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 3.4px;
  line-height: 1.15;
  white-space: nowrap;
  justify-content: center;
  text-align: center;
}

.page-contacte .contacte-hero-illustration {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  max-width: none;
  height: var(--contacte-hero-row-h);
  max-height: var(--contacte-hero-row-h);
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  transform: translate(1.2cm, -0.8cm) scale(1.48);
  transform-origin: left center;
  pointer-events: none;
}

.page-contacte .contacte-needs {
  position: relative;
  z-index: 3;
  padding: clamp(40px, 4.5vw, 52px) 0 clamp(50px, 5vw, 64px);
  min-height: clamp(360px, 40vw, 500px);
  overflow: hidden;
}

.page-contacte .contacte-needs .container {
  position: relative;
  width: min(1260px, 96vw);
  max-width: min(1260px, 96vw);
  margin-left: var(--contacte-text-start);
  margin-right: auto;
  padding-left: 0;
  box-sizing: border-box;
}

body.page-contacte main section.what-is.contacte-needs h2 {
  margin: 0 0 clamp(14px, 1.8vw, 20px);
  color: var(--white);
  font-family: "Solway", serif;
  font-weight: 400;
  font-size: clamp(2.55rem, 3.8vw, 3rem);
  line-height: 1.08;
}

body.page-contacte main section.what-is.contacte-needs > .container > p {
  margin: 0 0 clamp(18px, 2.2vw, 26px);
  max-width: none;
  color: #000;
  font-size: clamp(21.5px, 2.05vw, 24px);
  line-height: 1.56;
  font-weight: 400;
}

body.page-contacte main section.what-is.contacte-needs > .container > p strong {
  font-weight: 700;
}

body.page-contacte main section.what-is.contacte-needs > .container > p .contacte-needs-line1,
body.page-contacte main section.what-is.contacte-needs > .container > p .contacte-needs-line2 {
  display: block;
  width: 100%;
  max-width: 100%;
}

body.page-contacte main section.what-is.contacte-needs > .container > p .contacte-needs-line2 {
  margin-top: 0.12em;
}

@media (min-width: 1100px) {
  body.page-contacte main section.what-is.contacte-needs > .container > p .contacte-needs-line1 {
    white-space: nowrap;
  }
}

.page-contacte .contacte-form-heading-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: clamp(18px, 2.2vw, 26px) 0 clamp(22px, 2.8vw, 32px);
}

.page-contacte .contacte-form-h3 {
  margin: 0;
  font-size: clamp(1.85rem, 2.8vw, 2.25rem);
  font-family: "Solway", serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}

.page-contacte .contacte-form-heading-row .mail-icon {
  min-width: 58px;
}

.page-contacte .contacte-form-heading-row .mail-icon img {
  height: 44px;
  width: auto;
  max-width: 76px;
}

.page-contacte .contacte-form {
  max-width: min(800px, 100%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 4px;
}

.page-contacte .contacte-form-triple {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.page-contacte .contacte-form input[type="text"],
.page-contacte .contacte-form input[type="email"] {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: var(--white);
  text-align: left;
  font-family: "Quicksand", sans-serif;
  color: var(--honey);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 0 24px;
  box-sizing: border-box;
  flex: none;
}

.page-contacte .contacte-form input::placeholder {
  color: var(--honey);
  font-weight: 600;
  opacity: 1;
}

.page-contacte .contacte-form input:focus,
.page-contacte .contacte-form textarea:focus {
  outline: 2px solid rgba(217, 170, 46, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.page-contacte .contacte-form textarea {
  width: 100%;
  min-height: 155px;
  max-height: 220px;
  border: none;
  border-radius: 22px;
  background: var(--white);
  font-family: "Quicksand", sans-serif;
  color: var(--honey);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.45;
  text-transform: uppercase;
  text-align: left;
  padding: 18px 24px;
  box-sizing: border-box;
  resize: vertical;
}

.page-contacte .contacte-form textarea::placeholder {
  color: var(--honey);
  font-weight: 600;
  opacity: 1;
}

.page-contacte .contacte-form .btn-pill.btn-main {
  margin-top: 8px;
  align-self: flex-start;
  width: auto;
  max-width: none;
  min-width: 0;
  min-height: 48px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  font-family: "Quicksand", sans-serif;
  background: var(--white);
  color: var(--honey);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.page-contacte .contacte-form .btn-pill.btn-main:hover {
  background: var(--white);
  color: var(--honey-dark);
  opacity: 0.92;
}

.page-contacte .contacte-needs .families-what-trail-clip {
  position: absolute;
  right: calc(-100vw + var(--contacte-text-start) + 100% - 1.5cm);
  top: 50%;
  transform: translateY(calc(-50% - clamp(4px, 0.55vw, 10px)));
  width: min(28%, 196px);
  height: clamp(104px, 12.5vw, 136px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.page-contacte .contacte-needs .families-what-trail {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(128px, 15.5vw, 178px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: 100% 50%;
  pointer-events: none;
  opacity: 0.95;
}

.page-contacte .contacte-extra {
  padding: 40px 0 25px;
}

.page-contacte .contacte-extra .container {
  width: min(1260px, 96vw);
  margin-left: var(--contacte-text-start);
  margin-right: auto;
}

.page-contacte .contacte-extra .families-list-intro,
.page-contacte .contacte-extra .families-list {
  margin-left: 0;
  margin-right: auto;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
}

.page-contacte .contacte-extra .families-list-intro {
  margin: 0 0 1em;
  line-height: 1.62;
  max-width: none;
}

.page-contacte .contacte-extra .families-list {
  max-width: min(1090px, 100%);
  margin-bottom: 1.35em;
  line-height: 1.62;
}

.page-contacte .contacte-quote {
  padding: 30px 0 40px;
}

.page-contacte .contacte-quote .container.center {
  width: min(1180px, 94vw);
  max-width: min(1180px, 94vw);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-contacte .contacte-quote h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
  font-size: clamp(2.65rem, 3.85vw, 3.35rem);
  line-height: 1.22;
}

.page-contacte .contacte-quote h2 .contacte-emotional-line1,
.page-contacte .contacte-quote h2 .contacte-emotional-line2,
.page-contacte .contacte-quote h2 .contacte-emotional-line3 {
  display: block;
  width: 100%;
  max-width: 100%;
}

.page-contacte .contacte-quote h2 .contacte-emotional-line2,
.page-contacte .contacte-quote h2 .contacte-emotional-line3 {
  margin-top: 0.06em;
}

.page-contacte .contacte-quote h2 .contacte-emotional-nowrap {
  white-space: nowrap;
}

@media (min-width: 1100px) {
  .page-contacte .contacte-quote h2 .contacte-emotional-line1,
  .page-contacte .contacte-quote h2 .contacte-emotional-line2,
  .page-contacte .contacte-quote h2 .contacte-emotional-line3 {
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  .page-contacte .professionals-hero-copy h1.professionals-hero-heading .professionals-hero-line {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .page-contacte .professionals-hero-inner,
  .page-contacte .professionals-hero-inner.container {
    margin-left: clamp(16px, 4vw, 32px);
    width: min(1100px, 92vw);
  }

  .page-contacte .professionals-hero .hero-grid.professionals-hero-grid {
    min-height: min(320px, 48vw);
  }

  .page-contacte .professionals-hero-media.hero-media-placeholder {
    min-height: min(320px, 45vw);
  }

  .page-contacte .contacte-hero-illustration {
    height: min(320px, 45vw);
    max-height: min(320px, 45vw);
    margin: 0;
    transform: translate(0.6cm, -0.4cm) scale(1.22);
  }

  .page-contacte .professionals-hero-copy h1.professionals-hero-heading .professionals-hero-line {
    white-space: normal;
  }
}

@media (max-width: 840px) {
  .page-contacte .professionals-hero .hero-grid.professionals-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
    padding-bottom: 0;
  }

  .page-contacte .professionals-hero-media.hero-media-placeholder {
    margin-inline: auto;
    min-height: min(280px, 48vw);
    width: min(100%, 94vw);
    order: 1;
  }

  .page-contacte .professionals-hero .professionals-hero-grid > .professionals-hero-copy {
    order: 2;
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .page-contacte .professionals-hero-copy h1.professionals-hero-heading {
    margin-left: 0;
    text-align: center;
    font-size: clamp(2.1rem, 7.2vw, 2.9rem);
  }

  .page-contacte .professionals-hero-copy h1.professionals-hero-heading .professionals-hero-line {
    text-align: center;
    white-space: normal;
    margin-left: 0;
  }

  .page-contacte .professionals-hero-copy .btn-main {
    align-self: center;
    margin-left: 0;
    min-width: min(100%, 380px);
  }

  .page-contacte .contacte-hero-illustration {
    height: min(280px, 68vw);
    max-height: min(280px, 68vw);
    margin-inline: auto;
    transform: none;
    object-position: center center;
  }
}


@media (max-width: 720px) {
  .page-contacte .contacte-form {
    max-width: 100%;
  }

  .page-contacte .contacte-form .btn-pill.btn-main {
    font-size: clamp(18px, 5vw, 27px);
    max-width: 100%;
  }

  .page-contacte .contacte-needs .families-what-trail-clip {
    width: min(34%, 148px);
    height: clamp(88px, 22vw, 118px);
  }

  .page-contacte .contacte-needs .families-what-trail {
    width: clamp(108px, 32vw, 148px);
    right: 0;
    opacity: 0.95;
  }

}
