:root {
  --color-bg: #fdfcfc;
  --color-surface: #ffffff;
  --color-text: #2b2e2e;
  --color-strong: #000000;
  --color-muted: #7c7c7b;
  --color-brand: #2a2a2a;
  --color-border: rgba(42, 42, 42, 0.16);
  --color-warm: #f5ede7;
  --color-rose: #efe5e8;
  --shadow-line: inset 0 -1px 0 rgba(42, 42, 42, 0.12);
  --font-body: "Karla", sans-serif;
  --font-display: "Cormorant Garamond", serif;
  --page-x: clamp(1.25rem, 5vw, 4.5rem);
  --space-section: clamp(3rem, 6vw, 4.5rem);
  --space-section-sm: clamp(2rem, 4vw, 3rem);
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

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

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

a:hover {
  opacity: 0.86;
}

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

.screen-reader-text,
.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-brand);
  color: var(--color-bg);
}

.site-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}

.announcement-bar {
  background: var(--color-brand);
  color: var(--color-bg);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.announcement-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
}

.announcement-bar a {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(253, 252, 252, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 5.75rem;
}

.site-header__branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.site-brand img {
  max-height: 2.5rem;
  width: auto;
}

.site-brand__image img {
  max-height: 2.7rem;
}

.site-brand__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.3vw, 2.3rem);
  line-height: 1;
  color: var(--color-brand);
}

.site-brand__subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.site-navigation {
  justify-self: center;
}

.menu-list,
.utility-menu,
.footer-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list a,
.utility-menu a,
.menu-list button {
  display: inline-flex;
  align-items: center;
  min-height: 5rem;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.menu-list a:hover,
.utility-menu a:hover {
  box-shadow: var(--shadow-line);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-brand);
  cursor: pointer;
}

.icon-button svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.icon-button__count {
  position: absolute;
  top: 0.3rem;
  right: 0.2rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: var(--color-brand);
  color: var(--color-bg);
  font-size: 0.65rem;
  line-height: 1rem;
  text-align: center;
}

.mobile-only {
  display: none;
}

.mobile-only span {
  display: block;
  width: 1.2rem;
  height: 1px;
  margin: 0.17rem 0;
  background: currentColor;
}

.site-header__utility {
  border-top: 1px solid rgba(42, 42, 42, 0.08);
}

.site-header__utility .site-shell {
  display: flex;
  justify-content: flex-end;
}

.utility-menu a {
  min-height: 2.75rem;
  font-size: 0.84rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-search {
  border-top: 1px solid var(--color-border);
}

.site-search[hidden] {
  display: none;
}

.site-search__inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.search-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 3.25rem;
  padding: 0 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.875rem 1.45rem;
  border-radius: 0;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.115em;
  text-transform: uppercase;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-bg);
}

.button--secondary,
.added_to_cart {
  background: transparent;
  border-color: transparent;
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 0.28rem;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  opacity: 1;
  background: #575757;
  border-color: #575757;
}

.button--secondary:hover,
.added_to_cart:hover {
  background: transparent;
  border-color: transparent;
  color: var(--color-brand);
  text-decoration: none;
}

.site-main {
  min-height: 60vh;
}

.homepage-section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading--centered {
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.entry-title,
.hero-slide__title,
.woocommerce-products-header__title.page-title,
.woocommerce div.product .product_title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--color-strong);
  line-height: 1.18;
}

.section-heading h2,
.woocommerce-products-header__title.page-title {
  font-size: clamp(2.25rem, 4vw, 3.4rem);
}

