:root {
  --ink: #11100f;
  --paper: #f7f4ef;
  --white: #fff;
  --muted: #756f68;
  --line: #ddd6cc;
  --violet: #836cf4;
  --silver: #cfc6be;
  --radius: 22px;
  --shell: min(1200px, calc(100% - 40px));
}

/* Terms & Conditions: visible store rules without legal fine-print styling */
.terms-page {
  overflow: hidden;
  padding-bottom: 118px;
}
.terms-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 32px;
  align-items: end;
  padding: 104px 0 64px;
}
.terms-hero h1,
.terms-summary h2,
.terms-content h2,
.terms-notice h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.052em;
}
.terms-hero h1 {
  max-width: 900px;
  margin-top: 20px;
  font-size: clamp(58px, 7.6vw, 104px);
  line-height: 0.94;
}
.terms-hero__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}
.terms-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.terms-hero__note {
  padding: clamp(30px, 3.4vw, 46px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 8%, rgba(131, 108, 244, 0.42), transparent 38%),
    #11100f;
}
.terms-hero__note span {
  color: #a994ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.terms-hero__note strong {
  display: block;
  margin: 20px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.terms-hero__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.terms-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 76px;
}
.terms-facts article {
  min-height: 162px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
}
.terms-facts span {
  display: block;
  margin-bottom: 30px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.terms-facts strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.025em;
}
.terms-facts p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.terms-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.terms-summary {
  position: sticky;
  top: 118px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 16, 15, 0.06);
}
.terms-summary .eyebrow,
.terms-notice .eyebrow {
  color: var(--violet);
}
.terms-summary h2 {
  margin-top: 17px;
  font-size: clamp(31px, 3.2vw, 43px);
  line-height: 1.02;
}
.terms-summary ul {
  display: grid;
  gap: 0;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}
.terms-summary li {
  position: relative;
  padding: 15px 0 15px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.terms-summary li:last-child {
  border-bottom: 1px solid var(--line);
}
.terms-summary li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}
.terms-summary .button {
  width: 100%;
}
.terms-summary__contact {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
.terms-summary__contact a,
.terms-content a {
  color: var(--ink);
  text-decoration-color: var(--violet);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.terms-content {
  display: grid;
  gap: 14px;
}
.terms-content article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 20px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
}
.terms-content article > span {
  display: grid;
  width: 50px;
  height: 50px;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 50%;
  color: var(--violet);
  background: rgba(131, 108, 244, 0.1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.terms-content h2 {
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.05;
}
.terms-content p {
  grid-column: 2;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}
.terms-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 72px;
  padding: clamp(36px, 5vw, 66px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 75% 0%, rgba(131, 108, 244, 0.42), transparent 32%),
    #11100f;
}
.terms-notice h2 {
  margin-top: 15px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.98;
}
.terms-notice > div:first-child > p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}
.terms-notice .button-row {
  justify-content: flex-end;
}
.terms-notice .button.ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

@media (max-width: 980px) {
  .terms-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .terms-hero__note {
    max-width: 620px;
  }
  .terms-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .terms-layout {
    grid-template-columns: 1fr;
  }
  .terms-summary {
    position: static;
  }
  .terms-notice {
    grid-template-columns: 1fr;
  }
  .terms-notice .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .terms-page {
    padding-bottom: 82px;
  }
  .terms-hero {
    gap: 24px;
    padding: 60px 0 38px;
  }
  .terms-hero h1 {
    font-size: clamp(45px, 14vw, 62px);
  }
  .terms-hero__copy > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 16px;
  }
  .terms-meta {
    display: grid;
    gap: 7px;
    margin-top: 22px;
    font-size: 10px;
  }
  .terms-hero__note,
  .terms-summary,
  .terms-content article,
  .terms-notice {
    border-radius: 20px;
  }
  .terms-hero__note {
    padding: 28px;
  }
  .terms-facts {
    margin-bottom: 52px;
  }
  .terms-facts article {
    min-height: 145px;
    padding: 22px;
  }
  .terms-facts span {
    margin-bottom: 22px;
  }
  .terms-summary {
    padding: 28px;
  }
  .terms-content article {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    padding: 25px 22px;
  }
  .terms-content article > span {
    width: 40px;
    height: 40px;
  }
  .terms-content h2 {
    font-size: 25px;
  }
  .terms-content p {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.7;
  }
  .terms-notice {
    margin-top: 52px;
    padding: 32px 26px;
  }
  .terms-notice .button-row {
    display: grid;
  }
  .terms-notice .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .terms-facts {
    grid-template-columns: 1fr;
  }
  .terms-facts article {
    min-height: 0;
  }
}

