:root {
  --ivory: #f8efe3;
  --paper: #fff8ef;
  --soft: #eadbca;
  --olive: #6d705d;
  --olive-dark: #3f4737;
  --terracotta: #b98267;
  --terracotta-soft: #d7b198;
  --beige: #dec8ae;
  --beige-deep: #b99a7d;
  --ink: #443f36;
  --muted: #7d7264;
  --line: rgba(135, 111, 88, 0.22);
  --shadow: 0 16px 38px rgba(94, 74, 52, 0.13);
  --radius: 16px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(216, 169, 134, 0.13), transparent 26rem),
    linear-gradient(180deg, #fffaf5 0%, var(--ivory) 42%, #f8efe7 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

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

sup {
  font-size: 0.38em;
  line-height: 0;
  vertical-align: super;
}

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(205, 120, 95, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--olive-dark);
  color: #fff;
  padding: 0.7rem 1rem;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.9);
  padding: 0.5rem clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark {
  color: #2f302c;
  font-family: var(--serif);
  font-size: clamp(2rem, 10vw, 3.55rem);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-sub,
.brand-by {
  color: #57584e;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-by {
  margin-top: 0.12rem;
  font-size: 0.42rem;
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.icon-button,
.menu-button {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--olive-dark);
  cursor: pointer;
}

.menu-button {
  width: 52px;
  height: 52px;
  background: #f2ebe2;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 10px;
  background: var(--olive-dark);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button::before {
  position: absolute;
  transform: translateY(-8px);
}

.menu-button::after {
  position: absolute;
  transform: translateY(8px);
}

.menu-button.is-open span {
  opacity: 0;
}

.menu-button.is-open::before {
  transform: rotate(45deg);
}

.menu-button.is-open::after {
  transform: rotate(-45deg);
}

.bag-icon,
.search-icon {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
}

.bag-icon {
  border: 3px solid currentColor;
  border-top-width: 2px;
  border-radius: 1px 1px 4px 4px;
}

.bag-icon::before {
  position: absolute;
  left: 50%;
  top: -11px;
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  content: "";
  transform: translateX(-50%);
}

.search-icon {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 10px;
  height: 3px;
  border-radius: 6px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.mobile-menu,
.search-panel {
  position: sticky;
  top: 72px;
  z-index: 9;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.97);
  padding: 0.8rem 1.25rem 1rem;
  box-shadow: 0 18px 36px rgba(86, 75, 58, 0.08);
}

.mobile-menu {
  display: grid;
  gap: 0.55rem;
}

.mobile-menu a {
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
  color: var(--olive-dark);
  font-weight: 700;
}

.search-panel label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--olive-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-panel input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0.85rem 1rem;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.99) 0%, rgba(255, 250, 244, 0.9) 42%, rgba(255, 250, 244, 0.25) 72%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.08), rgba(255, 250, 244, 0.72));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  padding: clamp(1.8rem, 8vw, 4rem) clamp(1.45rem, 7vw, 4.5rem) 2rem;
}

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

h1,
h2 {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.05rem, 10vw, 4.8rem);
}

h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.85rem, 7vw, 3rem);
}

h3 {
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.hero-copy p {
  max-width: 18rem;
  margin-bottom: 1rem;
  color: #596052;
  font-weight: 650;
}

.divider,
.mini-divider {
  display: flex;
  width: min(11rem, 58vw);
  align-items: center;
  gap: 0.85rem;
  margin: 0.7rem 0 1rem;
  color: var(--terracotta);
}

.divider::before,
.divider::after,
.mini-divider::before,
.mini-divider::after,
.contact-heading span {
  flex: 1;
  height: 1px;
  background: rgba(205, 120, 95, 0.42);
  content: "";
}

.divider span,
.mini-divider span {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 55% 45% 55% 45%;
  transform: rotate(-45deg);
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  max-width: 13.4rem;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.76rem 1.25rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 10px 24px rgba(70, 82, 61, 0.2);
}

.button.secondary {
  border: 1.5px solid var(--olive);
  background: rgba(255, 250, 244, 0.72);
  color: var(--olive-dark);
}

.section {
  width: min(100% - 1.6rem, 1120px);
  margin-inline: auto;
}

.hero,
.section,
.feature-card {
  scroll-margin-top: 92px;
}

.intro-stack {
  display: grid;
  gap: 0.85rem;
  padding-top: 1.2rem;
}

.feature-card,
.routine-card,
.protocol-card,
.about,
.ebook,
.product-card {
  border: 1px solid rgba(95, 83, 68, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr) 1.35rem;
  min-height: 98px;
  align-items: center;
  gap: 0.85rem;
  overflow: hidden;
  padding: 0.9rem 0.95rem;
}

.shop-card {
  background:
    linear-gradient(90deg, rgba(199, 111, 87, 0.96), rgba(218, 132, 104, 0.92)),
    radial-gradient(circle at 85% 40%, rgba(255, 255, 255, 0.2), transparent 12rem);
  color: #fff;
}

.shop-card::after,
.ebook::after {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 9rem;
  height: 7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 0;
  border-radius: 50%;
  content: "";
  opacity: 0.55;
  transform: rotate(-28deg);
}

.method-card {
  background: rgba(255, 250, 244, 0.88);
}

.feature-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 6vw, 2.2rem);
  line-height: 1;
  text-transform: none;
}