.hero-slider {
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.hero-slider__track {
  display: flex;
  transition: transform 500ms ease;
}

.hero-slide {
  min-width: 100%;
}

.hero-slide__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.hero-slide__content {
  max-width: 38rem;
  padding-top: clamp(2rem, 7vw, 5rem);
  padding-bottom: clamp(2rem, 7vw, 5rem);
}

.hero-slide__title {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-slide__copy {
  max-width: 34rem;
  margin: 0 0 1.75rem;
  font-size: 1.06rem;
  color: var(--color-text);
}

.hero-slide__media {
  min-height: 32rem;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-warm), var(--color-rose));
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__placeholder {
  display: grid;
  place-items: center;
  min-height: 32rem;
  padding: 2rem;
  color: var(--color-muted);
  text-align: center;
  border: 1px dashed rgba(42, 42, 42, 0.2);
}

.hero-slider__controls {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-slider__dot {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(42, 42, 42, 0.18);
  cursor: pointer;
}

.hero-slider__dot.is-active {
  background: var(--color-brand);
}

.susie-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  background:
    radial-gradient(circle at top left, rgba(239, 229, 232, 0.85), transparent 34%),
    linear-gradient(180deg, #fffaf7 0%, #f7f0e9 100%);
}

.susie-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.susie-hero__content {
  max-width: 42rem;
}

.susie-hero__title {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--color-strong);
}

.susie-hero__copy {
  max-width: 36rem;
  margin: 0 0 1.8rem;
  font-size: 1.08rem;
  color: rgba(43, 46, 46, 0.86);
}

.susie-hero__actions,
.susie-story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.susie-hero__notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.susie-note {
  min-height: 100%;
  padding: 1rem 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(42, 42, 42, 0.08);
}

.susie-note__label,
.susie-highlight-card__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.susie-note__value {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.susie-hero__media {
  position: relative;
  min-height: 100%;
}

.susie-hero__image-frame {
  overflow: hidden;
  background: #e9ddd3;
  box-shadow: 0 30px 70px rgba(78, 56, 33, 0.12);
}

.susie-hero__image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.susie-hero__badge {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  display: grid;
  gap: 0.3rem;
  max-width: 15rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(42, 42, 42, 0.08);
  box-shadow: 0 18px 30px rgba(78, 56, 33, 0.08);
}

.susie-hero__badge span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.susie-hero__badge strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.05;
}

.susie-story {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 237, 231, 0.5));
}

.susie-story__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.susie-story__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 10rem;
  gap: 1rem;
  align-items: end;
}

.susie-story__portrait,
.susie-story__texture,
.susie-gallery__panel {
  overflow: hidden;
  background: var(--color-surface);
}

.susie-story__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.susie-story__texture {
  align-self: end;
}

.susie-story__texture img {
  width: 100%;
  aspect-ratio: 1 / 1.3;
  object-fit: cover;
}

.susie-story__content h2,
.susie-gallery__intro h2,
.susie-highlight-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--color-strong);
}

.susie-story__content h2,
.susie-gallery__intro h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.susie-story__content p,
.susie-gallery__intro p {
  max-width: 38rem;
  color: rgba(43, 46, 46, 0.84);
}

.susie-highlights {
  padding-top: var(--space-section-sm);
}

.susie-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.susie-highlight-card {
  padding: 1.4rem;
  background: var(--color-surface);
  border: 1px solid rgba(42, 42, 42, 0.1);
}

.authority-section {
  padding-top: var(--space-section-sm);
}

.authority-card,
.susie-standard-section .susie-highlight-card {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 237, 231, 0.92));
  box-shadow: 0 20px 44px rgba(68, 49, 31, 0.06);
}

.susie-standard-section {
  background: linear-gradient(180deg, rgba(245, 237, 231, 0.32), rgba(255, 255, 255, 0));
}

.signature-paths-section {
  padding-top: var(--space-section-sm);
}

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

.signature-path-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1fr);
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 237, 231, 0.78));
  border: 1px solid rgba(42, 42, 42, 0.1);
  box-shadow: 0 24px 54px rgba(68, 49, 31, 0.08);
  overflow: hidden;
}

.signature-path-card__media {
  position: relative;
  min-height: 100%;
  background: #e9ddd3;
}

.signature-path-card__media img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.signature-path-card__index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.4rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(42, 42, 42, 0.12);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.signature-path-card__body {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1.5rem;
}

.signature-path-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--color-strong);
}

.signature-path-card__body p {
  margin: 0;
}

.signature-path-card__cta {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.24rem;
}

.susie-highlight-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  line-height: 1.06;
}

.susie-highlight-card p {
  margin: 0 0 1rem;
}

.susie-highlight-card a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.24rem;
}

.susie-gallery__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.susie-gallery__mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.7fr);
  gap: 1rem;
}

.susie-gallery__panel--large {
  grid-row: span 2;
}

.susie-gallery__panel--large img {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  object-fit: cover;
}

.susie-gallery__panel--logo,
.susie-gallery__panel--texture {
  display: grid;
  place-items: center;
  min-height: 15.5rem;
  padding: 1.5rem;
}

.susie-gallery__panel--logo {
  background: linear-gradient(180deg, rgba(245, 237, 231, 0.7), rgba(255, 255, 255, 0.9));
}

.susie-gallery__panel--logo img {
  max-width: 11rem;
  width: 100%;
  height: auto;
}

.susie-gallery__panel--texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-section {
  padding-top: var(--space-section-sm);
}

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