/* Contact: direct, useful and conversion-focused */
.contact-page {
  overflow: hidden;
  padding-bottom: 118px;
}
.contact-hero {
  padding: 112px 0 76px;
}
.contact-hero h1,
.contact-direct h2,
.contact-form-card h2,
.contact-help h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.055em;
}
.contact-hero h1 {
  max-width: 950px;
  margin-top: 22px;
  font-size: clamp(58px, 7.7vw, 108px);
  line-height: 0.94;
}
.contact-hero > p:last-child {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}
.contact-workspace {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: stretch;
}
.contact-direct,
.contact-form-card {
  border-radius: 30px;
  padding: clamp(34px, 4.4vw, 64px);
}
.contact-direct {
  color: #fff;
  background:
    radial-gradient(circle at 86% 15%, rgba(131, 108, 244, 0.34), transparent 34%),
    #11100f;
}
.contact-direct .eyebrow,
.contact-form-card .eyebrow,
.contact-help .eyebrow {
  color: var(--violet);
}
.contact-direct h2,
.contact-form-card h2 {
  margin: 18px 0 40px;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1;
}
.contact-channels {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.contact-channel {
  display: grid;
  gap: 7px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.contact-channel span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-channel a,
.contact-channel strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.contact-whatsapp {
  width: 100%;
  margin-top: 32px;
  color: var(--ink) !important;
  background: #fff;
  text-align: center;
}
.contact-response {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-align: center;
}
.contact-form-card {
  background: #fff;
  box-shadow: 0 30px 70px rgba(17, 16, 15, 0.07);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 16px;
  color: var(--ink);
  background: #faf8f5;
  font: inherit;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(131, 108, 244, 0.13);
}
.contact-form .button {
  min-width: 180px;
}
.contact-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.contact-alert {
  margin: -16px 0 28px;
  border-radius: 13px;
  padding: 15px 17px;
  font-size: 14px;
  line-height: 1.5;
}
.contact-alert--success {
  color: #245d45;
  background: #e8f7ef;
}
.contact-alert--error {
  color: #8b2d2d;
  background: #fff0f0;
}
.contact-help {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 92px;
}
.contact-help__heading {
  grid-column: 1 / -1;
  margin-bottom: 22px;
}
.contact-help h2 {
  margin-top: 14px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
}
.contact-help article {
  min-height: 250px;
  border: 1px solid rgba(17, 16, 15, 0.06);
  border-radius: 24px;
  padding: 30px;
  background: #fff;
}
.contact-help article span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
}
.contact-help article h3 {
  margin: 82px 0 10px;
  font-size: 22px;
}
.contact-help article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Shipping & Returns: transparent policy and direct order support */
.shipping-page {
  overflow: hidden;
  padding-bottom: 120px;
}
.shipping-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
  padding: 112px 0 72px;
}
.shipping-hero h1,
.shipping-policy h2,
.shipping-claim h2,
.shipping-faq h2,
.shipping-support h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.055em;
}
.shipping-hero h1 {
  max-width: 900px;
  margin-top: 22px;
  font-size: clamp(64px, 7.7vw, 110px);
  line-height: 0.92;
}
.shipping-hero__copy > p:last-child {
  max-width: 730px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}