.shop-card strong {
  text-transform: uppercase;
}

.feature-card small {
  display: block;
  margin-top: 0.35rem;
  color: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.28;
}

.method-card small {
  color: #596052;
  font-size: 0.8rem;
}

.feature-icon {
  display: grid;
  width: 3.8rem;
  height: 3.8rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.feature-icon.bag::before {
  width: 1.65rem;
  height: 1.65rem;
  border: 3px solid var(--terracotta);
  border-top-width: 2px;
  border-radius: 2px 2px 5px 5px;
  content: "";
}

.feature-icon.leaf::before {
  width: 1.8rem;
  height: 2.2rem;
  border: solid var(--olive);
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 2rem;
  content: "";
  transform: rotate(-35deg);
}

.chevron,
.chevron-link {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.chevron::before {
  content: ">";
}

.section-heading {
  padding: 1rem 0 0.35rem;
}

.section-heading h2,
.section-title-row h2 {
  margin-bottom: 0;
}

.mini-divider {
  width: 9.6rem;
  margin: 0.45rem 0 0;
}

.mini-divider span {
  width: 14px;
  height: 14px;
}

.routine-grid,
.protocol-grid,
.product-grid {
  display: grid;
  gap: 0.75rem;
}

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

.routine-card,
.protocol-card {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  background: #fff9f3;
  padding: 1.05rem;
}

.routine-card span,
.protocol-card span {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 62%;
  gap: 0.45rem;
}

.routine-card strong,
.protocol-card strong {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 4.7vw, 1.6rem);
  line-height: 1.08;
}

.routine-card small,
.protocol-card small {
  color: #495047;
  font-size: clamp(0.78rem, 3.4vw, 0.92rem);
  font-weight: 700;
  line-height: 1.35;
}

.routine-card img,
.protocol-card img {
  position: absolute;
  right: -1.1rem;
  bottom: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 0.75rem;
}

.section-title-row a {
  flex: 0 0 auto;
  color: var(--olive-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  background: #fffaf5;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  object-position: center;
}

.product-card div {
  padding: 0.9rem 0.95rem 1rem;
}

.product-card h3 {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 850;
}

.product-card p {
  margin-bottom: 0;
  color: #596052;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.32;
}

.badge {
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  z-index: 1;
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.protocol-card {
  min-height: 124px;
}

.protocol-card strong {
  color: var(--olive-dark);
}

.protocol-card:first-child strong {
  color: var(--terracotta);
}

.about {
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr) 1.25rem;
  align-items: center;
  gap: 1rem;
  margin-top: 1.15rem;
  padding: 1rem;
  background: rgba(255, 250, 244, 0.88);
}

.about img {
  width: 5.4rem;
  height: 5.4rem;
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  object-fit: cover;
}

.about h2 {
  margin-bottom: 0.15rem;
  font-size: clamp(1.65rem, 7vw, 2.45rem);
}

.signature {
  margin-bottom: 0.35rem;
  color: var(--terracotta);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.32rem;
  line-height: 1;
}

.about p:last-child {
  margin-bottom: 0;
  color: #4f554b;
  font-size: 0.9rem;
  font-weight: 700;
}

.ebook {
  position: relative;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  margin-top: 0.9rem;
  padding: 0.55rem;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.9), rgba(255, 246, 237, 0.92)),
    #fffaf5;
}