.brand-card {
  display: grid;
  gap: 0.9rem;
  align-items: center;
  justify-items: center;
  min-height: 10rem;
  padding: 1.5rem 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  text-align: center;
}

.brand-card--editorial {
  justify-items: start;
  text-align: left;
}

.brand-card__image--editorial {
  width: 100%;
}

.brand-card__image img {
  display: block;
  max-height: 4.5rem;
  width: auto;
  object-fit: contain;
}

.brand-card__image--editorial img {
  width: 100%;
  max-height: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.1rem;
}

.brand-card__name {
  font-size: 0.95rem;
}

.brand-card__body {
  color: var(--color-text);
  line-height: 1.45;
}

.trending-grid,
.featured-grid,
.archive-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.product-card__media {
  display: block;
  overflow: hidden;
  background: var(--color-warm);
}

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

.product-card__body {
  padding-top: 1.35rem;
}

.product-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 1.2;
  color: var(--color-strong);
}

.product-card--trending .product-card__title {
  font-size: 1.85rem;
}

.product-card__description {
  margin: 0 0 1rem;
  max-width: 36rem;
  color: var(--color-text);
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.8rem;
}

.social-section {
  background: linear-gradient(180deg, rgba(245, 237, 231, 0.6), rgba(255, 255, 255, 0.9));
}

.social-section__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.social-section p {
  margin: 0;
  color: var(--color-muted);
}

.site-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem 4rem;
  align-items: start;
}

.site-footer__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__copy {
  max-width: 26rem;
  margin: 0 0 1.5rem;
}

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

.site-footer__menus h2 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-menu {
  display: grid;
  gap: 0.65rem;
}

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.site-footer__legal a {
  color: inherit;
}

.page-shell,
.shop-shell {
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.editorial-hero {
  margin-bottom: clamp(1.8rem, 3vw, 2.8rem);
}

.editorial-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1.2rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 48%),
    linear-gradient(145deg, rgba(248, 241, 234, 0.92), rgba(238, 226, 214, 0.94));
  border: 1px solid rgba(42, 42, 42, 0.08);
  border-radius: 2rem;
  overflow: hidden;
}

.editorial-hero__content {
  display: grid;
  gap: 0.9rem;
  padding: clamp(0.6rem, 2vw, 1.25rem);
}

.editorial-hero .entry-title {
  margin: 0;
  max-width: 44rem;
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  line-height: 0.98;
}

.editorial-hero__copy {
  max-width: 42rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.editorial-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.editorial-hero__meta .category-pills {
  margin: 0;
}

.editorial-hero__date {
  margin: 0;
}

.editorial-hero__media {
  display: grid;
  gap: 1rem;
}

.editorial-hero__frame {
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  border-radius: 1.6rem;
  background: rgba(233, 218, 205, 0.75);
  box-shadow: 0 28px 60px rgba(106, 75, 51, 0.15);
}

.editorial-hero--story .editorial-hero__frame,
.editorial-hero--archive .editorial-hero__frame {
  aspect-ratio: 4 / 4.45;
}

.editorial-hero__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-hero__note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(42, 42, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-card {
  max-width: 52rem;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.archive-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
}

.empty-state {
  padding: 1.5rem;
  border: 1px dashed rgba(42, 42, 42, 0.2);
  color: var(--color-muted);
}

.woocommerce-result-count,
.woocommerce-ordering {
  margin-bottom: 1.5rem;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce ul.products li.product a img {
  margin-bottom: 1rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2rem;
  color: var(--color-strong);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--color-brand);
  font-weight: 700;
}

.woocommerce div.product form.cart .button {
  margin-top: 1rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--color-brand);
}

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

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

.box-concept-card,
.journal-series-card,
.peptide-section__card {
  padding: 1.4rem;
  background: var(--color-surface);
  border: 1px solid rgba(42, 42, 42, 0.1);
}

.box-concept-card:first-child,
.journal-series-card:first-child {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(245, 237, 231, 0.82), rgba(255, 255, 255, 0.98));
  box-shadow: 0 24px 54px rgba(68, 49, 31, 0.06);
}

.box-concept-card h3,
.journal-series-card h2,
.journal-series-card h3,
.form-card h2,
.peptide-section__card h2,
.story-quote p {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--color-strong);
}

.box-concept-card h3,
.journal-series-card h3 {
  font-size: clamp(1.75rem, 2vw, 2.25rem);
  line-height: 1.06;
}