.shipping-rate-card {
  min-height: 330px;
  border-radius: 30px;
  padding: clamp(32px, 4vw, 52px);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(131, 108, 244, 0.52), transparent 42%),
    #11100f;
}
.shipping-rate-card span {
  color: #aa98ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.shipping-rate-card strong {
  display: block;
  margin-top: 88px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.shipping-rate-card p {
  max-width: 290px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.shipping-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 110px;
}
.shipping-summary article {
  min-height: 190px;
  border: 1px solid rgba(17, 16, 15, 0.06);
  border-radius: 22px;
  padding: 26px;
  background: #fff;
}
.shipping-summary span {
  display: block;
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.shipping-summary strong {
  display: block;
  margin-top: 44px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.shipping-summary p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.shipping-policy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 110px;
}
.shipping-policy-card {
  min-width: 0;
  border-radius: 30px;
  padding: clamp(38px, 5.2vw, 68px);
  background: #fff;
  box-shadow: 0 24px 64px rgba(17, 16, 15, 0.06);
}
.shipping-policy-card .eyebrow,
.shipping-claim .eyebrow,
.shipping-faq .eyebrow,
.shipping-support .eyebrow {
  color: var(--violet);
}
.shipping-policy h2 {
  max-width: 580px;
  margin-top: 18px;
  font-size: clamp(44px, 4.7vw, 64px);
  line-height: 0.98;
}
.shipping-policy-card > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.shipping-policy-points {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}
.shipping-policy-points > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.shipping-policy-points span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
}
.shipping-policy-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.shipping-policy-card--dark {
  color: #fff;
  background:
    radial-gradient(circle at 0% 100%, rgba(131, 108, 244, 0.36), transparent 42%),
    #11100f;
}
.shipping-policy-card--dark .eyebrow {
  color: #aa98ff;
}
.shipping-policy-card--dark > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}
.shipping-eligibility {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}
.shipping-eligibility > div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
}
.shipping-eligibility span {
  color: #aa98ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.shipping-eligibility p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.shipping-claim {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 8vw, 118px);
  padding-bottom: 116px;
}
.shipping-claim h2,
.shipping-faq h2,
.shipping-support h2 {
  margin-top: 16px;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 0.98;
}
.shipping-claim__steps {
  border-top: 1px solid var(--line);
}
.shipping-claim__steps p {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.shipping-claim__steps span {
  color: var(--violet);
  font-weight: 800;
}
.shipping-faq {
  padding-bottom: 108px;
}
.shipping-faq header {
  max-width: 760px;
  margin-bottom: 48px;
}
.shipping-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.shipping-faq article {
  min-height: 210px;
  border: 1px solid rgba(17, 16, 15, 0.06);
  border-radius: 22px;
  padding: 30px;
  background: #fff;
}
.shipping-faq h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}
.shipping-faq article p {
  margin: 34px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.shipping-support {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-end;
  border-radius: 32px;
  padding: clamp(42px, 6vw, 72px);
  background:
    radial-gradient(circle at 90% 120%, rgba(255, 255, 255, 0.75), transparent 42%),
    linear-gradient(135deg, #ded6ff, #eeeaff);
}
.shipping-support > div:first-child {
  max-width: 760px;
}
.shipping-support h2 {
  max-width: 680px;
}
.shipping-support > div:first-child > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: #585162;
  font-size: 17px;
}
.shipping-support .button-row {
  flex: 0 0 auto;
}

/* About: premium, image-free brand story */
.about-page {
  overflow: hidden;
}
.about-hero {
  padding: 118px 0 92px;
}
.about-hero h1,
.about-philosophy h2,
.about-promise h2,
.about-cta h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.06em;
}
.about-hero h1 {
  max-width: 980px;
  margin-top: 22px;
  font-size: clamp(64px, 7.6vw, 112px);
  line-height: 0.92;
}
.about-hero__intro {
  max-width: 760px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
}
.about-philosophy__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 72px;
  align-items: end;
  padding: clamp(48px, 6vw, 82px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 108%, rgba(131, 108, 244, 0.46), transparent 38%),
    radial-gradient(circle at 94% -15%, rgba(187, 168, 255, 0.18), transparent 32%),
    #11100f;
  border-radius: 36px;
}
.about-philosophy__panel .eyebrow,
.about-cta .eyebrow {
  color: #aa98ff;
}
.about-philosophy h2 {
  max-width: 740px;
  margin-top: 20px;
  font-size: clamp(42px, 5.3vw, 74px);
  line-height: 1;
}
.about-philosophy__panel > p {
  margin: 0;
  color: #cfc9c3;
  font-size: 18px;
  line-height: 1.75;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 22px 0 118px;
}
.about-value-card {
  min-height: 292px;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(17, 16, 15, 0.05);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(31, 22, 13, 0.05);
}
.about-value-card > span {
  display: block;
  color: var(--violet);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.about-value-card h3 {
  margin: 92px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  letter-spacing: -0.04em;
}
.about-value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.about-promise {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 88px;
  align-items: center;
  padding: 0 0 124px;
}
.about-promise h2 {
  max-width: 600px;
  margin-top: 18px;
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 0.98;
}
.about-promise__copy > p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.about-facts > div {
  min-height: 142px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-facts dt {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -0.04em;
}
.about-facts dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.about-cta {
  margin-bottom: 120px;
  padding: clamp(48px, 7vw, 86px);
  background:
    radial-gradient(circle at 18% 120%, rgba(255, 255, 255, 0.8), transparent 40%),
    linear-gradient(135deg, #e0d8ff 0%, #d3c9ff 54%, #eee9ff 100%);
  border-radius: 36px;
}
.about-cta h2 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(48px, 5.8vw, 78px);
  line-height: 0.98;
}
.about-cta > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  color: #554f5d;
  font-size: 18px;
  line-height: 1.65;
}
.about-cta .button-row {
  margin-top: 34px;
}

@media (max-width: 900px) {
  .shipping-hero,
  .shipping-claim {
    grid-template-columns: 1fr;
  }
  .shipping-rate-card {
    min-height: 0;
  }
  .shipping-rate-card strong {
    margin-top: 62px;
  }
  .shipping-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 88px;
  }
  .shipping-policy {
    grid-template-columns: 1fr;
    padding-bottom: 88px;
  }
  .shipping-claim {
    gap: 38px;
    padding-bottom: 90px;
  }
  .shipping-support {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-hero {
    padding: 84px 0 72px;
  }
  .about-philosophy__panel,
  .about-promise {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-values {
    grid-template-columns: 1fr;
    padding-bottom: 88px;
  }
  .about-value-card {
    min-height: 0;
  }
  .about-value-card h3 {
    margin-top: 58px;
  }
  .about-promise {
    padding-bottom: 92px;
  }
}

@media (max-width: 620px) {
  .shipping-page {
    padding-bottom: 76px;
  }
  .shipping-hero {
    gap: 30px;
    padding: 64px 0 52px;
  }
  .shipping-hero h1 {
    margin-top: 16px;
    font-size: clamp(47px, 14vw, 61px);
    line-height: 0.95;
  }
  .shipping-hero__copy > p:last-child {
    margin-top: 26px;
    font-size: 17px;
  }
  .shipping-rate-card {
    border-radius: 22px;
    padding: 30px 26px;
  }
  .shipping-rate-card strong {
    margin-top: 48px;
    font-size: 46px;
  }
  .shipping-summary {
    gap: 10px;
    padding-bottom: 68px;
  }
  .shipping-summary article {
    min-height: 166px;
    padding: 21px 18px;
  }
  .shipping-summary strong {
    margin-top: 34px;
    font-size: 11px;
  }
  .shipping-summary p {
    font-size: 15px;
    overflow-wrap: anywhere;
  }
  .shipping-policy {
    gap: 14px;
    padding-bottom: 70px;
  }
  .shipping-policy-card {
    border-radius: 22px;
    padding: 32px 26px;
  }
  .shipping-policy h2,
  .shipping-claim h2,
  .shipping-faq h2,
  .shipping-support h2 {
    font-size: 39px;
    line-height: 1;
  }
  .shipping-policy-card > p:not(.eyebrow),
  .shipping-claim__steps p,
  .shipping-support > div:first-child > p:last-child {
    font-size: 16px;
  }
  .shipping-policy-points > div {
    grid-template-columns: 28px minmax(0, 1fr);
  }
  .shipping-claim {
    gap: 30px;
    padding-bottom: 70px;
  }
  .shipping-claim__steps p {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }
  .shipping-faq {
    padding-bottom: 70px;
  }
  .shipping-faq header {
    margin-bottom: 30px;
  }
  .shipping-faq__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .shipping-faq article {
    min-height: 0;
    padding: 26px;
  }
  .shipping-faq article p {
    margin-top: 22px;
  }
  .shipping-support {
    gap: 30px;
    border-radius: 24px;
    padding: 36px 28px;
  }
  .shipping-support .button-row {
    display: grid;
    width: 100%;
    gap: 10px;
  }
  .shipping-support .button {
    width: 100%;
  }
  .about-hero {
    padding: 66px 0 58px;
  }
  .about-hero h1 {
    margin-top: 16px;
    font-size: clamp(48px, 14vw, 62px);
    line-height: 0.95;
  }
  .about-hero__intro {
    margin-top: 28px;
    font-size: 17px;
  }
  .about-philosophy__panel {
    gap: 30px;
    padding: 34px 28px;
    border-radius: 24px;
  }
  .about-philosophy h2,
  .about-promise h2,
  .about-cta h2 {
    font-size: 40px;
    line-height: 1;
  }
  .about-philosophy__panel > p,
  .about-promise__copy > p:last-child,
  .about-cta > p:not(.eyebrow) {
    font-size: 16px;
  }
  .about-values {
    gap: 14px;
    padding: 14px 0 70px;
  }
  .about-value-card {
    padding: 28px;
    border-radius: 22px;
  }
  .about-value-card h3 {
    margin-top: 44px;
    font-size: 23px;
  }
  .about-promise {
    gap: 34px;
    padding-bottom: 72px;
  }
  .about-facts {
    grid-template-columns: 1fr 1fr;
  }
  .about-facts > div {
    min-height: 122px;
    padding: 22px 18px;
  }
  .about-facts dt {
    font-size: 22px;
  }
  .about-cta {
    margin-bottom: 72px;
    padding: 36px 28px;
    border-radius: 24px;
  }
  .about-cta .button-row {
    display: grid;
    gap: 10px;
    margin-top: 28px;
  }
  .about-cta .button {
    width: 100%;
  }
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 999;
  background: #fff;
  padding: 10px;
}

.announcement {
  background: #111;
  color: #fff;
  padding: 8px 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.announcement span {
  margin: 0 10px;
  color: var(--violet);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 239, 0.96);
  border-bottom: 1px solid rgba(17, 16, 15, 0.08);
  backdrop-filter: blur(16px);
}
.admin-bar .site-header {
  top: 32px;
}
.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand {
  justify-self: start;
  line-height: 1;
}
.recovered-logo,
.brand .custom-logo {
  width: auto;
  max-width: 360px;
  max-height: 48px;
  object-fit: contain;
}
.site-nav {
  justify-self: center;
}
.site-nav ul,
.footer-grid ul {
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-nav a,
.header-actions a {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.header-actions {
  justify-self: end;
  display: flex;
  gap: 22px;
}
.cart-count {
  min-width: 20px;
  height: 20px;
  margin-left: 4px;
  display: inline-grid;
  place-items: center;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
}
.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font:
    700 13px "DM Sans",
    sans-serif;
  cursor: pointer;
}

.hero {
  padding: 72px 0 64px;
}
.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 26px;
  font:
    700 clamp(42px, 5.2vw, 76px) / 1.01 "Manrope",
    sans-serif;
  letter-spacing: -0.055em;
}
.hero h1 em {
  color: var(--muted);
  font-style: normal;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
}
.button-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 14px 24px !important;
  border: 1px solid var(--ink) !important;
  border-radius: 999px !important;
  font:
    700 13px "DM Sans",
    sans-serif !important;
  transition: 0.2s;
}
.button.primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--ink) !important;
  color: #fff !important;
}
.button.ghost {
  background: transparent;
}
.button:hover {
  transform: translateY(-2px);
}
.hero-proof {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.hero-proof span + span::before {
  content: "•";
  margin-right: 22px;
  color: var(--violet);
}
.aura-stage {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 28px;
  background: #15141a;
  box-shadow: 0 36px 80px rgba(24, 20, 38, 0.2);
}
.aura-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 110px 0;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-heading h2,
.center-heading h2,
.dark-section h2,
.quiz-band h2 {
  margin: 0;
  font:
    700 clamp(34px, 4vw, 54px) / 1.05 "Manrope",
    sans-serif;
  letter-spacing: -0.04em;
}
.section-heading > a {
  border-bottom: 1px solid;
  font-size: 13px;
  font-weight: 700;
}

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 14px 14px 22px !important;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  transition: 0.25s;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(32, 27, 22, 0.1);
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
}
.woocommerce ul.products li.product img {
  width: 100%;
  height: auto;
  margin: 0 !important;
  padding: 8%;
  aspect-ratio: 1 / 1.12;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(17, 16, 15, 0.04);
  border-radius: 14px;
  background: #f3f1ed;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 16px 4px 4px !important;
  font:
    700 21px "Manrope",
    sans-serif !important;
}
.woocommerce ul.products li.product .price {
  padding: 0 4px;
  color: var(--muted) !important;
  font-weight: 700 !important;
}
.woocommerce ul.products li.product .button {
  margin: 14px 4px 0 !important;
}