.ebook img {
  width: 100%;
  aspect-ratio: 1.56;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.ebook-copy {
  padding: 0 0.75rem 0.9rem;
}

.ebook-copy span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--olive-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ebook-copy h2 {
  max-width: 14rem;
  margin-bottom: 0.4rem;
}

.ebook-copy p {
  margin-bottom: 0.35rem;
  color: #53584d;
  font-weight: 750;
}

.ebook-copy ul {
  display: grid;
  gap: 0.12rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.ebook-copy li {
  color: #596052;
  font-size: 0.9rem;
  font-weight: 650;
}

.ebook-copy li::before {
  color: var(--olive);
  content: "+ ";
  font-weight: 900;
}

.text-button {
  width: fit-content;
  min-height: 38px;
  border: 1px solid rgba(102, 114, 90, 0.38);
  color: var(--olive-dark);
  font-size: 0.9rem;
}

.contact {
  padding: 1.45rem 0 0.75rem;
}

.contact-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.contact-heading h2 {
  margin: 0;
  text-align: center;
}

.appointment-cta {
  display: grid;
  justify-items: center;
  gap: 0.95rem;
  width: fit-content;
  margin: 0.85rem auto 1.25rem;
  color: #5f594b;
  text-align: center;
}

.appointment-medallion {
  position: relative;
  display: grid;
  width: clamp(190px, 58vw, 270px);
  aspect-ratio: 1;
  align-content: center;
  justify-items: center;
  gap: clamp(0.35rem, 1.8vw, 0.65rem);
  border: 1.5px solid rgba(198, 151, 130, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 252, 246, 0.92), rgba(248, 238, 226, 0.88)),
    #fff8ef;
  box-shadow: 0 14px 28px rgba(104, 86, 65, 0.12);
}

.appointment-medallion::before {
  position: absolute;
  inset: 0.78rem;
  border: 1px solid rgba(198, 151, 130, 0.34);
  border-radius: 50%;
  content: "";
}

.appointment-medallion img {
  width: clamp(2.15rem, 9vw, 2.95rem);
  height: clamp(2.15rem, 9vw, 2.95rem);
  opacity: 0.5;
}

.appointment-medallion strong {
  color: #5f594b;
  font-family: var(--serif);
  font-size: clamp(1.58rem, 8.4vw, 2.62rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.appointment-medallion > span {
  width: 2.85rem;
  height: 2px;
  background: rgba(198, 151, 130, 0.56);
}

.appointment-cta small {
  color: #6e675b;
  font-size: clamp(1rem, 4vw, 1.22rem);
  font-weight: 650;
}

.appointment-cta small::after {
  display: block;
  width: 2rem;
  height: 2px;
  margin: 0.55rem auto 0;
  background: rgba(198, 151, 130, 0.68);
  content: "";
}

.contact-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-list a {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) 1rem;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 750;
}

.contact-icon {
  color: var(--olive);
  font-family: var(--serif);
  font-weight: 800;
}

.benefits {
  display: grid;
  gap: 0.5rem;
  width: min(100% - 1.2rem, 1120px);
  margin: 0.4rem auto 0;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}

.benefits article {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.3rem 0.55rem;
}

.benefit-icon {
  position: relative;
  display: block;
  width: 1.35rem;
  height: 1.05rem;
  color: var(--olive);
}

.benefit-icon.shipping {
  border: 2px solid currentColor;
  border-radius: 2px;
}

.benefit-icon.shipping::before {
  position: absolute;
  left: -0.45rem;
  bottom: -0.02rem;
  width: 0.55rem;
  height: 0.48rem;
  border: 2px solid currentColor;
  border-right: 0;
  content: "";
}

.benefit-icon.shipping::after,
.benefit-icon.security::after {
  position: absolute;
  bottom: -0.34rem;
  left: 0.1rem;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 1rem 0 0 currentColor;
  content: "";
}

.benefit-icon.payment {
  height: 0.9rem;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.benefit-icon.payment::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0.28rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.benefit-icon.security {
  width: 1.1rem;
  height: 1.2rem;
  border: 2px solid currentColor;
  border-radius: 2px 2px 5px 5px;
}

.benefit-icon.security::before {
  position: absolute;
  left: 50%;
  top: -0.62rem;
  width: 0.6rem;
  height: 0.58rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
  content: "";
  transform: translateX(-50%);
}

.benefit-icon.security::after {
  display: none;
}

.benefits h3 {
  margin: 0;
  color: #7a7566;
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefits p {
  margin: 0.1rem 0 0;
  color: #777668;
  font-size: 0.78rem;
  font-weight: 650;
}

.site-footer {
  display: grid;
  gap: 1.8rem;
  margin-top: 0.3rem;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.1), transparent 12rem),
    linear-gradient(135deg, #4b5941, #2f3a2e);
  color: #f9f0e7;
  padding: 1.35rem clamp(1.25rem, 6vw, 4rem) 1.8rem;
}

.site-footer h2 {
  margin-bottom: 0.55rem;
  color: #f9f0e7;
  font-family: var(--serif);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  padding: 0.08rem 0;
  color: #fff8ef;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  align-self: end;
  color: #fff8ef;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.footer-brand .brand-mark {
  color: #fff8ef;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  max-width: min(22rem, calc(100vw - 2rem));
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  background: var(--olive-dark);
  color: #fff;
  padding: 0.85rem 1rem;
  box-shadow: 0 18px 44px rgba(44, 49, 39, 0.24);
  font-weight: 750;
}

@media (max-width: 370px) {
  .header-actions {
    gap: 0.35rem;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
  }

  .routine-grid,
  .protocol-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .routine-card span,
  .protocol-card span {
    max-width: 56%;
  }
}

@media (max-width: 479px) {
  .hero {
    min-height: 500px;
  }

  .hero-copy {
    max-width: 20.8rem;
  }

  .feature-card {
    border-radius: 14px;
  }

  .method-card {
    min-height: 118px;
  }

  .method-card strong {
    font-size: 1.35rem;
  }
}

@media (min-width: 680px) {
  .site-header {
    min-height: 86px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    color: var(--olive-dark);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .menu-button {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-copy {
    max-width: 36rem;
    padding-top: 5.5rem;
  }

  .hero-copy p {
    max-width: 24rem;
    font-size: 1.1rem;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 23rem;
  }

  .intro-stack {
    padding-top: 1.7rem;
  }

  .routine-grid,
  .protocol-grid,
  .product-grid {
    gap: 1.35rem;
  }

  .routine-card,
  .protocol-card {
    min-height: 152px;
    padding: 1.45rem;
  }

  .product-card img {
    aspect-ratio: 1.7;
  }

  .about {
    grid-template-columns: 8rem minmax(0, 1fr) 1.5rem;
    padding: 1.35rem;
  }

  .about img {
    width: 8rem;
    height: 8rem;
  }

  .ebook {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    align-items: center;
    padding: 0.65rem;
  }

  .ebook img {
    height: 100%;
    min-height: 290px;
  }

  .ebook-copy {
    padding: 1.4rem 2rem;
  }

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

  .benefits article + article {
    border-left: 1px solid var(--line);
  }

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

@media (min-width: 1024px) {
  .brand-mark {
    font-size: 3.8rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media img {
    object-position: 72% 50%;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(255, 250, 244, 1) 0%, rgba(255, 250, 244, 0.92) 32%, rgba(255, 250, 244, 0.16) 68%),
      linear-gradient(180deg, rgba(255, 250, 244, 0.05), rgba(255, 250, 244, 0.44));
  }

  .hero-copy {
    padding-left: max(4.5rem, calc((100vw - 1120px) / 2));
  }

  .feature-card {
    grid-template-columns: 6rem minmax(0, 1fr) 2rem;
    min-height: 132px;
    padding: 1.3rem 1.6rem;
  }

  .feature-icon {
    width: 5rem;
    height: 5rem;
  }

  .routine-card,
  .protocol-card {
    min-height: 170px;
  }
}

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

/* Updated DA Skin Care Studio styling */
body {
  background:
    radial-gradient(circle at 10% 0%, rgba(222, 200, 174, 0.34), transparent 25rem),
    radial-gradient(circle at 92% 34%, rgba(185, 154, 125, 0.16), transparent 23rem),
    linear-gradient(180deg, #fff8ef 0%, #f8efe3 46%, #f3e4d3 100%);
}

.brand-image {
  display: block;
  width: clamp(82px, 22vw, 158px);
  min-width: 82px;
}

.brand-image img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.site-header {
  background: rgba(255, 248, 239, 0.92);
}

.desktop-nav a[aria-current="page"] {
  color: var(--terracotta);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 1) 0%, rgba(255, 248, 239, 0.92) 44%, rgba(255, 248, 239, 0.22) 74%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.08), rgba(248, 239, 227, 0.72));
}

.hero-copy p,
.method-card small,
.product-card p,
.routine-card small,
.protocol-card small {
  color: #5e554a;
}

.button.primary {
  background: var(--olive-dark);
}

.button.secondary {
  border-color: var(--beige-deep);
  color: var(--olive-dark);
}

.shop-card {
  background:
    linear-gradient(90deg, rgba(174, 126, 98, 0.96), rgba(207, 160, 130, 0.94)),
    radial-gradient(circle at 85% 40%, rgba(255, 255, 255, 0.22), transparent 12rem);
}

.method-access {
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.96), rgba(238, 221, 204, 0.84));
}

.feature-thumb {
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  overflow: hidden;
  border: 1px solid rgba(185, 154, 125, 0.32);
  border-radius: 50%;
  background: #f6eadc;
}

.feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% center;
}

.method-preview {
  padding-top: 1.25rem;
}

.compact-row {
  padding-top: 0.3rem;
}

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

.method-pillars article,
.philosophy-panel article,
.about-list article {
  border: 1px solid rgba(185, 154, 125, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.82);
  box-shadow: var(--shadow);
}

.method-pillars article {
  display: grid;
  min-height: 128px;
  gap: 0.45rem;
  align-content: start;
  padding: 1rem;
}

.method-pillars h3 {
  margin-bottom: 0;
  color: var(--olive-dark);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.method-pillars p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.32;
}

.line-icon {
  position: relative;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border-radius: 50%;
  background: #eadaca;
  color: var(--olive-dark);
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.line-icon.science::before {
  width: 1.15rem;
  height: 1.55rem;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 0.65rem 0.65rem;
}

.line-icon.science::after {
  bottom: 0.73rem;
  width: 1.5rem;
  height: 2px;
  background: currentColor;
}

.line-icon.tech::before {
  width: 1.55rem;
  height: 1.15rem;
  border: 2px solid currentColor;
  border-radius: 0.6rem;
}

.line-icon.tech::after {
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: -0.65rem 0.5rem 0 -0.08rem #eadaca, -0.65rem 0.5rem 0 0.05rem currentColor;
}

.line-icon.conscious::before,
.line-icon.person::before {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon.conscious::after,
.line-icon.person::after {
  bottom: 0.52rem;
  width: 1.65rem;
  height: 0.82rem;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 1rem 1rem;
}

.line-icon.results::before,
.line-icon.target::before {
  width: 1.7rem;
  height: 1.7rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon.results::after,
.line-icon.target::after {
  width: 0.92rem;
  height: 2px;
  background: currentColor;
  transform: rotate(-38deg);
}

.line-icon.lens::before {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon.lens::after {
  right: 0.72rem;
  bottom: 0.72rem;
  width: 0.78rem;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.line-icon.bottles::before {
  width: 0.7rem;
  height: 1.45rem;
  border: 2px solid currentColor;
  border-radius: 0.25rem;
  transform: translateX(-0.36rem);
}

.line-icon.bottles::after {
  width: 0.74rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-radius: 0.18rem;
  transform: translate(0.43rem, 0.22rem);
}

.line-icon.heart::before {
  width: 1.3rem;
  height: 1.3rem;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  border-radius: 0.2rem;
  transform: rotate(45deg);
}

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

.protocol-shop-card {
  min-height: 144px;
  background: #fff8ef;
}

.protocol-shop-card strong {
  color: var(--olive-dark);
}

.protocol-shop-card:nth-child(odd) strong {
  color: #9e6e58;
}

.protocol-shop-card img {
  object-position: center;
}

.real-product {
  display: block;
}

.real-product img {
  aspect-ratio: 0.92;
  object-fit: cover;
  object-position: center;
}

.real-product h3 {
  color: var(--olive-dark);
  font-family: var(--serif);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about img {
  object-position: center top;
}

.ebook-link {
  color: inherit;
}

.ebook-link:hover .text-button {
  background: var(--olive-dark);
  color: #fff;
}

.ebook-link > img {
  object-position: center;
}

.benefits a,
.benefits article {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.3rem 0.55rem;
}

.benefits a {
  color: inherit;
}

.site-footer {
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 248, 239, 0.26), transparent 12rem),
    linear-gradient(135deg, #756654, #4e463b);
}

.footer-brand img {
  width: min(180px, 45vw);
  border-radius: 10px;
  background: #fff8ef;
  padding: 0.55rem;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid rgba(255, 248, 239, 0.22);
  padding-top: 1rem;
  color: #fff8ef;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 28;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: #4f6f45;
  color: #fff;
  box-shadow: 0 14px 34px rgba(59, 62, 49, 0.28);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 900;
}

.whatsapp-float span {
  transform: translateY(-1px);
}

.inner-page {
  padding-bottom: 1.4rem;
}

.inner-hero {
  display: grid;
  gap: 1.2rem;
  width: min(100% - 1.4rem, 1120px);
  margin: 1rem auto 0;
  align-items: center;
}

.inner-hero > div {
  border: 1px solid rgba(185, 154, 125, 0.24);
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.84);
  padding: clamp(1.25rem, 5vw, 2.4rem);
  box-shadow: var(--shadow);
}

.inner-hero h1 {
  margin-bottom: 0.75rem;
}

.inner-hero p {
  color: #5e554a;
  font-weight: 650;
}

.inner-hero img {
  width: 100%;
  border: 1px solid rgba(185, 154, 125, 0.2);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin-bottom: 0.4rem;
  color: var(--beige-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-grid,
.about-detail {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.story-grid article,
.quote-panel,
.philosophy-panel {
  border: 1px solid rgba(185, 154, 125, 0.24);
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.84);
  padding: clamp(1.15rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.story-grid img,
.about-detail aside img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.centered-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.expanded-method {
  margin-top: 1rem;
}

.philosophy-panel {
  margin-top: 1rem;
}

.philosophy-panel h2 {
  text-align: center;
}

.philosophy-panel > div {
  display: grid;
  gap: 0.75rem;
}

.philosophy-panel article {
  padding: 1rem;
}

.philosophy-panel strong,
.about-list p {
  color: var(--ink);
  font-weight: 800;
}

.philosophy-panel p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.about-inner > img {
  aspect-ratio: 0.92;
  object-fit: cover;
  object-position: center top;
}

.about-list {
  display: grid;
  gap: 0.75rem;
}

.about-list article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 1rem;
}

.about-list p {
  margin: 0;
  line-height: 1.4;
}

.quote-panel {
  margin-top: 1rem;
  text-align: center;
}

.quote-panel blockquote {
  margin: 0 auto 0.8rem;
  max-width: 34rem;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 6vw, 2.55rem);
  font-style: italic;
  line-height: 1.12;
}

.quote-panel p {
  max-width: 38rem;
  margin: 0 auto;
  color: #5e554a;
  font-weight: 750;
}

@media (max-width: 390px) {
  .brand-image {
    width: 76px;
  }

  .header-actions {
    gap: 0.25rem;
  }

  .method-pillars,
  .routine-grid.protocol-shop-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 680px) {
  .brand-image {
    width: 128px;
  }

  .feature-thumb {
    width: 5rem;
    height: 5rem;
  }

  .method-pillars {
    gap: 1rem;
  }

  .method-pillars article {
    min-height: 148px;
    padding: 1.25rem;
  }

  .protocol-shop-card {
    min-height: 176px;
  }

  .real-product img {
    aspect-ratio: 1.08;
  }

  .inner-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    margin-top: 1.5rem;
  }

  .method-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .about-inner {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.05fr);
  }

  .about-inner > img {
    order: -1;
    height: 100%;
    max-height: 650px;
  }

  .story-grid,
  .about-detail {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 1.2rem;
  }

  .philosophy-panel > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 650px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(255, 248, 239, 1) 0%, rgba(255, 248, 239, 0.93) 34%, rgba(255, 248, 239, 0.18) 70%),
      linear-gradient(180deg, rgba(255, 248, 239, 0.04), rgba(248, 239, 227, 0.44));
  }

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

/* Refinements requested after mobile review */
:root {
  --olive: #8b826d;
  --olive-dark: #5f594b;
  --terracotta: #b4866d;
  --terracotta-soft: #dbc0aa;
  --ink: #665c50;
  --muted: #857868;
  --beige-deep: #a88e72;
  --line: rgba(166, 140, 112, 0.24);
  --shadow: 0 14px 34px rgba(111, 88, 62, 0.1);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(226, 206, 183, 0.46), transparent 25rem),
    radial-gradient(circle at 88% 42%, rgba(214, 188, 160, 0.24), transparent 22rem),
    linear-gradient(180deg, #fff9f1 0%, #f7ecdd 48%, #efe0cf 100%);
}

h1,
h2,
h3,
.desktop-nav,
.mobile-menu a,
.section-title-row a,
.contact-list a {
  color: #5f594b;
}

.hero-copy p,
.method-card small,
.product-card p,
.routine-card small,
.protocol-card small,
.about p:last-child,
.benefits p {
  color: #776b5b;
}

.button.primary,
.whatsapp-float {
  background: #6f725d;
}

.button.secondary {
  border-color: #bca58d;
  color: #665c50;
}

.icon-button,
.menu-button {
  color: #655d4f;
}

.menu-button {
  background: #efe3d5;
}

.shop-card {
  background:
    linear-gradient(90deg, rgba(177, 130, 100, 0.94), rgba(207, 169, 139, 0.92)),
    radial-gradient(circle at 85% 40%, rgba(255, 255, 255, 0.2), transparent 12rem);
}

.method-access {
  margin-bottom: 0.25rem;
}

.protocol-shop-grid {
  margin-top: 0.2rem;
}

.protocol-shop-card {
  min-height: 136px;
  background: linear-gradient(90deg, #fff9f1, #f4e7d8);
}

.protocol-shop-card span {
  max-width: 58%;
}

.protocol-shop-card strong,
.protocol-shop-card:nth-child(odd) strong {
  color: #6a5e4f;
}

.protocol-shop-card img {
  right: 0;
  width: 56%;
  object-position: center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
}

.ebook-banner-only {
  display: block;
  overflow: hidden;
  margin-top: 1rem;
  padding: 0.35rem;
  border: 1px solid rgba(188, 165, 141, 0.42);
  border-radius: 20px;
  background: rgba(255, 249, 241, 0.82);
}

.ebook-banner-only::after {
  display: none;
}

.ebook-banner-only > img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 16px;
  object-fit: contain;
}

.contact-list a {
  grid-template-columns: 2.8rem minmax(0, 1fr) 1rem;
}

.contact-icon-img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  opacity: 0.78;
}

.whatsapp-float {
  width: 58px;
  height: 58px;
}

.whatsapp-float img {
  width: 31px;
  height: 31px;
  filter: brightness(0) invert(1);
}

.site-footer {
  grid-template-columns: 1fr;
  gap: 1rem;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 248, 239, 0.22), transparent 12rem),
    linear-gradient(135deg, #8a7b68, #6d6253);
}

.site-footer > div {
  display: grid;
  justify-items: start;
}

.copyright {
  color: #fff8ef;
  text-transform: none;
}

@media (max-width: 479px) {
  .intro-stack {
    padding-top: 0.95rem;
  }

  .protocol-shop-grid {
    grid-template-columns: 1fr;
  }

  .protocol-shop-card {
    min-height: 132px;
    padding: 1rem;
  }

  .protocol-shop-card span {
    max-width: 57%;
  }

  .protocol-shop-card img {
    width: 58%;
  }

  .ebook-banner-only {
    width: min(100% - 1rem, 1120px);
    padding: 0.28rem;
  }

  .site-footer {
    padding-bottom: 5.25rem;
  }
}

@media (min-width: 680px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > div {
    grid-template-columns: repeat(8, auto);
    align-items: center;
    gap: 0.75rem 1.2rem;
  }

  .site-footer h2 {
    grid-column: 1 / -1;
  }

  .ebook-banner-only {
    padding: 0.55rem;
  }
}

/* Piel Consciente journey */
.method-home {
  display: grid;
  gap: 0.65rem;
  padding-top: 1.2rem;
}

.pillar-line {
  margin: 0;
  color: #7c735f;
  font-size: clamp(0.76rem, 2.6vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.method-home .pillar-line {
  padding-inline: 0.95rem;
}

.diagnosis-section {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.diagnosis-copy,
.skin-test,
.ritual-card,
.method-cta {
  border: 1px solid rgba(166, 140, 112, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 249, 241, 0.86);
  box-shadow: var(--shadow);
}

.diagnosis-copy {
  padding: clamp(1.25rem, 5vw, 2.1rem);
}

.diagnosis-copy h2 {
  max-width: 34rem;
}

.diagnosis-copy p:not(.eyebrow) {
  max-width: 35rem;
  margin-bottom: 1rem;
  color: #6f6656;
  font-size: 1rem;
  font-weight: 700;
}

.skin-test {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 4vw, 1.35rem);
  scroll-margin-top: 104px;
}

.skin-test h3 {
  margin-bottom: 0;
  color: #6a5e4f;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.skin-test label {
  display: grid;
  gap: 0.45rem;
  color: #665c50;
  font-size: 0.9rem;
  font-weight: 800;
}

.skin-test select {
  width: 100%;
  border: 1px solid rgba(166, 140, 112, 0.34);
  border-radius: 12px;
  background: #fffaf4;
  color: #5f594b;
  padding: 0.8rem 0.85rem;
}

.skin-test .button {
  width: fit-content;
  border: 1px solid rgba(166, 140, 112, 0.45);
}

.diagnosis-result {
  margin: 0;
  border-left: 3px solid #8b826d;
  background: rgba(139, 130, 109, 0.1);
  padding: 0.75rem 0.85rem;
  color: #5f594b;
  font-weight: 750;
}

.section-intro {
  max-width: 42rem;
  margin: 0.65rem 0 0;
  color: #766b5c;
  font-weight: 700;
}

.rituals-section {
  margin-top: 0.9rem;
}

.ritual-grid {
  display: grid;
  gap: 0.8rem;
}

.ritual-card {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  padding: 1.15rem;
}

.ritual-card::after {
  position: absolute;
  right: -2.2rem;
  bottom: -3.1rem;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(139, 130, 109, 0.22);
  border-radius: 50%;
  content: "";
}

.ritual-card span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #a1745e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ritual-card h3 {
  max-width: 17rem;
  color: #5f594b;
  font-size: clamp(1.22rem, 5vw, 1.62rem);
  line-height: 1.08;
}

.ritual-card p {
  max-width: 18rem;
  margin: 0.55rem 0 0;
  color: #746958;
  font-weight: 700;
}

.ritual-card.is-recommended {
  border-color: rgba(111, 114, 93, 0.46);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(235, 224, 210, 0.9));
}

.ritual-card.is-recommended span {
  color: #6f725d;
}

.ebook {
  align-items: stretch;
  margin-top: 1rem;
  padding: 0.65rem;
}

.ebook::after {
  display: none;
}

.ebook img {
  border-radius: 14px;
  object-fit: cover;
}

.ebook-copy {
  display: grid;
  align-content: center;
  gap: 0.6rem;
}

.ebook-copy span:not(.text-button) {
  margin-bottom: 0;
}

.ebook-copy h2 {
  max-width: 32rem;
}

.ebook-copy p {
  max-width: 34rem;
}

.text-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.68rem 1rem;
  font-weight: 850;
  text-transform: uppercase;
}

.method-cta {
  display: grid;
  justify-items: center;
  gap: 0.95rem;
  margin-top: 1rem;
  padding: clamp(1.35rem, 5vw, 2rem);
  text-align: center;
}

.method-cta h2 {
  margin: 0;
  font-size: clamp(1.75rem, 6vw, 2.7rem);
}

@media (max-width: 479px) {
  .method-home {
    padding-top: 0.95rem;
  }

  .diagnosis-copy .button,
  .skin-test .button {
    width: 100%;
  }

  .ebook {
    padding: 0.55rem;
  }
}

@media (min-width: 680px) {
  .desktop-nav {
    gap: clamp(0.72rem, 1.35vw, 1.45rem);
    font-size: 0.82rem;
  }

  .appointment-cta {
    margin-top: 1.05rem;
    margin-bottom: 1.6rem;
  }

  .diagnosis-section {
    grid-template-columns: 1fr;
    margin-top: 1.3rem;
  }

  .skin-test {
    align-content: center;
  }

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

  .ritual-card {
    min-height: 220px;
    padding: 1.25rem;
  }

  .ebook img {
    min-height: 330px;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    font-size: 0.88rem;
  }

  .method-home {
    padding-top: 1.6rem;
  }
}

@media (min-width: 680px) and (max-width: 979px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu {
    top: 86px;
    display: grid;
  }
}

.diagnosis-section {
  grid-template-columns: 1fr;
}

.diagnosis-copy {
  display: grid;
  justify-items: start;
}

.ebook.ebook-banner-only {
  display: block;
  overflow: hidden;
  margin-top: 1rem;
  padding: 0.35rem;
  border: 1px solid rgba(188, 165, 141, 0.42);
  border-radius: 20px;
  background: rgba(255, 249, 241, 0.82);
}

.ebook.ebook-banner-only > img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 16px;
  object-fit: contain;
}

@media (max-width: 479px) {
  .ebook.ebook-banner-only {
    width: min(100% - 1rem, 1120px);
    padding: 0.28rem;
    border-radius: 16px;
  }

  .ebook.ebook-banner-only > img {
    border-radius: 12px;
  }
}

/* Balanced section rhythm */
main > .section {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.hero + .section {
  margin-top: clamp(1.45rem, 3vw, 2.2rem);
}

@media (max-width: 679px) {
  main > .section {
    margin-top: 2.65rem;
  }

  .hero + .section {
    margin-top: 1.9rem;
  }

  .section-heading,
  .section-title-row {
    padding-top: 0;
  }

  .section-heading {
    padding-bottom: 0.85rem;
  }

  .section-title-row {
    padding-bottom: 0.95rem;
  }

  .diagnosis-copy,
  .about,
  .ebook.ebook-banner-only,
  .contact {
    margin-top: 0;
  }

  .routine-grid,
  .protocol-shop-grid,
  .product-grid,
  .ritual-grid {
    gap: 1rem;
  }

  .contact {
    padding-top: 0;
  }
}
