:root {
  --cacao-950: #2b1d17;
  --cacao-900: #3d2a20;
  --cacao-800: #52372a;
  --cacao-700: #6a4635;
  --clay-600: #b4887c; /* Client Rose as main accent */
  --clay-500: #bfa98e; /* Client Marron as secondary accent */
  --logo-rose: #b4887c; /* Client Rose */
  --logo-rose-dark: #bfa98e; /* Client Marron */
  --logo-rose-deep: #3d2a20; /* Dark cacao for text contrast */
  --logo-cream: #e8e2d8; /* Client Beige */
  --sand-300: #bfa98e; /* Client Marron officiel */
  --sand-200: #e8e2d8; /* Client Beige officiel */
  --sand-100: #f5f2ed; /* Client Marron très léger */
  --cream-100: #f7f5f1; /* Client Beige très léger */
  --cream-50: #f7f5f1; /* Client Beige très léger */
  --white: #ffffff;
  --ink: #302721;
  --muted: #6e625a;
  --success: #315c42;
  --danger: #9b342e;
  --font-display: 'Josefin Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-wordmark: 'Montserrat', sans-serif;
  --container: 1240px;
  --shadow-soft: 0 24px 70px rgba(61, 42, 32, 0.11);
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream-50);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main {
  display: block;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
  border-radius: 6px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--cacao-900);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
}

h1 em,
h2 em,
h3 em {
  font-weight: 600;
}

ul {
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--clay-500);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--clay-500);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--cacao-900);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 247, 241, 0.28);
  background: #b4887c;
  color: var(--white);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(255, 247, 241, 0.34);
  background: #b4887c;
  box-shadow: 0 12px 35px rgba(61, 42, 32, 0.18);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 205px;
}

.brand img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}

.brand--header {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  gap: 2px;
}

@media (min-width: 1321px) {
  .site-header__inner {
    width: calc(100% - 56px);
    max-width: none;
    grid-template-columns: 245px minmax(0, 1fr) auto;
    gap: 24px;
  }

  .brand--header {
    width: 245px;
    justify-self: start;
    transform: translateX(clamp(44px, calc(7.7vw - 58px), 88px));
  }

  .header-actions {
    transform: translateX(clamp(-82px, calc(68px - 7.85vw), -35px));
  }
}

