:root {
  --hh-ink: #1d2728;
  --hh-ink-soft: #556060;
  --hh-paper: #f8f4ee;
  --hh-paper-deep: #eee7dd;
  --hh-white: #fffdf9;
  --hh-coral: #c96f5b;
  --hh-coral-dark: #9d4f41;
  --hh-sage: #aebbad;
  --hh-sage-pale: #dfe6dc;
  --hh-plum: #6a5869;
  --hh-line: rgba(29, 39, 40, 0.16);
  --hh-shadow: 0 22px 70px rgba(47, 39, 35, 0.12);
  --hh-radius-sm: 10px;
  --hh-radius-md: 20px;
  --hh-radius-lg: 34px;
  --hh-container: min(1400px, calc(100vw - 64px));
  --hh-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --hh-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--hh-paper);
  color: var(--hh-ink);
  font-family: var(--hh-sans);
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
select {
  cursor: pointer;
}

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

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

:focus-visible {
  outline: 2px solid var(--hh-coral-dark);
  outline-offset: 4px;
}

.hh-container {
  margin-inline: auto;
  width: var(--hh-container);
}

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

.hh-visually-hidden,
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.hh-skip-link {
  background: var(--hh-ink);
  color: white;
  left: 12px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 10000;
}

.hh-skip-link:focus {
  top: 12px;
}

.hh-kicker {
  color: var(--hh-coral-dark);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hh-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 720;
  justify-content: center;
  letter-spacing: 0.035em;
  min-height: 50px;
  padding: 12px 25px;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hh-button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.hh-button--dark {
  background: var(--hh-ink);
  color: white;
}

.hh-button--dark:hover:not(:disabled) {
  background: var(--hh-coral-dark);
}

.hh-button--outline {
  background: transparent;
  border-color: var(--hh-line);
}

.hh-button--full {
  width: 100%;
}

.hh-button--muted {
  background: var(--hh-paper-deep);
  color: var(--hh-ink-soft);
  cursor: not-allowed;
}

.hh-button:disabled {
  cursor: not-allowed;
  opacity: 0.92;
}

.hh-text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 680;
  padding-bottom: 3px;
}

.hh-announcement {
  background: var(--hh-ink);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.67rem;
  font-weight: 680;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.hh-announcement__inner {
  align-items: center;
  display: flex;
  gap: 15px;
  justify-content: center;
  min-height: 34px;
}

.hh-announcement__inner span[aria-hidden] {
  color: var(--hh-coral);
}

.hh-header {
  background: rgba(248, 244, 238, 0.93);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, backdrop-filter 160ms ease;
  z-index: 100;
}

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

.hh-header.is-scrolled {
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hh-line);
  box-shadow: 0 8px 30px rgba(44, 38, 34, 0.04);
}

.hh-header__inner {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
}

.hh-brand {
  align-items: baseline;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 820;
  gap: 6px;
  letter-spacing: 0.105em;
  line-height: 1;
  position: relative;
  white-space: nowrap;
}

.hh-brand__after {
  color: var(--hh-coral);
  font-family: var(--hh-serif);
  font-size: 1.18em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hh-nav {
  justify-self: center;
}

.hh-nav__list {
  align-items: center;
  display: flex;
  gap: clamp(22px, 2.4vw, 42px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-nav__list a {
  font-size: 0.77rem;
  font-weight: 640;
  position: relative;
}

.hh-nav__list a::after {
  background: var(--hh-coral);
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.hh-nav__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hh-header__actions {
  align-items: center;
  display: flex;
  gap: 15px;
}

.hh-icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
}

.hh-icon-button svg {
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.7;
  width: 21px;
}

.hh-header__utility {
  align-items: center;
  display: flex;
  font-size: 0.77rem;
  font-weight: 680;
  gap: 6px;
}

.hh-header__utility svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  width: 20px;
}

.hh-header__utility sup {
  align-items: center;
  background: var(--hh-coral);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 0.62rem;
  height: 19px;
  justify-content: center;
  line-height: 1;
  width: 19px;
}

.hh-mobile-menu-button {
  display: none;
}

.hh-search-panel {
  background: var(--hh-white);
  border-top: 1px solid var(--hh-line);
  box-shadow: var(--hh-shadow);
  left: 0;
  padding: 27px 0 31px;
  position: absolute;
  top: 100%;
  width: 100%;
}

.hh-search-form label {
  display: block;
  font-family: var(--hh-serif);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.hh-search-form__row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
}

.hh-search-form input[type="search"] {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hh-ink);
  border-radius: 0;
  font-size: 1rem;
  padding: 13px 2px;
  width: 100%;
}

.hh-hero {
  background: var(--hh-paper-deep);
  min-height: min(780px, calc(100vh - 112px));
  overflow: hidden;
  padding: clamp(60px, 8vw, 108px) 0;
}

.hh-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(45px, 6vw, 110px);
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
}

