:root {
  --lpc-red: #d71920;
  --lpc-red-dark: #b90f16;
  --lpc-ink: #242424;
  --lpc-text: #555555;
  --lpc-pink: #f9dcdd;
  --lpc-cream: #fff8f6;
  --lpc-beige: #f3e9e2;
  --lpc-white: #ffffff;
  --lpc-border: #eadfda;
  --lpc-shadow: 0 14px 38px rgba(63, 34, 28, 0.1);
  --lpc-serif: "DM Serif Display", Georgia, serif;
  --lpc-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lpc-container: 1200px;
  --lpc-radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--lpc-text);
  background: var(--lpc-white);
  font-family: var(--lpc-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

a {
  color: var(--lpc-red);
  text-decoration: none;
}

a:hover {
  color: var(--lpc-red-dark);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  color: var(--lpc-ink);
  font-weight: 600;
  line-height: 1.15;
}

h1,
h2 {
  font-family: var(--lpc-serif);
  font-weight: 400;
}

p {
  margin: 0 0 1em;
}

svg {
  display: block;
}

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--lpc-white);
  background: var(--lpc-red);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(234, 223, 218, 0.7);
  backdrop-filter: blur(14px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 28px;
}

.site-branding {
  flex: 0 0 auto;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 230px;
  max-height: 62px;
}

.custom-logo-link--footer {
  display: inline-flex;
  margin-bottom: 20px;
}

.custom-logo-link--footer .custom-logo {
  max-width: 240px;
  max-height: 72px;
  filter: brightness(0) invert(1);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--lpc-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.brand-link:hover {
  color: var(--lpc-ink);
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  color: var(--lpc-white);
  background: var(--lpc-red);
  border-radius: 50%;
}

.brand-mark svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.primary-navigation {
  margin-left: auto;
}

.lpc-nav-list,
.footer-menu {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lpc-nav-list {
  gap: 30px;
}

.lpc-nav-list a {
  position: relative;
  display: block;
  padding: 31px 0 27px;
  color: #444;
  font-size: 14px;
  font-weight: 500;
}

.lpc-nav-list a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lpc-red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.lpc-nav-list a:hover,
.lpc-nav-list .current-menu-item > a,
.lpc-nav-list .current_page_item > a {
  color: var(--lpc-red);
}

.lpc-nav-list a:hover::after,
.lpc-nav-list .current-menu-item > a::after,
.lpc-nav-list .current_page_item > a::after {
  transform: scaleX(1);
}

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

.social-link,
.cart-link {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #555;
}

.social-link svg,
.cart-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-link .fill-icon {
  fill: currentColor;
  stroke: none;
}

.lpc-cart-count {
  position: absolute;
  top: -5px;
  right: -4px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  color: var(--lpc-white);
  background: var(--lpc-red);
  border: 2px solid var(--lpc-white);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--lpc-ink);
  transition: 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lpc-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  color: var(--lpc-white);
  background: var(--lpc-red);
  border: 1px solid var(--lpc-red);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lpc-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  color: var(--lpc-white);
  background: var(--lpc-red-dark);
  border-color: var(--lpc-red-dark);
  transform: translateY(-1px);
}

.lpc-button--small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 13px;
}

.lpc-button--compact {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 13px;
}

.lpc-button--outline {
  color: var(--lpc-red);
  background: transparent;
}

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

.lpc-button--white {
  color: var(--lpc-red);
  background: var(--lpc-white);
  border-color: var(--lpc-white);
}

.lpc-button--white:hover {
  color: var(--lpc-red-dark);
  background: var(--lpc-cream);
  border-color: var(--lpc-cream);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 690px;
  overflow: hidden;
  grid-template-columns: minmax(0, 49%) minmax(0, 51%);
  background: var(--lpc-cream);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background: var(--lpc-cream);
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  top: -10%;
  right: -150px;
  width: 300px;
  height: 120%;
  content: "";
  background: var(--lpc-cream);
  border-radius: 50%;
}