.brand__name {
  font-family: var(--font-wordmark);
  font-size: clamp(0.72rem, 1.1vw, 0.98rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.brand__sub {
  font-family: var(--font-wordmark);
  font-size: clamp(0.48rem, 0.6vw, 0.58rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 25px);
  font-size: 0.8rem;
  font-weight: 600;
}

.main-nav > a,
.nav-dropdown__trigger {
  position: relative;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  white-space: nowrap;
}

.main-nav > a::after,
.nav-dropdown__trigger::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--white);
  content: '';
  transition: transform var(--transition);
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after,
.nav-dropdown__trigger:hover::after,
.nav-dropdown__trigger.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-dropdown__trigger:hover,
.nav-dropdown__trigger.is-active {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger i {
  font-size: 0.65rem;
  transition: transform var(--transition);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 260px;
  padding: 12px;
  transform: translate(-50%, 12px);
  border: 1px solid rgba(232, 226, 216, 0.24);
  border-top: 2px solid var(--clay-600);
  background: linear-gradient(145deg, var(--cacao-900), var(--cacao-950));
  box-shadow: 0 24px 60px rgba(43, 29, 23, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-dropdown__menu::before {
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  height: 13px;
  content: '';
}

.nav-dropdown__menu a {
  padding: 11px 12px;
  color: var(--white);
  transition: background var(--transition), color var(--transition), padding var(--transition);
}

.nav-dropdown__menu a:hover {
  padding-left: 17px;
  background: rgba(232, 226, 216, 0.12);
  color: var(--white);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown.is-open .nav-dropdown__trigger i {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 247, 241, 0.52);
  background: rgba(255, 247, 241, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  background: rgba(43, 29, 23, 0.55);
}

.mobile-overlay.is-open {
  display: block;
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 6px;
  border: 1px solid var(--cacao-900);
  background: var(--cacao-900);
  color: var(--white);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--clay-600);
  background: var(--clay-600);
}

.button--outline {
  background: transparent;
  color: var(--cacao-900);
}

.button--outline:hover {
  color: var(--white);
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--cacao-900);
}

.button--light:hover {
  border-color: var(--clay-600);
  background: var(--clay-600);
  color: var(--white);
}

.button--compact {
  min-height: 44px;
  padding: 11px 18px;
}

.site-header .button--compact {
  border-color: var(--white);
  background: var(--white);
  color: #b4887c;
}

.site-header .button--compact:hover {
  border-color: var(--white);
  background: var(--clay-600);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid var(--clay-500);
  color: var(--cacao-900);
  font-size: 0.83rem;
  font-weight: 700;
}

.text-link:hover i {
  transform: translateX(4px);
}

.text-link i {
  font-size: 0.75rem;
  transition: transform var(--transition);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--clay-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--sand-300);
}

.section {
  padding: clamp(76px, 9vw, 126px) 0;
}

.section--tight {
  padding: clamp(56px, 7vw, 88px) 0;
}

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

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

.section--sand {
  background: var(--sand-100);
}

.section--dark {
  background: var(--cacao-900);
  color: var(--sand-100);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

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

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 6vw, 4.7rem);
}

.reviews-section .section-heading h2 {
  white-space: nowrap;
}

.section-heading__text {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading--light h2,
.section-heading--light .section-heading__text {
  color: var(--white);
}

.section-heading--light .section-heading__text {
  color: var(--sand-200);
}

.section--dark .editorial-copy h2 {
  color: var(--white);
}

.section--dark .editorial-copy > p:not(.eyebrow) {
  color: var(--sand-200);
}

.section-action {
  margin-top: 45px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 480px;
  align-items: end;
  overflow: hidden;
  padding: 190px 0 82px;
  background: var(--cacao-900);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: '';
}

.page-hero::before {
  top: 120px;
  right: -110px;
  width: 390px;
  height: 390px;
}

.page-hero::after {
  top: 185px;
  right: -45px;
  width: 260px;
  height: 260px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 7vw, 6.8rem);
}

.page-hero__inner > p:last-child:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--sand-200);
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 124px 0 32px;
  background: var(--cacao-900);
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(410px, 0.94fr);
  gap: clamp(48px, 6vw, 82px);
  align-items: center;
  min-height: calc(100svh - 156px);
}

.hero-copy {
  padding: 18px 0 18px 30px;
  border-left: 1px solid rgba(234, 222, 209, 0.36);
}

.home-hero .eyebrow {
  margin-bottom: 25px;
  color: var(--sand-300);
}

.home-hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(4rem, 5.85vw, 5.75rem);
  line-height: 0.91;
  letter-spacing: -0.025em;
}

.home-hero h1 span {
  display: block;
}

.home-hero h1 em {
  color: var(--sand-300);
}

.home-hero__lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--sand-200);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  width: 100%;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(234, 222, 209, 0.38);
}

.hero-visual__media {
  height: clamp(390px, calc(100svh - 275px), 505px);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-visual__media--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-visual:hover img {
  transform: scale(1.025);
}

.hero-visual__note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 16px 20px;
  background: var(--sand-100);
  color: var(--cacao-900);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.2;
}

.hero-visual__label {
  padding-right: 22px;
  border-right: 1px solid var(--sand-300);
  color: var(--clay-600);
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero .hero-actions .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--cacao-900);
}

.home-hero .hero-actions .button:hover {
  border-color: var(--clay-600);
  background: var(--clay-600);
  color: var(--white);
}

.home-hero .hero-actions .button--outline {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: var(--white);
}

.home-hero .hero-actions .button--outline:hover {
  border-color: var(--clay-600);
  background: var(--clay-600);
  color: var(--white);
}

.editorial-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.editorial-split--reverse > :first-child {
  order: 2;
}

.editorial-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 5vw, 5rem);
}

.editorial-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.editorial-copy .button,
.editorial-copy .text-link {
  margin-top: 14px;
}

.editorial-quote {
  margin: 30px 0;
  padding: 8px 0 8px 26px;
  border-left: 2px solid var(--clay-500);
  color: var(--cacao-800) !important;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.3;
}

.framed-media {
  position: relative;
  padding: 0 28px 28px 0;
}

.framed-media::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: 75%;
  height: 78%;
  border: 1px solid var(--clay-500);
  content: '';
}

.framed-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(620px, 65vw);
  min-height: 420px;
  object-fit: cover;
}

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