.box-concept-card p,
.journal-series-card p,
.peptide-section__card p,
.form-card__description {
  margin: 0 0 1rem;
}

.box-concept-card a,
.journal-series-card a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.24rem;
}

.launch-signup-section {
  padding-top: var(--space-section-sm);
}

.form-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(245, 237, 231, 0.8), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(42, 42, 42, 0.1);
}

.lead-form {
  display: grid;
  gap: 0.9rem;
}

.lead-form__grid,
.contact-grid,
.story-split,
.membership-section__inner,
.peptide-section__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lead-form label,
.entry-content label {
  display: grid;
  gap: 0.35rem;
}

.lead-form span,
.entry-content label span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.lead-form input,
.lead-form textarea,
.entry-content input,
.entry-content textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  background: #fff;
}

.lead-form textarea,
.entry-content textarea {
  min-height: 10rem;
}

.form-notice {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(42, 42, 42, 0.12);
}

.form-notice--success {
  background: rgba(245, 237, 231, 0.72);
}

.form-notice--error {
  background: rgba(239, 229, 232, 0.65);
}

.section-actions,
.story-quote__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.peptide-section {
  background: linear-gradient(180deg, rgba(239, 229, 232, 0.5), rgba(255, 255, 255, 0.98));
}

.membership-section__content h2,
.peptide-section__inner h2,
.journal-intro__copy,
.entry-card--wide .entry-title {
  max-width: 44rem;
}

.membership-section__content h2,
.peptide-section__inner h2,
.journal-intro .entry-title,
.form-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.checklist {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.1rem;
}

.checklist li {
  padding-left: 0.2rem;
}

.journal-intro {
  margin-bottom: 2rem;
}

.journal-intro__copy {
  max-width: 42rem;
  margin: 0 0 1rem;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-surface);
}

.archive-grid--journal {
  margin-top: 2rem;
}

.entry-card--journal,
.entry-card--wide {
  max-width: none;
}

.entry-card--page {
  padding-top: 0.5rem;
}

.entry-card--journal {
  padding: 1.2rem;
  border: 1px solid rgba(42, 42, 42, 0.08);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.story-quote {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(245, 237, 231, 0.56);
}

.entry-card--wide .entry-content > * {
  max-width: 48rem;
}

.entry-card--wide .entry-content h2,
.entry-card--wide .entry-content h3 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--color-strong);
}

.entry-card--wide .entry-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.entry-card--wide .entry-content h3 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
}