.dark-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 82% 48%, rgba(126, 91, 126, 0.12), transparent 31%),
    #0d0d0f;
  color: #fff;
}
.dark-section::before {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}
.bestseller {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(72px, 8vw, 118px);
  align-items: center;
}
.bestseller-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: #1b151c;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46);
}
.bestseller-art::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
}
.bestseller-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.bestseller-art:hover img {
  transform: scale(1.018);
}
.bestseller-copy {
  max-width: 560px;
}
.bestseller-copy .eyebrow {
  margin-bottom: 18px;
  color: #b9a3ff;
  letter-spacing: 0.2em;
}
.bestseller-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.lead {
  max-width: 540px;
  margin: 0;
  color: #c8c2be;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
}
.note-list {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 32px 0 38px;
  list-style: none;
}
.note-list li {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  color: #e2deda;
  font-size: 12px;
  white-space: nowrap;
}
.bestseller-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px 0;
  margin-bottom: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.bestseller-proof span {
  padding-right: 12px;
  color: #8f8985;
  font-size: 11px;
  line-height: 1.35;
}
.bestseller-proof span + span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}
.bestseller-proof strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
}
.bestseller-action {
  display: flex;
  align-items: center;
  gap: 22px;
}
.bestseller-action > span {
  color: #8f8985;
  font-size: 11px;
}
.light-button {
  border-color: #fff !important;
  background: #fff;
  color: #111 !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}
.center-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}
.how-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 118px;
  background:
    radial-gradient(circle at 14% 18%, rgba(245, 194, 211, 0.72), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(211, 202, 255, 0.8), transparent 32%),
    radial-gradient(circle at 52% 92%, rgba(255, 222, 204, 0.62), transparent 36%),
    linear-gradient(135deg, #fff9f8 0%, #fbf1f5 42%, #f3efff 100%);
}
.how-section::before,
.how-section::after {
  position: absolute;
  border: 1px solid rgba(131, 108, 244, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.how-section::before {
  top: -170px;
  right: -90px;
  width: 440px;
  height: 440px;
  transform: rotate(18deg);
}
.how-section::after {
  bottom: -230px;
  left: -100px;
  width: 520px;
  height: 520px;
  border-color: rgba(227, 143, 174, 0.16);
}
.how-section .shell {
  position: relative;
  z-index: 1;
}
.how-section .center-heading {
  margin-bottom: 52px;
}
.how-section .center-heading h2 {
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.how-section .steps article {
  position: relative;
  min-height: 275px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 55px rgba(91, 60, 92, 0.09);
  backdrop-filter: blur(16px);
}
.how-section .steps article::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 108, 244, 0.14), transparent 68%);
  content: "";
}
.how-section .steps article:nth-child(2)::after {
  background: radial-gradient(circle, rgba(235, 149, 181, 0.17), transparent 68%);
}
.how-section .steps article:nth-child(3)::after {
  background: radial-gradient(circle, rgba(247, 191, 143, 0.17), transparent 68%);
}
.how-section .steps span {
  margin-bottom: 72px;
}
.steps,
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps article,
.benefits article {
  padding: 34px;
  border: 1px solid rgba(17, 16, 15, 0.06);
  border-radius: var(--radius);
  background: #fff;
}
.steps span,
.benefits strong {
  display: block;
  margin-bottom: 55px;
  color: var(--violet);
  font:
    800 13px "Manrope",
    sans-serif;
}
.steps h3,
.benefits h3 {
  margin: 0 0 8px;
  font:
    700 22px "Manrope",
    sans-serif;
}
.steps p,
.benefits p {
  margin: 0;
  color: var(--muted);
}
.quiz-band {
  padding: 80px 0;
  background: #dcd3ff;
}
.quiz-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.quiz-inner p:last-child {
  margin-bottom: 0;
  color: #514b5e;
}