.cards-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--sand-300);
  background: var(--cream-50);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.editorial-card:hover {
  transform: translateY(-6px);
  border-color: var(--clay-500);
  box-shadow: var(--shadow-soft);
}

.editorial-card__number {
  margin-bottom: auto;
  color: var(--clay-500);
  font-family: var(--font-display);
  font-size: 3.3rem;
  line-height: 1;
}

.editorial-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: auto;
  place-items: center;
  border: 1px solid var(--sand-300);
  color: var(--clay-600);
}

.editorial-card h3 {
  margin: 26px 0 14px;
  font-size: 2rem;
}

.editorial-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.91rem;
}

.editorial-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--sand-300);
}

.process-step {
  padding: 40px clamp(24px, 4vw, 50px);
  border-right: 1px solid var(--sand-300);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-step span {
  color: var(--clay-600);
  font-family: var(--font-display);
  font-size: 2.7rem;
}

.process-step h3 {
  margin: 22px 0 12px;
  font-size: 1.8rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.signature-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  min-height: 650px;
  background: var(--cacao-900);
}

.signature-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 100px);
  color: var(--sand-100);
}

.signature-panel h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 5.2rem);
}

.signature-panel p {
  color: var(--sand-200);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 20px 0 34px;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--sand-100);
  font-size: 0.88rem;
}

.feature-list i {
  margin-top: 6px;
  color: var(--clay-500);
}

.cta-panel {
  width: 100%;
  margin-bottom: clamp(28px, 4vw, 52px);
  padding: clamp(45px, 7vw, 78px) 0;
  background: var(--clay-600);
  color: var(--white);
}

.cta-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
}

.cta-panel h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.7rem, 4.5vw, 4.4rem);
}

.cta-panel p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--cream-100);
}

.cta-panel .eyebrow {
  color: var(--cacao-950);
}

.values-grid,
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--sand-300);
  background: var(--sand-300);
}

.value-card,
.network-card {
  min-height: 280px;
  padding: 36px;
  background: var(--cream-50);
}

.value-card i,
.network-card i {
  margin-bottom: 34px;
  color: var(--clay-600);
  font-size: 1.35rem;
}

.value-card h3,
.network-card h3 {
  margin-bottom: 12px;
  font-size: 1.85rem;
}

.value-card p,
.network-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.network-card__label {
  display: block;
  margin-bottom: 18px;
  color: var(--clay-600);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-nav {
  display: flex;
  gap: 9px;
  margin-bottom: 55px;
  padding-bottom: 14px;
  overflow-x: auto;
}

.pricing-nav a,
.filter-button {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid var(--sand-300);
  background: var(--cream-50);
  color: var(--cacao-800);
  font-size: 0.77rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.pricing-nav a:hover,
.filter-button:hover {
  border-color: var(--clay-600);
  background: var(--clay-600);
  color: var(--white);
}

.filter-button.is-active {
  border-color: var(--cacao-900);
  background: var(--cacao-900);
  color: var(--white);
}

.pricing-block {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(34px, 7vw, 90px);
  padding: 60px 0;
  border-top: 1px solid var(--sand-300);
}

.pricing-block h3 {
  position: sticky;
  top: 126px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.pricing-block__intro p {
  color: var(--muted);
  font-size: 0.86rem;
}

.pricing-list {
  display: grid;
}

.pricing-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(145px, auto);
  gap: 30px;
  padding: 25px 0;
  border-bottom: 1px solid var(--sand-200);
}

.pricing-item:first-child {
  padding-top: 0;
}

.pricing-item h4 {
  margin-bottom: 0;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
}

.pricing-options {
  display: grid;
  gap: 5px;
  text-align: right;
}

.pricing-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: baseline;
}

.pricing-option small {
  color: var(--muted);
  font-size: 0.72rem;
}

.pricing-option strong {
  color: var(--cacao-800);
  font-family: var(--font-display);
  font-size: 1.25rem;
  white-space: nowrap;
}

.pricing-notes {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.care-list {
  display: grid;
  gap: 0;
}

.care-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(54px, 7vw, 86px) 0;
  border-top: 1px solid var(--sand-300);
}

.care-item__number {
  color: var(--sand-300);
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.8;
}

.care-item__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
  margin-bottom: 28px;
}

.care-item h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 4vw, 4rem);
}

.price-badge {
  padding: 13px 17px;
  background: var(--cacao-900);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  white-space: nowrap;
}

.care-item__description {
  max-width: 900px;
  color: var(--muted);
}

