:root {
  --cream: #faf6ef;
  --coconut: #fffdf9;
  --warm-white: #fdfbf7;
  --sand: #e8d8c5;
  --almond: #d6bfa8;
  --soft-clay: #b98763;
  --rose-gold: #c98b63;
  --caramel: #a85f24;
  --caramel-dark: #7c431d;
  --mocha: #6b5143;
  --deep-brown: #2a1e19;
  --soft-black: #14110f;
  --muted: #6f625b;
  --border: #e7ddd2;
  --green-soft: #7a8465;
  --white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(42, 30, 25, 0.08);
  --shadow-card: 0 18px 50px rgba(42, 30, 25, 0.06);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shell: 1180px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Montserrat", ui-sans-serif, system-ui, sans-serif;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--soft-black);
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 139, 99, 0.11), transparent 32rem),
    radial-gradient(circle at 86% 16%, rgba(122, 132, 101, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--cream), var(--warm-white) 48%, var(--cream));
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(42, 30, 25, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 30, 25, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 68%);
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--deep-brown);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.25rem, 7vw, 6.7rem);
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(2.45rem, 4vw, 4.35rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus-visible {
  outline: 3px solid rgba(168, 95, 36, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-brown);
  transform: translateY(-180%);
}

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

.section-shell {
  width: min(100% - clamp(32px, 5vw, 72px), var(--shell));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(72px, 9vw, 128px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--caramel);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.1;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: #c96f27;
  box-shadow: 0 16px 34px rgba(168, 95, 36, 0.26);
}

.button--primary:hover {
  background: var(--caramel-dark);
  box-shadow: 0 18px 40px rgba(42, 30, 25, 0.24);
}

.button--secondary {
  color: var(--deep-brown);
  background: rgba(255, 253, 249, 0.76);
  border-color: rgba(107, 81, 67, 0.28);
}

.button--secondary:hover {
  border-color: var(--deep-brown);
  background: var(--white);
}

.button--whatsapp {
  min-height: 64px;
  padding: 16px 36px;
  font-size: 0.85rem;
  border-radius: 999px;
  color: #c96f27;
  background: transparent;
  border-color: #c96f27;
  box-shadow: none;
}

.button--whatsapp:hover {
  background: #c96f27;
  box-shadow: 0 16px 32px rgba(201, 111, 39, 0.18);
  transform: translateY(-3px);
  color: var(--white);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.site-header__inner {
  width: min(100% - clamp(28px, 5vw, 72px), 1240px);
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  width: 118px;
  display: inline-flex;
}

.brand img {
  aspect-ratio: 974 / 1464;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 52px);
}

.site-nav a {
  position: relative;
  padding-block: 12px;
  color: var(--deep-brown);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header__cta {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.68rem;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--caramel);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--deep-brown);
  background: rgba(255, 253, 249, 0.72);
}

.nav-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle i::before {
  transform: translateY(-6px);
}

.nav-toggle i::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] i::after {
  transform: translateY(-2px) rotate(-90deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(540px, 46.8vw, 640px);
  padding-block: 0;
  background-image: url("../images/lillya-hero-background.png");
  background-position: center right;
  background-size: auto 125%;
  background-repeat: no-repeat;
}

.hero__mobile-image {
  display: none;
}

.hero__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250, 246, 239, 0.96) 0%, rgba(250, 246, 239, 0.88) 25%, rgba(250, 246, 239, 0.42) 47%, rgba(250, 246, 239, 0.02) 72%),
    linear-gradient(180deg, rgba(250, 246, 239, 0.1), rgba(250, 246, 239, 0.08));
}

.hero__grid {
  position: relative;
  display: grid;
  min-height: clamp(540px, 46.8vw, 640px);
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: 0;
  padding-top: 140px;
}

.hero__copy {
  min-width: 0;
  max-width: 560px;
  padding-block: 26px 30px;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(3rem, 4.05vw, 5rem);
  line-height: 0.96;
}

.hero__text {
  max-width: 455px;
  margin-top: 18px;
  color: var(--caramel-dark);
  font-size: clamp(1.05rem, 1.22vw, 1.25rem);
  font-weight: 600;
  line-height: 1.46;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero__microcopy {
  max-width: 490px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  max-width: 510px;
  gap: 12px;
  margin-top: 28px;
}

.hero__benefits li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 130px;
  color: var(--mocha);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
}

.benefit-icon-wrapper {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(107, 81, 67, 0.32);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--caramel);
}

.benefits {
  position: relative;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 64px);
  align-items: center;
}