.content-page,
.shop-main {
  padding: 90px 0 120px;
}
.content-page > header,
.content-page article > header {
  max-width: 850px;
  margin-bottom: 45px;
}
.content-page h1,
.shop-main h1 {
  font:
    700 clamp(42px, 6vw, 72px) / 1 "Manrope",
    sans-serif;
  letter-spacing: -0.05em;
}
.entry-content {
  max-width: 850px;
}
.entry-content h2 {
  margin-top: 45px;
  font:
    700 32px "Manrope",
    sans-serif;
}
.narrow {
  max-width: 900px;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
}
.post-card img {
  margin-bottom: 20px;
  border-radius: 14px;
}
.post-card h2 {
  font:
    700 23px "Manrope",
    sans-serif;
}

/* Mood Journal archive */
.journal-page {
  padding: clamp(64px, 8vw, 112px) 0 clamp(88px, 10vw, 140px);
}
.journal-hero {
  max-width: 980px;
  margin-bottom: clamp(48px, 7vw, 86px);
}
.journal-hero h1 {
  max-width: 930px;
  margin: 16px 0 24px;
  font:
    700 clamp(50px, 7vw, 96px) / 0.96 "Manrope",
    sans-serif;
  letter-spacing: -0.065em;
}
.journal-hero__intro {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
}
.journal-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.journal-categories a {
  padding: 10px 16px;
  border: 1px solid #d9d3cc;
  border-radius: 999px;
  color: #393532;
  font-size: 13px;
  font-weight: 700;
}
.journal-categories a:hover,
.journal-categories a:focus-visible,
.journal-categories .is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.journal-card {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(45, 37, 31, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 65px rgba(45, 37, 31, 0.11);
}
.journal-card--featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  min-height: 510px;
}
.journal-card__media {
  display: block;
  min-height: 260px;
  overflow: hidden;
  background: #eee9e4;
}
.journal-card:not(.journal-card--featured) .journal-card__media {
  aspect-ratio: 4 / 3;
}
.journal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.journal-card:hover .journal-card__media img {
  transform: scale(1.025);
}
.journal-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 280px;
  place-items: center;
  background:
    radial-gradient(circle at 30% 36%, rgba(141, 113, 255, 0.75), transparent 25%),
    radial-gradient(circle at 72% 64%, rgba(249, 178, 203, 0.7), transparent 28%),
    linear-gradient(145deg, #17131f 0%, #2a2132 46%, #ddd4ff 100%);
  color: rgba(255, 255, 255, 0.88);
  font: 600 15px "DM Sans", sans-serif;
  letter-spacing: 0.42em;
}
.journal-card__content {
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.journal-card--featured .journal-card__content {
  justify-content: center;
  padding: clamp(36px, 5vw, 72px);
}
.journal-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 17px;
  color: #786f68;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journal-card__meta span:first-child {
  color: #836bff;
}
.journal-card h2 {
  margin: 0 0 14px;
  font:
    700 clamp(23px, 2.3vw, 34px) / 1.1 "Manrope",
    sans-serif;
  letter-spacing: -0.04em;
}
.journal-card--featured h2 {
  font-size: clamp(34px, 4vw, 58px);
}
.journal-card h2 a {
  color: #111;
}
.journal-card__content > p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}
.journal-card__link {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid #111;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}
.journal-pagination {
  margin-top: 54px;
}
.journal-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.journal-pagination .page-numbers {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  place-items: center;
  border: 1px solid #ddd7d1;
  border-radius: 999px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}
.journal-pagination .page-numbers.current,
.journal-pagination a.page-numbers:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}
.journal-empty {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: clamp(28px, 5vw, 68px);
  border-radius: 28px;
  background: #101011;
  color: #fff;
  box-shadow: 0 25px 80px rgba(35, 27, 42, 0.14);
}
.journal-empty__aura {
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle, rgba(184, 156, 255, 0.9) 0 10%, rgba(132, 97, 234, 0.5) 25%, transparent 58%),
    linear-gradient(145deg, #21172b, #111);
}
.journal-empty__aura span {
  font: 500 clamp(48px, 7vw, 90px) "Manrope", sans-serif;
  letter-spacing: -0.08em;
}
.journal-empty h2 {
  margin: 16px 0 18px;
  color: #fff;
  font: 700 clamp(34px, 4vw, 58px) / 1.04 "Manrope", sans-serif;
  letter-spacing: -0.05em;
}
.journal-empty > div:last-child > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 30px;
  color: #bbb5ae;
  font-size: 17px;
  line-height: 1.65;
}
.journal-empty .button.ghost {
  border-color: #fff;
  color: #fff;
}