.care-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.care-fact {
  padding: 24px;
  border-left: 2px solid var(--clay-500);
  background: var(--cream-100);
}

.care-fact h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.care-fact p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.package-grid,
.menu-grid,
.zone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.package-card,
.menu-card,
.zone-card {
  padding: 34px;
  border: 1px solid var(--sand-300);
  background: var(--cream-50);
}

.package-card h3,
.menu-card h3,
.zone-card h3 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.package-card > p,
.menu-card > p,
.zone-card > p {
  color: var(--muted);
  font-size: 0.88rem;
}

.package-lines,
.menu-lines {
  display: grid;
  margin: 26px 0;
  list-style: none;
}

.package-lines li,
.menu-lines li {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand-200);
  font-size: 0.85rem;
}

.package-lines strong,
.menu-lines strong {
  color: var(--cacao-800);
  white-space: nowrap;
}

.zone-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zone-card {
  min-height: 220px;
}

.shop-section-top {
  padding-top: 140px;
}

.shop-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 42px;
  overflow-x: auto;
  padding-bottom: 10px;
}

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

.product-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  border: 1px solid var(--sand-300);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.product-card__visual {
  position: relative;
  display: grid;
  height: 240px;
  place-items: center;
  overflow: hidden;
  background: var(--sand-100);
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-card__visual img {
  transform: scale(1.035);
}

.product-card__visual i {
  color: var(--clay-500);
  font-size: 3rem;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-card__category {
  margin-bottom: 10px;
  color: var(--clay-600);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1.25;
}

.product-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.product-card__footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--sand-200);
  min-height: 60px;
}

.product-card__price {
  color: var(--cacao-800);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  flex: 1;
}

.product-card__footer .button {
  white-space: nowrap;
  flex-shrink: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(45px, 8vw, 100px);
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 126px;
}

.faq-list {
  display: grid;
}

.faq-item {
  border-top: 1px solid var(--sand-300);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--sand-300);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 22px;
  align-items: center;
  padding: 25px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  color: var(--cacao-900);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
}

.faq-question i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 6px;
  border: 1px solid var(--sand-300);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
  background: var(--cacao-900);
  color: var(--white);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 64px 26px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 1fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
}

.contact-section {
  padding-top: clamp(130px, 14vw, 180px);
}

.contact-form-only {
  max-width: 880px;
}

.contact-form {
  padding: clamp(30px, 5vw, 55px);
  border: 1px solid var(--sand-300);
  background: var(--white);
}

.contact-form h1 {
  margin-bottom: 32px;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--cacao-900);
  font-size: 0.77rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--sand-300);
  border-radius: 0;
  background: var(--cream-50);
  color: var(--ink);
  transition: border-color var(--transition), background var(--transition);
}

.form-field input {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 150px;
  padding: 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--clay-600);
  background: var(--white);
  outline: 0;
}

.form-error {
  color: var(--danger);
  font-size: 0.75rem;
}

.alert {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--success);
  background: #edf5ef;
  color: var(--success);
  font-size: 0.86rem;
}

.alert--error {
  border-color: var(--danger);
  background: #fff0ef;
  color: var(--danger);
}

.contact-sidebar {
  display: grid;
  gap: 0;
  background: transparent;
}

.contact-card {
  padding: 28px 22px 30px;
  border-bottom: 1px solid var(--sand-300);
  background: var(--cream-100);
}

.contact-card i {
  margin-bottom: 24px;
  color: var(--clay-600);
}

.contact-card h2 {
  margin-bottom: 9px;
  font-size: 1.6rem;
}

.contact-card p,
.contact-card a {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Centered Contact Info styles */
.contact-info-centered {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 50px;
  align-items: stretch;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(61, 42, 32, 0.03);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  box-sizing: border-box;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.contact-card__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sand-100);
  margin-bottom: 20px;
}

.contact-info-card i {
  font-size: 1.75rem;
  color: var(--clay-600);
  margin-bottom: 0;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--cacao-900);
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 16px 0;
  line-height: 1.55;
  flex-grow: 1;
}

.contact-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clay-600);
  transition: color var(--transition);
  word-break: break-word;
  margin-bottom: 20px;
  display: inline-block;
}

.contact-link--text {
  color: var(--cacao-900);
}

.contact-link:hover {
  color: var(--clay-500);
}

.card-action {
  margin-top: auto;
  width: 100%;
}