.hero-copy__inner {
  width: min(100%, 600px);
  padding: 72px 46px 70px max(48px, calc((100vw - var(--lpc-container)) / 2));
}

.section-eyebrow {
  margin-bottom: 14px;
  color: var(--lpc-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.section-eyebrow--center {
  text-align: center;
}

.hero-copy h1 {
  max-width: 570px;
  margin-bottom: 18px;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.hero-copy h1 span {
  display: block;
  color: var(--lpc-red);
}

.leaf-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 22px;
  color: #ef9da1;
}

.leaf-divider svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.leaf-divider span {
  width: 50px;
  height: 1px;
  background: currentColor;
}

.hero-description {
  max-width: 430px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.75;
}

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

.hero-benefits {
  display: grid;
  max-width: 470px;
  margin-top: 52px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hero-benefit span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 11px;
  place-items: center;
  color: var(--lpc-red);
  background: var(--lpc-pink);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1;
}

.hero-benefit p {
  max-width: 110px;
  margin: 0;
  color: var(--lpc-ink);
  font-size: 12px;
  line-height: 1.45;
}

.hero-benefit span img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: radial-gradient(circle at 54% 35%, #f8e5d9 0, #e7d4c6 52%, #cdb49e 100%);
}

.hero-media.has-image {
  background-image: linear-gradient(rgba(54, 25, 18, 0.02), rgba(54, 25, 18, 0.08)), var(--lpc-hero-image);
  background-position: center;
  background-size: cover;
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  max-width: 440px;
  margin: auto;
  padding: 60px;
  align-content: center;
  justify-items: center;
  color: rgba(90, 52, 40, 0.7);
  text-align: center;
}

.hero-placeholder svg {
  width: 110px;
  margin-bottom: 20px;
  fill: none;
  stroke: var(--lpc-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-placeholder p {
  max-width: 320px;
  font-size: 14px;
}

.hero-corner-leaf {
  position: absolute;
  right: -74px;
  bottom: -72px;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: start;
  padding: 34px 0 0 34px;
  color: var(--lpc-white);
  background: var(--lpc-red);
  border-radius: 50%;
}

.hero-corner-leaf svg {
  width: 56px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.lpc-section {
  padding: 74px 0;
}

.favorites-section {
  background: linear-gradient(180deg, #fff9f7 0%, #fff 100%);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading-row .section-eyebrow {
  margin-bottom: 8px;
}

.section-heading-row h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
}

.favorite-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--lpc-white);
  border: 1px solid rgba(234, 223, 218, 0.72);
  border-radius: var(--lpc-radius);
  box-shadow: 0 10px 28px rgba(70, 40, 32, 0.08);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

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

.product-card__image {
  display: block;
  overflow: hidden;
  background: var(--lpc-beige);
  aspect-ratio: 1 / 1.08;
}

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

.product-card:hover .product-card__image img {
  transform: scale(1.025);
}

.product-card__body {
  display: flex;
  height: 100%;
  padding: 16px;
  flex-direction: column;
}

.product-card h3 {
  margin-bottom: 8px;
  font-family: var(--lpc-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.product-card h3 a {
  color: var(--lpc-ink);
}

.product-card p {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  margin-bottom: 14px;
  color: var(--lpc-text);
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-price {
  color: var(--lpc-red);
  font-size: 15px;
  font-weight: 700;
}

.product-price del {
  color: #888;
  font-size: 11px;
  font-weight: 400;
}

.product-price ins {
  text-decoration: none;
}

.product-add,
.product-card .product-add.button {
  display: grid;
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  place-items: center;
  color: var(--lpc-white);
  background: var(--lpc-red);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.product-add:hover,
.product-card .product-add.button:hover {
  color: var(--lpc-white);
  background: var(--lpc-red-dark);
  transform: none;
}

.product-card .added_to_cart {
  position: absolute;
  right: 12px;
  bottom: 56px;
  color: var(--lpc-red);
  background: var(--lpc-white);
  font-size: 10px;
  font-weight: 600;
}

.empty-products {
  padding: 42px;
  margin: 0;
  grid-column: 1 / -1;
  background: var(--lpc-white);
  border: 1px dashed #d8c9c1;
  border-radius: var(--lpc-radius);
  text-align: center;
}

.why-section {
  background: linear-gradient(90deg, #fff8f6 0%, #fffdfc 48%, #fff8f6 100%);
}

.why-section > .lpc-container > .section-eyebrow {
  margin-bottom: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.why-card {
  position: relative;
  padding: 0 36px;
  text-align: center;
}

.why-card + .why-card::before {
  position: absolute;
  top: 22px;
  bottom: 12px;
  left: 0;
  width: 1px;
  content: "";
  background: #efdcd8;
}

.why-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--lpc-red);
  background: var(--lpc-pink);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.why-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.why-card h3 {
  margin-bottom: 10px;
  font-family: var(--lpc-sans);
  font-size: 17px;
}

.why-card p {
  max-width: 225px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.6;
}

.home-cta {
  padding: 60px 0;
  color: rgba(255, 255, 255, 0.85);
  background: var(--lpc-red);
}

.home-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-cta .section-eyebrow {
  margin-bottom: 8px;
  color: var(--lpc-white);
}

.home-cta h2 {
  max-width: 720px;
  margin: 0;
  color: var(--lpc-white);
  font-size: clamp(34px, 4vw, 50px);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #201a19;
}

.footer-grid {
  display: grid;
  padding-top: 68px;
  padding-bottom: 60px;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 80px;
}

.brand-link--footer {
  margin-bottom: 18px;
  color: var(--lpc-white);
}

.brand-link--footer:hover {
  color: var(--lpc-white);
}

.footer-brand p {
  max-width: 320px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--lpc-white);
  font-family: var(--lpc-sans);
  font-size: 15px;
}

.footer-menu,
.footer-menu .lpc-nav-list {
  display: block;
}

.footer-menu li,
.site-footer .lpc-nav-list li {
  margin: 7px 0;
}

.footer-menu a,
.site-footer .lpc-nav-list a {
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.footer-menu a:hover,
.site-footer .lpc-nav-list a:hover {
  color: var(--lpc-white);
}

.lpc-button--light {
  color: var(--lpc-white);
  border-color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  padding: 20px 0;
  margin: 0;
  font-size: 12px;
}

.content-area,
.shop-area,
.not-found {
  min-height: 55vh;
  padding-top: 72px;
  padding-bottom: 90px;
}

.content-area--narrow {
  max-width: 880px;
}

.content-header {
  margin-bottom: 40px;
}

.content-header h1,
.not-found h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  overflow: hidden;
  background: var(--lpc-white);
  border: 1px solid var(--lpc-border);
  border-radius: var(--lpc-radius);
  box-shadow: 0 10px 28px rgba(70, 40, 32, 0.07);
}

.post-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--lpc-beige);
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  padding: 24px;
}

.post-card h2 {
  font-family: var(--lpc-sans);
  font-size: 21px;
}

.post-card h2 a {
  color: var(--lpc-ink);
}

.entry-content-wrap {
  max-width: 900px;
}

.entry-content {
  color: #454545;
}

.entry-content > * {
  max-width: 760px;
}

.entry-content > .alignwide {
  width: min(1100px, 100vw - 48px);
  max-width: none;
}

.entry-content > .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.entry-content h2 {
  margin-top: 1.6em;
  font-size: 38px;
}

.single-featured {
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: var(--lpc-radius);
}

.not-found {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
}

/* WooCommerce catalog and account surfaces. */
.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 28px;
  color: #777;
  font-size: 13px;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--lpc-red);
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.cart_totals h2,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
.woocommerce-order-details__title {
  font-family: var(--lpc-serif);
  font-weight: 400;
}

.woocommerce ul.products {
  display: grid;
  margin: 35px 0 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  margin: 0;
  overflow: hidden;
  background: var(--lpc-white);
  border: 1px solid var(--lpc-border);
  border-radius: var(--lpc-radius);
  box-shadow: 0 10px 28px rgba(70, 40, 32, 0.07);
}

.woocommerce ul.products li.product a img {
  margin: 0;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-right: 18px;
  margin-left: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding-top: 16px;
  color: var(--lpc-ink);
  font-size: 16px;
}

.woocommerce ul.products li.product .price {
  color: var(--lpc-red);
  font-weight: 700;
}

.woocommerce ul.products li.product .button {
  margin-bottom: 20px;
}

.woocommerce span.onsale {
  top: 12px;
  left: 12px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  background: var(--lpc-red);
  line-height: 48px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--lpc-red);
}

.woocommerce div.product form.cart .variations select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .quantity .qty,
.woocommerce select {
  min-height: 46px;
  padding: 9px 12px;
  background: var(--lpc-white);
  border: 1px solid #d8ccc6;
  border-radius: 8px;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--lpc-red);
  background: var(--lpc-cream);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--lpc-red);
}

.woocommerce table.shop_table {
  border-color: var(--lpc-border);
  border-radius: 12px;
}

.woocommerce-checkout #payment {
  background: var(--lpc-cream);
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 18px;
  }

  .brand-name {
    font-size: 21px;
  }

  .lpc-nav-list {
    gap: 22px;
  }

  .header-actions .social-link {
    display: none;
  }

  .hero-copy__inner {
    padding-left: 40px;
  }

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

  .why-card {
    padding: 0 24px;
  }
}