@media (min-width: 900px) {
  .benefits__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(60px, 8vw, 100px);
  }
}

.benefits__content > p:last-of-type,
.section-heading p,
.about__copy p,
.order__copy > p,
.whatsapp__box p {
  color: var(--muted);
  font-size: 1.02rem;
}

#benefits-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
}

.benefits__list {
  margin-top: clamp(32px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefits__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefits__icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cream);
  color: var(--caramel);
}

.benefits__icon svg {
  width: 20px;
  height: 20px;
}

.benefits__text h3 {
  color: var(--deep-brown);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.benefits__text p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.benefits__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefits__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.trust-grid p,
.order-panel p,
.order-panel li,
.product-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.products {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.72), rgba(250, 246, 239, 0.68)),
    radial-gradient(circle at 18% 10%, rgba(184, 135, 99, 0.13), transparent 24rem);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

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

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center .eyebrow::after {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-lede {
  margin-top: 16px;
  color: var(--caramel-dark) !important;
  font-weight: 800;
}

.products__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.product-card {
  display: grid;
  grid-template-columns: 40% 60%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--shadow-card);
}

.product-card__media {
  position: relative;
  display: grid;
  min-height: 280px;
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 253, 249, 0.76), transparent 36%),
    linear-gradient(140deg, rgba(240, 226, 209, 0.9), rgba(250, 246, 239, 0.62));
}



.product-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(22px, 2.4vw, 30px);
}

.product-card__tag {
  margin-bottom: 8px;
  color: var(--caramel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
}

.product-card__body > p:not(.product-card__tag):not(.price):not(.product-card__meta):not(.product-card__use) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.price {
  color: var(--caramel-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.product-card__volume {
  color: var(--mocha);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card__accordion {
  width: 100%;
  margin-top: 18px;
  border-top: 1px solid var(--border);
}

.product-card__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 14px 0;
  color: var(--deep-brown);
  background: transparent;
  text-align: left;
}

.product-card__trigger span {
  font-size: 0.92rem;
  font-weight: 900;
}

.product-card__trigger i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cream);
}

.product-card__trigger i::before,
.product-card__trigger i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: var(--caramel);
  content: "";
  transform: translate(-50%, -50%);
}

.product-card__trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.product-card__trigger[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.product-card__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.product-card__list {
  display: grid;
  gap: 8px;
  padding: 0 0 14px;
}

.product-card__panel-copy {
  padding: 0 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-card__list li,
.duo-card li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-card__list li::before,
.duo-card li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--caramel);
  border-radius: 999px;
  content: "";
}

.product-card .button {
  margin-top: 12px;
}

.product-note {
  margin-top: 24px;
  text-align: center;
}

.duo {
  padding-block: clamp(24px, 4vw, 48px);
}

.duo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 221, 210, 0.82);
  border-radius: var(--radius-xl);
  padding: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 253, 249, 0.96), transparent 26rem),
    linear-gradient(135deg, #fffdfa, #f8eee3 54%, #f4dfca 100%);
  box-shadow: var(--shadow-soft);
}

.duo-card__copy {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3vw, 44px) clamp(24px, 4vw, 40px) clamp(16px, 2vw, 32px);
}

.duo-card__copy .eyebrow {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.92);
  box-shadow: inset 0 0 0 1px rgba(226, 202, 176, 0.7);
  font-size: 0.65rem;
}

.duo-card__copy .eyebrow::before {
  display: none;
}

.duo-card__copy h2 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(3rem, 3.5vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.duo-title__top,
.duo-title__bottom {
  display: block;
}

.duo-title__bottom {
  color: var(--caramel);
}

.duo-card__divider {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  margin-block: 30px 28px;
}

.duo-card__divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 159, 117, 0), rgba(201, 159, 117, 0.8), rgba(201, 159, 117, 0));
}

.duo-card__divider svg {
  color: rgba(201, 159, 117, 0.85);
}

.duo-price {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(180px, 0.82fr);
  align-items: center;
  gap: 18px;
  max-width: 650px;
  margin-block: 26px 24px;
  border: 1px solid rgba(226, 202, 176, 0.4);
  border-radius: 24px;
  padding: 18px 24px;
  background: rgba(253, 248, 241, 0.95);
  box-shadow: 0 14px 26px rgba(102, 76, 56, 0.06);
}

.duo-price__icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff7ef, #f5e6d6);
  box-shadow: inset 0 0 0 1px rgba(220, 198, 173, 0.72);
  color: rgba(194, 131, 75, 0.85);
}

.duo-price__main,
.duo-price__saving {
  display: grid;
  gap: 6px;
}