/* Privacy Policy: clear, branded and customer-friendly */
.privacy-page {
  overflow: hidden;
  padding-bottom: 120px;
}
.privacy-hero {
  padding: 112px 0 72px;
}
.privacy-hero h1,
.privacy-summary h2,
.privacy-content h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.055em;
}
.privacy-hero h1 {
  max-width: 920px;
  margin-top: 22px;
  font-size: clamp(64px, 7.7vw, 110px);
  line-height: 0.92;
}
.privacy-hero > p {
  max-width: 760px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}
.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.privacy-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: #393532;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}
.privacy-summary {
  position: sticky;
  top: 132px;
  border-radius: 30px;
  padding: clamp(32px, 4vw, 52px);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(131, 108, 244, 0.45), transparent 42%),
    #11100f;
}
.privacy-summary .eyebrow {
  color: #aa98ff;
}
.privacy-summary h2 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}
.privacy-summary ul {
  display: grid;
  gap: 15px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}
.privacy-summary li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}
.privacy-summary li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #aa98ff;
}
.privacy-summary .button {
  width: 100%;
  color: var(--ink) !important;
  background: #fff;
  text-align: center;
}
.privacy-content {
  display: grid;
  gap: 18px;
}
.privacy-content article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(17, 16, 15, 0.06);
  border-radius: 24px;
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 18px 55px rgba(45, 37, 31, 0.05);
}
.privacy-content article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
.privacy-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}
.privacy-content p {
  grid-column: 2;
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.privacy-content a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--violet);
  text-underline-offset: 4px;
}