.entry-content .signature-grid,
.entry-content .policy-grid,
.entry-content .offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.entry-content .signature-card,
.entry-content .policy-card,
.entry-content .offer-card,
.entry-content .quote-panel {
  padding: 1.4rem;
  border: 1px solid rgba(42, 42, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.entry-content .quote-panel {
  background: linear-gradient(180deg, rgba(245, 237, 231, 0.72), rgba(255, 255, 255, 0.92));
}

.entry-content .highlight-banner {
  margin: 2rem 0;
  padding: 1.4rem;
  border-left: 2px solid var(--color-brand);
  background: rgba(245, 237, 231, 0.45);
}

.entry-content .disclosure-note,
.shop-empty-state .disclosure-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(42, 42, 42, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.disclosure-note__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.disclosure-note p {
  margin: 0;
}

.outbound-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.outbound-link__meta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.entry-content .section-label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.entry-content .inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.entry-content .inline-links a {
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

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

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

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

.shop-overview-card,
.shop-pathway-card,
.category-summary-card,
.shop-empty-state,
.starter-shelf-card {
  padding: 1.45rem;
  border: 1px solid rgba(42, 42, 42, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

.shop-overview-card p:last-child,
.shop-pathway-card p:last-child,
.category-summary-card p:last-child {
  margin-bottom: 0;
}

.shop-pathway-card h3,
.shop-category-card__title,
.shop-empty-state h3,
.starter-shelf-card h3,
.category-pathways-copy h2,
.entry-content .box-slot-card h3,
.entry-content .box-timeline-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--color-strong);
  line-height: 1.04;
}

.shop-pathway-card h3,
.starter-shelf-card h3,
.entry-content .box-slot-card h3,
.entry-content .box-timeline-card h3 {
  font-size: clamp(1.65rem, 2vw, 2.15rem);
}

.starter-shelf-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.starter-shelf-card__media {
  overflow: hidden;
  border-radius: 1.2rem;
  background: rgba(233, 218, 205, 0.75);
}

.starter-shelf-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
}

.starter-shelf-card__body {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.starter-shelf-card__note,
.starter-shelf-card__meta {
  color: var(--color-muted);
}

.starter-shelf-card__note {
  font-style: italic;
}

.starter-shelf-card__meta {
  font-size: 0.95rem;
}

.starter-shelf-grid--compact {
  grid-template-columns: 1fr;
}

.shop-pathway-card a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.24rem;
}

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

.shop-category-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid rgba(42, 42, 42, 0.1);
  background: rgba(255, 255, 255, 0.95);
  color: inherit;
  text-decoration: none;
}

.shop-category-card__media {
  overflow: hidden;
  border-radius: 1.2rem;
  background: rgba(233, 218, 205, 0.75);
}

.shop-category-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 4.45;
  object-fit: cover;
}

.shop-category-card__body {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.shop-category-card__title {
  font-size: clamp(1.9rem, 2.5vw, 2.5rem);
}

.shop-category-card__copy,
.shop-category-card__note {
  color: var(--color-muted);
  line-height: 1.65;
}

.shop-category-card__note {
  font-size: 0.95rem;
}

.shop-category-card--compact .shop-category-card__media img {
  aspect-ratio: 4 / 3.25;
}

.shop-empty-state {
  max-width: 44rem;
  background: linear-gradient(180deg, rgba(245, 237, 231, 0.82), rgba(255, 255, 255, 0.98));
}

.shop-empty-state p:last-child,
.category-pathways-copy p:last-child {
  margin-bottom: 0;
}

.category-pathways-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.category-pathways-copy {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.category-pathways-copy h2 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.entry-content .box-slot-grid,
.entry-content .box-timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.entry-content .box-slot-card,
.entry-content .box-timeline-card {
  padding: 1.45rem;
  border: 1px solid rgba(42, 42, 42, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

.entry-content .box-slot-card p:last-child,
.entry-content .box-timeline-card p:last-child {
  margin-bottom: 0;
}

.luxury-signal-section {
  padding-top: var(--space-section-sm);
}

.luxury-signal-section--dark {
  background:
    linear-gradient(180deg, rgba(33, 31, 29, 0.98), rgba(45, 39, 36, 0.98)),
    radial-gradient(circle at top right, rgba(167, 130, 80, 0.16), transparent 35%);
  color: #f7f0e8;
}

.luxury-signal-section--dark .section-eyebrow,
.luxury-signal-section--dark .luxury-signal-card__label {
  color: rgba(244, 230, 211, 0.72);
}

.luxury-signal-section--dark h2,
.luxury-signal-section--dark .luxury-signal-card h3 {
  color: #fff7ef;
}

.luxury-signal-section--dark .luxury-signal-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.1);
}

.luxury-signal-intro {
  max-width: 46rem;
  margin-bottom: 1.75rem;
}

.luxury-signal-intro h2 {
  margin-bottom: 0.85rem;
}

.luxury-signal-intro p:last-child {
  margin-bottom: 0;
}

.luxury-signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.luxury-signal-card {
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(42, 42, 42, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 237, 231, 0.78));
  box-shadow: 0 20px 42px rgba(68, 49, 31, 0.05);
}

.luxury-signal-card::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-bottom: 1rem;
  background: rgba(167, 130, 80, 0.7);
}

.luxury-signal-card__label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.luxury-signal-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--color-strong);
  line-height: 1.08;
}

.luxury-signal-card p:last-child {
  margin-bottom: 0;
}

.page-signal-section {
  background: linear-gradient(180deg, rgba(245, 237, 231, 0.28), rgba(255, 255, 255, 0));
}

.shop-signal-section {
  padding-top: 0;
}