.duo-price__saving {
  padding-left: 22px;
  border-left: 1px solid rgba(226, 202, 176, 0.4);
}

.duo-price span,
.duo-price em {
  color: var(--deep-brown);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
}

.duo-price strong {
  color: var(--caramel-dark);
  font-size: clamp(2rem, 2.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
}

.duo-card__copy > p {
  max-width: 620px;
  color: var(--mocha);
  font-size: 1.16rem;
  line-height: 1.52;
}

.duo-card__lists {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 22px;
  margin-block: 28px 34px;
  max-width: 660px;
}

.duo-card__lists h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--deep-brown);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 900;
}

.icon-circle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 159, 117, 0.52);
  border-radius: 999px;
  color: var(--caramel-dark);
  background: rgba(255, 252, 247, 0.84);
}

.duo-card__lists ul {
  display: grid;
  gap: 12px;
}

.duo-card__lists li {
  font-size: 0.98rem;
  line-height: 1.45;
}

.duo-card__lists .list-check li::before {
  top: 0.28em;
  width: 15px;
  height: 15px;
  border: none;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c58646' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23f4dfca' stroke='none'/%3E%3Cpath d='M8 12.5l3 3 5-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0;
}

.duo-card__microcopy {
  margin-top: 12px;
  color: var(--mocha);
  font-size: 0.72rem;
  font-weight: 400;
}

.duo-card__microcopy + .duo-card__microcopy {
  display: none;
}

.duo-card .button {
  width: min(390px, 100%);
  justify-content: center;
  min-height: 60px;
  margin-top: 2px;
}

.duo-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-left: 1px solid rgba(206, 152, 101, 0.52);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.duo-card__visual::before {
  display: none;
}