@media (max-width: 980px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-mark svg {
    width: 29px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    order: 2;
  }

  .primary-navigation {
    position: fixed;
    z-index: 999;
    top: 74px;
    right: 0;
    bottom: 0;
    width: min(420px, 88vw);
    padding: 28px;
    margin: 0;
    background: var(--lpc-white);
    box-shadow: -20px 22px 50px rgba(31, 20, 17, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: 200ms ease;
  }

  .admin-bar .primary-navigation {
    top: 120px;
  }

  .primary-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .primary-navigation .lpc-nav-list {
    display: block;
  }

  .primary-navigation .lpc-nav-list a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--lpc-border);
    font-size: 17px;
  }

  .primary-navigation .lpc-nav-list a::after {
    display: none;
  }

  .header-actions {
    order: 1;
  }

  .home-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 2;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-copy__inner {
    width: min(100%, 760px);
    padding: 60px 40px 64px;
    margin: auto;
  }

  .hero-media {
    min-height: 480px;
    order: 1;
    background-position: center 46%;
  }

  .hero-copy h1 {
    max-width: 680px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 0;
  }

  .why-card:nth-child(3)::before {
    display: none;
  }

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

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

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

  .brand-name {
    max-width: 132px;
    font-size: 17px;
    line-height: 1.1;
  }

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

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    margin-left: 0;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-copy__inner {
    padding: 46px 22px 52px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .lpc-button {
    width: 100%;
  }

  .hero-benefits {
    gap: 12px;
    margin-top: 38px;
  }

  .hero-benefit p {
    font-size: 11px;
  }

  .lpc-section {
    padding: 56px 0;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .favorite-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card__body {
    padding: 13px;
  }

  .product-card p {
    display: none;
  }

  .product-card h3 {
    min-height: 38px;
    font-size: 14px;
  }

  .product-add,
  .product-card .product-add.button {
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
  }

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

  .why-card {
    padding: 0 24px 36px;
  }

  .why-card + .why-card::before {
    top: -22px;
    right: 25%;
    bottom: auto;
    left: 25%;
    width: auto;
    height: 1px;
  }

  .why-card:nth-child(3)::before {
    display: block;
  }

  .home-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    padding-top: 52px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-name {
    max-width: 116px;
    font-size: 15px;
  }

  .hero-media {
    min-height: 310px;
  }

  .hero-placeholder {
    padding: 28px;
  }

  .hero-corner-leaf {
    right: -96px;
    bottom: -96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
