/*
Theme Name: VELORA Beauty
Author: VELORA
Description: A restrained editorial commerce theme for an independent beauty brand, with products, journal, about, and contact pages.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: velora-beauty
*/

:root {
  --ink: #181816;
  --muted: #686763;
  --line: #d7d6d1;
  --paper: #ffffff;
  --soft: #eef3f4;
  --accent: #587984;
  --green: #303638;
  --shell: 1240px;
  --reading: 760px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.menu-is-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; letter-spacing: 0; }
button, select { cursor: pointer; }
h1, h2, h3, p, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: 0; }
h1 { font-size: 64px; }
h2 { font-size: 42px; }
h3 { font-size: 25px; }
p:last-child { margin-bottom: 0; }

.shell { width: min(calc(100% - 48px), var(--reading)); margin-inline: auto; }
.shell--wide { width: min(calc(100% - 48px), var(--shell)); }
.section-space { padding-block: 104px; }
.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;
}
.skip-link {
  position: fixed; z-index: 200; top: 10px; left: 10px;
  padding: 10px 14px; background: var(--paper); border: 1px solid var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.eyebrow {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.button--dark { color: var(--paper); background: var(--ink); }
.button--dark:hover { color: var(--paper); background: var(--accent); border-color: var(--accent); }
.button--light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button--light:hover { color: var(--paper); background: var(--accent); border-color: var(--accent); }
.button--full { display: flex; width: 100%; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.text-link, .hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}
.text-link:hover, .hero-link:hover { color: var(--accent); }

/* Header */
.announcement {
  display: grid;
  min-height: 33px;
  place-items: center;
  padding: 6px 18px;
  color: var(--paper);
  background: var(--ink);
}
.announcement p { margin: 0; font-size: 11px; text-align: center; }
.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
}
.site-header__nav { grid-column: 2; grid-row: 1; justify-self: center; }
.primary-nav .menu { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.primary-nav a { display: block; padding-block: 8px; font-size: 13px; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--accent); }
.brand { display: flex; grid-column: 1; grid-row: 1; align-items: baseline; justify-content: flex-start; gap: 7px; line-height: 1; }
.brand > span { font-family: var(--serif); font-size: 29px; }
.brand small { font-size: 8px; font-weight: 700; }
.custom-logo-link { display: block; }
.custom-logo { width: auto; max-width: 180px; max-height: 44px; }
.header-action {
  display: grid;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  min-width: 112px;
  min-height: 40px;
  place-items: center;
  padding: 8px 15px;
  border: 1px solid #b5cbd0;
  border-radius: 4px;
  background: #c5d9dd;
  font-size: 12px;
  font-weight: 700;
}
.header-action:hover { color: var(--paper); background: var(--accent); border-color: var(--accent); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 11px; background: transparent; border: 0; }
.menu-toggle > span:not(.screen-reader-text) { display: block; width: 20px; height: 1px; margin-block: 5px; background: currentColor; }

/* Home */
.hero {
  position: relative;
  height: 72svh;
  min-height: 480px;
  max-height: 760px;
  color: var(--paper);
  background-position: center 43%;
  background-size: cover;
}
.hero::before { position: absolute; inset: 0; content: ""; background: rgba(0, 0, 0, .28); }
.hero__inner { position: relative; display: flex; height: 100%; align-items: flex-end; padding-bottom: 56px; }
.hero__copy { max-width: 620px; text-shadow: 0 1px 16px rgba(0, 0, 0, .32); }
.hero .eyebrow { color: var(--paper); }
.hero h1 { max-width: 620px; margin-bottom: 18px; font-size: 70px; }
.hero__lead { max-width: 510px; margin-bottom: 28px; font-size: 19px; }
.hero-link { color: var(--paper); border-color: var(--paper); }
.hero .button--light { background: #c5d9dd; border-color: #c5d9dd; }
.featured-products { border-bottom: 1px solid var(--line); }
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading--bordered { align-items: start; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.section-heading--bordered > p { max-width: 400px; color: var(--muted); }
.product-grid { display: grid; gap: 48px 22px; }
.product-grid--featured, .product-grid--shop { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card[hidden] { display: none; }
.product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1000 / 1180;
  background: var(--soft);
}
.product-card__image img { height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card__image:hover img { transform: scale(1.015); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  padding: 6px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  font-size: 10px; font-weight: 700;
}
.product-card__arrow {
  position: absolute; right: 12px; bottom: 12px;
  display: grid; width: 36px; height: 36px; place-items: center;
  color: var(--paper); background: var(--ink); font-size: 15px;
}
.product-card__body { padding-top: 16px; }
.product-card__body h3 { margin-bottom: 7px; font-family: var(--sans); font-size: 15px; font-weight: 700; line-height: 1.3; }
.product-card__body h3 a:hover { color: var(--accent); }
.product-card__body p { min-height: 43px; margin-bottom: 17px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.product-card__meta { display: flex; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 12px; }
.product-card__meta strong { font-weight: 700; }
.editorial-split { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 650px; background: var(--soft); }
.editorial-split__image { min-height: 650px; }
.editorial-split__image img { height: 100%; object-fit: cover; }
.editorial-split__copy { display: flex; max-width: 560px; flex-direction: column; justify-content: center; padding: 80px 9vw 80px 72px; }
.editorial-split__copy h2 { margin-bottom: 24px; }
.editorial-split__copy > p:not(.eyebrow) { margin-bottom: 28px; color: #4c4b48; }
.routine-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.routine-grid article { min-height: 190px; padding: 26px 28px 20px 0; border-bottom: 1px solid var(--line); }
.routine-grid article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.routine-grid span { display: block; margin-bottom: 44px; color: var(--accent); font-size: 12px; font-weight: 700; }
.routine-grid h3 { margin-bottom: 10px; font-size: 25px; }
.routine-grid p { max-width: 310px; color: var(--muted); font-size: 14px; }
.journal-preview { padding-top: 0; }
.journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px 24px; }
.journal-card__image { display: block; overflow: hidden; aspect-ratio: 17 / 10.5; background: var(--soft); }
.journal-card__image img { height: 100%; object-fit: cover; transition: transform .35s ease; }
.journal-card__image:hover img { transform: scale(1.015); }
.journal-card__meta { display: flex; gap: 16px; margin: 14px 0 10px; color: var(--muted); font-size: 11px; }
.journal-card h3 { margin-bottom: 10px; font-size: 24px; }
.journal-card h3 a:hover { color: var(--accent); }
.journal-card > p { margin-bottom: 16px; color: var(--muted); font-size: 14px; }

/* Shop */
.shop-hero, .journal-header { padding: 80px 0 52px; border-bottom: 1px solid var(--line); background: var(--soft); }
.shop-hero__inner, .journal-header__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 60px; }
.shop-hero h1, .journal-header h1 { margin-bottom: 0; }
.shop-hero__inner > p, .journal-header__inner > p { max-width: 460px; justify-self: end; margin-bottom: 6px; color: var(--muted); font-size: 18px; }
.shop-tools { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 18px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-group button, .category-nav a {
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  font-size: 12px;
}
.filter-group button:hover, .filter-group button.is-active, .category-nav a:hover, .category-nav a.is-active { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.product-search { display: flex; min-width: 240px; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--ink); }
.product-search input { width: 100%; padding: 2px 0; background: transparent; border: 0; outline: 0; font-size: 13px; }
.results-count { margin-bottom: 25px; color: var(--muted); font-size: 12px; }
.empty-results { padding-block: 50px; border-top: 1px solid var(--line); text-align: center; }
.shop-note { padding: 84px 0; color: var(--paper); background: var(--green); text-align: center; }
.shop-note .eyebrow { color: rgba(255,255,255,.75); }
.shop-note h2 { max-width: 700px; margin: 0 auto 28px; }
.navigation.pagination { margin-top: 56px; }
.nav-links { display: flex; justify-content: center; gap: 6px; }
.page-numbers { display: grid; min-width: 38px; height: 38px; place-items: center; padding-inline: 10px; border: 1px solid var(--line); font-size: 12px; }
.page-numbers.current, a.page-numbers:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }

/* Product */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding-block: 18px; color: var(--muted); font-size: 11px; }
.breadcrumbs a:hover { color: var(--accent); }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 8vw; align-items: start; padding-bottom: 100px; }
.product-detail__media { position: relative; aspect-ratio: 1000 / 1180; background: var(--soft); }
.product-detail__media img { height: 100%; object-fit: cover; }
.product-detail__badge { position: absolute; top: 16px; left: 16px; padding: 7px 10px; background: rgba(255,255,255,.92); font-size: 11px; font-weight: 700; }
.product-detail__content { position: sticky; top: 36px; padding-top: 34px; }
.product-detail__content h1 { margin-bottom: 20px; font-size: 50px; }
.product-detail__lead { margin-bottom: 25px; color: var(--muted); font-size: 17px; }
.product-detail__price { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 25px; padding-block: 15px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-detail__price strong { font-size: 18px; }
.product-detail__price span { color: var(--muted); font-size: 12px; }
.purchase-note { margin: 12px 0 28px; color: var(--muted); font-size: 11px; }
.product-accordions { border-top: 1px solid var(--line); }
.product-accordions details { border-bottom: 1px solid var(--line); }
.product-accordions summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-size: 13px; font-weight: 700; list-style: none; }
.product-accordions summary::-webkit-details-marker { display: none; }
.detail-panel { padding: 0 0 21px; color: var(--muted); font-size: 14px; }
.detail-panel ul { margin: 0; padding-left: 18px; }
.benefit-band { padding: 80px 0; background: var(--soft); }
.benefit-band__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.benefit-band ol { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.benefit-band li { display: flex; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.benefit-band li span { color: var(--accent); font-size: 11px; }

/* Journal */
.category-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 42px; }
.article-header { padding-block: 88px 54px; text-align: center; }
.article-header h1 { margin-bottom: 24px; }
.article-header__lead { max-width: 620px; margin: 0 auto 22px; color: var(--muted); font-size: 18px; }
.article-meta { display: flex; justify-content: center; gap: 18px; color: var(--muted); font-size: 11px; }
.article-hero { aspect-ratio: 17 / 10.5; }
.article-hero img { height: 100%; object-fit: cover; }
.article-content { padding-block: 70px; font-family: var(--serif); font-size: 19px; line-height: 1.75; }
.article-content h2 { margin: 52px 0 17px; font-size: 34px; }
.article-content p, .article-content ul, .article-content ol { margin-bottom: 24px; }
.article-content blockquote { margin: 40px 0; padding: 20px 0 20px 26px; border-left: 3px solid var(--accent); font-size: 27px; line-height: 1.35; }
.article-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-footer p { margin: 0; font-size: 14px; }
.related-reading { margin-top: 80px; background: var(--soft); }

/* About */
.about-hero { padding-block: 70px 100px; background: var(--soft); }
.about-hero__grid { display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 9vw; }
.about-hero__copy h1 { max-width: 640px; margin-bottom: 25px; }
.about-hero__copy > p:last-child { max-width: 570px; color: var(--muted); font-size: 19px; }
.about-hero__grid > img { aspect-ratio: 1100 / 1350; object-fit: cover; }
.about-intro__grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 80px; }
.about-intro h2 { margin-bottom: 24px; }
.about-intro__grid > div p { max-width: 650px; color: var(--muted); font-size: 17px; }
.about-lab { padding-block: 90px; border-block: 1px solid var(--line); }
.about-lab__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 7vw; }
.about-lab__grid > img { aspect-ratio: 17 / 11; object-fit: cover; }
.about-lab h2 { margin-bottom: 22px; }
.about-lab__grid > div > p:not(.eyebrow) { color: var(--muted); }
.standard-list { margin: 32px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.standard-list li { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.standard-list span { color: var(--muted); }
.about-close__inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: start; gap: 80px; }
.about-close__inner h2 { margin: 0; }
.about-close__inner > div > p { color: var(--muted); }

/* Contact */
.contact-page { padding-block: 72px 100px; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; align-items: start; }
.contact-photo { position: sticky; top: 30px; }
.contact-photo img { aspect-ratio: 1200 / 1500; object-fit: cover; }
.contact-content { max-width: 640px; }
.contact-content h1 { margin-bottom: 22px; }
.contact-intro { max-width: 530px; margin-bottom: 36px; color: var(--muted); font-size: 17px; }
.form-notice { margin-bottom: 22px; padding: 13px 15px; border: 1px solid var(--line); font-size: 13px; }
.form-notice--success { border-color: var(--green); }
.form-notice--error { border-color: var(--accent); }
.contact-form { display: grid; gap: 20px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-size: 12px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 13px; background: var(--paper); border: 1px solid #aaa9a4; border-radius: 0; }
.contact-form input, .contact-form select { min-height: 48px; }
.contact-form textarea { resize: vertical; }
.contact-form .button { justify-self: start; min-width: 175px; }
.contact-form__honey { position: absolute; left: -10000px; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); }
.contact-details > div { display: grid; gap: 5px; }
.contact-details span { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.contact-details p, .contact-details a { margin: 0; font-size: 13px; }

/* General pages */
.standard-page__header { padding-block: 80px 55px; background: var(--soft); border-bottom: 1px solid var(--line); }
.standard-page__header h1 { margin: 0; }
.standard-page__content { padding-block: 70px 100px; font-family: var(--serif); font-size: 18px; }
.standard-page__content h2 { margin-top: 45px; font-size: 34px; }
.not-found { display: grid; min-height: 60vh; place-items: center; padding-block: 80px; text-align: center; }
.not-found h1 { margin-bottom: 20px; }
.not-found p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }

/* Footer */
.newsletter-band { padding-block: 62px; border-top: 1px solid var(--line); background: var(--soft); }
.newsletter-band__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 55px; }
.newsletter-band h2 { margin-bottom: 0; font-size: 32px; }
.newsletter-band__inner > .button { justify-self: end; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; align-items: stretch; }
.newsletter-form input { min-width: 0; min-height: 50px; padding: 11px 0; background: transparent; border: 0; border-bottom: 1px solid var(--ink); outline: 0; }
.newsletter-form button { display: flex; min-height: 50px; align-items: center; gap: 22px; padding: 10px 0 10px 18px; background: transparent; border: 0; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 700; }
.newsletter-form button:hover { color: var(--accent); }
.form-message { grid-column: 1 / -1; margin: 9px 0 0; font-size: 11px; }
.site-footer__main { padding-block: 68px 25px; color: var(--paper); background: var(--ink); }
.site-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 55px; }
.footer-brand > a { display: block; margin-bottom: 17px; font-family: var(--serif); font-size: 33px; }
.footer-brand p, .footer-note p { max-width: 280px; color: #b8b7b2; font-size: 13px; }
.site-footer__grid h3 { margin-bottom: 17px; color: #aaa9a4; font-family: var(--sans); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.site-footer__grid > div:not(.footer-brand) > a { display: block; width: fit-content; margin-bottom: 10px; font-size: 13px; }
.site-footer__grid a:hover { color: #a9cbd2; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 20px; border-top: 1px solid #3e3e3a; }
.site-footer__bottom p, .site-footer__bottom a { margin: 0; color: #92918d; font-size: 10px; }

@media (max-width: 1000px) {
  h1 { font-size: 52px; }
  h2 { font-size: 36px; }
  .section-space { padding-block: 80px; }
  .product-grid--featured, .product-grid--shop { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial-split { min-height: 540px; }
  .editorial-split__image { min-height: 540px; }
  .editorial-split__copy { padding: 55px 48px; }
  .product-detail { gap: 6vw; }
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid #3e3e3a; }
}

@media (max-width: 760px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 23px; }
  .shell, .shell--wide { width: min(calc(100% - 32px), var(--shell)); }
  .section-space { padding-block: 64px; }
  .site-header__inner { min-height: 64px; }
  .menu-toggle { display: block; grid-column: 1; grid-row: 1; justify-self: start; margin-left: -11px; }
  .site-header__nav { position: absolute; top: 64px; right: 0; left: 0; width: 100%; justify-self: stretch; }
  .primary-nav { display: none; width: 100%; height: calc(100svh - 97px); padding: 30px 16px; background: var(--paper); border-top: 1px solid var(--line); }
  .primary-nav.is-open { display: block; }
  .primary-nav .menu { display: block; }
  .primary-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 26px; }
  .brand { grid-column: 2; justify-content: center; }
  .brand > span { font-size: 24px; }
  .brand small { display: none; }
  .header-action { grid-column: 3; min-width: 0; min-height: 36px; padding-inline: 11px; font-size: 11px; }
  .hero { height: 70svh; min-height: 440px; background-position: 52% 42%; }
  .hero__inner { padding-bottom: 34px; }
  .hero h1 { font-size: 42px; }
  .hero__lead { max-width: 350px; font-size: 16px; }
  .button-row { gap: 16px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 30px; }
  .section-heading--bordered { gap: 10px; }
  .product-grid { gap: 40px 12px; }
  .product-card__body h3 { font-size: 14px; }
  .product-card__body p { min-height: 0; font-size: 12px; }
  .product-card__meta { flex-direction: column; gap: 3px; }
  .product-card__arrow { width: 32px; height: 32px; }
  .editorial-split { grid-template-columns: 1fr; min-height: 0; }
  .editorial-split__image { min-height: 0; aspect-ratio: 4 / 3; }
  .editorial-split__copy { max-width: none; padding: 50px 24px 58px; }
  .routine-grid { grid-template-columns: 1fr; }
  .routine-grid article { min-height: 0; padding: 23px 0; }
  .routine-grid article + article { padding-left: 0; border-left: 0; }
  .routine-grid span { margin-bottom: 16px; }
  .journal-preview { padding-top: 0; }
  .journal-grid { grid-template-columns: 1fr; }
  .shop-hero, .journal-header { padding: 55px 0 38px; }
  .shop-hero__inner, .journal-header__inner { grid-template-columns: 1fr; gap: 20px; }
  .shop-hero__inner > p, .journal-header__inner > p { justify-self: start; margin: 0; font-size: 15px; }
  .shop-tools { align-items: stretch; flex-direction: column; }
  .product-search { min-width: 0; width: 100%; }
  .product-detail { grid-template-columns: 1fr; gap: 0; padding-bottom: 64px; }
  .product-detail__content { position: static; padding-top: 35px; }
  .product-detail__content h1 { font-size: 39px; }
  .benefit-band { padding: 60px 0; }
  .benefit-band__grid { grid-template-columns: 1fr; gap: 25px; }
  .product-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-header { padding: 60px 0 40px; text-align: left; }
  .article-header__lead { margin-left: 0; }
  .article-meta { justify-content: flex-start; }
  .article-hero { width: 100%; aspect-ratio: 4 / 3; }
  .article-content { padding-block: 52px; font-size: 18px; }
  .article-content h2 { font-size: 30px; }
  .article-content blockquote { font-size: 23px; }
  .article-footer { align-items: flex-start; flex-direction: column; }
  .about-hero { padding-block: 52px 64px; }
  .about-hero__grid, .about-lab__grid { grid-template-columns: 1fr; gap: 42px; }
  .about-hero__grid > img { max-height: 580px; }
  .about-intro__grid { grid-template-columns: 1fr; gap: 16px; }
  .about-lab { padding-block: 64px; }
  .about-close__inner { grid-template-columns: 1fr; gap: 25px; }
  .contact-page { padding-block: 40px 70px; }
  .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .contact-photo { position: static; }
  .contact-photo img { max-height: 520px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .newsletter-band__inner { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-band__inner > .button { justify-self: start; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .announcement p { font-size: 10px; }
  .header-action { max-width: 62px; text-align: right; }
  .hero { min-height: 420px; }
  .hero h1 { max-width: 310px; font-size: 39px; }
  .product-grid--featured, .product-grid--shop, .product-grid--related { grid-template-columns: 1fr 1fr; }
  .product-card__badge { top: 8px; left: 8px; max-width: calc(100% - 16px); }
  .contact-details { grid-template-columns: 1fr; }
  .site-footer__grid { gap: 38px 24px; }
}

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