.duo-card__scene {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.duo-card__visual span {
  position: absolute;
  top: 70px;
  right: 58px;
  z-index: 2;
  width: 168px;
  min-height: 168px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(168, 95, 36, 0.42);
  border-radius: 999px;
  color: var(--caramel-dark);
  background: rgba(255, 253, 249, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.duo-card__visual span strong,
.duo-card__visual span small {
  display: block;
}

.duo-card__visual span small {
  color: var(--mocha);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.routine-showcase-pin {
  position: relative;
  min-height: 260vh;
  margin: 0 0 32px;
}

.routine-showcase {
  --showcase-bg: #f5e6d4;
  --showcase-panel: #fffaf4;
  position: sticky;
  top: 16px;
  min-height: 760px;
  overflow: hidden;
  margin: 0 16px;
  color: var(--deep-brown);
  background: var(--showcase-bg);
  isolation: isolate;
}

.routine-showcase::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.72), rgba(255, 253, 249, 0.22) 44%, rgba(255, 253, 249, 0.36)),
    linear-gradient(180deg, rgba(255, 253, 249, 0.1), rgba(180, 119, 70, 0.08));
  content: "";
}

.routine-showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.routine-showcase__grain {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.routine-showcase__number {
  position: absolute;
  top: 5.5%;
  left: 27%;
  z-index: 3;
  color: rgba(180, 96, 39, 0.7);
  font-family: var(--font-heading);
  font-size: clamp(10rem, 20vw, 18rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
  white-space: nowrap;
  user-select: none;
  transition: transform 650ms cubic-bezier(0.4, 0, 0.2, 1), left 650ms cubic-bezier(0.4, 0, 0.2, 1);
}

.routine-showcase.is-intro .routine-showcase__number {
  top: 8%;
  left: 50%;
  width: 100%;
  font-size: clamp(7rem, 16vw, 14rem);
  letter-spacing: 0.14em;
  line-height: 0.9;
  text-align: center;
  transform: translateX(-50%);
}

.routine-showcase.is-step-2 .routine-showcase__number {
  left: 14%;
}

.routine-showcase__stage {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.routine-showcase__item {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: min(19vw, 270px);
  aspect-ratio: 0.42 / 1;
  transform: translateX(-50%) scale(1);
  transition:
    transform 650ms cubic-bezier(0.4, 0, 0.2, 1),
    filter 650ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 650ms cubic-bezier(0.4, 0, 0.2, 1),
    left 650ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, filter, opacity, left;
}

.routine-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 32px 30px rgba(42, 30, 25, 0.18));
  user-select: none;
}

.routine-showcase__item--duo {
  width: min(35vw, 500px);
  aspect-ratio: 1.08 / 1;
}

.routine-showcase__item--duo.is-left,
.routine-showcase__item--duo.is-right {
  opacity: 0.24;
  transform: translateX(-50%) scale(0.5);
}

.routine-showcase__item.is-center {
  left: 50%;
  bottom: 5%;
  z-index: 6;
  opacity: 1;
  filter: blur(0);
  transform: translateX(-50%) scale(1.12);
}

.routine-showcase.is-intro .routine-showcase__item.is-center {
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%) scale(1.08);
}

.routine-showcase__item.is-left {
  left: 38%;
  bottom: 17%;
  z-index: 4;
  opacity: 0.34;
  filter: blur(5px);
  transform: translateX(-50%) scale(0.72);
}

.routine-showcase__item.is-right {
  left: 65%;
  bottom: 17%;
  z-index: 4;
  opacity: 0.34;
  filter: blur(5px);
  transform: translateX(-50%) scale(0.72);
}

.routine-showcase.is-intro .routine-showcase__item.is-left {
  left: 33%;
  bottom: 14%;
  transform: translateX(-50%) scale(0.62);
}

.routine-showcase.is-intro .routine-showcase__item.is-right {
  left: 67%;
  bottom: 14%;
  transform: translateX(-50%) scale(0.62);
}

.routine-showcase__hint {
  position: absolute;
  top: 27%;
  left: 58%;
  z-index: 7;
  color: var(--mocha);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1;
  transform: rotate(-8deg);
  transition: left 650ms cubic-bezier(0.4, 0, 0.2, 1);
}

.routine-showcase__hint::before {
  position: absolute;
  right: calc(100% + 8px);
  top: -12px;
  color: var(--caramel);
  content: "↗";
}

.routine-showcase.is-step-2 .routine-showcase__hint {
  left: 31%;
}

.routine-showcase.is-step-2 .routine-showcase__hint::before {
  right: auto;
  left: calc(100% + 8px);
  content: "↙";
}

.routine-showcase__copy {
  position: absolute;
  top: 26%;
  left: clamp(34px, 7vw, 118px);
  z-index: 7;
  width: min(285px, calc(100% - 48px));
  border: 1px solid rgba(255, 253, 249, 0.72);
  border-radius: 24px;
  padding: 34px 32px 30px;
  color: var(--deep-brown);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 20px 42px rgba(63, 45, 32, 0.1);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: left 650ms cubic-bezier(0.4, 0, 0.2, 1), right 650ms cubic-bezier(0.4, 0, 0.2, 1);
}

.routine-showcase.is-step-2 .routine-showcase__copy {
  right: clamp(34px, 9vw, 150px);
  left: auto;
}

.routine-showcase.is-intro .routine-showcase__copy {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.routine-showcase__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border: 1px solid rgba(168, 95, 36, 0.58);
  border-radius: 999px;
}

.routine-showcase__icon::before {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--caramel);
  font-size: 1.55rem;
  content: "♧";
}

.routine-showcase.is-step-2 .routine-showcase__icon::before {
  content: "♢";
}

.routine-showcase__eyebrow {
  margin: 8px 0 18px;
  color: var(--caramel);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.routine-showcase__copy h2 {
  color: var(--deep-brown);
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.7vw, 2.28rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.routine-showcase__copy > p:not(.routine-showcase__eyebrow) {
  color: var(--soft-black);
  font-size: 0.98rem;
  line-height: 1.56;
}

.routine-showcase__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.routine-showcase__nav {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 95, 36, 0.72);
  border-radius: 999px;
  color: var(--caramel-dark);
  background: rgba(255, 253, 249, 0.48);
  font-size: 1rem;
  transition: transform 150ms ease, background-color 150ms ease;
}

.routine-showcase__nav:hover {
  background: rgba(255, 253, 249, 0.8);
  transform: scale(1.08);
}

.routine-showcase__dots {
  position: absolute;
  left: clamp(38px, 7vw, 122px);
  bottom: 6%;
  z-index: 7;
  display: flex;
  gap: 10px;
  transition: left 650ms cubic-bezier(0.4, 0, 0.2, 1), right 650ms cubic-bezier(0.4, 0, 0.2, 1);
}

.routine-showcase.is-step-2 .routine-showcase__dots {
  right: clamp(48px, 14vw, 240px);
  left: auto;
}

.routine-showcase.is-intro .routine-showcase__dots {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.routine-showcase__dots span {
  width: 16px;
  height: 16px;
  border: 1px solid var(--caramel);
  border-radius: 999px;
  background: transparent;
}

.routine-showcase__dots span.is-active {
  background: var(--caramel);
}


.routine {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(233, 214, 196, 0.26), transparent 24rem),
    radial-gradient(circle at 84% 26%, rgba(214, 191, 168, 0.2), transparent 26rem),
    linear-gradient(180deg, rgba(255, 253, 249, 0.72), rgba(249, 244, 236, 0.92));
}

.routine__journey {
  position: relative;
  display: grid;
  gap: 28px;
  padding-block: 16px 6px;
}

.routine__journey::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 56px;
  width: 1px;
  background: linear-gradient(180deg, rgba(185, 141, 102, 0), rgba(185, 141, 102, 0.62) 12%, rgba(185, 141, 102, 0.62) 88%, rgba(185, 141, 102, 0));
  content: "";
}