.signature-path-card,
.shop-category-card,
.brand-card,
.susie-highlight-card,
.shop-overview-card,
.shop-pathway-card,
.category-summary-card,
.starter-shelf-card,
.luxury-signal-card,
.entry-content .box-slot-card,
.entry-content .box-timeline-card,
.entry-content .offer-card,
.entry-content .signature-card,
.entry-content .policy-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.signature-path-card:hover,
.shop-category-card:hover,
.brand-card:hover,
.susie-highlight-card:hover,
.shop-overview-card:hover,
.shop-pathway-card:hover,
.category-summary-card:hover,
.starter-shelf-card:hover,
.luxury-signal-card:hover,
.entry-content .box-slot-card:hover,
.entry-content .box-timeline-card:hover,
.entry-content .offer-card:hover,
.entry-content .signature-card:hover,
.entry-content .policy-card:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 92, 57, 0.22);
  box-shadow: 0 24px 44px rgba(68, 49, 31, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .signature-path-card,
  .shop-category-card,
  .brand-card,
  .susie-highlight-card,
  .shop-overview-card,
  .shop-pathway-card,
  .category-summary-card,
  .starter-shelf-card,
  .luxury-signal-card,
  .entry-content .box-slot-card,
  .entry-content .box-timeline-card,
  .entry-content .offer-card,
  .entry-content .signature-card,
  .entry-content .policy-card {
    transition: none;
  }

  .signature-path-card:hover,
  .shop-category-card:hover,
  .brand-card:hover,
  .susie-highlight-card:hover,
  .shop-overview-card:hover,
  .shop-pathway-card:hover,
  .category-summary-card:hover,
  .starter-shelf-card:hover,
  .luxury-signal-card:hover,
  .entry-content .box-slot-card:hover,
  .entry-content .box-timeline-card:hover,
  .entry-content .offer-card:hover,
  .entry-content .signature-card:hover,
  .entry-content .policy-card:hover {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-navigation {
    position: fixed;
    inset: 5.75rem 0 auto 0;
    display: none;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
  }

  .site-navigation.is-open {
    display: block;
  }

  .menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 var(--page-x);
  }

  .menu-list li,
  .menu-list a {
    width: 100%;
  }

  .menu-list a {
    min-height: 3.5rem;
    border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  }

  .mobile-only {
    display: inline-flex;
    flex-direction: column;
  }

  .hero-slide__inner,
  .editorial-hero__inner,
  .susie-hero__inner,
  .susie-story__inner,
  .susie-gallery__inner,
  .woocommerce div.product,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-header__utility {
    display: none;
  }

  .trending-grid,
  .susie-highlight-grid,
  .signature-paths-grid,
  .box-concepts-grid,
  .journal-series-grid,
  .woocommerce ul.products,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .editorial-hero__content {
    padding: 0;
  }

  .editorial-hero__frame {
    aspect-ratio: 4 / 4.6;
    max-width: 34rem;
  }

  .lead-form__grid,
  .contact-grid,
  .story-split,
  .signature-path-card,
  .membership-section__inner,
  .peptide-section__inner,
  .shop-overview-grid,
  .starter-shelf-grid,
  .category-summary-grid,
  .shop-pathways-grid,
  .category-pathways-layout,
  .entry-content .box-slot-grid,
  .entry-content .box-timeline-grid,
  .entry-content .signature-grid,
  .entry-content .policy-grid,
  .entry-content .offer-grid {
    grid-template-columns: 1fr;
  }

  .susie-gallery__panel--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .site-header__main {
    min-height: 4.75rem;
    gap: 0.75rem;
  }

  .site-brand img {
    max-height: 2rem;
  }

  .announcement-bar__inner {
    min-height: 3rem;
    text-align: center;
  }

  .hero-slide__content {
    padding-top: 2rem;
    padding-bottom: 1.25rem;
    text-align: center;
    margin: 0 auto;
  }

  .editorial-hero__content {
    text-align: center;
  }

  .editorial-hero__copy {
    margin-left: auto;
    margin-right: auto;
  }

  .susie-hero__content {
    text-align: center;
  }

  .susie-hero__copy {
    margin-left: auto;
    margin-right: auto;
  }

  .susie-hero__actions,
  .editorial-hero__meta,
  .susie-story__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .susie-hero__notes,
  .susie-highlight-grid,
  .signature-paths-grid,
  .signature-path-card,
  .box-concepts-grid,
  .journal-series-grid,
  .susie-gallery__mosaic,
  .susie-story__media {
    grid-template-columns: 1fr;
  }

  .signature-path-card:first-child,
  .box-concept-card:first-child,
  .journal-series-card:first-child {
    grid-column: auto;
  }

  .susie-hero__badge {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .susie-gallery__panel--large img {
    min-height: 22rem;
  }

  .hero-slide__copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slide__media,
  .hero-slide__placeholder {
    min-height: 22rem;
  }

  .brand-grid,
  .trending-grid,
  .featured-grid,
  .woocommerce ul.products,
  .archive-grid,
  .shop-category-grid,
  .starter-shelf-grid,
  .site-footer__menus {
    grid-template-columns: 1fr;
  }

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

  .starter-shelf-card {
    grid-template-columns: 1fr;
  }

  .search-form,
  .product-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-actions,
  .story-quote__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .added_to_cart {
    width: 100%;
  }

  .outbound-link {
    width: 100%;
  }
}