.site-footer {
  padding: 78px 0 24px;
  background: #0e0e0f;
  color: #c9c4bd;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 55px;
}
.footer-grid h3 {
  color: #fff;
  font:
    700 14px "Manrope",
    sans-serif;
}
.footer-grid ul {
  display: block;
}
.footer-grid li {
  margin: 8px 0;
}
.footer-grid a,
.footer-grid p {
  font-size: 13px;
}
.footer-brand {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand img {
  width: 190px;
  filter: invert(1) grayscale(1) brightness(2.2);
}
.footer-grid > div:first-child p {
  max-width: 290px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid #29292b;
  font-size: 11px;
}

.product-mood {
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.product-trust {
  display: grid;
  gap: 7px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}
.product-trust span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--violet);
}
.woocommerce div.product .product_title {
  font:
    700 clamp(38px, 5vw, 60px) / 1.05 "Manrope",
    sans-serif;
  letter-spacing: -0.04em;
}
.woocommerce div.product p.price {
  color: var(--ink) !important;
  font-weight: 800;
}
.woocommerce-tabs {
  padding-top: 50px;
}
.empty-state {
  padding: 150px 0;
  text-align: center;
}
.empty-state h1 {
  font:
    700 56px "Manrope",
    sans-serif;
}

@media (max-width: 900px) {
  .admin-bar .site-header {
    top: 46px;
  }
  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto 1fr;
  }
  .menu-toggle {
    display: block;
    justify-self: start;
  }
  .brand {
    justify-self: center;
  }
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .privacy-summary {
    position: static;
  }
  .privacy-hero {
    width: var(--shell);
    min-width: 0;
    max-width: calc(100% - 28px);
  }
  .recovered-logo {
    max-width: 220px;
    max-height: 38px;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 24px 0;
    border-top: 1px solid rgba(17, 16, 15, 0.08);
    background: var(--paper);
    box-shadow: 0 20px 30px rgba(17, 16, 15, 0.08);
    justify-self: stretch;
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    width: var(--shell);
    margin-inline: auto;
    display: grid;
    gap: 14px;
  }
  .site-nav a {
    display: block;
    padding: 5px 0;
    font-size: 16px;
  }
  .header-actions > a:first-child {
    display: none;
  }
  .hero-grid,
  .bestseller {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }
  .button-row,
  .hero-proof {
    justify-content: center;
  }
  .aura-stage {
    width: min(100%, 580px);
    margin-inline: auto;
  }
  .bestseller-art {
    width: min(100%, 600px);
    margin-inline: auto;
  }
  .bestseller-copy {
    max-width: 620px;
    margin-inline: auto;
  }
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .post-grid {
    grid-template-columns: 1fr 1fr;
  }
  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journal-card--featured {
    grid-template-columns: 1fr;
  }
  .journal-card--featured .journal-card__media {
    min-height: 420px;
  }
  .journal-empty {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 28px, 1200px);
  }
  .contact-page {
    padding-bottom: 78px;
  }
  .contact-hero {
    padding: 64px 0 44px;
  }
  .contact-hero h1 {
    font-size: clamp(46px, 14vw, 60px);
  }
  .contact-hero > p:last-child {
    margin-top: 24px;
    font-size: 17px;
  }
  .contact-workspace,
  .contact-help,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-direct,
  .contact-form-card {
    border-radius: 22px;
    padding: 30px 24px;
  }
  .contact-direct h2,
  .contact-form-card h2 {
    margin-bottom: 30px;
  }
  .contact-help {
    padding-top: 64px;
  }
  .contact-help article {
    min-height: 220px;
  }
  .privacy-page {
    padding-bottom: 78px;
  }
  .privacy-hero {
    padding: 64px 0 44px;
  }
  .privacy-hero h1 {
    font-size: clamp(48px, 15vw, 62px);
  }
  .privacy-hero > p {
    margin-top: 24px;
    font-size: 17px;
  }
  .privacy-summary {
    border-radius: 22px;
    padding: 30px 24px;
  }
  .privacy-summary h2 {
    font-size: 34px;
  }
  .privacy-content article {
    display: block;
    border-radius: 20px;
    padding: 26px 22px;
  }
  .privacy-content article > span {
    margin-bottom: 22px;
  }
  .privacy-content p {
    margin-top: 14px;
  }
  .announcement {
    width: 100%;
    max-width: 100%;
    padding: 7px 12px;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .announcement span {
    margin: 0 5px;
  }
  .header-inner {
    min-height: 66px;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    column-gap: 8px;
  }
  .menu-toggle {
    max-width: 72px;
    white-space: nowrap;
  }
  .brand {
    width: 100%;
    min-width: 0;
    display: flex;
    justify-content: center;
  }
  .site-nav {
    top: 66px;
    padding: 20px 0;
  }
  .recovered-logo,
  .brand .custom-logo {
    width: 100%;
    max-width: 174px;
    max-height: 30px;
    object-fit: contain;
  }
  .header-actions {
    min-width: 0;
    gap: 8px;
  }
  .header-actions .cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    white-space: nowrap;
  }
  .header-actions a {
    font-size: 11px;
  }
  .hero {
    padding: 48px 0 52px;
  }
  .hero-grid {
    min-height: auto;
    gap: 44px;
  }
  .hero h1 {
    font-size: clamp(38px, 11.4vw, 46px);
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .button-row {
    flex-direction: column;
  }
  .button-row .button,
  .quiz-inner .button {
    width: 100%;
  }
  .hero-proof {
    gap: 8px;
    font-size: 10px;
  }
  .hero-proof span + span::before {
    margin-right: 8px;
  }
  .aura-stage {
    border-radius: 16px;
  }
  .section {
    padding: 75px 0;
  }
  .how-section {
    padding: 76px 0 80px;
  }
  .how-section .center-heading {
    margin-bottom: 34px;
  }
  .how-section .center-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }
  .how-section .steps article {
    min-height: 0;
    padding: 28px;
  }
  .how-section .steps span {
    margin-bottom: 36px;
  }
  .section-heading {
    align-items: start;
    gap: 20px;
  }
  .section-heading > a {
    white-space: nowrap;
  }
  .woocommerce ul.products {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .woocommerce ul.products li.product img {
    aspect-ratio: 1 / 1.12;
  }
  .dark-section {
    padding: 72px 0 76px;
  }
  .bestseller {
    gap: 46px;
  }
  .bestseller-art {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }
  .bestseller-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(43px, 13vw, 58px);
  }
  .lead {
    font-size: 17px;
  }
  .note-list {
    gap: 8px;
    margin: 26px 0 30px;
  }
  .note-list li {
    padding: 8px 11px;
    font-size: 10px;
  }
  .bestseller-proof {
    margin-bottom: 28px;
  }
  .bestseller-proof span {
    padding-right: 8px;
    font-size: 9px;
  }
  .bestseller-proof span + span {
    padding-left: 10px;
  }
  .bestseller-proof strong {
    font-size: 12px;
  }
  .bestseller-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .bestseller-action .button {
    width: 100%;
  }
  .note-list {
    flex-wrap: wrap;
  }
  .steps,
  .benefits {
    grid-template-columns: 1fr;
  }
  .steps span,
  .benefits strong {
    margin-bottom: 25px;
  }
  .quiz-inner {
    display: block;
  }
  .quiz-inner .button {
    margin-top: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
  }
  .post-grid {
    grid-template-columns: 1fr;
  }
  .journal-page {
    width: var(--shell);
    min-width: 0;
    max-width: calc(100% - 28px);
    padding: 54px 0 84px;
  }
  .journal-hero {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-bottom: 42px;
  }
  .journal-hero h1 {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 12px;
    font-size: clamp(40px, 11.5vw, 48px);
    line-height: 0.96;
    letter-spacing: -0.055em;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }
  .journal-hero__intro {
    font-size: 16px;
  }
  .journal-categories {
    flex-wrap: nowrap;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .journal-categories::-webkit-scrollbar {
    display: none;
  }
  .journal-categories a {
    flex: 0 0 auto;
  }
  .journal-grid {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .journal-card,
  .journal-card--featured {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    border-radius: 20px;
  }
  .journal-card--featured {
    display: block;
    grid-template-columns: minmax(0, 1fr);
  }
  .journal-card--featured .journal-card__media,
  .journal-card__media {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .journal-card--featured .journal-card__content,
  .journal-card__content {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 24px;
  }
  .journal-card--featured h2,
  .journal-card h2 {
    font-size: 28px;
  }
  .journal-card__meta {
    font-size: 10px;
  }
  .journal-empty {
    gap: 28px;
    padding: 20px;
    border-radius: 22px;
  }
  .journal-empty__aura {
    min-height: 260px;
  }
  .journal-empty .button-row {
    display: grid;
  }
  .journal-empty .button {
    width: 100%;
  }
}