.routine-step {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 460ms ease, transform 560ms ease;
}

.routine-step:nth-child(2) {
  transition-delay: 80ms;
}

.routine-step__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.78fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(225, 214, 203, 0.96);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 244, 236, 0.92)),
    radial-gradient(circle at 82% 22%, rgba(240, 220, 198, 0.58), rgba(240, 220, 198, 0));
  box-shadow: 0 28px 50px rgba(74, 52, 37, 0.08);
  transform: translate3d(var(--pointer-x, 0px), calc(var(--scroll-shift, 0px) + var(--pointer-y, 0px)), 0);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 320ms ease;
  will-change: transform;
}

.routine-step__number {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(214, 189, 164, 0.9);
  color: var(--caramel-dark);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(246, 236, 224, 0.96));
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 16px 26px rgba(110, 80, 58, 0.08);
}

.routine-step__number::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: calc(100% + 96px);
  background: linear-gradient(180deg, rgba(185, 141, 102, 0.5), rgba(185, 141, 102, 0));
  content: "";
  transform: translateX(-50%);
}

.routine-step:last-child .routine-step__number::after {
  display: none;
}

.routine-step__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 52px);
}

.routine-step h3 {
  max-width: 10ch;
  font-family: var(--font-heading);
  font-size: clamp(2.05rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--deep-brown);
  text-transform: none;
}

.routine-step p {
  max-width: 32ch;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.routine-step__visual {
  position: relative;
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: 26px 26px 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 253, 249, 0.95), rgba(255, 253, 249, 0)),
    linear-gradient(180deg, rgba(243, 230, 215, 0.92), rgba(248, 242, 234, 0.75));
}

.routine-step__visual::before {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 253, 249, 0.82), rgba(255, 253, 249, 0));
  content: "";
}

.routine-step img {
  position: relative;
  z-index: 1;
  width: min(100%, 230px);
  justify-self: center;
  align-self: end;
  filter: drop-shadow(0 24px 24px rgba(42, 30, 25, 0.16));
  transform: translateY(0);
  transition: transform 360ms ease;
}

.routine-step--cleanse {
  margin-right: 92px;
}

.routine-step--hydrate {
  margin-left: 92px;
}

.routine.is-visible .routine-step {
  opacity: 1;
  transform: translateY(0);
}

.routine__journey:hover .routine-step__card {
  border-color: rgba(194, 151, 114, 0.55);
  box-shadow: 0 28px 50px rgba(74, 52, 37, 0.1);
}

.routine__journey:hover .routine-step img {
  transform: translateY(-4px);
}

.routine-step--hydrate .routine-step__card {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.05fr);
}

.routine-step--hydrate .routine-step__copy {
  order: 2;
}

.routine-step--hydrate .routine-step__visual {
  order: 1;
}

.routine__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 18px 18px 18px 30px;
  background: rgba(255, 253, 249, 0.68);
}

.routine__footer p {
  color: var(--deep-brown);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.12;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.about__media {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--sand);
  box-shadow: var(--shadow-card);
}

.about__media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.93) contrast(1.03);
}

.about__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(42, 30, 25, 0.12));
  content: "";
}

.about__copy p + p {
  margin-top: 18px;
}

.brand-signature {
  color: var(--caramel-dark) !important;
  font-family: var(--font-heading);
  font-size: 1.7rem !important;
  font-style: italic;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.74);
  box-shadow: var(--shadow-card);
}

.trust-grid article {
  min-height: 168px;
  padding: 30px 24px;
  border-right: 1px solid var(--border);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-icon {
  margin-bottom: 20px;
  color: var(--caramel);
  display: block;
}

.order {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 0 42%, rgba(232, 216, 197, 0.6), transparent 22rem),
    linear-gradient(90deg, #f3e2d1, #fcf8f2 46%, #f6eadf);
}

.order::before {
  position: absolute;
  top: 6%;
  left: -90px;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.52);
  content: "";
}

