body.theme-beauty-wellness {
  --ink: #171011;
  --text: #473b3a;
  --muted: #766967;
  --paper: #fffaf6;
  --blush: #f6e4df;
  --rose: #bd6170;
  --rose-dark: #843641;
  --moss: #315245;
  --blue: #466f86;
  --line: rgba(23, 16, 17, 0.14);
  --shadow: 0 22px 56px rgba(43, 27, 27, 0.14);
  --radius: 8px;
  --max: 1180px;
  margin: 0;
  background: linear-gradient(180deg, #fffaf6 0%, #f7ebe7 42%, #fbf6ee 100%);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

.theme-beauty-wellness * {
  box-sizing: border-box;
}

.theme-beauty-wellness a {
  color: inherit;
}

.theme-beauty-wellness h1,
.theme-beauty-wellness h2,
.theme-beauty-wellness h3,
.theme-beauty-wellness .brand {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.theme-beauty-wellness h1 {
  max-width: 9ch;
  font-size: clamp(3.6rem, 8vw, 6.3rem);
  line-height: 0.88;
}

.theme-beauty-wellness h2 {
  font-size: clamp(2.3rem, 5vw, 4.45rem);
  line-height: 0.98;
}

.theme-beauty-wellness h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.theme-beauty-wellness p {
  margin: 0;
  color: var(--text);
  line-height: 1.66;
}

.beauty-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.announcement-bar {
  background: var(--moss);
  color: var(--paper);
}

.announcement-row {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.announcement-row p,
.announcement-row a {
  color: inherit;
}

.beauty-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(23, 16, 17, 0.1);
  background: rgba(255, 250, 246, 0.94);
  backdrop-filter: blur(18px);
}

.header-row {
  display: grid;
  min-height: 88px;
  align-items: center;
  gap: 1rem;
  grid-template-columns: 1fr auto 1fr;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.78rem;
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(189, 97, 112, 0.48);
  border-radius: 50%;
  background: #fff5f1;
  color: var(--rose-dark);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.35rem);
}

.site-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

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

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

.beauty-header .site-nav a:last-child {
  min-height: auto;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.icon-link,
.bag-link {
  position: relative;
  display: inline-flex;
  width: 1.7rem;
  height: 1.7rem;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
}

.search-icon::before {
  width: 0.78rem;
  height: 0.78rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.search-icon::after {
  position: absolute;
  width: 0.45rem;
  height: 2px;
  transform: translate(0.49rem, 0.49rem) rotate(45deg);
  background: currentColor;
  content: "";
}

.account-icon::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0.58rem 0 0.2rem currentColor;
  content: "";
}

.bag-icon {
  position: relative;
  width: 1.02rem;
  height: 0.82rem;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 0.16rem 0.16rem;
}

.bag-icon::before {
  position: absolute;
  top: -0.36rem;
  left: 0.18rem;
  width: 0.52rem;
  height: 0.36rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  content: "";
}

.bag-link strong {
  position: absolute;
  top: -0.52rem;
  right: -0.62rem;
  display: grid;
  width: 1.18rem;
  height: 1.18rem;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 0.66rem;
}

.theme-beauty-wellness .nav-toggle {
  display: none;
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.theme-beauty-wellness .mobile-contact-bar {
  background: var(--ink);
}

.theme-beauty-wellness .mobile-contact-bar a {
  color: var(--paper);
}

.beauty-hero {
  display: grid;
  min-height: min(620px, 58svh);
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 16, 17, 0.72), rgba(23, 16, 17, 0.26) 48%, rgba(23, 16, 17, 0.08)),
    url("https://images.unsplash.com/photo-1556228720-195a672e8a03?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.hero-content {
  padding: clamp(2rem, 4vw, 2.6rem) 0;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-lead {
  color: var(--paper);
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.theme-beauty-wellness .eyebrow::before,
.theme-beauty-wellness .eyebrow::after {
  display: none;
  content: none;
}

.hero-lead {
  max-width: 43rem;
  margin-top: 1rem;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.theme-beauty-wellness .button {
  display: inline-flex;
  width: auto;
  min-width: 12rem;
  min-height: 3.25rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.theme-beauty-wellness .button-primary {
  padding: 0.95rem 1.35rem;
  border: 1px solid var(--rose);
  background: var(--rose);
  color: #fff;
  box-shadow: 0 14px 30px rgba(132, 54, 65, 0.2);
}

.theme-beauty-wellness .button-secondary {
  padding: 0.95rem 1.25rem;
  border: 1px solid rgba(255, 250, 246, 0.72);
  background: rgba(255, 250, 246, 0.12);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.hero-proof {
  display: flex;
  max-width: 46rem;
  flex-wrap: wrap;
  gap: 0.8rem 1.8rem;
  margin-top: 1.1rem;
  color: rgba(255, 250, 246, 0.92);
}

.hero-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}

.hero-proof strong {
  color: #fff;
  font-size: 1.35rem;
}

.feature-band {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.feature-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--line);
}

.feature-grid article,
.page-suite article {
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background: var(--paper);
}

.feature-grid article {
  min-height: 210px;
}

.feature-grid span,
.product-copy span,
.page-suite span,
.journal-card span {
  color: var(--rose-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-grid h2 {
  margin-top: 1.25rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.feature-grid p,
.product-copy h3,
.product-copy p,
.journal-card h3 {
  margin-top: 0.75rem;
}

.section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.split-heading {
  display: grid;
  align-items: end;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.center-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.product-card,
.journal-card,
.consult-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-card {
  position: relative;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-copy {
  padding: 1.15rem;
}

.product-copy p {
  color: var(--ink);
  font-weight: 800;
}

.product-copy a,
.journal-card a {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--moss);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22rem;
}

.product-badge {
  position: absolute;
  z-index: 1;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.rituals-section,
.consult-section {
  background: var(--blush);
}

.ritual-grid {
  display: grid;
  min-height: 470px;
  gap: 1rem;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.ritual-tile {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23, 16, 17, 0.05), rgba(23, 16, 17, 0.68)), var(--tile-image) center / cover;
  color: #fff;
  text-decoration: none;
}

.tile-large {
  grid-row: span 2;
}

.ritual-tile span {
  color: rgba(255, 250, 246, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ritual-tile strong {
  max-width: 12ch;
  margin-top: 0.65rem;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 0.95;
}

.results-band {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--ink);
}

.results-grid,
.pages-grid,
.consult-grid {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.results-band .eyebrow,
.results-band h2,
.results-band p {
  color: var(--paper);
}

.metric-grid,
.page-suite {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 250, 246, 0.22);
}

.metric-grid article {
  min-height: 210px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 250, 246, 0.06);
}

.metric-grid strong {
  display: block;
  color: #f8d6d1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.9;
}

.metric-grid span {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 250, 246, 0.78);
  line-height: 1.55;
}

.pages-section,
.journal-section {
  background: var(--paper);
}

.page-suite {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  box-shadow: var(--shadow);
}

.page-suite strong {
  display: block;
  margin-top: 0.62rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1;
}

.pages-copy p:not(.eyebrow),
.consult-copy > p:not(.eyebrow) {
  margin: 1rem 0 1.45rem;
}

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

.journal-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.journal-card img,
.consult-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.journal-card div {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-form {
  display: grid;
  max-width: 560px;
  gap: 0.8rem;
}

.contact-form label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input {
  width: 100%;
  min-height: 3.2rem;
  margin-top: 0.35rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.96);
  color: var(--ink);
  outline: 0;
}

.button-full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-message {
  min-height: 1.4rem;
  color: var(--moss);
  font-weight: 800;
}

.form-message.error {
  color: var(--rose-dark);
}

.beauty-footer {
  padding: clamp(3.5rem, 7vw, 5rem) 0 1.5rem;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(170px, 0.7fr) minmax(210px, 0.8fr);
}

.beauty-footer .brand,
.beauty-footer h2,
.beauty-footer p,
.beauty-footer a {
  color: var(--paper);
}

.beauty-footer p {
  max-width: 32rem;
  margin-top: 0.9rem;
  color: rgba(255, 250, 246, 0.72);
}

.beauty-footer nav {
  display: grid;
  gap: 0.6rem;
}

.beauty-footer a {
  color: rgba(255, 250, 246, 0.78);
  font-weight: 700;
  text-decoration: none;
}

.copyright {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 250, 246, 0.16);
  color: rgba(255, 250, 246, 0.62);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .announcement-row {
    justify-content: center;
    text-align: center;
  }

  .announcement-row a,
  .header-actions {
    display: none;
  }

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

  .theme-beauty-wellness .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.78rem;
  }

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

  .beauty-hero {
    min-height: min(590px, 56svh);
    background-position: 58% center;
  }

  .feature-grid,
  .results-grid,
  .pages-grid,
  .consult-grid,
  .footer-grid,
  .metric-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .announcement-row {
    min-height: 38px;
    font-size: 0.75rem;
  }

  .header-row {
    min-height: 76px;
  }

  .brand {
    font-size: 1.7rem;
  }

  .brand-mark {
    width: 2.2rem;
    height: 2.2rem;
  }

  .beauty-hero {
    min-height: min(540px, 54svh);
    background: linear-gradient(90deg, rgba(23, 16, 17, 0.76), rgba(23, 16, 17, 0.38)), url("https://images.unsplash.com/photo-1556228720-195a672e8a03?auto=format&fit=crop&w=1300&q=82") 58% center / cover;
  }

  .hero-content {
    padding: 3rem 0;
  }

  .button-row,
  .hero-proof {
    align-items: stretch;
    flex-direction: column;
  }

  .theme-beauty-wellness .button {
    width: 100%;
  }

  .section {
    padding: 3.8rem 0;
  }

  .product-grid,
  .ritual-grid,
  .page-suite,
  .journal-card {
    grid-template-columns: 1fr;
  }

  .ritual-grid {
    min-height: auto;
    grid-template-rows: none;
  }

  .tile-large {
    grid-row: auto;
  }

  .ritual-tile {
    min-height: 270px;
  }
}