.hh-hero__copy h1 {
  font-family: var(--hh-serif);
  font-size: clamp(4.1rem, 7.4vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.78;
  margin: 0 0 38px;
}

.hh-hero__copy h1::first-line {
  font-style: italic;
}

.hh-hero__lede {
  color: var(--hh-ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  max-width: 570px;
}

.hh-hero__actions {
  align-items: center;
  display: flex;
  gap: 25px;
  margin-top: 34px;
}

.hh-hero__proof {
  border-top: 1px solid var(--hh-line);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  max-width: 580px;
  padding-top: 23px;
}

.hh-hero__proof strong,
.hh-hero__proof span {
  display: block;
}

.hh-hero__proof strong {
  font-family: var(--hh-serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.hh-hero__proof span {
  color: var(--hh-ink-soft);
  font-size: 0.72rem;
}

.hh-hero__visual {
  aspect-ratio: 0.9;
  position: relative;
}

.hh-hero__shape {
  background: #cfb8aa;
  border-radius: 48% 48% 9% 9%;
  inset: 2% 8% 0 10%;
  position: absolute;
}

.hh-hero__shape::after {
  border: 1px solid rgba(29, 39, 40, 0.18);
  border-radius: inherit;
  content: "";
  inset: 24px -24px -24px 24px;
  position: absolute;
}

.hh-hero-product {
  background: var(--hh-white);
  box-shadow: 0 28px 60px rgba(54, 42, 38, 0.16);
  overflow: hidden;
  position: absolute;
}

.hh-hero-product img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hh-hero-product--primary {
  border-radius: 38% 38% 8px 8px;
  height: 78%;
  left: 19%;
  padding: 12% 10% 13%;
  top: 7%;
  width: 61%;
}

.hh-hero-product--primary span {
  bottom: 18px;
  display: flex;
  font-size: 0.7rem;
  font-weight: 720;
  justify-content: space-between;
  left: 20px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
}

.hh-hero-product--secondary {
  border: 9px solid var(--hh-paper-deep);
  border-radius: 50%;
  bottom: 1%;
  height: 29%;
  padding: 6%;
  right: 0;
  transform: rotate(6deg);
  width: 29%;
}

.hh-marquee {
  background: var(--hh-coral);
  color: white;
  overflow: hidden;
  padding: 14px 0 13px;
}

.hh-marquee > div {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: center;
  min-width: max-content;
}

.hh-marquee span {
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.hh-marquee i {
  font-style: normal;
  opacity: 0.7;
}

.hh-section {
  padding: clamp(82px, 10vw, 150px) 0;
}

.hh-section-heading {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr minmax(280px, 0.45fr);
  margin-bottom: clamp(38px, 5vw, 70px);
}

.hh-section-heading h2,
.hh-standards h2,
.hh-product-story h2,
.hh-related-products h2 {
  font-family: var(--hh-serif);
  font-size: clamp(2.7rem, 5vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 0;
}

.hh-section-heading > p {
  color: var(--hh-ink-soft);
  margin-bottom: 5px;
}

.hh-section-heading--inline {
  align-items: end;
  display: flex;
  justify-content: space-between;
}

.hh-rituals {
  background: var(--hh-white);
}

.hh-ritual-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.hh-ritual-card {
  background: var(--card-tone);
  border-radius: var(--hh-radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hh-ritual-card::before {
  border: 1px solid rgba(29, 39, 40, 0.21);
  border-radius: 50%;
  content: "";
  height: 220px;
  position: absolute;
  right: -95px;
  top: -65px;
  width: 220px;
}

.hh-ritual-card:hover {
  box-shadow: 0 20px 55px rgba(46, 37, 35, 0.13);
  transform: translateY(-7px);
}

.hh-ritual-card__number {
  font-family: var(--hh-serif);
  font-size: 0.9rem;
  font-style: italic;
}

.hh-ritual-card h3 {
  font-family: var(--hh-serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.hh-ritual-card p {
  font-size: 0.84rem;
  margin-bottom: 0;
}

.hh-ritual-card__arrow {
  align-self: flex-end;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  height: 42px;
  margin-top: 30px;
  place-items: center;
  width: 42px;
}

.hh-featured-products {
  background: var(--hh-paper);
}

.hh-product-grid {
  display: grid;
  gap: clamp(26px, 3vw, 45px) clamp(16px, 2vw, 28px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hh-product-card {
  min-width: 0;
}

.hh-product-card__media {
  aspect-ratio: 0.88;
  background: var(--hh-white);
  border-radius: var(--hh-radius-md);
  overflow: hidden;
  position: relative;
}

.hh-product-card__media > a {
  display: block;
  height: 100%;
  position: relative;
}

.hh-product-card__image {
  height: 100%;
  inset: 0;
  object-fit: contain;
  padding: 11%;
  position: absolute;
  transition: opacity 280ms ease, transform 380ms ease;
  width: 100%;
}

.hh-product-card__image--secondary {
  opacity: 0;
}

.hh-product-card__media.has-secondary-image:hover .hh-product-card__image--primary {
  opacity: 0;
  transform: scale(1.025);
}

.hh-product-card__media.has-secondary-image:hover .hh-product-card__image--secondary {
  opacity: 1;
  transform: scale(1.025);
}

.hh-product-card__badges {
  display: flex;
  gap: 6px;
  left: 14px;
  position: absolute;
  top: 14px;
}

.hh-product-card__badges span {
  background: var(--hh-coral);
  border-radius: 999px;
  color: white;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.hh-save-button {
  align-items: center;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(29, 39, 40, 0.11);
  border-radius: 50%;
  display: inline-flex;
  height: 41px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 14px;
  top: 14px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 41px;
}

.hh-save-button svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.6;
  width: 18px;
}

.hh-save-button:hover,
.hh-save-button.is-saved {
  background: var(--hh-coral);
  color: white;
  transform: scale(1.05);
}

.hh-save-button.is-saved svg {
  fill: currentColor;
}

.hh-save-button.is-loading {
  cursor: wait;
  opacity: 0.62;
}

.hh-product-card__content {
  padding: 17px 5px 0;
}

.hh-product-card__meta {
  color: var(--hh-ink-soft);
  display: flex;
  font-size: 0.64rem;
  font-weight: 690;
  gap: 8px;
  letter-spacing: 0.055em;
  margin-bottom: 9px;
  min-width: 0;
  text-transform: uppercase;
}

.hh-product-card__meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hh-product-card__meta span + span::before {
  content: "•";
  margin-right: 8px;
}

.hh-product-card h2 {
  display: -webkit-box;
  font-family: var(--hh-serif);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 400;
  -webkit-line-clamp: 2;
  line-height: 1.18;
  margin: 0;
  min-height: 2.36em;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.hh-product-card__bottom {
  align-items: center;
  border-top: 1px solid var(--hh-line);
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
}

.hh-product-card__actions {
  align-items: center;
  display: flex;
  gap: 7px;
}

.hh-card-cart {
  border: 1px solid var(--hh-line);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 730;
  letter-spacing: 0.035em;
  padding: 5px 11px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hh-card-cart:hover {
  background: var(--hh-ink);
  border-color: var(--hh-ink);
  color: white;
}

.hh-price {
  font-size: 0.9rem;
  font-weight: 720;
}

.hh-price del,
.hh-product-summary__price del {
  color: var(--hh-ink-soft);
  font-weight: 450;
  margin-right: 5px;
  opacity: 0.72;
}

.hh-price ins,
.hh-product-summary__price ins {
  color: var(--hh-coral-dark);
  text-decoration: none;
}

.hh-arrow-link {
  align-items: center;
  border: 1px solid var(--hh-line);
  border-radius: 50%;
  display: inline-flex;
  height: 29px;
  justify-content: center;
  transition: background-color 160ms ease, color 160ms ease;
  width: 29px;
}

.hh-arrow-link:hover {
  background: var(--hh-ink);
  color: white;
}

.hh-standards {
  background: var(--hh-ink);
  color: white;
}

.hh-standards__grid,
.hh-product-story__grid {
  display: grid;
  gap: clamp(70px, 10vw, 170px);
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
}

.hh-standards .hh-kicker {
  color: #e39a87;
}

.hh-standards h2 {
  font-style: italic;
}

.hh-standards__intro {
  color: rgba(255, 255, 255, 0.68);
  max-width: 470px;
}

.hh-text-link--light {
  color: white;
  margin-top: 18px;
}

.hh-standards__list article {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 24px;
  grid-template-columns: 40px 1fr;
  padding: 29px 0;
}

.hh-standards__list article > span {
  color: #e39a87;
  font-family: var(--hh-serif);
  font-style: italic;
}

.hh-standards__list h3 {
  font-family: var(--hh-serif);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.hh-standards__list p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

.hh-footer {
  background: #141b1c;
  color: rgba(255, 255, 255, 0.78);
  padding: 82px 0 25px;
}

.hh-footer__grid {
  display: grid;
  gap: 52px;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
}

.hh-brand--footer {
  color: white;
  margin-bottom: 25px;
}

.hh-footer__brand p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 330px;
}

.hh-footer h2 {
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin-bottom: 23px;
  text-transform: uppercase;
}

.hh-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-footer li {
  margin-bottom: 11px;
}

.hh-footer a:not(.hh-brand):hover {
  color: white;
}

.hh-footer__note p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
}

.hh-disabled-signup {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.78rem;
  padding: 10px 0;
}

.hh-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  font-size: 0.66rem;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 24px;
}

.hh-footer__bottom p {
  margin: 0;
}

/* Catalog */
.hh-shop-hero {
  background: var(--hh-paper-deep);
  border-bottom: 1px solid var(--hh-line);
  padding: 75px 0 0;
}

.hh-shop-hero__grid {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.1fr 0.55fr;
  padding-bottom: 65px;
}

.hh-shop-hero h1 {
  font-family: var(--hh-serif);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
  margin-bottom: 0;
}

.hh-shop-hero__grid > p {
  color: var(--hh-ink-soft);
  margin-bottom: 0;
}

.hh-category-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 17px;
  scrollbar-width: none;
}

.hh-category-rail::-webkit-scrollbar {
  display: none;
}

.hh-category-rail a {
  align-items: center;
  border: 1px solid var(--hh-line);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 670;
  gap: 9px;
  padding: 9px 13px;
}

.hh-category-rail a span {
  color: var(--hh-ink-soft);
  font-size: 0.62rem;
}

.hh-category-rail a:hover,
.hh-category-rail a.is-active {
  background: var(--hh-ink);
  border-color: var(--hh-ink);
  color: white;
}

.hh-category-rail a.is-active span,
.hh-category-rail a:hover span {
  color: rgba(255, 255, 255, 0.65);
}

.hh-catalog-shell {
  display: grid;
  gap: 54px;
  grid-template-columns: 220px minmax(0, 1fr);
  padding-bottom: 130px;
  padding-top: 55px;
}

.hh-catalog-shell--saved {
  display: block;
}

.hh-filters {
  align-self: start;
  position: sticky;
  top: 105px;
}

.hh-filters fieldset {
  border: 0;
  border-top: 1px solid var(--hh-line);
  margin: 0;
  padding: 25px 0;
}

.hh-filters legend {
  font-size: 0.75rem;
  font-weight: 730;
  letter-spacing: 0.05em;
  padding: 0;
  text-transform: uppercase;
}

.hh-select-wrap select,
.hh-ordering select,
.hh-price-fields input {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: 8px;
  min-height: 42px;
  padding: 8px 11px;
  width: 100%;
}

.hh-price-fields {
  align-items: end;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto 1fr;
}

.hh-price-fields label span {
  color: var(--hh-ink-soft);
  display: block;
  font-size: 0.63rem;
  margin-bottom: 5px;
}

.hh-filter-reset {
  display: block;
  font-size: 0.72rem;
  margin-top: 14px;
  text-align: center;
  text-decoration: underline;
}

.hh-filter-note {
  align-items: start;
  background: var(--hh-sage-pale);
  border-radius: 10px;
  display: grid;
  font-size: 0.69rem;
  gap: 9px;
  grid-template-columns: 18px 1fr;
  margin-top: 26px;
  padding: 13px;
}

.hh-filter-note span {
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  height: 17px;
  place-items: center;
}

.hh-filter-note p {
  margin: 0;
}

.hh-filter-trigger,
.hh-filters__mobile-head {
  display: none;
}

.hh-catalog-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--hh-line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 31px;
  padding-bottom: 16px;
}

.woocommerce-result-count {
  color: var(--hh-ink-soft);
  font-size: 0.73rem;
  margin: 0;
}

.hh-ordering {
  align-items: center;
  display: flex;
  gap: 9px;
}

.hh-ordering label {
  color: var(--hh-ink-soft);
  font-size: 0.69rem;
}

.hh-ordering select {
  background: transparent;
  border: 0;
  min-height: 32px;
  padding: 0 25px 0 0;
  width: auto;
}

.woocommerce-pagination {
  margin-top: 70px;
}

.woocommerce-pagination ul.page-numbers {
  align-items: center;
  border: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-pagination ul.page-numbers li {
  border: 0;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  border: 1px solid var(--hh-line);
  border-radius: 50%;
  display: grid;
  height: 42px;
  place-items: center;
  width: 42px;
}

.woocommerce-pagination .page-numbers .current,
.woocommerce-pagination .page-numbers a:hover {
  background: var(--hh-ink);
  color: white;
}

.hh-empty-state {
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  padding: 70px;
  text-align: center;
}

.hh-empty-state h2 {
  font-family: var(--hh-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--hh-sage-pale);
  border: 0;
  border-radius: 10px;
  list-style: none;
  margin: 0 0 25px;
  padding: 14px 18px;
}

/* Product detail */
.hh-breadcrumbs {
  align-items: center;
  color: var(--hh-ink-soft);
  display: flex;
  font-size: 0.68rem;
  gap: 8px;
  overflow: hidden;
  padding-bottom: 26px;
  padding-top: 28px;
  white-space: nowrap;
}

.hh-breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.hh-product-detail {
  display: grid;
  gap: clamp(45px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  padding-bottom: 110px;
}

.hh-product-gallery {
  min-width: 0;
}

.hh-product-gallery__stage {
  align-items: center;
  aspect-ratio: 1;
  background: var(--hh-white);
  border-radius: var(--hh-radius-lg);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: clamp(35px, 7vw, 95px);
  position: relative;
  touch-action: pan-y;
}

.hh-product-gallery__stage > img {
  height: 100%;
  object-fit: contain;
  transition: opacity 130ms ease;
  width: 100%;
}

.hh-product-gallery__stage.is-changing > img {
  opacity: 0.2;
}

.hh-product-gallery__badge {
  background: var(--hh-coral);
  border-radius: 999px;
  color: white;
  font-size: 0.66rem;
  font-weight: 730;
  left: 20px;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  position: absolute;
  text-transform: uppercase;
  top: 20px;
  z-index: 2;
}

.hh-product-gallery__controls {
  align-items: center;
  display: flex;
  inset: 0 18px;
  justify-content: space-between;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.hh-product-gallery__controls button {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.88);
  background: color-mix(in srgb, var(--hh-white) 86%, transparent);
  border: 1px solid var(--hh-line);
  border-radius: 50%;
  display: flex;
  font-size: 1.15rem;
  height: 48px;
  justify-content: center;
  padding: 0;
  pointer-events: auto;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
  width: 48px;
}

.hh-product-gallery__controls button:hover {
  background: var(--hh-ink);
  color: white;
  transform: scale(1.04);
}

.hh-product-gallery__counter {
  background: rgba(29, 39, 40, 0.88);
  background: color-mix(in srgb, var(--hh-ink) 88%, transparent);
  border-radius: 999px;
  bottom: 18px;
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  margin: 0;
  padding: 6px 10px;
  position: absolute;
  right: 18px;
  z-index: 3;
}

.hh-product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 13px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 1px 1px 8px;
  scrollbar-color: var(--hh-line) transparent;
  scrollbar-width: thin;
}

.hh-product-gallery__thumbs button {
  aspect-ratio: 1;
  background: var(--hh-white);
  border: 1px solid transparent;
  border-radius: 10px;
  flex: 0 0 clamp(72px, 14%, 98px);
  overflow: hidden;
  padding: 8px;
}

.hh-product-gallery__thumbs button.is-active {
  border-color: var(--hh-ink);
}

.hh-product-gallery__thumbs img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hh-product-summary {
  align-self: start;
  padding-top: 24px;
}

.hh-product-summary__category {
  display: inline-block;
}

.hh-product-summary h1 {
  font-family: var(--hh-serif);
  font-size: clamp(2.55rem, 4vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.98;
  margin-bottom: 23px;
}

.hh-product-summary__price {
  font-size: 1.08rem;
  font-weight: 730;
  margin-bottom: 24px;
}

.hh-product-summary__intro {
  color: var(--hh-ink-soft);
  font-size: 0.92rem;
  line-height: 1.68;
}

.hh-product-option {
  border-bottom: 1px solid var(--hh-line);
  border-top: 1px solid var(--hh-line);
  display: flex;
  font-size: 0.76rem;
  justify-content: space-between;
  margin: 28px 0;
  padding: 16px 0;
}

.hh-product-options {
  border-bottom: 1px solid var(--hh-line);
  border-top: 1px solid var(--hh-line);
  margin: 28px 0;
}

.hh-product-options .hh-product-option {
  border-bottom: 1px solid var(--hh-line);
  border-top: 0;
  margin: 0;
}

.hh-product-options .hh-product-option:last-child {
  border-bottom: 0;
}

.hh-product-option span {
  color: var(--hh-ink-soft);
}

.hh-product-highlights {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}

.hh-product-highlights li {
  display: grid;
  font-size: 0.82rem;
  gap: 10px;
  grid-template-columns: 17px 1fr;
  margin-bottom: 11px;
}

.hh-product-highlights li::before {
  color: var(--hh-coral-dark);
  content: "✦";
  font-size: 0.72rem;
}

.hh-product-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 54px;
  margin-top: 30px;
}

.hh-save-button--large {
  background: transparent;
  border: 1px solid var(--hh-line);
  height: 54px;
  position: static;
  width: 54px;
}

.hh-save-button--large span {
  display: none;
}

.hh-product-actions__note {
  color: var(--hh-ink-soft);
  font-size: 0.67rem;
  margin: 9px 0 28px;
  text-align: center;
}

.hh-assurance-row {
  border-bottom: 1px solid var(--hh-line);
  border-top: 1px solid var(--hh-line);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 12px;
  padding: 20px 0;
}

.hh-assurance-row > div {
  align-items: center;
  display: flex;
  gap: 10px;
}

.hh-assurance-row > div > span {
  color: var(--hh-coral-dark);
  font-size: 1.2rem;
}

.hh-assurance-row p,
.hh-assurance-row strong,
.hh-assurance-row small {
  display: block;
  margin: 0;
}

.hh-assurance-row strong {
  font-size: 0.72rem;
}

.hh-assurance-row small {
  color: var(--hh-ink-soft);
  font-size: 0.61rem;
}

.hh-accordion details {
  border-bottom: 1px solid var(--hh-line);
}

.hh-accordion summary {
  display: flex;
  font-size: 0.76rem;
  font-weight: 720;
  justify-content: space-between;
  list-style: none;
  padding: 18px 0;
}

.hh-accordion summary::-webkit-details-marker {
  display: none;
}

.hh-accordion summary span {
  font-size: 1.15rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.hh-accordion details[open] summary span {
  transform: rotate(45deg);
}

.hh-prose {
  color: var(--hh-ink-soft);
  font-size: 0.82rem;
  line-height: 1.72;
  padding-bottom: 18px;
}

.hh-prose ul {
  padding-left: 20px;
}

.hh-prose li {
  margin-bottom: 9px;
}

.hh-product-story {
  background: var(--hh-sage-pale);
  padding: 100px 0;
}

.hh-product-story__grid {
  align-items: end;
}

.hh-product-story__grid > div:last-child {
  max-width: 560px;
}

.hh-product-story__grid > div:last-child p {
  color: var(--hh-ink-soft);
}

.hh-related-products {
  background: var(--hh-paper);
}

.hh-prose-page {
  padding-bottom: 120px;
  padding-top: 90px;
}

.hh-prose-page h1 {
  font-family: var(--hh-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

/* Customer account and native WooCommerce cart */
.hh-prose-page .woocommerce {
  margin-top: 45px;
}

.woocommerce-account .hh-prose-page,
.woocommerce-cart .hh-prose-page {
  max-width: 1180px;
}

.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.woocommerce-EditAccountForm,
.woocommerce form.woocommerce-address-fields {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  padding: clamp(25px, 4vw, 48px);
}

.woocommerce .u-columns {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.woocommerce .u-column1,
.woocommerce .u-column2 {
  float: none;
  width: auto;
}

.hh-auth-shell {
  margin: 0 auto;
  max-width: 640px;
}

.hh-auth-intro {
  margin-bottom: 24px;
  max-width: 580px;
}

.hh-auth-intro h2 {
  font-family: var(--hh-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 17px;
}

.hh-auth-intro > p:last-child {
  color: var(--hh-ink-soft);
  margin-bottom: 0;
  max-width: 540px;
}

.woocommerce .hh-auth-shell form.login,
.woocommerce .hh-auth-shell form.register {
  border-radius: var(--hh-radius-lg);
  box-shadow: 0 22px 70px rgba(38, 30, 27, 0.055);
  margin: 0;
}

.hh-field-note {
  color: var(--hh-ink-soft);
  display: block;
  font-size: 0.72rem;
  line-height: 1.45;
  margin-top: 7px;
}

.woocommerce .password-input {
  display: block;
  position: relative;
}

.woocommerce .show-password-input {
  display: none !important;
}

.woocommerce form input[type="password"] {
  padding-right: 13px;
}

.hh-auth-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: space-between;
  margin: 2px 0 24px;
}

.woocommerce form .woocommerce-form-login__rememberme {
  align-items: center;
  display: inline-flex;
  font-size: 0.73rem;
  gap: 8px;
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}

.woocommerce form .woocommerce-form-login__rememberme input {
  height: 15px;
  margin: 0;
  width: 15px;
}

.hh-auth-actions .lost_password {
  color: var(--hh-ink-soft);
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce form .hh-auth-submit {
  margin-bottom: 0;
}

.hh-auth-submit .button {
  min-width: 145px;
}

.hh-auth-switch {
  align-items: center;
  background: var(--hh-paper-deep);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 20px 22px;
}

.hh-auth-switch strong,
.hh-auth-switch span {
  display: block;
}

.hh-auth-switch strong {
  font-family: var(--hh-serif);
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.hh-auth-switch span {
  color: var(--hh-ink-soft);
  font-size: 0.73rem;
}

.hh-auth-switch .hh-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 19px;
}

.woocommerce form .form-row {
  margin: 0 0 18px;
}

.woocommerce form label {
  display: block;
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.woocommerce form input.input-text,
.woocommerce form textarea,
.woocommerce form select {
  background: var(--hh-paper);
  border: 1px solid var(--hh-line);
  border-radius: 9px;
  min-height: 48px;
  padding: 10px 13px;
  width: 100%;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  background: var(--hh-ink);
  border: 0;
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 720;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
  background: var(--hh-coral-dark);
  color: white;
  transform: translateY(-1px);
}

.woocommerce button.button:focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce input.button:focus-visible,
.woocommerce-MyAccount-navigation a:focus-visible,
.woocommerce-Address-title a.edit:focus-visible {
  outline: 2px solid var(--hh-coral);
  outline-offset: 3px;
}

.hh-account-bar {
  align-items: center;
  background: linear-gradient(120deg, var(--hh-paper-deep), var(--hh-sage-pale));
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 18px;
  overflow: hidden;
  padding: clamp(22px, 3.5vw, 34px);
  position: relative;
}

.hh-account-bar::after {
  border: 1px solid rgba(157, 79, 65, 0.2);
  border-radius: 50%;
  content: "";
  height: 120px;
  pointer-events: none;
  position: absolute;
  right: 145px;
  top: -70px;
  width: 120px;
}

.hh-account-bar .hh-kicker {
  margin-bottom: 5px;
}

.hh-account-bar__identity strong,
.hh-account-bar__identity span {
  display: block;
}

.hh-account-bar__identity strong {
  font-family: var(--hh-serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.hh-account-bar__identity span {
  color: var(--hh-ink-soft);
  font-size: 0.75rem;
  margin-top: 5px;
}

.hh-account-bar__signout {
  background: var(--hh-white);
  border-color: rgba(29, 39, 40, 0.28);
  min-height: 46px;
  padding: 10px 21px;
  position: relative;
  z-index: 1;
}

.hh-account-bar__signout:hover {
  background: var(--hh-ink);
  border-color: var(--hh-ink);
  color: white;
}

.woocommerce-MyAccount-navigation {
  margin-bottom: 20px;
}

.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation a {
  align-items: center;
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: 999px;
  color: var(--hh-ink-soft);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  min-height: 42px;
  padding: 9px 17px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
  background: var(--hh-ink);
  border-color: var(--hh-ink);
  color: white;
}

.woocommerce-MyAccount-content {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  float: none;
  min-height: 250px;
  padding: clamp(24px, 4vw, 42px);
  width: 100%;
}

.woocommerce-MyAccount-content > h2,
.woocommerce-MyAccount-content .woocommerce-Address-title h2 {
  font-family: var(--hh-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-message {
  background: var(--hh-sage-pale);
  border-radius: var(--hh-radius-sm);
  line-height: 46px;
  min-height: 74px;
  overflow: hidden;
  padding: 14px 18px;
}

.woocommerce-MyAccount-content .woocommerce-info .button,
.woocommerce-MyAccount-content .woocommerce-message .button {
  float: right;
  margin-left: 20px;
}

.woocommerce-MyAccount-content table {
  border-collapse: collapse;
  width: 100%;
}

.woocommerce-MyAccount-content table th,
.woocommerce-MyAccount-content table td {
  border-bottom: 1px solid var(--hh-line);
  padding: 16px 12px;
  text-align: left;
}

.woocommerce-MyAccount-content table th {
  color: var(--hh-ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce-MyAccount-content table td:first-child,
.woocommerce-MyAccount-content table th:first-child {
  padding-left: 0;
}

.woocommerce-MyAccount-content table td:last-child,
.woocommerce-MyAccount-content table th:last-child {
  padding-right: 0;
  text-align: right;
}

.woocommerce-MyAccount-content .woocommerce-orders-table .button {
  min-height: 38px;
  padding: 8px 16px;
}

.woocommerce-MyAccount-content .woocommerce-Addresses {
  gap: 18px;
  margin-top: 25px;
}

.woocommerce-MyAccount-content .woocommerce-Address {
  background: var(--hh-paper);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  padding: clamp(20px, 3vw, 30px);
}

.woocommerce-MyAccount-content .woocommerce-Address-title {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.woocommerce-MyAccount-content .woocommerce-Address-title h2 {
  margin-bottom: 0;
}

.woocommerce-MyAccount-content .woocommerce-Address-title a.edit {
  align-items: center;
  background: var(--hh-ink);
  border: 1px solid var(--hh-ink);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 720;
  justify-content: center;
  min-height: 42px;
  padding: 9px 17px;
}

.woocommerce-MyAccount-content .woocommerce-Address-title a.edit:hover {
  background: var(--hh-coral-dark);
  border-color: var(--hh-coral-dark);
}

.woocommerce-MyAccount-content .woocommerce-Address address {
  color: var(--hh-ink-soft);
  font-style: normal;
  margin-top: 24px;
}

.hh-account-saved > h2 {
  font-family: var(--hh-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
}

.hh-product-grid--account {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 35px;
}

.woocommerce-cart .hh-prose {
  color: var(--hh-ink);
  font-size: 0.92rem;
  padding-bottom: 0;
}

.woocommerce-cart .hh-prose-page h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  margin-bottom: 42px;
}

.woocommerce-cart .woocommerce:has(.woocommerce-cart-form) {
  align-items: start;
  display: grid;
  gap: clamp(26px, 4vw, 54px);
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.38fr);
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info {
  grid-column: 1 / -1;
}

.woocommerce-cart-form,
.cart_totals,
.wc-block-cart__main,
.wc-block-cart__sidebar {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  padding: clamp(18px, 3vw, 34px);
}

.woocommerce-cart-form table,
.cart_totals table {
  border-collapse: collapse;
  width: 100%;
}

.woocommerce-cart-form th,
.woocommerce-cart-form td,
.cart_totals th,
.cart_totals td {
  border-bottom: 1px solid var(--hh-line);
  padding: 14px 10px;
  text-align: left;
}

.woocommerce-cart-form thead th {
  color: var(--hh-ink-soft);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  padding-bottom: 17px;
  text-transform: uppercase;
}

.woocommerce-cart-form tr.cart_item td {
  padding-bottom: 24px;
  padding-top: 24px;
  vertical-align: middle;
}

.woocommerce-cart-form .product-remove {
  padding-left: 0;
  width: 24px;
}

.woocommerce-cart-form a.remove {
  align-items: center;
  border: 1px solid var(--hh-line);
  border-radius: 50%;
  color: var(--hh-ink-soft) !important;
  display: inline-flex;
  font-size: 1.1rem;
  height: 28px;
  justify-content: center;
  line-height: 1;
  width: 28px;
}

.woocommerce-cart-form a.remove:hover {
  background: var(--hh-coral);
  border-color: var(--hh-coral);
  color: white !important;
}

.woocommerce-cart-form .product-thumbnail {
  width: 132px;
}

.woocommerce-cart-form .product-thumbnail img {
  background: var(--hh-paper);
  border-radius: 14px;
  height: 112px;
  object-fit: contain;
  padding: 13px;
  width: 112px;
}

.woocommerce-cart-form .product-name a {
  display: inline-block;
  font-family: var(--hh-serif);
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: 6px;
  max-width: 380px;
}

.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal {
  font-size: 0.85rem;
  font-weight: 720;
  white-space: nowrap;
}

.woocommerce-cart-form .quantity .qty {
  background: var(--hh-paper);
  border: 1px solid var(--hh-line);
  border-radius: 999px;
  min-height: 42px;
  padding: 7px 10px;
  text-align: center;
  width: 68px;
}

.woocommerce-cart-form td.actions {
  border-bottom: 0;
  padding: 24px 0 0;
}

.woocommerce-cart-form td.actions .coupon {
  align-items: center;
  display: flex;
  float: left;
  gap: 8px;
}

.woocommerce-cart-form td.actions .coupon label {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}

.woocommerce-cart-form td.actions .input-text {
  background: var(--hh-paper);
  border: 1px solid var(--hh-line);
  border-radius: 999px;
  min-height: 46px;
  padding: 10px 16px;
}

.woocommerce-cart-form td.actions > .button {
  float: right;
}

.cart-collaterals {
  margin-top: 0;
  min-width: 0;
}

.cart_totals {
  margin-left: 0;
  max-width: none;
  position: sticky;
  top: 112px;
}

.cart_totals h2 {
  font-family: var(--hh-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.cart_totals th {
  color: var(--hh-ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart_totals td {
  font-weight: 720;
  text-align: right;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
  border-bottom: 0;
  color: var(--hh-ink);
  font-family: var(--hh-serif);
  font-size: 1.35rem;
  padding-top: 22px;
}

.cart_totals .wc-proceed-to-checkout {
  padding-bottom: 0;
}

.woocommerce-cart .return-to-shop {
  margin-top: 24px;
}

/* Classic checkout and hosted A-site payment */
.woocommerce-checkout .hh-prose {
  color: var(--hh-ink);
  font-size: 0.92rem;
  padding-bottom: 0;
}

.woocommerce-checkout .hh-prose-page {
  max-width: 1240px;
}

.woocommerce-checkout .hh-prose-page h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  margin-bottom: 42px;
}

.woocommerce-checkout form.checkout {
  align-items: start;
  display: grid;
  gap: 18px clamp(28px, 4.5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.7fr);
}

.woocommerce-checkout #customer_details {
  display: grid;
  gap: 22px;
  grid-column: 1;
  grid-row: 1 / span 2;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  padding: clamp(22px, 3.5vw, 36px);
}

.woocommerce-checkout .woocommerce-shipping-fields + .woocommerce-additional-fields {
  margin-top: 22px;
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-shipping-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3,
.woocommerce-checkout #order_review_heading {
  font-family: var(--hh-serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 25px;
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 5px 0 0;
}

.woocommerce-checkout #order_review {
  grid-column: 2;
  grid-row: 2;
  position: sticky;
  top: 112px;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: calc(50% - 7px);
}

.woocommerce-checkout .select2-container .select2-selection--single {
  align-items: center;
  background: var(--hh-paper);
  border: 1px solid var(--hh-line);
  border-radius: 9px;
  display: flex;
  min-height: 48px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--hh-ink);
  line-height: 1.35;
  padding-left: 13px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
  right: 7px;
}

.woocommerce-checkout textarea.input-text {
  min-height: 116px;
  resize: vertical;
}

.woocommerce-checkout-review-order-table {
  border-collapse: collapse;
  margin-bottom: 26px;
  width: 100%;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  border-bottom: 1px solid var(--hh-line);
  padding: 14px 8px;
  text-align: left;
  vertical-align: top;
}

.woocommerce-checkout-review-order-table th:last-child,
.woocommerce-checkout-review-order-table td:last-child {
  text-align: right;
}

.woocommerce-checkout-review-order-table thead th {
  color: var(--hh-ink-soft);
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.woocommerce-checkout-review-order-table .product-name {
  font-family: var(--hh-serif);
  font-size: 1rem;
  line-height: 1.3;
}

.woocommerce-checkout-review-order-table .product-quantity {
  color: var(--hh-ink-soft);
  font-family: var(--hh-sans);
  font-size: 0.72rem;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  border-bottom: 0;
  font-family: var(--hh-serif);
  font-size: 1.35rem;
  padding-top: 21px;
}

.woocommerce-checkout #payment {
  background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
  border: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-checkout #payment ul.payment_methods > li {
  background: var(--hh-paper);
  border: 1px solid var(--hh-line);
  border-radius: 13px;
  margin-bottom: 12px;
  padding: 17px;
}

.woocommerce-checkout #payment ul.payment_methods > li > input[type="radio"] {
  accent-color: var(--hh-coral-dark);
  height: 16px;
  margin: 2px 8px 0 0;
  width: 16px;
}

.woocommerce-checkout #payment ul.payment_methods > li > label {
  display: inline;
  font-size: 0.82rem;
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}

.woocommerce-checkout #payment div.payment_box {
  background: transparent;
  color: var(--hh-ink-soft);
  font-size: 0.76rem;
  margin: 10px 0 0;
  padding: 0 0 0 28px;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

.woocommerce-checkout #payment .place-order {
  margin: 18px 0 0;
  padding: 0;
}

.woocommerce-checkout #payment .woocommerce-privacy-policy-text {
  color: var(--hh-ink-soft);
  font-size: 0.7rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.woocommerce-checkout #payment .woocommerce-privacy-policy-text a,
.woocommerce-checkout #payment .woocommerce-terms-and-conditions-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-checkout #place_order {
  float: none;
  min-height: 54px;
  width: 100%;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-login-toggle,
.woocommerce-checkout form.checkout_coupon,
.woocommerce-checkout form.login {
  margin-bottom: 20px;
}

.woocommerce-checkout form.checkout_coupon {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  padding: 22px;
}

.woocommerce-order-received .woocommerce-order {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  padding: clamp(24px, 4vw, 42px);
}

.woocommerce-order-received .woocommerce-order-overview {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.woocommerce-order-received .woocommerce-order-overview li {
  background: var(--hh-paper);
  border-radius: var(--hh-radius-sm);
  color: var(--hh-ink-soft);
  font-size: 0.67rem;
  padding: 15px;
}

.woocommerce-order-received .woocommerce-order-overview strong {
  color: var(--hh-ink);
  display: block;
  font-size: 0.86rem;
  margin-top: 4px;
}

/* Remote-image and visual fallback for a Cart Block retained by an editor. */
.wc-block-cart {
  color: var(--hh-ink);
  gap: 32px;
}

.wc-block-cart-items__row {
  border-color: var(--hh-line) !important;
}

.wc-block-cart .wc-block-components-product-image {
  background: var(--hh-paper);
  border-radius: 14px;
  overflow: hidden;
  padding: 12px;
}

.wc-block-cart .wc-block-components-product-image img {
  aspect-ratio: 1;
  object-fit: contain;
}

.wc-block-cart .wc-block-components-product-name {
  font-family: var(--hh-serif);
  font-size: 1.15rem;
  line-height: 1.25;
}

.hh-action-status {
  background: var(--hh-ink);
  border-radius: 999px;
  bottom: 24px;
  color: white;
  font-size: 0.78rem;
  font-weight: 670;
  left: 50%;
  max-width: min(90vw, 520px);
  opacity: 0;
  padding: 12px 20px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 12000;
}

.hh-action-status.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hh-action-status.is-error {
  background: var(--hh-coral-dark);
}

/* Editorial guide pages */
.hh-guide-hero {
  background:
    radial-gradient(circle at 83% 22%, rgba(201, 111, 91, 0.14), transparent 24%),
    linear-gradient(145deg, var(--hh-paper), var(--hh-paper-deep));
  border-bottom: 1px solid var(--hh-line);
  padding: 34px 0 clamp(75px, 10vw, 145px);
}

.hh-guide-breadcrumbs {
  align-items: center;
  color: var(--hh-ink-soft);
  display: flex;
  font-size: 0.68rem;
  gap: 8px;
  margin-bottom: clamp(70px, 9vw, 130px);
}

.hh-guide-hero h1 {
  font-family: var(--hh-serif);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.84;
  margin: 0;
  max-width: 1050px;
}

.hh-guide-hero__lede {
  color: var(--hh-ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin: 42px 0 0 auto;
  max-width: 650px;
}

.hh-guide-layout {
  display: grid;
  gap: clamp(50px, 8vw, 125px);
  grid-template-columns: minmax(0, 1fr) 240px;
  padding-bottom: 130px;
  padding-top: clamp(70px, 9vw, 130px);
}

.hh-guide-content {
  min-width: 0;
}

.hh-guide-section {
  border-bottom: 1px solid var(--hh-line);
  padding: 0 0 clamp(70px, 9vw, 120px);
}

.hh-guide-section + .hh-guide-section,
.hh-guide-note + .hh-guide-section {
  padding-top: clamp(70px, 9vw, 120px);
}

.hh-guide-section--tint {
  background: var(--hh-sage-pale);
  border: 0;
  border-radius: var(--hh-radius-lg);
  margin: clamp(70px, 9vw, 120px) 0;
  padding: clamp(38px, 6vw, 72px);
}

.hh-guide-eyebrow {
  color: var(--hh-coral-dark);
  font-size: 0.68rem;
  font-weight: 770;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.hh-guide-section h2,
.hh-contact-section h2,
.hh-guide-cta h2 {
  font-family: var(--hh-serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-bottom: 28px;
}

.hh-guide-lead {
  color: var(--hh-ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  max-width: 780px;
}

.hh-guide-grid {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

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

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

.hh-guide-grid article,
.hh-material-grid article {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  padding: clamp(24px, 3vw, 38px);
}

.hh-guide-grid article > span {
  color: var(--hh-coral-dark);
  font-family: var(--hh-serif);
  font-style: italic;
}

.hh-guide-grid h3,
.hh-material-grid h3 {
  font-family: var(--hh-serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 34px 0 12px;
}

.hh-guide-grid p,
.hh-material-grid p,
.hh-guide-note p {
  color: var(--hh-ink-soft);
  font-size: 0.82rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.hh-guide-split {
  display: grid;
  gap: clamp(45px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
}

.hh-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-check-list li {
  border-top: 1px solid var(--hh-line);
  padding: 15px 0 15px 28px;
  position: relative;
}

.hh-check-list li::before {
  color: var(--hh-coral-dark);
  content: "◇";
  left: 0;
  position: absolute;
}

.hh-number-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-number-list li {
  border-top: 1px solid var(--hh-line);
  display: grid;
  gap: 8px;
  padding: 17px 0;
}

.hh-number-list span {
  color: var(--hh-ink-soft);
  font-size: 0.82rem;
}

.hh-guide-note {
  background: var(--hh-ink);
  border-radius: var(--hh-radius-md);
  color: white;
  margin: clamp(55px, 8vw, 95px) 0;
  padding: clamp(30px, 5vw, 55px);
}

.hh-guide-note strong {
  display: block;
  font-family: var(--hh-serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.hh-guide-note p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
}

.hh-guide-nav {
  align-self: start;
  position: sticky;
  top: 115px;
}

.hh-guide-nav > p {
  color: var(--hh-ink-soft);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hh-guide-nav a {
  align-items: center;
  border-top: 1px solid var(--hh-line);
  display: flex;
  font-size: 0.76rem;
  justify-content: space-between;
  padding: 14px 0;
}

.hh-guide-nav a.is-active {
  color: var(--hh-coral-dark);
  font-weight: 750;
}

.hh-material-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 48px;
}

.hh-material-grid h3 {
  margin-top: 0;
}

.hh-material-grid small {
  border-top: 1px solid var(--hh-line);
  color: var(--hh-coral-dark);
  display: block;
  font-size: 0.68rem;
  margin-top: 22px;
  padding-top: 15px;
}

.hh-guide-table {
  overflow-x: auto;
}

.hh-guide-table table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.hh-guide-table th,
.hh-guide-table td {
  border-bottom: 1px solid var(--hh-line);
  padding: 17px 14px;
  text-align: left;
  vertical-align: top;
}

.hh-guide-table th {
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hh-guide-table td {
  font-size: 0.8rem;
}

.hh-contact-section {
  background: var(--hh-sage-pale);
  padding: clamp(75px, 10vw, 135px) 0;
}

.hh-contact-grid {
  display: grid;
  gap: clamp(55px, 9vw, 130px);
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
}

.hh-contact-grid > div:first-child > p:last-child {
  color: var(--hh-ink-soft);
}

.hh-contact-form {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-lg);
  padding: clamp(26px, 5vw, 55px);
}

.hh-contact-form > label,
.hh-contact-form .hh-form-row label {
  display: block;
  font-size: 0.68rem;
  font-weight: 740;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hh-form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hh-contact-form input,
.hh-contact-form select,
.hh-contact-form textarea {
  background: var(--hh-paper);
  border: 1px solid var(--hh-line);
  border-radius: 10px;
  display: block;
  margin-top: 7px;
  min-height: 50px;
  padding: 12px 14px;
  resize: vertical;
  width: 100%;
}

.hh-contact-form .hh-consent {
  align-items: flex-start;
  display: flex;
  font-size: 0.7rem;
  font-weight: 500;
  gap: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.hh-contact-form .hh-consent input {
  flex: 0 0 auto;
  margin: 3px 0 0;
  min-height: 0;
  width: auto;
}

.hh-honeypot {
  left: -10000px;
  position: absolute;
}

.hh-contact-notice {
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 14px 18px;
}

.hh-contact-notice.is-success {
  background: #d9e8d7;
}

.hh-contact-notice.is-error {
  background: #f1d7d1;
}

.hh-guide-cta {
  padding: clamp(75px, 10vw, 130px) 0;
}

.hh-guide-cta > div {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.hh-guide-cta h2 {
  margin-bottom: 0;
  max-width: 760px;
}

@media (max-width: 1180px) {
  :root {
    --hh-container: min(100% - 44px, 1180px);
  }

  .hh-nav__list {
    gap: 20px;
  }

  .hh-hero__grid {
    gap: 50px;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  }

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

  .hh-ritual-card:last-child {
    grid-column: span 3;
    min-height: 260px;
  }

  .hh-footer__grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .hh-footer__note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --hh-container: min(100% - 36px, 860px);
  }

  .admin-bar .hh-header {
    top: 46px;
  }

  .hh-header__inner {
    grid-template-columns: 44px 1fr auto;
    min-height: 68px;
  }

  .hh-brand {
    justify-self: center;
  }

  .hh-mobile-menu-button {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .hh-mobile-menu-button span:not(.hh-visually-hidden) {
    background: currentColor;
    height: 1px;
    width: 21px;
  }

  .hh-nav {
    background: var(--hh-paper);
    border-bottom: 1px solid var(--hh-line);
    display: none;
    left: 0;
    padding: 25px 22px 35px;
    position: absolute;
    top: 100%;
    width: 100%;
  }

  .hh-nav.is-open {
    display: block;
  }

  .hh-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .hh-nav__list li {
    border-bottom: 1px solid var(--hh-line);
  }

  .hh-nav__list a {
    display: block;
    font-family: var(--hh-serif);
    font-size: 1.55rem;
    font-weight: 400;
    padding: 13px 2px;
  }

  .hh-header__utility span {
    display: none;
  }

  .woocommerce-cart .woocommerce:has(.woocommerce-cart-form) {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }

  .woocommerce-checkout #order_review_heading {
    margin-top: 20px;
  }

  .woocommerce-checkout #order_review {
    position: static;
  }

  .woocommerce-order-received .woocommerce-order-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart_totals {
    position: static;
  }

  .hh-guide-layout {
    grid-template-columns: 1fr;
  }

  .hh-guide-nav {
    border-bottom: 1px solid var(--hh-line);
    border-top: 1px solid var(--hh-line);
    order: -1;
    padding: 18px 0;
    position: static;
  }

  .hh-guide-nav > p {
    margin-bottom: 8px;
  }

  .hh-guide-nav nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .hh-guide-nav a {
    border: 0;
    gap: 8px;
    padding: 5px 0;
  }

  .hh-guide-grid--three {
    grid-template-columns: 1fr;
  }

  .hh-guide-split,
  .hh-contact-grid {
    grid-template-columns: 1fr;
  }

  .hh-hero {
    padding-top: 65px;
  }

  .hh-hero__grid {
    grid-template-columns: 1fr;
  }

  .hh-hero__copy h1 {
    font-size: clamp(4.1rem, 13vw, 7.1rem);
  }

  .hh-hero__visual {
    justify-self: center;
    max-width: 620px;
    width: 90%;
  }

  .hh-section-heading,
  .hh-standards__grid,
  .hh-product-story__grid {
    gap: 35px;
    grid-template-columns: 1fr;
  }

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

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

  .hh-ritual-card:last-child {
    grid-column: auto;
    min-height: 390px;
  }

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

  .hh-catalog-shell {
    display: block;
    padding-top: 30px;
  }

  .hh-filter-trigger {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 25px;
  }

  .hh-filter-trigger svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.5;
    width: 18px;
  }

  .hh-filters {
    background: var(--hh-paper);
    box-shadow: -20px 0 70px rgba(0, 0, 0, 0.16);
    height: 100vh;
    max-width: 390px;
    overflow-y: auto;
    padding: 25px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(110%);
    transition: transform 220ms ease;
    width: 90%;
    z-index: 500;
  }

  .hh-filters.is-open {
    transform: translateX(0);
  }

  .hh-filters__mobile-head {
    align-items: center;
    border-bottom: 1px solid var(--hh-line);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .hh-filters__mobile-head button {
    background: transparent;
    border: 0;
    font-size: 1.6rem;
  }

  .hh-product-detail {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .hh-product-gallery__stage {
    position: relative;
    top: auto;
  }

  .hh-product-summary {
    padding-top: 0;
  }

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

  .hh-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --hh-container: calc(100% - 28px);
    --hh-radius-md: 15px;
    --hh-radius-lg: 22px;
  }

  .hh-announcement__inner span:nth-of-type(n+3) {
    display: none;
  }

  .hh-announcement__inner span:nth-of-type(2) {
    display: none;
  }

  .hh-header__actions {
    gap: 0;
  }

  .hh-header__inner {
    grid-template-columns: 40px minmax(0, 1fr) auto;
  }

  .hh-brand {
    font-size: clamp(0.65rem, 3.1vw, 0.82rem);
    gap: 3px;
  }

  .hh-header__actions .hh-icon-button {
    width: 34px;
  }

  .hh-header__utility {
    min-height: 40px;
    min-width: 32px;
    justify-content: center;
  }

  .hh-header__utility sup {
    height: 16px;
    font-size: 0.52rem;
    margin-left: -5px;
    margin-top: -18px;
    width: 16px;
  }

  .woocommerce .u-columns {
    grid-template-columns: 1fr;
  }

  .hh-auth-intro h2 {
    font-size: 3rem;
  }

  .woocommerce .hh-auth-shell form.login,
  .woocommerce .hh-auth-shell form.register {
    padding: 25px 20px;
  }

  .hh-auth-switch {
    align-items: flex-start;
    flex-direction: column;
  }

  .hh-auth-switch .hh-button {
    width: 100%;
  }

  .hh-account-bar {
    align-items: stretch;
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .hh-account-bar::after {
    right: -25px;
  }

  .hh-account-bar__signout {
    width: 100%;
  }

  .woocommerce-MyAccount-navigation {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .woocommerce-MyAccount-navigation ul {
    flex-wrap: nowrap;
    width: max-content;
  }

  .woocommerce-MyAccount-content {
    min-height: 210px;
    padding: 24px 19px;
  }

  .woocommerce-MyAccount-content .woocommerce-info,
  .woocommerce-MyAccount-content .woocommerce-message {
    line-height: 1.55;
    padding: 17px;
  }

  .woocommerce-MyAccount-content .woocommerce-info .button,
  .woocommerce-MyAccount-content .woocommerce-message .button {
    float: none;
    margin: 0 0 14px;
    width: 100%;
  }

  .woocommerce-MyAccount-content .woocommerce-Address-title {
    align-items: stretch;
    flex-direction: column;
  }

  .woocommerce-MyAccount-content .woocommerce-Address-title a.edit {
    align-self: flex-start;
  }

  .woocommerce-cart .hh-prose-page {
    padding-top: 58px;
  }

  .woocommerce-checkout .hh-prose-page {
    padding-top: 58px;
  }

  .woocommerce-checkout .hh-prose-page h1 {
    font-size: 4.3rem;
    margin-bottom: 30px;
  }

  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-shipping-fields,
  .woocommerce-checkout .woocommerce-additional-fields,
  .woocommerce-checkout #order_review {
    padding: 22px 18px;
  }

  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    float: none;
    width: 100%;
  }

  .woocommerce-order-received .woocommerce-order-overview {
    grid-template-columns: 1fr;
  }

  .woocommerce-cart .hh-prose-page h1 {
    font-size: 4.3rem;
    margin-bottom: 30px;
  }

  .woocommerce-cart-form {
    overflow: visible;
    padding: 14px;
  }

  .woocommerce-cart-form table,
  .woocommerce-cart-form tbody {
    display: block;
  }

  .woocommerce-cart-form thead {
    display: none;
  }

  .woocommerce-cart-form tr.cart_item {
    display: grid;
    gap: 3px 16px;
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 18px 0;
    position: relative;
  }

  .woocommerce-cart-form tr.cart_item td {
    border: 0;
    display: block;
    padding: 0;
  }

  .woocommerce-cart-form tr.cart_item + tr.cart_item {
    border-top: 1px solid var(--hh-line);
  }

  .woocommerce-cart-form .product-remove {
    position: absolute;
    right: 0;
    top: 16px;
    width: auto;
    z-index: 2;
  }

  .woocommerce-cart-form .product-thumbnail {
    display: block;
    grid-column: 1;
    grid-row: 1 / span 5;
    width: 88px;
  }

  .woocommerce-cart-form .product-thumbnail img {
    height: 88px;
    padding: 9px;
    width: 88px;
  }

  .woocommerce-cart-form .product-name,
  .woocommerce-cart-form .product-price,
  .woocommerce-cart-form .product-quantity,
  .woocommerce-cart-form .product-subtotal {
    grid-column: 2;
    padding-right: 34px !important;
  }

  .woocommerce-cart-form .product-name a {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .woocommerce-cart-form .product-price,
  .woocommerce-cart-form .product-subtotal {
    color: var(--hh-ink-soft);
    font-size: 0.75rem;
  }

  .woocommerce-cart-form td.actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 17px;
  }

  .woocommerce-cart-form td.actions .coupon {
    display: grid;
    float: none;
    grid-template-columns: 1fr auto;
    width: 100%;
  }

  .woocommerce-cart-form td.actions > .button {
    float: none;
    width: 100%;
  }

  .cart_totals {
    padding: 24px;
  }

  .hh-guide-hero {
    padding-bottom: 75px;
  }

  .hh-guide-breadcrumbs {
    margin-bottom: 65px;
  }

  .hh-guide-hero h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .hh-guide-hero__lede {
    margin-top: 30px;
  }

  .hh-guide-layout {
    gap: 45px;
    padding-bottom: 85px;
    padding-top: 55px;
  }

  .hh-guide-grid--two,
  .hh-material-grid,
  .hh-form-row {
    grid-template-columns: 1fr;
  }

  .hh-guide-section--tint {
    margin-inline: -4px;
    padding: 28px 22px;
  }

  .hh-guide-section h2,
  .hh-contact-section h2,
  .hh-guide-cta h2 {
    font-size: 2.65rem;
  }

  .hh-contact-form {
    padding: 24px 18px;
  }

  .hh-guide-cta > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .hh-search-panel {
    padding-top: 20px;
  }

  .hh-search-form__row {
    grid-template-columns: 1fr;
  }

  .hh-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hh-hero {
    padding-bottom: 72px;
    padding-top: 50px;
  }

  .hh-hero__copy h1 {
    font-size: 4rem;
    line-height: 0.84;
  }

  .hh-hero__proof {
    gap: 12px;
    margin-top: 45px;
  }

  .hh-hero__proof span {
    font-size: 0.62rem;
  }

  .hh-hero__visual {
    width: 100%;
  }

  .hh-marquee > div {
    animation: hh-marquee 22s linear infinite;
    justify-content: flex-start;
  }

  @keyframes hh-marquee {
    to { transform: translateX(-45%); }
  }

  .hh-section {
    padding: 78px 0;
  }

  .hh-section-heading h2,
  .hh-standards h2,
  .hh-product-story h2,
  .hh-related-products h2 {
    font-size: 3rem;
  }

  .hh-ritual-grid {
    grid-template-columns: 1fr;
  }

  .hh-ritual-card,
  .hh-ritual-card:last-child {
    min-height: 300px;
  }

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

  .hh-product-card__image {
    padding: 7%;
  }

  .hh-product-card__content {
    padding-inline: 1px;
  }

  .hh-product-card__meta {
    font-size: 0.56rem;
  }

  .hh-product-card h2 {
    font-size: 1rem;
  }

  .hh-product-card__bottom {
    margin-top: 12px;
  }

  .hh-arrow-link {
    display: none;
  }

  .hh-save-button {
    height: 35px;
    right: 9px;
    top: 9px;
    width: 35px;
  }

  .hh-product-card__badges {
    left: 9px;
    top: 9px;
  }

  .hh-shop-hero {
    padding-top: 50px;
  }

  .hh-shop-hero__grid {
    gap: 25px;
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .hh-shop-hero h1 {
    font-size: 3.7rem;
  }

  .hh-catalog-toolbar {
    align-items: flex-start;
    gap: 12px;
  }

  .hh-ordering label {
    display: none;
  }

  .hh-ordering select {
    font-size: 0.72rem;
    max-width: 135px;
  }

  .woocommerce-pagination ul.page-numbers {
    flex-wrap: wrap;
    gap: 6px;
  }

  .woocommerce-pagination .page-numbers a,
  .woocommerce-pagination .page-numbers span {
    height: 36px;
    width: 36px;
  }

  .hh-product-gallery__thumbs {
    grid-template-columns: repeat(5, 1fr);
  }

  .hh-product-summary h1 {
    font-size: 2.65rem;
  }

  .hh-assurance-row {
    grid-template-columns: 1fr;
  }

  .hh-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hh-footer__note,
  .hh-footer__brand {
    grid-column: 1 / -1;
  }

  .hh-footer__bottom {
    display: block;
  }

  .hh-footer__bottom p + p {
    margin-top: 7px;
  }
}

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

/* Editorial stories ------------------------------------------------------ */
.hh-story-index-hero {
  background:
    radial-gradient(circle at 84% 22%, rgba(201, 111, 91, 0.13), transparent 24rem),
    linear-gradient(145deg, var(--hh-sage-pale), var(--hh-paper) 64%);
  border-bottom: 1px solid var(--hh-line);
  padding: 34px 0 58px;
}

.hh-story-index-hero .hh-breadcrumbs,
.hh-story-hero .hh-breadcrumbs {
  margin-bottom: 72px;
}

.hh-story-index-hero__copy {
  max-width: 900px;
}

.hh-story-index-hero__copy h1,
.hh-story-hero h1 {
  font-family: var(--hh-serif);
  font-size: clamp(4.5rem, 8vw, 8.7rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.84;
  margin: 16px 0 30px;
}

.hh-story-index-hero__copy > p:last-child {
  color: var(--hh-ink-soft);
  font-family: var(--hh-serif);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.45;
  max-width: 650px;
}

.hh-story-mood-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 47px;
}

.hh-story-mood-rail span {
  background: color-mix(in srgb, var(--hh-white) 72%, transparent);
  border: 1px solid var(--hh-line);
  border-radius: 99px;
  color: var(--hh-ink-soft);
  font-size: 0.69rem;
  letter-spacing: 0.09em;
  padding: 9px 14px;
  text-transform: uppercase;
}

.hh-story-index {
  padding-bottom: 120px;
  padding-top: 94px;
}

.hh-story-index__heading {
  align-items: end;
  display: grid;
  gap: 45px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 390px);
  margin-bottom: 45px;
}

.hh-story-index__heading h2,
.hh-story-more h2 {
  font-family: var(--hh-serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin: 12px 0 0;
}

.hh-story-index__heading > p {
  color: var(--hh-ink-soft);
  line-height: 1.65;
  margin: 0;
}

.hh-story-feed {
  column-count: 4;
  column-gap: 22px;
}

.hh-story-card {
  background: var(--hh-white);
  border: 1px solid rgba(29, 39, 40, 0.11);
  border-radius: 22px;
  break-inside: avoid;
  display: inline-block;
  margin: 0 0 22px;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  transition: box-shadow 220ms ease, transform 220ms ease;
  width: 100%;
}

.hh-story-card:hover {
  box-shadow: 0 18px 48px rgba(47, 39, 35, 0.12);
  transform: translateY(-4px);
}

.hh-story-card__media {
  align-items: center;
  aspect-ratio: var(--hh-story-ratio, 4 / 5);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.76), transparent 32%),
    var(--hh-paper-deep);
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hh-story-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.hh-story-card:hover .hh-story-card__media img {
  transform: scale(1.025);
}

.hh-story-card__read {
  backdrop-filter: blur(8px);
  background: rgba(29, 39, 40, 0.82);
  border-radius: 99px;
  bottom: 12px;
  color: var(--hh-white);
  font-size: 0.62rem;
  left: 12px;
  letter-spacing: 0.07em;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
}

.hh-story-card__body {
  padding: 20px 20px 18px;
}

.hh-story-card__mood {
  color: var(--hh-coral-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 9px;
  text-transform: uppercase;
}

.hh-story-card h2 {
  font-family: var(--hh-serif);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

.hh-story-card h2 a {
  color: inherit;
  text-decoration: none;
}

.hh-story-card__excerpt {
  color: var(--hh-ink-soft);
  display: -webkit-box;
  font-size: 0.84rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.55;
  margin: 13px 0 18px;
  overflow: hidden;
}

.hh-story-card__product {
  align-items: center;
  border-top: 1px solid var(--hh-line);
  display: flex;
  gap: 10px;
  padding-top: 14px;
}

.hh-story-card__product > span {
  background: var(--hh-coral);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

.hh-story-card__product p {
  font-size: 0.73rem;
  line-height: 1.3;
  margin: 0;
}

.hh-story-card__product small {
  color: var(--hh-ink-soft);
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.hh-story-index .navigation.pagination {
  margin-top: 55px;
}

.hh-story-index .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.hh-story-index .page-numbers {
  align-items: center;
  border: 1px solid var(--hh-line);
  border-radius: 99px;
  display: inline-flex;
  font-size: 0.72rem;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 0 13px;
  text-decoration: none;
}

.hh-story-index .page-numbers.current,
.hh-story-index a.page-numbers:hover {
  background: var(--hh-ink);
  border-color: var(--hh-ink);
  color: var(--hh-white);
}

.hh-story-index-note {
  background: var(--hh-ink);
  color: var(--hh-white);
  padding: 75px 0 82px;
}

.hh-story-index-note .hh-container {
  display: grid;
  gap: 55px;
  grid-template-columns: 180px minmax(0, 800px);
}

.hh-story-index-note .hh-kicker {
  color: var(--hh-coral);
}

.hh-story-index-note .hh-container > p:last-child {
  font-family: var(--hh-serif);
  font-size: clamp(1.7rem, 3.4vw, 3.3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}

/* Single story */
.hh-story-hero {
  padding: 34px 0 76px;
}

.hh-story-hero__copy {
  margin-inline: auto;
  max-width: 1060px;
  text-align: center;
}

.hh-story-hero__meta {
  align-items: center;
  color: var(--hh-coral-dark);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.66rem;
  gap: 9px;
  justify-content: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hh-story-hero h1 {
  font-size: clamp(4.3rem, 8.5vw, 9rem);
  margin-inline: auto;
  max-width: 1050px;
}

.hh-story-hero__copy > p {
  color: var(--hh-ink-soft);
  font-family: var(--hh-serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 710px;
}

.hh-story-cover {
  max-width: 1240px;
}

.hh-story-cover__image {
  align-items: center;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 72% 18%, rgba(201, 111, 91, 0.16), transparent 26rem),
    var(--hh-paper-deep);
  border-radius: var(--hh-radius-lg);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.hh-story-cover__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hh-story-cover > p {
  color: var(--hh-ink-soft);
  display: flex;
  font-size: 0.65rem;
  justify-content: space-between;
  letter-spacing: 0.09em;
  margin: 13px 3px 0;
  text-transform: uppercase;
}

.hh-story-layout {
  align-items: start;
  display: grid;
  gap: clamp(60px, 8vw, 125px);
  grid-template-columns: minmax(0, 720px) minmax(290px, 370px);
  justify-content: center;
  padding-bottom: 130px;
  padding-top: 92px;
}

.hh-story-prose {
  font-family: var(--hh-serif);
  font-size: clamp(1.16rem, 1.55vw, 1.36rem);
  line-height: 1.75;
}

.hh-story-prose > p:first-child::first-letter {
  color: var(--hh-coral-dark);
  float: left;
  font-size: 5.3rem;
  line-height: 0.72;
  padding: 13px 10px 0 0;
}

.hh-story-prose p {
  margin: 0 0 1.55em;
}

.hh-story-prose h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 1.35em 0 0.55em;
}

.hh-story-editorial-note {
  background: var(--hh-sage-pale);
  border-radius: var(--hh-radius-md);
  font-family: var(--hh-sans);
  margin-top: 65px;
  padding: 28px 30px;
}

.hh-story-editorial-note .hh-kicker {
  color: var(--hh-coral-dark);
  margin-bottom: 8px;
}

.hh-story-editorial-note p:last-child {
  color: var(--hh-ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
}

.hh-story-product {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: 26px;
  padding: 20px;
  position: sticky;
  top: 125px;
}

.hh-story-product__eyebrow {
  color: var(--hh-ink-soft);
  display: flex;
  font-size: 0.6rem;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin: 2px 2px 16px;
  text-transform: uppercase;
}

.hh-story-product__image {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: var(--hh-paper-deep);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.hh-story-product__image img {
  height: 100%;
  object-fit: contain;
  padding: 8%;
  transition: transform 300ms ease;
  width: 100%;
}

.hh-story-product__image:hover img {
  transform: scale(1.035);
}

.hh-story-product__label {
  color: var(--hh-coral-dark);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 20px 1px 7px;
  text-transform: uppercase;
}

.hh-story-product h2 {
  font-family: var(--hh-serif);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

.hh-story-product h2 a {
  color: inherit;
  text-decoration: none;
}

.hh-story-product__bottom {
  align-items: center;
  border-top: 1px solid var(--hh-line);
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
  margin-top: 19px;
  padding-top: 17px;
}

.hh-story-product__bottom .hh-button {
  font-size: 0.67rem;
  justify-self: end;
  min-height: 43px;
  padding-inline: 16px;
}

.hh-story-neighbors {
  border-bottom: 1px solid var(--hh-line);
  border-top: 1px solid var(--hh-line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 37px;
  padding-top: 37px;
}

.hh-story-neighbors a {
  color: inherit;
  display: flex;
  flex-direction: column;
  max-width: 450px;
  text-decoration: none;
}

.hh-story-neighbors a:last-child {
  justify-self: end;
  text-align: right;
}

.hh-story-neighbors small {
  color: var(--hh-coral-dark);
  font-size: 0.59rem;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.hh-story-neighbors span {
  font-family: var(--hh-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  line-height: 1.1;
}

.hh-story-more {
  padding: 95px 0 115px;
  text-align: center;
}

.hh-story-more h2 {
  margin-bottom: 28px;
}

.hh-story-empty {
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius-md);
  color: var(--hh-ink-soft);
  padding: 45px;
}

@media (max-width: 1120px) {
  .hh-story-feed {
    column-count: 3;
  }

  .hh-story-layout {
    gap: 55px;
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 860px) {
  .hh-story-feed {
    column-count: 2;
    column-gap: 16px;
  }

  .hh-story-card {
    margin-bottom: 16px;
  }

  .hh-story-index__heading,
  .hh-story-index-note .hh-container,
  .hh-story-layout {
    grid-template-columns: 1fr;
  }

  .hh-story-index__heading {
    gap: 20px;
  }

  .hh-story-index-note .hh-container {
    gap: 20px;
  }

  .hh-story-product {
    position: static;
  }

  .hh-story-layout {
    gap: 65px;
  }
}

@media (max-width: 600px) {
  .hh-story-index-hero,
  .hh-story-hero {
    padding-top: 25px;
  }

  .hh-story-index-hero .hh-breadcrumbs,
  .hh-story-hero .hh-breadcrumbs {
    margin-bottom: 52px;
  }

  .hh-story-index-hero__copy h1,
  .hh-story-hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.3rem);
    margin-bottom: 23px;
  }

  .hh-story-mood-rail {
    flex-wrap: nowrap;
    margin-inline: calc((100vw - var(--hh-container)) / -2);
    overflow-x: auto;
    padding-inline: calc((100vw - var(--hh-container)) / 2);
    scrollbar-width: none;
  }

  .hh-story-mood-rail::-webkit-scrollbar {
    display: none;
  }

  .hh-story-mood-rail span {
    flex: 0 0 auto;
  }

  .hh-story-index {
    padding-bottom: 82px;
    padding-top: 70px;
  }

  .hh-story-index__heading {
    margin-bottom: 30px;
  }

  .hh-story-feed {
    column-gap: 11px;
  }

  .hh-story-card {
    border-radius: 15px;
    margin-bottom: 11px;
  }

  .hh-story-card__body {
    padding: 14px 12px 13px;
  }

  .hh-story-card__read {
    bottom: 8px;
    font-size: 0.5rem;
    left: 8px;
    padding: 5px 7px;
  }

  .hh-story-card__mood {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
  }

  .hh-story-card h2 {
    font-size: 1.12rem;
  }

  .hh-story-card__excerpt {
    font-size: 0.7rem;
    -webkit-line-clamp: 2;
    line-height: 1.45;
    margin: 9px 0 11px;
  }

  .hh-story-card__product {
    gap: 6px;
    padding-top: 9px;
  }

  .hh-story-card__product > span {
    height: 6px;
    width: 6px;
  }

  .hh-story-card__product p {
    font-size: 0.61rem;
  }

  .hh-story-card__product small {
    font-size: 0.47rem;
  }

  .hh-story-cover {
    width: 100%;
  }

  .hh-story-cover__image {
    aspect-ratio: 4 / 3;
    border-radius: 0;
  }

  .hh-story-cover > p {
    padding-inline: calc((100vw - var(--hh-container)) / 2);
  }

  .hh-story-layout {
    padding-bottom: 88px;
    padding-top: 62px;
  }

  .hh-story-prose {
    font-size: 1.08rem;
  }

  .hh-story-editorial-note {
    padding: 24px 22px;
  }

  .hh-story-product {
    padding: 15px;
  }

  .hh-story-neighbors {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .hh-story-neighbors a:last-child {
    justify-self: start;
    text-align: left;
  }

  .hh-story-more {
    padding: 75px 0 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hh-story-card,
  .hh-story-card__media img,
  .hh-story-product__image img {
    transition: none;
  }
}

/* Legal policy pages ----------------------------------------------------- */
.hh-legal-hero {
  background:
    radial-gradient(circle at 82% 28%, rgba(174, 187, 173, 0.34), transparent 25rem),
    var(--hh-paper);
}

.hh-legal-updated {
  border-top: 1px solid var(--hh-line);
  color: var(--hh-ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  margin-top: 42px;
  max-width: 260px;
  padding-top: 13px;
  text-transform: uppercase;
}

.hh-legal-layout {
  align-items: start;
}

.hh-legal-content .hh-guide-section {
  scroll-margin-top: 130px;
}

.hh-legal-content a {
  color: var(--hh-coral-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hh-legal-content .hh-guide-table {
  margin-top: 35px;
}

.hh-legal-content .hh-guide-table th:first-child {
  width: 24%;
}

.hh-legal-content .hh-guide-table th:nth-child(2) {
  width: 47%;
}

.hh-legal-content .hh-guide-table td {
  vertical-align: top;
}

.hh-legal-summary {
  padding-top: 0;
}

.hh-legal-nav {
  position: sticky;
  top: 130px;
}

.hh-legal-contact-link {
  border: 1px solid var(--hh-line);
  border-radius: 99px;
  color: var(--hh-ink);
  display: inline-flex;
  font-size: 0.66rem;
  justify-content: center;
  letter-spacing: 0.08em;
  margin-top: 20px;
  padding: 11px 16px;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}

.hh-legal-contact-link:hover {
  background: var(--hh-ink);
  border-color: var(--hh-ink);
  color: var(--hh-white);
}

@media (max-width: 760px) {
  .hh-legal-content .hh-guide-table {
    margin-inline: -20px;
    overflow-x: auto;
    width: calc(100% + 40px);
  }

  .hh-legal-content .hh-guide-table table {
    min-width: 720px;
  }

  .hh-legal-nav {
    position: static;
  }
}

/* BDSM beginner learning hub -------------------------------------------- */
.hh-bdsm-hub,
.hh-bdsm-article {
  background: var(--hh-paper);
}

.hh-bdsm-hero {
  background:
    linear-gradient(115deg, rgba(201, 111, 91, 0.12), transparent 45%),
    var(--hh-ink);
  color: var(--hh-white);
  overflow: hidden;
  padding: 34px 0 0;
  position: relative;
}

.hh-bdsm-hero::after {
  border: 1px solid rgba(255, 253, 249, 0.12);
  border-radius: 50%;
  content: "";
  height: min(62vw, 780px);
  position: absolute;
  right: -24vw;
  top: -27vw;
  width: min(62vw, 780px);
}

.hh-bdsm-hero .hh-breadcrumbs {
  color: rgba(255, 253, 249, 0.62);
  margin-bottom: 82px;
  position: relative;
  z-index: 1;
}

.hh-bdsm-hero .hh-breadcrumbs a {
  color: inherit;
}

.hh-bdsm-hero__grid {
  align-items: end;
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
  padding-bottom: 78px;
  position: relative;
  z-index: 1;
}

.hh-bdsm-hero .hh-kicker {
  color: var(--hh-coral);
}

.hh-bdsm-hero h1 {
  font-family: var(--hh-serif);
  font-size: clamp(5rem, 10vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.78;
  margin: 24px 0 0;
  max-width: 920px;
}

.hh-bdsm-hero h1 span {
  color: var(--hh-coral);
  display: block;
  font-style: italic;
}

.hh-bdsm-hero__aside {
  border-left: 1px solid rgba(255, 253, 249, 0.2);
  padding-left: 32px;
}

.hh-bdsm-hero__mark {
  color: rgba(255, 253, 249, 0.14);
  display: block;
  font-family: var(--hh-serif);
  font-size: 5.5rem;
  letter-spacing: -0.08em;
  line-height: 1;
  margin-bottom: 20px;
}

.hh-bdsm-hero__aside p {
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0 0 25px;
}

.hh-bdsm-hero__aside .hh-button {
  background: var(--hh-coral);
  border-color: var(--hh-coral);
}

.hh-bdsm-hero__rules {
  border-top: 1px solid rgba(255, 253, 249, 0.16);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.hh-bdsm-hero__rules span {
  align-items: center;
  color: rgba(255, 253, 249, 0.68);
  display: flex;
  font-size: 0.61rem;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 55px;
  padding: 10px;
  text-transform: uppercase;
}

.hh-bdsm-hero__rules span + span {
  border-left: 1px solid rgba(255, 253, 249, 0.16);
}

.hh-bdsm-opening {
  padding-bottom: 105px;
  padding-top: 110px;
}

.hh-bdsm-intro {
  display: grid;
  gap: clamp(50px, 10vw, 165px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
}

.hh-bdsm-intro h2,
.hh-bdsm-section-heading h2,
.hh-bdsm-risk h2,
.hh-bdsm-sources h2 {
  font-family: var(--hh-serif);
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 16px 0 0;
}

.hh-bdsm-intro > div:last-child {
  color: var(--hh-ink-soft);
  font-family: var(--hh-serif);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.65;
}

.hh-bdsm-intro > div:last-child p:first-child {
  margin-top: 0;
}

.hh-bdsm-alert {
  background: var(--hh-sage-pale);
  border-left: 5px solid var(--hh-coral);
  border-radius: 0 var(--hh-radius-md) var(--hh-radius-md) 0;
  margin: 70px 0 0;
  padding: 27px 31px;
}

.hh-bdsm-alert.is-danger {
  background: #f2ded8;
  border-color: var(--hh-coral-dark);
}

.hh-bdsm-alert strong {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hh-bdsm-alert p {
  color: var(--hh-ink-soft);
  font-family: var(--hh-sans);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 8px 0 0;
}

.hh-bdsm-course {
  background: var(--hh-paper-deep);
  border-bottom: 1px solid var(--hh-line);
  border-top: 1px solid var(--hh-line);
  padding: 105px 0 120px;
}

.hh-bdsm-section-heading {
  align-items: end;
  display: grid;
  gap: 55px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  margin-bottom: 52px;
}

.hh-bdsm-section-heading > p {
  color: var(--hh-ink-soft);
  line-height: 1.7;
  margin: 0;
}

.hh-bdsm-course-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hh-bdsm-course-card {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: 24px;
  grid-column: span 2;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.hh-bdsm-course-card:nth-child(4),
.hh-bdsm-course-card:nth-child(5) {
  grid-column: span 3;
}

.hh-bdsm-course-card::before {
  background: var(--hh-bdsm-accent);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.hh-bdsm-course-card > a {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  text-decoration: none;
}

.hh-bdsm-course-card__top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.hh-bdsm-course-card__top > span {
  color: color-mix(in srgb, var(--hh-bdsm-accent) 82%, var(--hh-ink));
  font-family: var(--hh-serif);
  font-size: 4.5rem;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.hh-bdsm-course-card__top small,
.hh-bdsm-course-card > a > p {
  color: var(--hh-ink-soft);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hh-bdsm-course-card > a > p {
  margin: 36px 0 9px;
}

.hh-bdsm-course-card h3 {
  font-family: var(--hh-serif);
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.hh-bdsm-course-card__excerpt {
  color: var(--hh-ink-soft);
  font-size: 0.79rem;
  line-height: 1.55;
  margin: 18px 0 25px;
}

.hh-bdsm-course-card__link {
  align-items: center;
  border-top: 1px solid var(--hh-line);
  display: flex;
  font-size: 0.66rem;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: 16px;
  text-transform: uppercase;
}

.hh-bdsm-course-card__link i {
  font-size: 1.1rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.hh-bdsm-course-card:hover .hh-bdsm-course-card__link i {
  transform: translateX(5px);
}

.hh-bdsm-basics,
.hh-bdsm-glossary {
  padding-bottom: 120px;
  padding-top: 115px;
}

.hh-bdsm-five-steps {
  border-bottom: 1px solid var(--hh-line);
  border-top: 1px solid var(--hh-line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.hh-bdsm-five-steps article {
  padding: 27px 22px 34px;
}

.hh-bdsm-five-steps article + article {
  border-left: 1px solid var(--hh-line);
}

.hh-bdsm-five-steps span {
  color: var(--hh-coral-dark);
  font-size: 0.59rem;
  letter-spacing: 0.1em;
}

.hh-bdsm-five-steps h3 {
  font-family: var(--hh-serif);
  font-size: 1.9rem;
  font-weight: 400;
  margin: 23px 0 10px;
}

.hh-bdsm-five-steps p {
  color: var(--hh-ink-soft);
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 0;
}

.hh-bdsm-risk {
  background: var(--hh-ink);
  color: var(--hh-white);
  padding: 95px 0;
}

.hh-bdsm-risk .hh-kicker {
  color: var(--hh-coral);
}

.hh-bdsm-risk__grid {
  display: grid;
  gap: clamp(60px, 11vw, 180px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.hh-bdsm-risk__grid > div:last-child {
  align-self: end;
}

.hh-bdsm-risk__grid > div:last-child > p {
  color: rgba(255, 253, 249, 0.7);
  line-height: 1.75;
}

.hh-bdsm-risk a {
  align-items: center;
  border-top: 1px solid rgba(255, 253, 249, 0.22);
  color: var(--hh-white);
  display: flex;
  font-size: 0.68rem;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin-top: 30px;
  padding-top: 17px;
  text-decoration: none;
  text-transform: uppercase;
}

.hh-bdsm-glossary dl {
  border-top: 1px solid var(--hh-line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.hh-bdsm-glossary dl > div {
  border-bottom: 1px solid var(--hh-line);
  display: grid;
  gap: 25px;
  grid-template-columns: 130px 1fr;
  padding: 28px 25px;
}

.hh-bdsm-glossary dl > div:nth-child(odd) {
  border-right: 1px solid var(--hh-line);
}

.hh-bdsm-glossary dt {
  font-family: var(--hh-serif);
  font-size: 1.3rem;
}

.hh-bdsm-glossary dd {
  color: var(--hh-ink-soft);
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0;
}

.hh-bdsm-sources {
  background: var(--hh-sage-pale);
  padding: 90px 0 105px;
}

.hh-bdsm-sources .hh-container {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
}

.hh-bdsm-sources ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-bdsm-sources li {
  border-top: 1px solid var(--hh-line);
}

.hh-bdsm-sources li:last-child {
  border-bottom: 1px solid var(--hh-line);
}

.hh-bdsm-sources a {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: 0.82rem;
  justify-content: space-between;
  min-height: 58px;
  text-decoration: none;
}

/* BDSM guide article */
.hh-bdsm-article-hero {
  background:
    linear-gradient(125deg, color-mix(in srgb, var(--hh-bdsm-accent) 32%, var(--hh-paper)), var(--hh-paper) 58%);
  border-bottom: 1px solid var(--hh-line);
  padding: 34px 0 78px;
}

.hh-bdsm-article-hero .hh-breadcrumbs {
  margin-bottom: 78px;
}

.hh-bdsm-article-hero__grid {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 950px) auto;
  justify-content: space-between;
}

.hh-bdsm-article-hero .hh-kicker {
  color: color-mix(in srgb, var(--hh-bdsm-accent) 72%, var(--hh-ink));
}

.hh-bdsm-article-hero h1 {
  font-family: var(--hh-serif);
  font-size: clamp(4.4rem, 8.6vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
  margin: 22px 0 30px;
}

.hh-bdsm-article-hero__grid > div:first-child > p:last-child {
  color: var(--hh-ink-soft);
  font-family: var(--hh-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  margin: 0;
  max-width: 700px;
}

.hh-bdsm-article-hero__number {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

.hh-bdsm-article-hero__number > span {
  color: color-mix(in srgb, var(--hh-bdsm-accent) 72%, var(--hh-ink));
  font-family: var(--hh-serif);
  font-size: clamp(6rem, 11vw, 10rem);
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.hh-bdsm-article-hero__number small {
  color: var(--hh-ink-soft);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  margin-top: 24px;
  text-transform: uppercase;
}

.hh-bdsm-article-layout {
  align-items: start;
  display: grid;
  gap: clamp(65px, 10vw, 155px);
  grid-template-columns: minmax(0, 750px) minmax(250px, 320px);
  justify-content: center;
  padding-bottom: 125px;
  padding-top: 88px;
}

.hh-bdsm-article-prose {
  font-family: var(--hh-serif);
  font-size: clamp(1.12rem, 1.5vw, 1.32rem);
  line-height: 1.75;
}

.hh-bdsm-article-prose > p:first-of-type::first-letter {
  color: color-mix(in srgb, var(--hh-bdsm-accent) 70%, var(--hh-ink));
  float: left;
  font-size: 5rem;
  line-height: 0.74;
  padding: 13px 10px 0 0;
}

.hh-bdsm-article-prose p {
  margin: 0 0 1.5em;
}

.hh-bdsm-article-prose h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 1.4em 0 0.55em;
}

.hh-bdsm-adult-note {
  border-bottom: 1px solid var(--hh-line);
  font-family: var(--hh-sans);
  margin-bottom: 52px;
  padding-bottom: 25px;
}

.hh-bdsm-adult-note strong {
  color: color-mix(in srgb, var(--hh-bdsm-accent) 70%, var(--hh-ink));
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hh-bdsm-adult-note p {
  color: var(--hh-ink-soft);
  font-size: 0.76rem;
  line-height: 1.6;
  margin: 7px 0 0;
}

.hh-bdsm-question-grid,
.hh-bdsm-tool-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 40px 0 55px;
}

.hh-bdsm-question-grid article,
.hh-bdsm-tool-grid article {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: 18px;
  padding: 23px;
}

.hh-bdsm-question-grid small,
.hh-bdsm-tool-grid span {
  color: color-mix(in srgb, var(--hh-bdsm-accent) 72%, var(--hh-ink));
  font-family: var(--hh-sans);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.hh-bdsm-question-grid h3,
.hh-bdsm-tool-grid h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 14px 0 8px;
}

.hh-bdsm-question-grid p,
.hh-bdsm-tool-grid p {
  color: var(--hh-ink-soft);
  font-family: var(--hh-sans);
  font-size: 0.73rem;
  line-height: 1.55;
  margin: 0;
}

.hh-bdsm-signal-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 35px 0 50px;
}

.hh-bdsm-signal-row article {
  border: 1px solid var(--hh-line);
  border-radius: 17px;
  padding: 20px;
}

.hh-bdsm-signal-row article.is-green { background: #dfe9df; }
.hh-bdsm-signal-row article.is-yellow { background: #f2e7bc; }
.hh-bdsm-signal-row article.is-red { background: #f2d8d2; }

.hh-bdsm-signal-row span {
  font-family: var(--hh-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hh-bdsm-signal-row p {
  color: var(--hh-ink-soft);
  font-family: var(--hh-sans);
  font-size: 0.7rem;
  line-height: 1.5;
  margin: 12px 0 0;
}

.hh-bdsm-principle {
  border-bottom: 1px solid var(--hh-line);
  border-top: 1px solid var(--hh-line);
  margin: 52px 0;
  padding: 28px 0;
}

.hh-bdsm-principle span {
  color: color-mix(in srgb, var(--hh-bdsm-accent) 72%, var(--hh-ink));
  font-family: var(--hh-sans);
  font-size: 0.59rem;
  letter-spacing: 0.1em;
}

.hh-bdsm-principle p {
  font-size: 1.4rem;
  line-height: 1.45;
  margin: 12px 0 0;
}

.hh-bdsm-scene-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 40px 0 55px;
}

.hh-bdsm-scene-map.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hh-bdsm-scene-map > div {
  border-bottom: 1px solid var(--hh-line);
  border-top: 1px solid var(--hh-line);
  padding: 23px 17px;
}

.hh-bdsm-scene-map > div + div {
  border-left: 1px solid var(--hh-line);
}

.hh-bdsm-scene-map span {
  color: color-mix(in srgb, var(--hh-bdsm-accent) 72%, var(--hh-ink));
  display: block;
  font-family: var(--hh-sans);
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hh-bdsm-scene-map strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
}

.hh-bdsm-scene-map p {
  color: var(--hh-ink-soft);
  font-family: var(--hh-sans);
  font-size: 0.66rem;
  line-height: 1.5;
  margin: 8px 0 0;
}

.hh-bdsm-article-prose .hh-check-list,
.hh-bdsm-article-prose .hh-number-list {
  font-family: var(--hh-sans);
  font-size: 0.82rem;
  margin-bottom: 55px;
  margin-top: 35px;
}

.hh-bdsm-help-note {
  background: var(--hh-ink);
  border-radius: 24px;
  color: var(--hh-white);
  margin-top: 75px;
  padding: 32px;
}

.hh-bdsm-help-note h2 {
  font-size: 2.25rem;
  margin: 0 0 15px;
}

.hh-bdsm-help-note p {
  color: rgba(255, 253, 249, 0.7);
  font-family: var(--hh-sans);
  font-size: 0.78rem;
  line-height: 1.65;
  margin: 0;
}

.hh-bdsm-path {
  border-left: 1px solid var(--hh-line);
  padding-left: 28px;
  position: sticky;
  top: 125px;
}

.hh-bdsm-path > p {
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  margin: 0 0 19px;
  text-transform: uppercase;
}

.hh-bdsm-path ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-bdsm-path li {
  border-top: 1px solid var(--hh-line);
}

.hh-bdsm-path li:last-child {
  border-bottom: 1px solid var(--hh-line);
}

.hh-bdsm-path li a {
  align-items: center;
  color: var(--hh-ink-soft);
  display: grid;
  font-size: 0.74rem;
  gap: 13px;
  grid-template-columns: 28px 1fr;
  line-height: 1.35;
  min-height: 60px;
  text-decoration: none;
}

.hh-bdsm-path li span {
  color: var(--hh-coral-dark);
  font-size: 0.57rem;
}

.hh-bdsm-path li.is-current a {
  color: var(--hh-ink);
  font-weight: 700;
}

.hh-bdsm-path li.is-current {
  border-left: 3px solid var(--hh-bdsm-accent);
  margin-left: -29px;
  padding-left: 26px;
}

.hh-bdsm-path__hub {
  color: var(--hh-coral-dark);
  display: inline-block;
  font-size: 0.67rem;
  margin-top: 22px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hh-bdsm-neighbors {
  border-bottom: 1px solid var(--hh-line);
  border-top: 1px solid var(--hh-line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 38px;
  padding-top: 38px;
}

.hh-bdsm-neighbors a {
  color: inherit;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  text-decoration: none;
}

.hh-bdsm-neighbors a:last-child {
  justify-self: end;
  text-align: right;
}

.hh-bdsm-neighbors small {
  color: var(--hh-coral-dark);
  font-size: 0.59rem;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.hh-bdsm-neighbors span {
  font-family: var(--hh-serif);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.1;
}

@media (max-width: 980px) {
  .hh-bdsm-hero__grid,
  .hh-bdsm-intro,
  .hh-bdsm-risk__grid,
  .hh-bdsm-sources .hh-container {
    grid-template-columns: 1fr;
  }

  .hh-bdsm-hero__aside {
    border-left: 0;
    border-top: 1px solid rgba(255, 253, 249, 0.2);
    max-width: 650px;
    padding-left: 0;
    padding-top: 25px;
  }

  .hh-bdsm-hero__mark {
    display: none;
  }

  .hh-bdsm-course-card,
  .hh-bdsm-course-card:nth-child(4),
  .hh-bdsm-course-card:nth-child(5) {
    grid-column: span 3;
  }

  .hh-bdsm-five-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hh-bdsm-five-steps article {
    border-bottom: 1px solid var(--hh-line);
  }

  .hh-bdsm-article-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
  }
}

@media (max-width: 760px) {
  .hh-bdsm-hero .hh-breadcrumbs,
  .hh-bdsm-article-hero .hh-breadcrumbs {
    margin-bottom: 55px;
  }

  .hh-bdsm-hero h1 {
    font-size: clamp(4.25rem, 21vw, 6.3rem);
  }

  .hh-bdsm-hero__grid {
    gap: 45px;
    padding-bottom: 55px;
  }

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

  .hh-bdsm-hero__rules span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 253, 249, 0.16);
  }

  .hh-bdsm-hero__rules span:nth-child(4) {
    border-top: 1px solid rgba(255, 253, 249, 0.16);
  }

  .hh-bdsm-opening,
  .hh-bdsm-basics,
  .hh-bdsm-glossary {
    padding-bottom: 80px;
    padding-top: 78px;
  }

  .hh-bdsm-section-heading {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .hh-bdsm-course {
    padding: 78px 0 85px;
  }

  .hh-bdsm-course-grid {
    gap: 12px;
  }

  .hh-bdsm-course-card,
  .hh-bdsm-course-card:nth-child(4),
  .hh-bdsm-course-card:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .hh-bdsm-course-card > a {
    padding: 25px;
  }

  .hh-bdsm-five-steps,
  .hh-bdsm-glossary dl,
  .hh-bdsm-article-hero__grid,
  .hh-bdsm-article-layout {
    grid-template-columns: 1fr;
  }

  .hh-bdsm-five-steps article + article,
  .hh-bdsm-glossary dl > div:nth-child(odd) {
    border-left: 0;
    border-right: 0;
  }

  .hh-bdsm-glossary dl > div {
    grid-template-columns: 105px 1fr;
    padding-inline: 8px;
  }

  .hh-bdsm-risk {
    padding: 78px 0;
  }

  .hh-bdsm-sources .hh-container {
    gap: 40px;
  }

  .hh-bdsm-article-hero {
    padding-bottom: 58px;
  }

  .hh-bdsm-article-hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.5rem);
  }

  .hh-bdsm-article-hero__number {
    align-items: flex-start;
    border-top: 1px solid var(--hh-line);
    padding-top: 30px;
  }

  .hh-bdsm-article-hero__number > span {
    font-size: 6rem;
  }

  .hh-bdsm-article-layout {
    gap: 70px;
    padding-bottom: 85px;
    padding-top: 62px;
  }

  .hh-bdsm-path {
    border-left: 0;
    border-top: 1px solid var(--hh-line);
    padding-left: 0;
    padding-top: 30px;
    position: static;
  }

  .hh-bdsm-path li.is-current {
    margin-left: 0;
    padding-left: 15px;
  }

  .hh-bdsm-question-grid,
  .hh-bdsm-tool-grid,
  .hh-bdsm-signal-row,
  .hh-bdsm-scene-map,
  .hh-bdsm-scene-map.is-three {
    grid-template-columns: 1fr;
  }

  .hh-bdsm-scene-map > div + div {
    border-left: 0;
    border-top: 0;
  }

  .hh-bdsm-neighbors {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .hh-bdsm-neighbors a:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hh-bdsm-course-card__link i {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Member community chat
   -------------------------------------------------------------------------- */

.hh-chat-page {
  background:
    radial-gradient(circle at 72% 3%, rgba(201, 111, 91, 0.13), transparent 24rem),
    var(--hh-paper);
  min-height: 80vh;
  padding-bottom: 90px;
}

.hh-chat-hero {
  border-bottom: 1px solid var(--hh-line);
  padding: 54px 0 42px;
}

.hh-chat-hero__inner {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
}

.hh-chat-hero .hh-kicker {
  margin-bottom: 10px;
}

.hh-chat-hero h1 {
  font-family: var(--hh-serif);
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
  margin: 0;
}

.hh-chat-hero__inner > p {
  color: var(--hh-ink-soft);
  font-family: var(--hh-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.38rem);
  line-height: 1.45;
  margin: 0 0 5px;
}

.hh-chat-shell {
  display: grid;
  grid-template-columns: 230px minmax(460px, 1fr) 285px;
  min-height: min(760px, calc(100vh - 190px));
  position: relative;
}

.hh-chat-rooms,
.hh-chat-code {
  padding: 38px 25px;
}

.hh-chat-rooms {
  border-left: 1px solid var(--hh-line);
}

.hh-chat-rooms__heading {
  align-items: center;
  color: var(--hh-ink-soft);
  display: flex;
  font-size: 0.68rem;
  font-weight: 750;
  gap: 12px;
  letter-spacing: 0.15em;
}

.hh-chat-rooms__heading i {
  background: var(--hh-line);
  flex: 1;
  height: 1px;
}

.hh-chat-room {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  margin: 20px 0 30px;
  padding: 10px;
  text-align: left;
  width: 100%;
}

.hh-chat-room.is-active {
  background: rgba(174, 187, 173, 0.24);
}

.hh-chat-room__mark {
  align-items: center;
  background: var(--hh-ink);
  border-radius: 50%;
  color: var(--hh-white);
  display: flex;
  flex: 0 0 42px;
  font-family: var(--hh-serif);
  font-size: 0.78rem;
  height: 42px;
  justify-content: center;
}

.hh-chat-room strong,
.hh-chat-room small {
  display: block;
}

.hh-chat-room strong {
  font-size: 0.78rem;
  margin-bottom: 1px;
}

.hh-chat-room small {
  color: var(--hh-ink-soft);
  font-size: 0.68rem;
}

.hh-chat-room-note {
  border-bottom: 1px solid var(--hh-line);
  border-top: 1px solid var(--hh-line);
  padding: 26px 2px;
}

.hh-chat-room-note > span {
  color: var(--hh-ink-soft);
  display: block;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  margin-bottom: 12px;
}

.hh-chat-room-note > strong {
  align-items: center;
  display: flex;
  font-family: var(--hh-serif);
  font-size: 1.03rem;
  font-weight: 500;
  gap: 9px;
}

.hh-chat-room-note > strong::before {
  background: var(--hh-member-color);
  border: 3px solid var(--hh-white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--hh-line);
  content: "";
  height: 13px;
  width: 13px;
}

.hh-chat-room-note p {
  color: var(--hh-ink-soft);
  font-size: 0.7rem;
  line-height: 1.55;
  margin: 10px 0 0;
}

.hh-chat-side-link {
  align-items: center;
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 8px;
  margin-top: 25px;
}

.hh-chat-side-link span {
  color: var(--hh-coral-dark);
  font-size: 1rem;
}

.hh-chat-panel {
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid var(--hh-line);
  border-top: 0;
  display: grid;
  grid-template-rows: auto minmax(390px, 1fr) auto;
  min-height: 730px;
  overflow: hidden;
  position: relative;
}

.hh-chat-panel__header {
  align-items: center;
  background: rgba(255, 253, 249, 0.93);
  border-bottom: 1px solid var(--hh-line);
  display: flex;
  justify-content: space-between;
  min-height: 76px;
  padding: 15px 26px;
}

.hh-chat-panel__header > div {
  align-items: center;
  display: flex;
  gap: 13px;
}

.hh-chat-panel__header strong,
.hh-chat-panel__header small {
  display: block;
}

.hh-chat-panel__header strong {
  font-family: var(--hh-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.hh-chat-panel__header small {
  color: var(--hh-ink-soft);
  font-size: 0.68rem;
}

.hh-chat-live {
  background: #638b71;
  border: 4px solid #e7eee7;
  border-radius: 50%;
  height: 15px;
  width: 15px;
}

.hh-chat-mobile-code,
.hh-chat-code__close {
  display: none;
}

.hh-chat-messages {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 34px 28px 22px;
  scrollbar-color: rgba(29, 39, 40, 0.25) transparent;
  scrollbar-width: thin;
}

.hh-chat-loading {
  align-items: center;
  color: var(--hh-ink-soft);
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  inset: 0;
  justify-content: center;
  min-height: 330px;
}

.hh-chat-loading span {
  animation: hh-chat-pulse 1.1s ease-in-out infinite;
  border: 1px solid var(--hh-coral);
  border-radius: 50%;
  height: 24px;
  margin-bottom: 12px;
  width: 24px;
}

@keyframes hh-chat-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 111, 91, 0.25); transform: scale(0.9); }
  50% { box-shadow: 0 0 0 10px rgba(201, 111, 91, 0); transform: scale(1); }
}

.hh-chat-welcome {
  align-items: center;
  background: rgba(174, 187, 173, 0.15);
  border: 1px solid rgba(82, 109, 104, 0.2);
  display: grid;
  gap: 18px;
  grid-template-columns: 62px 1fr;
  margin-bottom: 34px;
  padding: 18px 20px;
}

.hh-chat-welcome > span {
  align-items: center;
  border: 1px solid var(--hh-ink);
  border-radius: 50%;
  display: flex;
  font-family: var(--hh-serif);
  font-size: 0.72rem;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.hh-chat-welcome strong {
  font-family: var(--hh-serif);
  font-size: 1rem;
}

.hh-chat-welcome p {
  color: var(--hh-ink-soft);
  font-size: 0.71rem;
  line-height: 1.55;
  margin: 3px 0 0;
}

.hh-chat-message {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 38px minmax(0, 1fr);
  margin-bottom: 22px;
  max-width: 84%;
}

.hh-chat-message.is-own {
  grid-template-columns: minmax(0, 1fr) 38px;
  margin-left: auto;
}

.hh-chat-message.is-own .hh-chat-message__avatar {
  grid-column: 2;
  grid-row: 1;
}

.hh-chat-message.is-own .hh-chat-message__main {
  grid-column: 1;
  grid-row: 1;
}

.hh-chat-message__avatar {
  align-items: center;
  background: color-mix(in srgb, var(--hh-member-color) 17%, var(--hh-white));
  border: 1px solid color-mix(in srgb, var(--hh-member-color) 35%, transparent);
  border-radius: 50%;
  color: var(--hh-member-color);
  display: flex;
  font-size: 0.61rem;
  font-weight: 780;
  height: 38px;
  justify-content: center;
  letter-spacing: 0.03em;
  width: 38px;
}

.hh-chat-message__meta {
  align-items: baseline;
  display: flex;
  gap: 9px;
  margin: 0 4px 6px;
}

.hh-chat-message.is-own .hh-chat-message__meta {
  justify-content: flex-end;
}

.hh-chat-message__meta strong {
  font-size: 0.7rem;
  font-weight: 730;
}

.hh-chat-message__meta time {
  color: var(--hh-ink-soft);
  font-size: 0.61rem;
}

.hh-chat-message__bubble {
  background: var(--hh-white);
  border: 1px solid rgba(29, 39, 40, 0.12);
  border-radius: 4px 17px 17px 17px;
  box-shadow: 0 7px 24px rgba(47, 39, 35, 0.045);
  font-size: 0.85rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  padding: 12px 15px;
  white-space: pre-wrap;
}

.hh-chat-message.is-own .hh-chat-message__bubble {
  background: #f3dfd8;
  border-color: rgba(157, 79, 65, 0.16);
  border-radius: 17px 4px 17px 17px;
}

.hh-chat-message__action {
  background: transparent;
  border: 0;
  color: var(--hh-ink-soft);
  display: block;
  font-size: 0.59rem;
  margin: 4px 5px 0 auto;
  opacity: 0;
  padding: 2px 0;
  text-decoration: underline;
  transition: opacity 150ms ease;
}

.hh-chat-message:hover .hh-chat-message__action,
.hh-chat-message__action:focus-visible,
.hh-chat-message__action:disabled {
  opacity: 1;
}

.hh-kinkmoji {
  align-items: center;
  background: rgba(238, 231, 221, 0.8);
  border: 1px solid rgba(29, 39, 40, 0.12);
  border-radius: 9px;
  display: inline-flex;
  height: 2.15em;
  justify-content: center;
  margin: 0 0.13em;
  padding: 0.24em;
  vertical-align: -0.62em;
  width: 2.15em;
}

.hh-kinkmoji svg,
.hh-chat-emoji-grid svg {
  fill: none;
  height: 100%;
  overflow: visible;
  stroke: var(--hh-ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  width: 100%;
}

.hh-kinkmoji svg.is-green,
.hh-chat-emoji-grid svg.is-green { stroke: #47705a; }
.hh-kinkmoji svg.is-yellow,
.hh-chat-emoji-grid svg.is-yellow { stroke: #a07126; }
.hh-kinkmoji svg.is-red,
.hh-chat-emoji-grid svg.is-red { stroke: #a24f4f; }

.hh-chat-empty {
  color: var(--hh-ink-soft);
  font-family: var(--hh-serif);
  font-size: 0.9rem;
  margin: 30px 0;
  text-align: center;
}

.hh-chat-new {
  background: var(--hh-ink);
  border: 0;
  border-radius: 999px;
  bottom: 188px;
  box-shadow: 0 8px 25px rgba(29, 39, 40, 0.22);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  left: 50%;
  padding: 8px 14px;
  position: absolute;
  transform: translateX(-50%);
  z-index: 5;
}

.hh-chat-composer {
  background: var(--hh-white);
  border-top: 1px solid var(--hh-line);
  padding: 15px 20px 13px;
  position: relative;
}

.hh-chat-compose-box {
  align-items: end;
  background: var(--hh-paper);
  border: 1px solid var(--hh-line);
  border-radius: 17px;
  display: grid;
  gap: 8px;
  grid-template-columns: 40px 1fr 40px;
  min-height: 57px;
  padding: 7px 8px;
}

.hh-chat-compose-box:focus-within {
  border-color: rgba(157, 79, 65, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 111, 91, 0.08);
}

.hh-chat-compose-box textarea {
  background: transparent;
  border: 0;
  line-height: 1.45;
  max-height: 118px;
  min-height: 40px;
  outline: 0;
  padding: 9px 2px 5px;
  resize: none;
  width: 100%;
}

.hh-chat-compose-box textarea::placeholder {
  color: #8b8c87;
}

.hh-chat-emoji-toggle,
.hh-chat-send {
  align-items: center;
  border: 0;
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 9px;
  width: 40px;
}

.hh-chat-emoji-toggle {
  background: transparent;
}

.hh-chat-emoji-toggle:hover,
.hh-chat-emoji-toggle[aria-expanded="true"] {
  background: var(--hh-paper-deep);
}

.hh-chat-emoji-toggle svg {
  fill: none;
  stroke: var(--hh-ink);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.hh-chat-send {
  background: var(--hh-ink);
  color: white;
}

.hh-chat-send:disabled {
  opacity: 0.45;
}

.hh-chat-send svg {
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hh-chat-compose-meta {
  color: var(--hh-ink-soft);
  display: flex;
  font-size: 0.58rem;
  justify-content: space-between;
  padding: 6px 7px 0;
}

.hh-chat-compose-meta b {
  font-weight: 600;
}

.hh-chat-notice {
  border-radius: 8px;
  font-size: 0.68rem;
  margin-bottom: 9px;
  padding: 8px 12px;
}

.hh-chat-notice.is-error {
  background: #f5dfdc;
  color: #753e38;
}

.hh-chat-notice.is-success {
  background: #e1ebe2;
  color: #375a43;
}

.hh-chat-emoji-picker {
  background: var(--hh-white);
  border: 1px solid var(--hh-line);
  border-radius: 18px;
  bottom: calc(100% - 8px);
  box-shadow: var(--hh-shadow);
  left: 20px;
  padding: 18px;
  position: absolute;
  width: min(460px, calc(100% - 40px));
  z-index: 20;
}

.hh-chat-emoji-picker[hidden] {
  display: none;
}

.hh-chat-emoji-picker > div:first-child {
  align-items: baseline;
  border-bottom: 1px solid var(--hh-line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
}

.hh-chat-emoji-picker strong {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.hh-chat-emoji-picker small {
  color: var(--hh-ink-soft);
  font-size: 0.62rem;
}

.hh-chat-emoji-grid {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(6, 1fr);
}

.hh-chat-emoji-grid button {
  align-items: center;
  background: var(--hh-paper);
  border: 1px solid transparent;
  border-radius: 10px;
  display: flex;
  height: 54px;
  justify-content: center;
  padding: 11px;
  position: relative;
}

.hh-chat-emoji-grid button:hover,
.hh-chat-emoji-grid button:focus-visible {
  background: var(--hh-paper-deep);
  border-color: var(--hh-line);
}

.hh-chat-emoji-grid button span {
  background: var(--hh-ink);
  border-radius: 4px;
  bottom: calc(100% + 5px);
  color: white;
  display: none;
  font-size: 0.55rem;
  left: 50%;
  line-height: 1.2;
  padding: 5px 7px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
}

.hh-chat-emoji-grid button:hover span,
.hh-chat-emoji-grid button:focus-visible span {
  display: block;
}

.hh-chat-code {
  border-right: 1px solid var(--hh-line);
}

.hh-chat-code h2 {
  font-family: var(--hh-serif);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.hh-chat-code ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-chat-code li {
  border-top: 1px solid var(--hh-line);
  display: grid;
  gap: 12px;
  grid-template-columns: 25px 1fr;
  padding: 15px 0;
}

.hh-chat-code li > span {
  color: var(--hh-coral-dark);
  font-family: var(--hh-serif);
  font-size: 0.7rem;
}

.hh-chat-code li p {
  color: var(--hh-ink-soft);
  font-size: 0.67rem;
  line-height: 1.5;
  margin: 0;
}

.hh-chat-code li strong {
  color: var(--hh-ink);
  display: block;
  font-size: 0.72rem;
  margin-bottom: 2px;
}

.hh-chat-safety-note {
  align-items: start;
  background: rgba(106, 88, 105, 0.09);
  display: grid;
  gap: 10px;
  grid-template-columns: 22px 1fr;
  margin-top: 24px;
  padding: 14px;
}

.hh-chat-safety-note > span {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  font-family: var(--hh-serif);
  font-size: 0.7rem;
  height: 18px;
  justify-content: center;
  margin-top: 2px;
  width: 18px;
}

.hh-chat-safety-note p {
  color: var(--hh-ink-soft);
  font-size: 0.62rem;
  line-height: 1.55;
  margin: 0;
}

.hh-chat-rules {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(29, 39, 40, 0.42);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: absolute;
  z-index: 50;
}

.hh-chat-rules[hidden] {
  display: none;
}

.hh-chat-rules__card {
  background: var(--hh-white);
  border-radius: 3px;
  box-shadow: 0 30px 100px rgba(29, 39, 40, 0.28);
  max-width: 530px;
  padding: 42px 46px 34px;
  position: relative;
  width: 100%;
}

.hh-chat-rules__mark {
  align-items: center;
  border: 1px solid var(--hh-line);
  border-radius: 50%;
  display: flex;
  font-family: var(--hh-serif);
  font-size: 0.68rem;
  height: 55px;
  justify-content: center;
  margin-bottom: 26px;
  width: 55px;
}

.hh-chat-rules__card h2 {
  font-family: var(--hh-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 17px;
}

.hh-chat-rules__card > p:not(.hh-kicker) {
  color: var(--hh-ink-soft);
  font-size: 0.79rem;
  line-height: 1.65;
}

.hh-chat-rules__card ul {
  border-bottom: 1px solid var(--hh-line);
  border-top: 1px solid var(--hh-line);
  list-style: none;
  margin: 23px 0;
  padding: 13px 0;
}

.hh-chat-rules__card li {
  color: var(--hh-ink-soft);
  font-size: 0.7rem;
  line-height: 1.5;
  padding: 5px 0 5px 22px;
  position: relative;
}

.hh-chat-rules__card li::before {
  color: var(--hh-coral-dark);
  content: "✓";
  font-weight: 800;
  left: 0;
  position: absolute;
}

.hh-chat-rules__check {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  font-size: 0.74rem;
  font-weight: 650;
  gap: 10px;
  margin-bottom: 16px;
}

.hh-chat-rules__check input {
  accent-color: var(--hh-ink);
  height: 17px;
  margin: 2px 0 0;
  width: 17px;
}

.hh-chat-rules__card > a {
  color: var(--hh-ink-soft);
  display: block;
  font-size: 0.66rem;
  margin-top: 14px;
  text-align: center;
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .hh-chat-shell {
    grid-template-columns: 190px minmax(440px, 1fr) 250px;
  }

  .hh-chat-rooms,
  .hh-chat-code {
    padding-inline: 18px;
  }
}

@media (max-width: 980px) {
  .hh-chat-page {
    padding-bottom: 60px;
  }

  .hh-chat-shell {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .hh-chat-code {
    background: var(--hh-white);
    box-shadow: -20px 0 60px rgba(29, 39, 40, 0.18);
    height: 100%;
    max-width: 320px;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(110%);
    transition: transform 200ms ease;
    width: 88%;
    z-index: 30;
  }

  .hh-chat-code.is-open {
    transform: translateX(0);
  }

  .hh-chat-code__close {
    background: transparent;
    border: 0;
    display: block;
    font-family: var(--hh-serif);
    font-size: 1.8rem;
    line-height: 1;
    margin: -10px -4px 18px auto;
  }

  .hh-chat-mobile-code {
    background: transparent;
    border: 1px solid var(--hh-line);
    border-radius: 999px;
    display: block;
    font-size: 0.63rem;
    font-weight: 700;
    padding: 7px 10px;
  }
}

@media (max-width: 720px) {
  .hh-chat-hero {
    padding: 36px 0 30px;
  }

  .hh-chat-hero__inner {
    align-items: start;
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .hh-chat-hero__inner > p {
    font-size: 1rem;
    max-width: 34rem;
  }

  .hh-chat-shell {
    display: block;
    min-height: 0;
    width: 100%;
  }

  .hh-chat-rooms {
    display: none;
  }

  .hh-chat-panel {
    border-left: 0;
    border-right: 0;
    min-height: calc(100svh - 130px);
  }

  .hh-chat-panel__header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .hh-chat-messages {
    padding: 24px 16px 18px;
  }

  .hh-chat-message {
    max-width: 94%;
  }

  .hh-chat-welcome {
    gap: 12px;
    grid-template-columns: 48px 1fr;
    padding: 14px;
  }

  .hh-chat-welcome > span {
    font-size: 0.57rem;
    height: 43px;
    width: 43px;
  }

  .hh-chat-composer {
    padding: 11px 12px 8px;
  }

  .hh-chat-compose-meta > span:first-child {
    display: none;
  }

  .hh-chat-compose-meta {
    justify-content: flex-end;
  }

  .hh-chat-emoji-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hh-chat-rules {
    align-items: flex-start;
    position: fixed;
    overflow-y: auto;
    z-index: 1000;
  }

  .hh-chat-rules__card {
    margin: auto;
    padding: 30px 24px 25px;
  }
}

@media (max-width: 430px) {
  .hh-chat-message {
    gap: 8px;
    grid-template-columns: 31px minmax(0, 1fr);
  }

  .hh-chat-message.is-own {
    grid-template-columns: minmax(0, 1fr) 31px;
  }

  .hh-chat-message__avatar {
    font-size: 0.52rem;
    height: 31px;
    width: 31px;
  }

  .hh-chat-emoji-picker {
    left: 12px;
    padding: 14px;
    width: calc(100% - 24px);
  }

  .hh-chat-emoji-picker small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hh-chat-loading span {
    animation: none;
  }

  .hh-chat-code {
    transition: none;
  }
}

/* Community-first site hierarchy --------------------------------------- */

.hh-menu-community > a {
  color: var(--hh-coral-dark);
}

.hh-hero--community {
  background:
    radial-gradient(circle at 78% 25%, rgba(201, 111, 91, 0.2), transparent 25rem),
    linear-gradient(125deg, #eee7dd 0%, #f4eee7 58%, #e5ded6 100%);
}

.hh-hero--community .hh-hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
}

.hh-hero--community .hh-hero__copy h1 {
  font-size: clamp(4rem, 6.7vw, 7.6rem);
  line-height: 0.82;
}

.hh-hero--community .hh-hero__actions {
  flex-wrap: wrap;
  gap: 14px;
}

.hh-hero--community .hh-text-link {
  margin-left: 8px;
}

.hh-home-room {
  aspect-ratio: 0.96;
  isolation: isolate;
  max-height: 660px;
}

.hh-home-room__glow {
  background: #c9b2a7;
  border-radius: 48% 48% 12% 12%;
  inset: 2% 4% 3% 8%;
  position: absolute;
  transform: rotate(2deg);
}

.hh-home-room__glow::after {
  border: 1px solid rgba(29, 39, 40, 0.2);
  border-radius: inherit;
  content: "";
  inset: 22px -22px -22px 22px;
  position: absolute;
}

.hh-home-room__card {
  background: rgba(255, 253, 249, 0.97);
  border: 1px solid rgba(29, 39, 40, 0.17);
  box-shadow: 0 35px 80px rgba(54, 42, 38, 0.2);
  display: grid;
  grid-template-rows: auto 1fr auto;
  inset: 8% 10% 7% 3%;
  overflow: hidden;
  position: absolute;
  transform: rotate(-1.2deg);
  z-index: 2;
}

.hh-home-room__card > header {
  align-items: center;
  border-bottom: 1px solid var(--hh-line);
  display: flex;
  justify-content: space-between;
  padding: 18px 21px;
}

.hh-home-room__card > header > div {
  align-items: center;
  display: flex;
  gap: 10px;
}

.hh-home-room__card > header strong,
.hh-home-room__card > header small {
  display: block;
}

.hh-home-room__card > header strong {
  font-family: var(--hh-serif);
  font-size: 0.95rem;
}

.hh-home-room__card > header small {
  color: var(--hh-ink-soft);
  font-size: 0.59rem;
}

.hh-home-room__card > header em {
  color: var(--hh-coral-dark);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.hh-home-room__messages {
  padding: clamp(20px, 3vw, 38px);
}

.hh-home-room__note {
  align-items: center;
  background: rgba(174, 187, 173, 0.18);
  display: grid;
  gap: 13px;
  grid-template-columns: 45px 1fr;
  margin-bottom: 28px;
  padding: 12px 14px;
}

.hh-home-room__note > span {
  align-items: center;
  border: 1px solid var(--hh-line);
  border-radius: 50%;
  display: flex;
  font-family: var(--hh-serif);
  font-size: 0.55rem;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.hh-home-room__note p {
  color: var(--hh-ink-soft);
  font-size: 0.67rem;
  margin: 0;
}

.hh-home-room__messages article {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 34px minmax(0, 1fr);
  margin-bottom: 22px;
  max-width: 82%;
}

.hh-home-room__messages article.is-reply {
  grid-template-columns: minmax(0, 1fr) 34px;
  margin-left: auto;
}

.hh-home-room__messages article.is-reply > .hh-home-room__avatar {
  grid-column: 2;
  grid-row: 1;
}

.hh-home-room__messages article.is-reply > div {
  grid-column: 1;
  grid-row: 1;
}

.hh-home-room__avatar {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-size: 0.54rem;
  font-weight: 760;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.hh-home-room__avatar.is-plum {
  background: #e7dfe7;
  color: var(--hh-plum);
}

.hh-home-room__avatar.is-sage {
  background: var(--hh-sage-pale);
  color: #48635a;
}

.hh-home-room__messages article small {
  color: var(--hh-ink-soft);
  display: block;
  font-size: 0.58rem;
  margin: 0 3px 5px;
}

.hh-home-room__messages article.is-reply small {
  text-align: right;
}

.hh-home-room__messages article p {
  background: white;
  border: 1px solid rgba(29, 39, 40, 0.12);
  border-radius: 3px 15px 15px 15px;
  box-shadow: 0 8px 25px rgba(47, 39, 35, 0.05);
  font-size: clamp(0.7rem, 1.1vw, 0.82rem);
  line-height: 1.5;
  margin: 0;
  padding: 11px 13px;
}

.hh-home-room__messages article.is-reply p {
  background: #f3dfd8;
  border-radius: 15px 3px 15px 15px;
}

.hh-home-room__expressions {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
  margin-top: 8px;
}

.hh-home-room__expressions span {
  align-items: center;
  background: var(--hh-paper);
  border: 1px solid var(--hh-line);
  border-radius: 7px;
  display: flex;
  height: 27px;
  justify-content: center;
  padding: 5px;
  width: 27px;
}

.hh-home-room__expressions svg {
  fill: none;
  height: 100%;
  stroke: var(--hh-ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 100%;
}

.hh-home-room__expressions .is-green svg {
  stroke: #47705a;
}

.hh-home-room__card > footer {
  align-items: center;
  border-top: 1px solid var(--hh-line);
  display: flex;
  font-size: 0.62rem;
  font-weight: 720;
  gap: 14px;
  padding: 15px 21px;
}

.hh-home-room__card > footer > span {
  color: var(--hh-coral-dark);
}

.hh-home-room__card > footer i {
  background: var(--hh-line);
  flex: 1;
  height: 1px;
}

/* Fixed-height room: the page stays still and messages scroll inside. */

body.hh-chat-screen {
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
}

body.admin-bar.hh-chat-screen {
  height: calc(100dvh - 32px);
}

.hh-chat-screen .hh-announcement,
.hh-chat-screen .hh-footer {
  display: none;
}

.hh-chat-screen .hh-header {
  position: relative;
  top: auto;
}

.hh-chat-screen .hh-chat-page {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: calc(100dvh - 78px);
  min-height: 0;
  overflow: hidden;
  padding-bottom: 0;
}

.admin-bar.hh-chat-screen .hh-chat-page {
  height: calc(100dvh - 110px);
}

.hh-chat-screen .hh-chat-hero {
  padding: 12px 0;
}

.hh-chat-screen .hh-chat-hero__inner {
  align-items: center;
  gap: 35px;
  grid-template-columns: minmax(230px, 0.55fr) minmax(520px, 1.45fr);
}

.hh-chat-screen .hh-chat-hero .hh-kicker {
  font-size: 0.6rem;
  margin-bottom: 4px;
}

.hh-chat-screen .hh-chat-hero h1 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hh-chat-ecosystem {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hh-chat-ecosystem a {
  align-items: center;
  border-left: 1px solid var(--hh-line);
  display: grid;
  gap: 0 9px;
  grid-template-columns: 22px 1fr;
  min-height: 51px;
  padding: 5px 15px;
}

.hh-chat-ecosystem a:last-child {
  border-right: 1px solid var(--hh-line);
}

.hh-chat-ecosystem a > span {
  color: var(--hh-coral-dark);
  font-family: var(--hh-serif);
  font-size: 0.7rem;
  grid-row: 1 / span 2;
}

.hh-chat-ecosystem strong,
.hh-chat-ecosystem small {
  display: block;
}

.hh-chat-ecosystem strong {
  font-size: 0.72rem;
  line-height: 1.2;
}

.hh-chat-ecosystem small {
  color: var(--hh-ink-soft);
  font-size: 0.6rem;
}

.hh-chat-ecosystem a.is-current {
  background: rgba(174, 187, 173, 0.2);
}

.hh-chat-screen .hh-chat-shell {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.hh-chat-screen .hh-chat-panel {
  height: 100%;
  min-height: 0;
}

.hh-chat-screen .hh-chat-messages {
  min-height: 0;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.hh-chat-screen .hh-chat-rooms,
.hh-chat-screen .hh-chat-code {
  min-height: 0;
  overflow-y: auto;
}

.hh-chat-screen .hh-chat-rules {
  overflow-y: auto;
}

.hh-chat-screen .hh-chat-rules__card {
  margin-block: auto;
}

.hh-chat-beyond {
  margin-top: 24px;
}

.hh-chat-beyond > span {
  color: var(--hh-ink-soft);
  display: block;
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
}

.hh-chat-beyond > a {
  align-items: center;
  border-top: 1px solid var(--hh-line);
  display: grid;
  gap: 8px;
  grid-template-columns: 22px 1fr auto;
  padding: 11px 0;
}

.hh-chat-beyond i {
  color: var(--hh-coral-dark);
  font-family: var(--hh-serif);
  font-size: 0.66rem;
  font-style: normal;
}

.hh-chat-beyond strong,
.hh-chat-beyond small {
  display: block;
}

.hh-chat-beyond strong {
  font-size: 0.67rem;
}

.hh-chat-beyond small {
  color: var(--hh-ink-soft);
  font-size: 0.57rem;
}

.hh-chat-beyond b {
  font-size: 0.75rem;
  font-weight: 400;
}

@media (max-width: 1180px) {
  .hh-hero--community .hh-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .hh-chat-screen .hh-chat-hero__inner {
    grid-template-columns: 220px 1fr;
  }

  .hh-chat-ecosystem a {
    padding-inline: 10px;
  }
}

@media (max-width: 900px) {
  .hh-hero--community .hh-hero__grid {
    grid-template-columns: 1fr;
  }

  .hh-home-room {
    max-width: 600px;
  }

  .hh-chat-screen .hh-chat-page {
    height: calc(100dvh - 68px);
  }

  .admin-bar.hh-chat-screen .hh-chat-page {
    height: calc(100dvh - 114px);
  }

  body.admin-bar.hh-chat-screen {
    height: calc(100dvh - 46px);
  }

  .hh-chat-screen .hh-chat-hero__inner {
    grid-template-columns: 190px 1fr;
  }

  .hh-chat-ecosystem a {
    grid-template-columns: 1fr;
    padding: 5px 9px;
  }

  .hh-chat-ecosystem a > span {
    display: none;
  }
}

@media (max-width: 720px) {
  .hh-hero--community .hh-hero__actions {
    align-items: stretch;
  }

  .hh-hero--community .hh-hero__actions .hh-button {
    width: 100%;
  }

  .hh-hero--community .hh-text-link {
    align-self: flex-start;
    margin-left: 0;
  }

  .hh-home-room {
    aspect-ratio: 0.82;
  }

  .hh-home-room__card {
    inset: 5% 5% 5% 1%;
  }

  .hh-home-room__messages article {
    max-width: 93%;
  }

  .hh-chat-screen .hh-chat-hero {
    padding: 8px 0 9px;
  }

  .hh-chat-screen .hh-chat-hero__inner {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .hh-chat-screen .hh-chat-hero__inner > div:first-child {
    align-items: baseline;
    display: flex;
    gap: 10px;
  }

  .hh-chat-screen .hh-chat-hero .hh-kicker {
    margin: 0;
  }

  .hh-chat-screen .hh-chat-hero h1 {
    font-size: 1.35rem;
  }

  .hh-chat-ecosystem a {
    min-height: 39px;
    padding: 4px 8px;
  }

  .hh-chat-ecosystem strong {
    font-size: 0.65rem;
  }

  .hh-chat-ecosystem small {
    font-size: 0.52rem;
  }

  .hh-chat-screen .hh-chat-shell {
    height: 100%;
    min-height: 0;
  }

  .hh-chat-screen .hh-chat-panel {
    height: 100%;
    min-height: 0;
  }
}

@media (max-height: 720px) and (min-width: 721px) {
  .hh-chat-screen .hh-chat-hero {
    padding-block: 7px;
  }

  .hh-chat-screen .hh-chat-hero h1 {
    font-size: 1.65rem;
  }

  .hh-chat-ecosystem a {
    min-height: 42px;
  }

  .hh-chat-screen .hh-chat-rooms,
  .hh-chat-screen .hh-chat-code {
    padding-block: 22px;
  }
}