.order__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.order__copy {
  position: sticky;
  top: 116px;
}

.order-panel {
  margin-top: 22px;
  border: 1px solid rgba(231, 221, 210, 0.84);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 253, 249, 0.62);
}

.order-panel ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.order-panel--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.order__note {
  margin-top: 18px;
  color: var(--mocha);
  font-size: 0.9rem;
  font-weight: 700;
}

.order-form-card {
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--deep-brown);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-form input,
.order-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(107, 81, 67, 0.18);
  border-radius: 14px;
  padding: 0 16px;
  color: var(--soft-black);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.order-form input:focus,
.order-form select:focus {
  border-color: rgba(168, 95, 36, 0.55);
  outline: none;
  box-shadow: 0 0 0 4px rgba(168, 95, 36, 0.12);
}

.order-form .button {
  width: 100%;
  margin-top: 18px;
}

.form-microcopy {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.form-success {
  display: grid;
  place-items: center;
  min-height: 420px;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success h3 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.form-success p {
  max-width: 520px;
  margin-top: 14px;
  color: var(--muted);
}

.form-success .button {
  margin-top: 24px;
}

.whatsapp__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 42px;
  padding: clamp(40px, 6vw, 64px);
  background: rgba(255, 253, 249, 0.75);
  box-shadow: 0 32px 64px rgba(42, 30, 25, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.whatsapp__box:hover {
  transform: translateY(-4px);
  box-shadow: 0 42px 74px rgba(42, 30, 25, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.whatsapp__bg-elements {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 42px;
}

.whatsapp__blob {
  position: absolute;
  filter: blur(60px);
  border-radius: 50%;
  opacity: 0.6;
}

.whatsapp__blob--1 {
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 95, 36, 0.1), transparent 70%);
}

.whatsapp__blob--2 {
  bottom: -30%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 139, 99, 0.08), transparent 70%);
}

.whatsapp__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.whatsapp__content .eyebrow {
  color: var(--caramel);
  background: rgba(168, 95, 36, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(168, 95, 36, 0.15);
  letter-spacing: 0.15em;
}

.whatsapp__content .eyebrow::before {
  display: none;
}

.whatsapp__content h2 {
  margin-top: 24px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.whatsapp__lede {
  margin-top: 16px;
  font-size: 1.05rem !important;
  color: var(--mocha) !important;
  line-height: 1.6;
}

.whatsapp__contact-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(107, 81, 67, 0.1);
}

.whatsapp__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(168, 95, 36, 0.08);
  border: 1px solid rgba(168, 95, 36, 0.2);
  border-radius: 50%;
  color: var(--caramel);
  box-shadow: 0 8px 16px rgba(42, 30, 25, 0.04);
}

.whatsapp__phone {
  margin-top: 0 !important;
  color: var(--deep-brown) !important;
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.whatsapp__microcopy {
  margin-top: 4px !important;
  font-size: 0.9rem !important;
  color: var(--muted) !important;
}

.whatsapp__action {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.faq__list {
  max-width: 860px;
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 12px 34px rgba(42, 30, 25, 0.045);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 22px 24px;
  color: var(--deep-brown);
  background: transparent;
  text-align: left;
}

.faq-trigger span {
  font-size: 1rem;
  font-weight: 900;
}

.faq-trigger i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cream);
}

.faq-trigger i::before,
.faq-trigger i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: var(--caramel);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-trigger[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-panel p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-panel p + p {
  padding-top: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding-block: 64px 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(122, 132, 101, 0.14), transparent 24rem),
    rgba(250, 246, 239, 0.84);
}

.site-footer::after {
  position: absolute;
  right: -48px;
  bottom: -90px;
  width: 260px;
  height: 420px;
  border-radius: 50% 0 50% 0;
  background: linear-gradient(160deg, rgba(60, 82, 48, 0.56), rgba(122, 132, 101, 0));
  content: "";
  transform: rotate(-34deg);
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) 0.7fr 1fr 0.8fr;
  gap: clamp(26px, 5vw, 66px);
}

.footer__logo {
  width: 82px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer ul {
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--deep-brown);
}

.footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 52px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.footer__bottom p {
  font-size: 0.78rem;
}