.card-action .button {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  min-height: 44px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.button--whatsapp {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}

.button--whatsapp:hover {
  background-color: #20bd5a !important;
  border-color: #20bd5a !important;
}

.contact-reassurance {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: var(--white);
  border-left: 4px solid var(--clay-600);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 10px 30px rgba(61, 42, 32, 0.03);
  max-width: 820px;
  margin: 0 auto;
}

.contact-reassurance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sand-100);
  flex-shrink: 0;
}

.contact-reassurance-icon i {
  font-size: 1.5rem;
  color: var(--clay-600);
}

.contact-reassurance-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--cacao-900);
}

.contact-reassurance-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-map-wrapper {
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-map {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.article-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  min-height: 560px;
  background: var(--cacao-900);
}

.article-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 85px);
  color: var(--sand-200);
}

.article-feature h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.article-meta {
  margin-bottom: 20px;
  color: var(--clay-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.coming-card {
  min-height: 290px;
  padding: 32px;
  border: 1px solid var(--sand-300);
  background: var(--cream-50);
}

.coming-card span {
  color: var(--clay-600);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-card h3 {
  margin: 60px 0 14px;
  font-size: 2rem;
}

.coming-card p {
  color: var(--muted);
  font-size: 0.87rem;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 300px);
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.article-body {
  color: var(--ink);
}

.article-body > p:first-of-type {
  color: var(--cacao-800);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.45;
}

.article-body h2 {
  margin: 54px 0 20px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.article-body h3 {
  margin: 35px 0 14px;
  font-size: 1.8rem;
}

.article-body p,
.article-body li {
  color: var(--muted);
}

.article-body ul {
  padding-left: 22px;
}

.article-note {
  margin: 38px 0;
  padding: 28px;
  border-left: 3px solid var(--clay-500);
  background: var(--cream-100);
}

.article-note p {
  margin: 0;
  color: var(--cacao-800);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
}

.article-aside {
  position: sticky;
  top: 130px;
  padding: 28px;
  border: 1px solid var(--sand-300);
  background: var(--cream-100);
}

.article-aside h2 {
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.article-aside p {
  color: var(--muted);
  font-size: 0.82rem;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 130px 20px 60px;
  background: var(--cacao-900);
  color: var(--white);
  text-align: center;
}

.error-page__code {
  color: var(--clay-500);
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 14rem);
  line-height: 0.75;
}

.error-page h1 {
  margin: 40px 0 18px;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.error-page p {
  max-width: 550px;
  margin: 0 auto 30px;
  color: var(--sand-200);
}

.site-footer {
  padding: 80px 0 24px;
  background: var(--cacao-950);
  color: var(--sand-200);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(35px, 5vw, 70px);
  padding-bottom: 60px;
}

.brand--footer {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 3px 0;
  line-height: 1;
  text-decoration: none;
}

.footer-brand p {
  max-width: 360px;
  margin: 24px 0 0;
  color: #cdbfb4;
  font-size: 0.87rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #cdbfb4;
  font-size: 0.84rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-column .footer-social-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-top: 5px;
  place-items: center;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: var(--white);
  font-size: 1.2rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-column .footer-social-link:hover {
  transform: translateY(-2px);
  border-color: var(--clay-600);
  background: var(--clay-600);
}

.site-footer__bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a9998f;
  font-size: 0.72rem;
}

.site-footer__bottom p {
  margin: 0;
}

.back-to-top,
.whatsapp-button {
  position: fixed;
  z-index: 800;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 6px;
  border: 0;
  background: var(--cacao-900);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(43, 29, 23, 0.18);
}

.back-to-top {
  bottom: 22px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-button {
  bottom: 82px;
  background: #256f46;
  font-size: 1.25rem;
}

.reveal,
.stagger > * {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 650ms ease, transform 650ms ease;
}

.stagger > *:nth-child(2) {
  transition-delay: 90ms;
}

.stagger > *:nth-child(3) {
  transition-delay: 180ms;
}

.stagger > *:nth-child(4) {
  transition-delay: 270ms;
}

.reveal.is-visible,
.stagger > *.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Reviews Section */
.reviews-section {
  background: var(--cream-100);
}

.reviews-carousel {
  position: relative;
  margin-top: 48px;
}

.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
  mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.reviews-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sand-300);
  border-radius: 50%;
  background: var(--white);
  color: var(--cacao-900);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.reviews-nav__btn:hover:not(:disabled) {
  background: var(--cacao-900);
  border-color: var(--cacao-900);
  color: var(--white);
}


.review-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: 4px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: var(--clay-600);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.review-card__stars {
  color: #ffb100;
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
}

.review-card__source {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-card__source i {
  color: #4285f4;
}

.review-card__text {
  margin: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  flex-grow: 1;
}

.review-card__author {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cacao-900);
  display: block;
}

.reviews-action {
  margin-top: 40px;
  text-align: center;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  margin-top: 48px;
}

.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
  mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.testimonials-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sand-300);
  border-radius: 50%;
  background: var(--white);
  color: var(--cacao-900);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.testimonials-nav__btn:hover:not(:disabled) {
  background: var(--cacao-900);
  border-color: var(--cacao-900);
  color: var(--white);
}

.testimonials-track .editorial-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
}

@media (max-width: 1500px) {
  .site-header__inner {
    gap: 16px;
  }

  .main-nav {
    gap: 10px;
    font-size: 0.68rem;
  }

  .header-actions .button {
    display: none;
  }

}

@media (max-width: 1160px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-card {
    flex: 0 0 300px;
  }
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 12px;
    min-height: 78px;
  }

  .brand--header {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: min(185px, 100%);
  }

  .brand img {
    height: 44px;
  }

  .menu-toggle {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: auto;
    left: 0;
    z-index: 1100;
    display: flex;
    width: min(390px, 90vw);
    height: calc(100vh - 78px);
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    transform: translateX(-105%);
    border-right: 1px solid rgba(232, 226, 216, 0.18);
    background: linear-gradient(160deg, var(--cacao-900), var(--cacao-950));
    box-shadow: 24px 0 55px rgba(43, 29, 23, 0.3);
    overflow-y: auto;
    transition: transform 300ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a,
  .nav-dropdown__trigger {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 247, 241, 0.22);
    font-size: 0.9rem;
    padding-inline: 12px;
  }

  .main-nav > a.is-active,
  .nav-dropdown__trigger.is-active {
    background: rgba(232, 226, 216, 0.12);
  }

  .main-nav > a::after,
  .nav-dropdown__trigger::after {
    display: none;
  }

  .nav-dropdown__menu {
    position: static;
    display: none;
    width: 100%;
    margin: 4px 0 8px 12px;
    padding: 5px 0 12px 16px;
    transform: none;
    border: 0;
    border-left: 1px solid rgba(232, 226, 216, 0.28);
    background: rgba(232, 226, 216, 0.05);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .nav-dropdown__menu a {
    padding: 9px 0;
    color: rgba(255, 247, 241, 0.86);
  }

  .nav-dropdown__menu a:hover {
    background: transparent;
    color: var(--white);
  }

  .home-hero {
    min-height: auto;
    padding: 128px 0 64px;
  }

  .home-hero__grid,
  .editorial-split,
  .signature-panel,
  .article-feature,
  .contact-layout,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .home-hero__grid {
    gap: 46px;
    min-height: auto;
  }

  .home-hero .hero-visual {
    order: -1;
  }

  .hero-visual {
    justify-self: center;
    max-width: 650px;
  }

  .hero-visual__media {
    height: min(520px, 68vw);
  }

  .editorial-split--reverse > :first-child {
    order: initial;
  }

  .signature-panel__media img,
  .article-feature__media img {
    height: 520px;
  }

  .cards-grid,
  .values-grid,
  .network-grid,
  .coming-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid--four,
  .shop-grid,
  .contact-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout .section-heading,
  .article-aside {
    position: static;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .section {
    padding: 72px 0;
  }

  .page-hero {
    min-height: 420px;
    padding: 145px 0 60px;
  }

  .page-hero::before {
    width: 260px;
    height: 260px;
  }

  .review-card {
    flex: 0 0 280px;
  }

  .home-hero {
    min-height: auto;
    padding: 112px 0 48px;
  }

  .home-hero__grid {
    gap: 38px;
  }

  .hero-copy {
    padding: 28px 0 0;
    border-top: 1px solid rgba(234, 222, 209, 0.36);
    border-left: 0;
  }

  .home-hero .eyebrow {
    margin-bottom: 20px;
  }

  .home-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(1.9rem, 12vw, 4.4rem);
    line-height: 0.94;
  }

  .hero-visual {
    padding: 7px;
  }

  .hero-visual__media {
    height: min(430px, 112vw);
  }

  .hero-visual__note {
    gap: 15px;
    min-height: 72px;
    padding: 14px 15px;
  }

  .hero-visual__label {
    padding-right: 15px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .cards-grid,
  .cards-grid--four,
  .values-grid,
  .network-grid,
  .shop-grid,
  .coming-grid,
  .package-grid,
  .menu-grid,
  .zone-grid,
  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .contact-reassurance {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .editorial-card {
    min-height: 275px;
  }

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

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--sand-300);
  }

  .signature-panel__media img,
  .article-feature__media img {
    height: 420px;
  }

  .signature-panel__content,
  .article-feature__content {
    padding: 42px 26px;
  }

  .feature-list,
  .care-facts,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 42px 0;
  }

  .cta-panel__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-panel .button {
    justify-self: start;
  }

  .pricing-block {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 45px 0;
  }

  .pricing-block h3 {
    position: static;
  }

  .pricing-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-options {
    text-align: left;
  }

  .pricing-option {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .care-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .care-item__number {
    font-size: clamp(2.2rem, 9vw, 4rem);
  }

  .care-item__header {
    grid-template-columns: 1fr;
  }

  .price-badge {
    justify-self: start;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .header-actions {
    gap: 8px;
  }

  .brand--header {
    width: min(160px, 100%);
  }

  .home-hero__lead {
    font-size: 0.95rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual__media {
    height: 350px;
  }

  .hero-visual__note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-visual__label {
    padding: 0;
    border-right: 0;
  }

  .framed-media img,
  .signature-panel__media img,
  .article-feature__media img {
    min-height: 0;
    height: 360px;
  }

  .product-card__visual img {
    height: 260px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .button {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   CART & CHECKOUT SYSTEM STYLES
   ========================================================================== */

.cart-toggle-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand-200);
  color: var(--cacao-900);
  border: 1px solid var(--sand-300);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-toggle-btn:hover {
  background: var(--clay-600);
  color: var(--white);
  border-color: var(--clay-600);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--clay-600);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 31, 24, 0.55);
  backdrop-filter: blur(3px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  background: var(--cream-100);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--sand-300);
  background: var(--white);
}

.cart-drawer__header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cacao-950);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.cart-drawer__close:hover {
  color: var(--cacao-950);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: 8px;
}

.cart-item__img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--sand-100);
}

.cart-item__details h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--cacao-950);
}

.cart-item__price {
  font-size: 0.88rem;
  color: var(--clay-600);
  font-weight: 600;
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  background: var(--sand-100);
  padding: 2px 8px;
  border-radius: 4px;
}

.cart-item__qty-btn {
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--cacao-900);
  padding: 2px 6px;
}

.cart-item__qty-num {
  font-size: 0.88rem;
  font-weight: 600;
}

.cart-item__remove {
  background: none;
  border: none;
  color: #b91c1c;
  cursor: pointer;
  padding: 6px;
  font-size: 1.05rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.cart-item__remove:hover {
  opacity: 1;
}

.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.cart-empty-state i {
  font-size: 3.5rem;
  color: var(--sand-300);
  margin-bottom: 16px;
}

.cart-empty-state p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.cart-drawer__footer {
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid var(--sand-300);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.cart-total-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clay-600);
}

.cart-back-btn {
  background: none;
  border: none;
  color: var(--clay-600);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkout-summary-box {
  background: var(--sand-100);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--sand-300);
  margin-bottom: 20px;
}

.checkout-summary-box h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.checkout-total-line {
  margin: 0;
  font-size: 1.1rem;
  color: var(--cacao-950);
}

.cart-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.cart-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--sand-300);
  border-radius: 6px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--cacao-950);
}

.cart-input:focus {
  outline: none;
  border-color: var(--clay-600);
  box-shadow: 0 0 0 3px rgba(179, 107, 75, 0.12);
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.button--whatsapp {
  background: #25d366 !important;
  color: #ffffff !important;
  border-color: #25d366 !important;
}

.button--whatsapp:hover {
  background: #1da851 !important;
  border-color: #1da851 !important;
}

.cart-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--cacao-950);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cart-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast i {
  color: #4ade80;
  font-size: 1.2rem;
}

/* ==========================================================================
   YOUTUBE VIDEO EMBED IN ARTICLES
   ========================================================================== */

.article-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 32px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--cacao-950);
}

.article-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