@media (max-width: 1060px) {
  .site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-header__cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: clamp(16px, 5vw, 36px);
    left: clamp(16px, 5vw, 36px);
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 8px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow-card);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 16px;
    border-radius: 14px;
  }

  .site-nav a:hover {
    background: var(--cream);
  }

  .site-nav a::after {
    display: none;
  }

  .benefits__intro,
  .about__grid,
  .order__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    background-position: 66% center;
  }

  .hero__texture {
    background:
      linear-gradient(90deg, rgba(250, 246, 239, 0.97) 0%, rgba(250, 246, 239, 0.88) 34%, rgba(250, 246, 239, 0.42) 58%, rgba(250, 246, 239, 0.08) 100%);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .duo-card,
  .product-card {
    grid-template-columns: 1fr;
  }

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

  .product-card__media {
    min-height: 330px;
  }

  .duo-card__visual {
    order: -1;
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
    min-height: 520px;
    border-left: 0;
    border-radius: 36px;
  }

  .duo-price {
    grid-template-columns: 70px 1fr;
  }

  .duo-price__saving {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid rgba(220, 198, 173, 0.9);
  }

  .duo-card__copy {
    padding: 26px 26px 32px;
  }

  .duo-card__copy > p,
  .duo-card__lists,
  .duo-price,
  .duo-card__divider {
    max-width: none;
  }

  .duo-card__copy h2 {
    max-width: 9.5ch;
    font-size: clamp(3.4rem, 8vw, 4.8rem);
  }

  .routine__journey::before {
    left: 36px;
  }

  .routine-step {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .routine-step__card,
  .routine-step--hydrate .routine-step__card {
    grid-template-columns: 1fr;
  }

  .routine-step__copy,
  .routine-step--hydrate .routine-step__copy {
    order: 2;
  }

  .routine-step__visual,
  .routine-step--hydrate .routine-step__visual {
    order: 1;
    min-height: 260px;
  }

  .routine-step__visual img {
    width: min(100%, 200px);
  }

  .routine-step--cleanse {
    margin-right: 24px;
  }

  .routine-step--hydrate {
    margin-left: 24px;
  }

  .routine-showcase__item {
    width: min(24vw, 230px);
  }

  .routine-showcase__item.is-center {
    transform: translateX(-50%) scale(1);
  }

  .order__copy {
    position: static;
  }

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

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-bottom: 48px;
    background-image: none;
  }

  .hero__texture {
    display: none;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 88px;
  }

  .hero__mobile-image {
    display: block;
    width: min(100%, 340px);
    margin: 20px auto 28px;
  }

  .hero__mobile-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero__copy {
    width: min(100%, calc(100vw - 32px));
    max-width: 390px;
    margin-inline: auto;
    text-align: center;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(2.1rem, 7.5vw, 2.6rem);
    line-height: 1.1;
  }

  .hero__text {
    width: min(100%, calc(100vw - 40px));
    max-width: 30ch;
    margin-inline: auto;
  }

  .hero__actions,
  .hero__microcopy,
  .hero__benefits {
    width: min(100%, calc(100vw - 40px));
    margin-inline: auto;
  }

  .eyebrow {
    letter-spacing: 0.1em;
  }

  .hero__copy .eyebrow {
    justify-content: center;
    max-width: 100%;
    font-size: 0.7rem;
  }

  .hero__copy .eyebrow::before {
    width: 18px;
  }

  .brand {
    width: 94px;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero__benefits {
    gap: 8px;
  }

  .hero__benefits li {
    flex: 1 1 30%;
    padding-inline: 2px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .trust-grid,
  .form-grid,
  .order-panel--inline,
  .duo-card__lists,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .product-card__body {
    padding: 28px 22px 34px;
  }

  .duo-card {
    border-radius: 32px;
    padding: 18px;
  }

  .duo-card__visual {
    min-height: 420px;
    border-radius: 30px;
  }

  .duo-card__copy {
    padding: 14px 10px 8px;
  }

  .duo-card__copy h2 {
    max-width: none;
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .duo-card__copy > p {
    max-width: none;
    font-size: 1rem;
  }

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

  .duo-price__icon {
    margin-inline: auto;
  }

  .duo-price__saving {
    justify-items: center;
  }

  .duo-card__divider {
    margin-block: 20px 18px;
  }

  .duo-card__lists {
    gap: 18px;
  }

  .duo-card__visual span {
    top: 18px;
    right: 18px;
    width: 118px;
    height: 118px;
    font-size: 0.72rem;
  }

  .routine-showcase-pin {
    min-height: 210vh;
    margin-bottom: 20px;
  }

  .routine-showcase {
    min-height: 780px;
  }

  .routine-showcase__number,
  .routine-showcase.is-step-2 .routine-showcase__number {
    top: 24px;
    left: 22px;
    font-size: clamp(6.2rem, 30vw, 8.8rem);
  }

  .routine-showcase.is-intro .routine-showcase__number {
    top: 24px;
    left: 50%;
    width: 100%;
    font-size: clamp(4.4rem, 18vw, 6.6rem);
    letter-spacing: 0.08em;
    text-align: center;
    transform: translateX(-50%);
  }

  .routine-showcase__copy,
  .routine-showcase.is-step-2 .routine-showcase__copy {
    top: 92px;
    right: 18px;
    left: auto;
    width: min(210px, calc(100% - 34px));
    border-radius: 20px;
    padding: 22px 18px;
  }

  .routine-showcase__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .routine-showcase__copy h2 {
    font-size: 1.65rem;
  }

  .routine-showcase__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .routine-showcase__copy > p:not(.routine-showcase__eyebrow) {
    display: none;
  }

  .routine-showcase__actions {
    margin-top: 14px;
  }

  .routine-showcase__nav {
    width: 38px;
    height: 38px;
  }

  .routine-showcase__item {
    width: min(45vw, 190px);
  }

  .routine-showcase__item--duo {
    width: min(68vw, 300px);
  }

  .routine-showcase__item.is-center {
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%) scale(1.02);
  }

  .routine-showcase.is-intro .routine-showcase__item.is-center {
    left: 50%;
    bottom: 22%;
    transform: translateX(-50%) scale(0.96);
  }

  .routine-showcase.is-intro .routine-showcase__copy {
    display: none;
  }

  .routine-showcase__item.is-left {
    left: 24%;
    bottom: 30%;
    transform: translateX(-50%) scale(0.5);
  }

  .routine-showcase__item.is-right {
    left: 76%;
    bottom: 30%;
    transform: translateX(-50%) scale(0.5);
  }

  .routine-showcase__dots,
  .routine-showcase.is-step-2 .routine-showcase__dots {
    right: auto;
    bottom: 20px;
    left: 22px;
  }

  .routine-step {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .routine__journey {
    gap: 22px;
  }

  .routine__journey::before {
    top: 34px;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
  }

  .routine-step__number {
    margin-inline: auto;
  }

  .routine-step__card,
  .routine-step--hydrate .routine-step__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .routine-step__copy,
  .routine-step--hydrate .routine-step__copy {
    order: 2;
    padding: 28px 22px 30px;
    text-align: center;
  }

  .routine-step__visual,
  .routine-step--hydrate .routine-step__visual {
    order: 1;
    min-height: 220px;
    padding-top: 22px;
  }

  .routine-step__visual img {
    width: min(100%, 176px);
  }

  .routine-step h3 {
    max-width: none;
  }

  .routine-step p {
    max-width: none;
  }

  .routine-step--cleanse,
  .routine-step--hydrate {
    margin-inline: 0;
  }

  .routine__footer {
    align-items: stretch;
    flex-direction: column;
    border-radius: 28px;
    padding: 24px;
    text-align: center;
  }

  .about__media,
  .about__media img {
    min-height: 320px;
  }

  .whatsapp__box,
  .footer__bottom {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .whatsapp__box .eyebrow {
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
  }

  .whatsapp__contact-info {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 12px;
  }

  .whatsapp__action {
    width: 100%;
    margin-top: 24px;
  }
  
  .whatsapp__action .button--whatsapp {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .section-shell {
    width: min(100% - 28px, var(--shell));
  }

  .hero {
    min-height: auto;
    padding-bottom: 36px;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(1.85rem, 8.5vw, 2.15rem);
  }

  .hero__copy .eyebrow {
    letter-spacing: 0.07em;
  }

  .hero__copy .eyebrow::before {
    display: none;
  }

  .button {
    padding-inline: 18px;
  }

  .product-card__media {
    min-height: 278px;
  }

  .duo-card__visual {
    min-height: 320px;
  }
}

.duo-card__microcopy {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 300;
  opacity: 0.9;
}

.duo-card__microcopy svg {
  display: block;
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  color: var(--mocha);
  margin: 0;
  stroke-width: 1.0;
}

.benefits.section-pad {
  padding-bottom: clamp(24px, 4vw, 48px) !important;
}

.products.section-pad {
  padding-top: clamp(24px, 4vw, 48px) !important;
  padding-bottom: clamp(24px, 3vw, 40px) !important;
}

.duo.section-pad {
  padding-top: clamp(24px, 3vw, 40px) !important;
}

.whatsapp.section-pad {
  padding-bottom: clamp(24px, 4vw, 48px) !important;
}

.faq.section-pad {
  padding-top: clamp(24px, 4vw, 48px) !important;
}

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