:root {
  --ink: #1d1713;
  --brown-950: #17100c;
  --brown-900: #24150f;
  --brown-800: #3a1f15;
  --brown-700: #5b2f20;
  --tobacco: #9b4b2d;
  --copper: #c87443;
  --gold: #e6b85f;
  --cream: #f3ecdf;
  --paper: #fbf8f1;
  --white: #fffdf8;
  --sage: #899078;
  --line: rgba(51, 31, 21, 0.16);
  --muted: #6e625b;
  --shadow: 0 24px 70px rgba(35, 18, 11, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.age-locked,
body.drawer-open,
body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--brown-950);
  transform: translateY(-150%);
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--tobacco);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(230, 184, 95, 0.7);
  outline-offset: 3px;
}

.button--primary {
  color: #22150f;
  background: var(--gold);
  border-color: var(--gold);
}

.button--primary:hover {
  background: #f0c774;
  border-color: #f0c774;
}

.button--ghost {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

.button--dark {
  color: var(--white);
  background: var(--brown-900);
}

.button--outline {
  color: var(--brown-900);
  border-color: rgba(36, 21, 15, 0.36);
  background: transparent;
}

.button--text {
  min-height: auto;
  padding: 10px 0;
  color: var(--brown-900);
  background: transparent;
  border: 0;
}

.button--text-light {
  color: var(--cream);
}

.inline-link {
  font-size: 0.86rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

.inline-link:hover {
  color: var(--tobacco);
}

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 20px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--brown-950);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement span {
  margin: 0 8px;
  color: var(--gold);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--cream);
  background: rgba(23, 16, 12, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

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

.header-search {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.header-search label {
  position: relative;
  min-width: 0;
}

.header-search svg {
  position: absolute;
  top: 15px;
  left: 16px;
  width: 18px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.52);
  stroke-linecap: round;
  stroke-width: 1.7;
}

.header-search input,
.header-search button {
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-search input {
  width: 100%;
  padding: 0 17px 0 45px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
  border-radius: 8px 0 0 8px;
  outline: none;
}

.header-search input::placeholder { color: rgba(255, 255, 255, 0.48); }
.header-search input:focus { border-color: rgba(230, 184, 95, 0.52); }

.header-search button {
  padding: 0 19px;
  color: var(--brown-950);
  background: var(--gold);
  border-color: var(--gold);
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
}

.brand {
  display: block;
  width: 165px;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.list-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 10px 16px;
  color: var(--cream);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}

.list-button span {
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--brown-950);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.7rem;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--cream);
  background: var(--brown-900);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -40%;
  left: -12%;
  width: 60vw;
  height: 1100px;
  border: 1px solid rgba(230, 184, 95, 0.14);
  border-radius: 50%;
  content: "";
}

.hero__texture {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.04) 50%, transparent 75%),
    radial-gradient(circle at 12% 30%, rgba(200, 116, 67, 0.42), transparent 36%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  padding-block: 70px 90px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__copy .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero__lede {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.hero__copy .button--text {
  color: var(--cream);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 46px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
}

.hero__meta span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  margin: 0 14px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}

.hero__image-wrap {
  position: absolute;
  inset: -70px calc((100vw - min(1180px, calc(100vw - 40px))) / -2) -90px 0;
  overflow: hidden;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero__image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brown-900) 0%, rgba(36, 21, 15, 0.4) 28%, rgba(23, 16, 12, 0.08) 65%, rgba(23, 16, 12, 0.3) 100%);
}

.hero__card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 250px;
  padding: 17px 20px;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero__card strong,
.hero__card small {
  display: block;
}

.hero__card strong {
  font-family: var(--serif);
  font-size: 1rem;
}

.hero__card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
}

.hero__card--top {
  top: 4%;
  right: 2%;
}

.hero__card--bottom {
  right: 5%;
  bottom: 3%;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: none;
  background: #62714d;
  border: 3px solid rgba(98, 113, 77, 0.24);
  border-radius: 50%;
  background-clip: padding-box;
}

.service-strip {
  position: relative;
  z-index: 3;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-strip article {
  min-height: 125px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
}

.service-strip article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.service-strip article > span {
  color: var(--tobacco);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.service-strip strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.service-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.shop-paths {
  padding: clamp(90px, 9vw, 135px) 0 38px;
}

.shop-paths__intro {
  max-width: 410px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.shop-paths__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.shop-path {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 25px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(47, 28, 17, 0.055);
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.shop-path::after {
  position: absolute;
  right: -55px;
  bottom: -72px;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(155, 75, 45, 0.12);
  border-radius: 50%;
  content: "";
}

.shop-path > span {
  color: var(--tobacco);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.shop-path strong,
.shop-path small {
  display: block;
}

.shop-path strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.08;
}

.shop-path small {
  max-width: 190px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.shop-path > b {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--tobacco);
  font-size: 1.1rem;
}

.shop-path:hover {
  color: var(--cream);
  background: linear-gradient(145deg, #4a291d, #25140e);
  border-color: rgba(230, 184, 95, 0.2);
  box-shadow: 0 22px 50px rgba(35, 18, 11, 0.18);
  transform: translateY(-6px);
}

.shop-path:hover small { color: rgba(255, 255, 255, 0.64); }
.shop-path:hover > span,
.shop-path:hover > b { color: var(--gold); }

.brand-browser,
.catalog,
.concierge,
.visit {
  padding-block: clamp(80px, 9vw, 130px);
}

.brand-browser {
  padding-bottom: 40px;
}

.section-heading h2,
.house-feature h2,
.concierge h2,
.visit h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
}

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

.brand-chips {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 45px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-chip {
  min-height: 110px;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 20px 12px;
  color: var(--brown-900);
  background: var(--paper);
  border: 0;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.brand-chip strong {
  font-family: var(--serif);
  font-size: 1.12rem;
}

.brand-chip small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-chip:hover,
.brand-chip.is-active {
  color: var(--cream);
  background: var(--brown-800);
}

.brand-chip:hover small,
.brand-chip.is-active small {
  color: rgba(255, 255, 255, 0.6);
}

.catalog {
  padding-top: 70px;
}

.catalog__heading {
  max-width: 760px;
}

.catalog__tools {
  display: grid;
  grid-template-columns: minmax(260px, 1.55fr) repeat(4, minmax(130px, 0.65fr));
  gap: 10px;
  margin-top: 42px;
}

.catalog__tools input,
.catalog__tools select {
  width: 100%;
  height: 54px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
}

.catalog__tools select {
  padding: 0 38px 0 16px;
  cursor: pointer;
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  top: 17px;
  left: 17px;
  width: 20px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.7;
}

.search-field input {
  padding: 0 16px 0 49px;
}

.catalog__status {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 2px;
}

.catalog__status p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 2px 0;
}

.active-filters[hidden] { display: none; }

.active-filters button {
  min-height: 34px;
  padding: 7px 11px;
  color: var(--brown-800);
  background: rgba(155, 75, 45, 0.08);
  border: 1px solid rgba(155, 75, 45, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
}

.active-filters button:hover { background: rgba(155, 75, 45, 0.15); }
.active-filters button span { margin-left: 6px; font-size: 0.9rem; }

.clear-filters,
.clear-list {
  padding: 0;
  color: var(--tobacco);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(51, 31, 21, 0.1);
}

.product-card__art {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #f7e7bd;
  background: linear-gradient(135deg, #6c2e1d, #28140e 68%);
}

.product-card[data-tone="1"] .product-card__art { background: linear-gradient(135deg, #384233, #161c15 68%); }
.product-card[data-tone="2"] .product-card__art { background: linear-gradient(135deg, #76512b, #24180d 68%); }
.product-card[data-tone="3"] .product-card__art { background: linear-gradient(135deg, #43345c, #191520 68%); }
.product-card[data-tone="4"] .product-card__art { background: linear-gradient(135deg, #374c56, #121b20 68%); }

.product-card__art::before,
.product-card__art::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(230, 184, 95, 0.23);
  border-radius: 50%;
  content: "";
}

.product-card__art::before {
  width: 155px;
  height: 155px;
}

.product-card__art::after {
  width: 125px;
  height: 125px;
}

.product-card__monogram {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(230, 184, 95, 0.42);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.product-card__package {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.product-card__brand {
  margin-bottom: 9px;
  color: var(--tobacco);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card__line {
  min-height: 30px;
  margin: -3px 0 12px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 650;
  line-height: 1.35;
}

.product-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.15;
}

.product-card h3 a {
  text-decoration: none;
}

.product-card h3 a:hover {
  color: var(--tobacco);
}

.product-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.7rem;
}

.product-card__detail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin: -4px 0 17px;
  color: var(--tobacco);
  font-size: 0.67rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.product-card__details span:not(:last-child)::after {
  margin-left: 12px;
  content: "·";
}

.product-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-card__price strong,
.product-card__price small {
  display: block;
}

.product-card__price strong {
  font-size: 0.76rem;
}

.product-card__price small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.62rem;
}

.product-card__add {
  min-width: 104px;
  height: 36px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: var(--cream);
  background: var(--brown-900);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.product-card__add:hover {
  transform: scale(1.06);
  background: var(--tobacco);
}

.product-card__add.is-selected {
  color: var(--brown-950);
  background: var(--gold);
}

.catalog__more {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.empty-state {
  padding: 80px 30px;
  background: var(--cream);
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state > span {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--tobacco);
}

.empty-state h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.empty-state p {
  margin-bottom: 24px;
  color: var(--muted);
}

.pricing-note {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  max-width: 850px;
  margin: 55px auto 0;
  padding: 25px 28px;
  background: #eee6d8;
  border-left: 3px solid var(--tobacco);
}

.pricing-note__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--brown-800);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.pricing-note strong {
  font-family: var(--serif);
  font-size: 1.08rem;
}

.pricing-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.house-feature {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--brown-950);
}

.house-feature__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 660px;
}

.house-feature__image {
  position: relative;
  margin-left: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  overflow: hidden;
}

.house-feature__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--brown-950) 100%);
  content: "";
}

.house-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house-feature__image > span {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: max(30px, calc((100vw - min(1180px, calc(100vw - 40px))) / 2));
  padding: 8px 12px;
  color: var(--brown-950);
  background: var(--gold);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.house-feature__copy {
  align-self: center;
  padding: 70px 0 70px clamp(45px, 7vw, 100px);
}

.house-feature__copy .eyebrow,
.concierge .eyebrow {
  color: var(--gold);
}

.house-feature__lead {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.house-feature dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 36px 0;
  padding: 20px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.house-feature dl div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.house-feature dl div:not(:first-child) {
  padding-left: 20px;
}

.house-feature dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.house-feature dd {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.house-feature__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.concierge {
  color: var(--cream);
  background: var(--brown-800);
}

.concierge__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(55px, 9vw, 130px);
}

.concierge__intro > p:not(.eyebrow) {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.66);
}

.concierge__contact {
  margin-top: 44px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.concierge__contact small,
.concierge__contact a {
  display: block;
}

.concierge__contact small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concierge__contact a {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 1.8rem;
  text-decoration: none;
}

.lead-form {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.lead-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lead-form label em {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}

.lead-form__selection {
  min-height: 72px;
  margin: 22px 0;
  padding: 14px 16px;
  background: #eee6d8;
  border-left: 2px solid var(--tobacco);
}

.lead-form__selection > span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form__selection p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-bottom: 22px;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--tobacco);
}

.consent-field span {
  color: var(--muted);
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.form-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.form-status.is-error {
  color: #9f3429;
}

.form-status.is-success {
  color: #4e6b3c;
}

.visit {
  background: var(--cream);
}

.visit__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.visit address {
  margin-bottom: 28px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: normal;
  line-height: 1.6;
}

.visit__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.visit__map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #dad3c5;
  border: 14px solid var(--paper);
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(77, 70, 58, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 70, 58, 0.14) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: rotate(-7deg) scale(1.15);
}

.map-route {
  position: absolute;
  width: 130%;
  height: 18px;
  background: rgba(255, 255, 255, 0.7);
  border-block: 1px solid rgba(80, 72, 60, 0.18);
}

.map-route::after {
  position: absolute;
  top: 8px;
  width: 100%;
  border-top: 1px dashed #aaa08e;
  content: "";
}

.map-route--one {
  top: 42%;
  left: -15%;
  transform: rotate(-8deg);
}

.map-route--two {
  top: 25%;
  left: -4%;
  transform: rotate(67deg);
}

.map-pin {
  position: absolute;
  top: 47%;
  left: 58%;
  padding: 13px 18px 13px 42px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(41, 31, 24, 0.2);
  transform: translate(-50%, -50%);
}

.map-pin > span {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 16px;
  height: 16px;
  background: var(--tobacco);
  border: 4px solid rgba(155, 75, 45, 0.25);
  border-radius: 50%;
  background-clip: padding-box;
  transform: translateY(-50%);
}

.map-pin strong,
.map-pin small {
  display: block;
  line-height: 1.2;
}

.map-pin strong {
  font-family: var(--serif);
}

.map-pin small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.64rem;
}

.site-footer {
  padding-top: 70px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--brown-950);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.7fr 0.65fr 0.65fr;
  gap: 70px;
  padding-bottom: 65px;
}

.site-footer__brand img {
  width: 260px;
}

.site-footer__brand p {
  max-width: 390px;
  margin-top: 20px;
  font-size: 0.8rem;
}

.site-footer__top > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  padding-top: 18px;
}

.site-footer__top strong {
  margin-bottom: 9px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.site-footer__top a {
  font-size: 0.75rem;
  text-decoration: none;
}

.site-footer__top a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.66rem;
}

.site-footer__bottom p {
  margin: 0;
}

.age-gate {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--cream);
  background:
    linear-gradient(rgba(23, 16, 12, 0.9), rgba(23, 16, 12, 0.96)),
    url("assets/helmann-connecticut.jpg") center / cover;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(420px, 100%);
  padding: clamp(30px, 5vw, 46px);
  background: rgba(36, 21, 15, 0.96);
  border: 1px solid rgba(230, 184, 95, 0.35);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.age-gate__panel img {
  width: 220px;
  margin: 0 auto 28px;
}

.age-gate h2 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 7vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.age-gate__panel > p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.age-gate__actions {
  margin: 24px 0 14px;
}

.age-gate__actions .button {
  width: 100%;
}

.age-gate__exit {
  padding: 5px;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.65rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.drawer-backdrop {
  position: fixed;
  z-index: 70;
  inset: 0;
  background: rgba(23, 16, 12, 0.64);
  backdrop-filter: blur(3px);
}

.list-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(470px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(20, 10, 5, 0.2);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.list-drawer.is-open {
  transform: translateX(0);
}

.list-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--line);
}

.list-drawer__header .eyebrow {
  margin-bottom: 5px;
}

.list-drawer__header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 300;
}

.list-drawer__body {
  overflow: auto;
  padding: 10px 28px 30px;
}

.list-empty {
  display: grid;
  min-height: 300px;
  place-items: center;
  align-content: center;
  color: var(--muted);
  text-align: center;
}

.list-empty span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 15px;
  color: var(--tobacco);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.7rem;
}

.list-empty p {
  max-width: 250px;
  font-size: 0.78rem;
}

.list-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.list-item__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--brown-800);
  border-radius: 50%;
  font-family: var(--serif);
}

.list-item strong,
.list-item small {
  display: block;
}

.list-item b {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.68rem;
}

.list-item strong {
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.2;
}

.list-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
}

.list-item button {
  padding: 7px;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.2rem;
}

.list-item > .list-item__remove {
  align-self: start;
}

.list-item__quantity {
  display: inline-grid;
  grid-template-columns: 30px 34px 30px;
  align-items: center;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.list-item__quantity button {
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 1rem;
}

.list-item__quantity button:hover { background: var(--paper); }

.list-item__quantity em {
  color: var(--ink);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.list-drawer__footer {
  padding: 22px 28px 28px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.list-drawer__footer p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.cart-subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.cart-subtotal span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.cart-subtotal strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.button.is-disabled {
  opacity: 0.48;
  pointer-events: none;
}

.list-drawer__footer .button {
  width: 100%;
}

.clear-list {
  display: block;
  margin: 14px auto 0;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  max-width: min(370px, calc(100% - 44px));
  padding: 14px 18px;
  color: var(--cream);
  background: var(--brown-900);
  box-shadow: var(--shadow);
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-header__inner {
    grid-template-columns: 155px 1fr auto;
    gap: 18px;
  }

  .site-nav {
    gap: 16px;
  }

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

  .hero h1 {
    font-size: clamp(3.2rem, 7vw, 5rem);
  }

  .brand-chips {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .catalog__tools {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

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

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 700px);
  }

  html {
    scroll-padding-top: 80px;
  }

  .announcement {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    width: 145px;
  }

  .menu-button {
    order: -1;
    width: 38px;
    height: 38px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 8px;
    color: var(--cream);
    background: none;
    border: 0;
  }

  .menu-button > span:not(.sr-only) {
    width: 21px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-open .menu-button > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-button > span:nth-child(2) { opacity: 0; }
  .menu-open .menu-button > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .site-nav {
    position: absolute;
    z-index: 49;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    background: var(--brown-950);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--serif);
    font-size: 1.15rem;
    letter-spacing: 0;
  }

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

  .list-button {
    padding-left: 0;
    font-size: 0;
  }

  .list-button span {
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 72px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 13vw, 6.2rem);
  }

  .hero__visual {
    min-height: 490px;
  }

  .hero__image-wrap {
    inset: 0 calc((100vw - min(700px, calc(100vw - 32px))) / -2);
  }

  .hero__image-shade {
    background: linear-gradient(180deg, rgba(36, 21, 15, 0.25), rgba(23, 16, 12, 0.05));
  }

  .service-strip__grid {
    grid-template-columns: 1fr;
  }

  .service-strip article {
    min-height: 100px;
    padding: 22px 8px;
  }

  .service-strip article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .catalog__tools .search-field {
    grid-column: 1 / -1;
  }

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

  .house-feature__grid {
    grid-template-columns: 1fr;
  }

  .house-feature__image {
    min-height: 480px;
    margin: 0 calc((100vw - min(700px, calc(100vw - 32px))) / -2);
  }

  .house-feature__image::after {
    background: linear-gradient(180deg, transparent 65%, var(--brown-950) 100%);
  }

  .house-feature__copy {
    padding: 70px 0;
  }

  .concierge__grid,
  .visit__grid {
    grid-template-columns: 1fr;
  }

  .visit__map {
    min-height: 340px;
  }

  .site-footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 570px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand {
    width: 130px;
  }

  .hero__grid {
    padding-block: 58px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }

  .hero__lede {
    font-size: 0.98rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero__actions .button--text {
    justify-content: flex-start;
  }

  .hero__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero__meta span:not(:last-child)::after {
    display: none;
  }

  .hero__visual {
    min-height: 410px;
  }

  .hero__image-wrap {
    inset: 0 -14px;
  }

  .hero__card {
    min-width: 220px;
    padding: 14px 16px;
  }

  .hero__card--top {
    top: 14px;
    right: -2px;
  }

  .hero__card--bottom {
    right: auto;
    bottom: 14px;
    left: -2px;
  }

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

  .section-heading h2,
  .house-feature h2,
  .concierge h2,
  .visit h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

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

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

  .shop-path {
    min-height: 155px;
  }

  .brand-chip {
    min-height: 95px;
  }

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

  .catalog__tools .search-field {
    grid-column: auto;
  }

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

  .product-card__art {
    min-height: 210px;
  }

  .pricing-note {
    grid-template-columns: 1fr;
  }

  .house-feature__image {
    min-height: 380px;
    margin-inline: -14px;
  }

  .house-feature dl {
    grid-template-columns: 1fr;
  }

  .house-feature dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0 !important;
    border-right: 0 !important;
  }

  .house-feature dl div:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .house-feature dd {
    margin: 0;
  }

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

  .lead-form {
    padding: 24px 18px;
  }

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

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

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

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-block: 20px;
  }

}

/* Search-focused guide hub and article pages */
.guide-hub {
  padding-block: 100px 120px;
}

.guide-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 45px;
}

.guide-hub__grid > a {
  min-height: 360px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 32px;
  color: var(--cream);
  background: var(--brown-800);
  text-decoration: none;
  transition: transform 180ms ease;
}

.guide-hub__grid > a:nth-child(2) { background: #344237; }
.guide-hub__grid > a:nth-child(3) { background: #4c3426; }
.guide-hub__grid > a:hover { transform: translateY(-4px); }

.guide-hub__grid span {
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guide-hub__grid h3 {
  margin: auto 0 12px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.guide-hub__grid p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.guide-hub__grid strong {
  font-size: 0.68rem;
}

.guide-detail__hero {
  padding-block: 95px 105px;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 28%, rgba(230, 184, 95, 0.16), transparent 28%),
    repeating-radial-gradient(circle at 78% 28%, transparent 0 60px, rgba(230, 184, 95, 0.08) 61px 62px),
    var(--brown-900);
}

.guide-detail__hero .eyebrow {
  color: var(--gold);
}

.guide-detail__hero h1 {
  max-width: 900px;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.guide-detail__hero > .shell > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.55;
}

.guide-detail__body {
  max-width: 800px;
  padding-block: 90px 120px;
}

.guide-detail__body section:not(:last-of-type) {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.guide-detail__body h2 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.guide-detail__body section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.more-guides {
  padding-block: 95px 110px;
  border-top: 1px solid var(--line);
}

.more-guides > div:last-child {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.more-guides a {
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  text-decoration: none;
}

.more-guides a small {
  color: var(--tobacco);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.more-guides a strong {
  margin: auto 0 20px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1;
}

.more-guides a span {
  color: var(--tobacco);
  font-size: 0.68rem;
  font-weight: 800;
}

@media (max-width: 720px) {
  .guide-hub__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 570px) {
  .more-guides > div:last-child {
    grid-template-columns: 1fr;
  }
}

/* Sales merchandising and service confidence */
.merchandising,
.service-promises {
  padding-block: clamp(80px, 8vw, 118px);
}

.merchandising {
  background: var(--paper);
}

.merchandising--staff {
  background: #f7f2e9;
  border-block: 1px solid var(--line);
}

.merchandising .section-heading p {
  max-width: 650px;
}

.merchandising__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.product-card__art.has-image {
  background:
    radial-gradient(circle at 50% 45%, rgba(230, 184, 95, 0.18), transparent 38%),
    linear-gradient(145deg, #3b2117, #170d09);
}

.product-card__image {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 235px;
  margin: 25px auto 10px;
  object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(0, 0, 0, 0.38));
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-card__image {
  transform: translateY(-5px) scale(1.02);
}

.product-card__badge {
  position: absolute;
  z-index: 4;
  top: 15px;
  left: 15px;
  padding: 7px 10px;
  color: #2d180f;
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-card__art.has-image .product-card__package {
  background: rgba(20, 10, 6, 0.72);
}

.service-promises {
  color: var(--cream);
  background:
    radial-gradient(circle at 85% 15%, rgba(230, 184, 95, 0.14), transparent 27%),
    var(--brown-900);
}

.service-promises .eyebrow,
.service-promises .inline-link { color: var(--gold); }
.service-promises .inline-link { border-color: rgba(230, 184, 95, 0.5); }

.service-promises__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 45px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-promises__grid article {
  min-height: 280px;
  padding: 28px;
  background: rgba(24, 13, 9, 0.92);
}

.service-promises__grid span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.service-promises__grid h3 {
  margin: 72px 0 12px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.service-promises__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .merchandising__grid,
  .service-promises__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 570px) {
  .merchandising__grid,
  .service-promises__grid { grid-template-columns: 1fr; }
  .product-card__image { height: 205px; }
  .service-promises__grid article { min-height: 215px; }
  .service-promises__grid h3 { margin-top: 42px; }
}

@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;
  }
}

/* Product detail pages */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 24px;
  color: var(--muted);
  font-size: 0.7rem;
}

.breadcrumbs a {
  text-underline-offset: 4px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: center;
  padding-block: 45px 100px;
}

.product-detail__visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.65);
  background: linear-gradient(135deg, #6c2e1d, #28140e 68%);
  box-shadow: var(--shadow);
}

.product-detail__visual[data-tone="1"] { background: linear-gradient(135deg, #384233, #161c15 68%); }
.product-detail__visual[data-tone="2"] { background: linear-gradient(135deg, #76512b, #24180d 68%); }
.product-detail__visual[data-tone="3"] { background: linear-gradient(135deg, #43345c, #191520 68%); }
.product-detail__visual[data-tone="4"] { background: linear-gradient(135deg, #374c56, #121b20 68%); }

.product-detail__visual::before,
.product-detail__visual::after {
  position: absolute;
  z-index: -1;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(230, 184, 95, 0.2);
  border-radius: 50%;
  content: "";
}

.product-detail__visual::after {
  width: 50%;
}

.product-detail__package {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail__seal {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(230, 184, 95, 0.5);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 3.7rem;
}

.product-detail__image {
  position: relative;
  z-index: 1;
  width: min(88%, 620px);
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 30px 28px rgba(0, 0, 0, 0.32));
}

.product-detail__visual p {
  margin: 0;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail__content h1 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.product-detail__collection {
  margin-bottom: 32px;
  color: var(--muted);
}

.product-detail__price {
  padding: 22px 0;
  border-block: 1px solid var(--line);
}

.product-detail__price strong,
.product-detail__price span {
  display: block;
}

.product-detail__price strong {
  font-family: var(--serif);
  font-size: 1.5rem;
}

.product-detail__price span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.product-detail__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 32px;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-detail__facts div {
  padding: 15px;
  background: var(--paper);
}

.product-detail__facts dt,
.blend-table dt {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-detail__facts dd,
.blend-table dd {
  margin: 4px 0 0;
  font-family: var(--serif);
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail__note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.product-info {
  padding-block: 95px;
  background: var(--cream);
}

.product-info__grid,
.product-inquiry__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.product-info h2,
.product-inquiry h2,
.related-products h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.product-info__grid > div > p:last-child,
.product-inquiry__grid > div > p:last-child {
  color: var(--muted);
}

.blend-table {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.blend-table div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  padding: 18px 22px;
}

.blend-table div:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.blend-table dd {
  color: var(--muted);
}

.product-inquiry {
  padding-block: 95px;
  color: var(--cream);
  background: var(--brown-800);
}

.product-inquiry .eyebrow {
  color: var(--gold);
}

.compact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 30px;
  color: var(--ink);
  background: var(--paper);
}

.compact-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.7rem;
  font-weight: 800;
}

.compact-form label em {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.compact-form input[type="text"],
.compact-form input[type="email"],
.compact-form input[type="tel"] {
  width: 100%;
  height: 50px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 0;
}

.compact-form .consent-field,
.compact-form .button,
.compact-form .form-status {
  grid-column: 1 / -1;
}

.compact-form .form-status {
  margin: 0;
}

.related-products {
  padding-block: 100px 120px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.related-card {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(51, 31, 21, 0.1);
}

.related-card__mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--gold);
  background: var(--brown-800);
  border-radius: 50%;
  font-family: var(--serif);
}

.related-card__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.related-card small {
  margin-bottom: 7px;
  color: var(--tobacco);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.related-card strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.2;
}

.related-card > span:last-child {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.64rem;
}

.product-footer {
  padding-top: 0;
}

/* Collection, retention, and editorial modules */
.collection-preview,
.membership,
.journal,
.community,
.faq {
  padding-block: clamp(85px, 9vw, 130px);
}

.collection-preview {
  background: var(--paper);
}

.collection-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 45px;
}

.collection-tile {
  position: relative;
  min-height: 520px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  padding: 30px;
  color: var(--cream);
  background: var(--brown-800);
}

.collection-tile > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-tile--photo::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 16, 12, 0.02) 25%, rgba(23, 16, 12, 0.93) 100%);
  content: "";
}

.collection-tile--monteblanco {
  color: var(--ink);
  background: #e6d7bc;
}

.collection-tile--monteblanco::before {
  position: absolute;
  z-index: -1;
  top: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(91, 47, 32, 0.2);
  border-radius: 50%;
  content: "";
}

.collection-tile__monogram {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  color: var(--tobacco);
  border: 1px solid rgba(91, 47, 32, 0.35);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 5rem;
  transform: translateX(-50%);
}

.collection-tile--sampler {
  background: #2e382e;
}

.sampler-art {
  position: absolute;
  top: 45px;
  right: 20px;
  left: 20px;
  height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.sampler-art i {
  position: relative;
  width: 34px;
  height: 210px;
  display: block;
  background: linear-gradient(90deg, #74452e, #aa6c46 50%, #58301f);
  border-radius: 14px 14px 4px 4px;
  box-shadow: 5px 7px 12px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
}

.sampler-art i:nth-child(2) { height: 190px; transform: rotate(-2deg); }
.sampler-art i:nth-child(3) { height: 225px; transform: none; }
.sampler-art i:nth-child(4) { height: 200px; transform: rotate(3deg); }
.sampler-art i:nth-child(5) { height: 215px; transform: rotate(6deg); }

.sampler-art i::after {
  position: absolute;
  top: 45px;
  right: 0;
  left: 0;
  height: 30px;
  background: var(--gold);
  border-block: 2px solid #8c521e;
  content: "";
}

.collection-tile > div:last-child > span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-tile--monteblanco > div:last-child > span {
  color: var(--tobacco);
}

.collection-tile h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.collection-tile p {
  color: currentColor;
  opacity: 0.68;
  font-size: 0.76rem;
}

.collection-tile a {
  font-size: 0.7rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

.membership {
  background: var(--cream);
}

.membership__grid {
  display: grid;
  grid-template-columns: 0.45fr 1fr 1.05fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.membership__badge {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--gold);
  background: var(--brown-900);
  border: 8px double var(--gold);
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(51, 31, 21, 0.2);
}

.membership__badge span,
.membership__badge small {
  display: block;
}

.membership__badge span {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.membership__badge small {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.membership__copy h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.8vw, 4.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.membership__copy > p:last-of-type {
  color: var(--muted);
}

.membership__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.membership__copy li {
  position: relative;
  padding-left: 14px;
  color: var(--brown-800);
  font-size: 0.68rem;
  font-weight: 800;
}

.membership__copy li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--tobacco);
  border-radius: 50%;
  content: "";
}

.signup-form {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.signup-form > label:not(.consent-field) {
  display: block;
  margin-bottom: 14px;
}

.signup-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.67rem;
  font-weight: 800;
}

.signup-form input[type="text"],
.signup-form input[type="email"] {
  width: 100%;
  height: 50px;
  padding: 0 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}

.signup-form .button {
  width: 100%;
}

.journal {
  background: var(--paper);
}

.journal__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 16px;
  margin-top: 45px;
}

.journal-card {
  min-height: 440px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  padding: 32px;
  color: var(--cream);
  background: var(--brown-800);
  text-decoration: none;
  transition: transform 180ms ease;
}

.journal-card:hover {
  transform: translateY(-4px);
}

.journal-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 70% 15%, rgba(230, 184, 95, 0.22), transparent 30%),
    repeating-radial-gradient(circle at 75% 20%, transparent 0 34px, rgba(230, 184, 95, 0.11) 35px 36px),
    linear-gradient(145deg, rgba(23, 16, 12, 0.12), rgba(23, 16, 12, 0.9));
  content: "";
}

.journal-card--two { background: #344237; }
.journal-card--three { background: #4c3426; }

.journal-card > span {
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-card h3 {
  max-width: 430px;
  margin: 13px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.journal-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.journal-card strong {
  font-size: 0.7rem;
}

.community {
  color: var(--cream);
  background: var(--brown-950);
}

.community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.community__visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #2c1a13;
  border: 1px solid rgba(230, 184, 95, 0.2);
}

.community__visual > p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.93;
  text-align: center;
}

.community__rings,
.community__rings span {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(230, 184, 95, 0.2);
  border-radius: 50%;
}

.community__rings span:nth-child(1) { inset: 12%; }
.community__rings span:nth-child(2) { inset: 25%; }
.community__rings span:nth-child(3) { inset: 38%; }

.community__copy .eyebrow {
  color: var(--gold);
}

.community__copy h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.community__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.community__links {
  display: flex;
  gap: 24px;
  margin: 25px 0;
}

.community__links a {
  font-size: 0.72rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

.signup-form--inline {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 0;
  background: transparent;
  border: 0;
}

.signup-form--inline > label:not(.consent-field) {
  margin: 0;
}

.signup-form--inline input[type="email"] {
  height: 54px;
  color: var(--ink);
}

.signup-form--inline .button {
  width: auto;
}

.signup-form--inline .form-status {
  grid-column: 1 / -1;
}

.community__copy > small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.6rem;
}

.faq {
  background: var(--cream);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(55px, 9vw, 130px);
}

.faq__grid h2 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.faq__grid > div:first-child > p:last-child {
  color: var(--muted);
}

.faq__items {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  position: relative;
  padding: 22px 45px 22px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.12rem;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 21px;
  right: 7px;
  color: var(--tobacco);
  content: "+";
  font-family: var(--sans);
  font-size: 1.2rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 650px;
  padding: 0 45px 23px 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 950px) {
  .collection-preview__grid,
  .journal__grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection-tile:first-child,
  .journal-card:first-child {
    grid-column: 1 / -1;
  }

  .membership__grid {
    grid-template-columns: 0.45fr 1fr;
  }

  .membership__grid .signup-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .community__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 570px) {
  .collection-preview__grid,
  .journal__grid,
  .membership__grid {
    grid-template-columns: 1fr;
  }

  .collection-tile:first-child,
  .journal-card:first-child,
  .membership__grid .signup-form {
    grid-column: auto;
  }

  .collection-tile,
  .journal-card {
    min-height: 470px;
  }

  .membership__badge {
    width: 190px;
    margin-inline: auto;
  }

  .signup-form--inline {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .signup-form--inline .button {
    width: 100%;
  }

  .community__visual {
    min-height: 380px;
  }
}

/* Editorial and policy pages */
.content-hero {
  padding-block: clamp(90px, 12vw, 170px);
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 28%, rgba(230, 184, 95, 0.16), transparent 28%),
    repeating-radial-gradient(circle at 78% 28%, transparent 0 60px, rgba(230, 184, 95, 0.08) 61px 62px),
    var(--brown-900);
}

.content-hero--short {
  padding-block: 95px;
}

.content-hero .eyebrow {
  color: var(--gold);
}

.content-hero h1 {
  max-width: 850px;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.content-hero > .shell > p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
}

.content-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -34px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(35, 18, 11, 0.1);
}

.content-nav a {
  padding: 23px;
  font-family: var(--serif);
  text-align: center;
  text-decoration: none;
}

.content-nav a:not(:last-child) {
  border-right: 1px solid var(--line);
}

.content-nav a:hover {
  color: var(--tobacco);
}

.guide-article {
  padding-block: 100px;
}

.guide-section {
  display: grid;
  grid-template-columns: 120px minmax(0, 760px);
  justify-content: center;
  gap: 45px;
  scroll-margin-top: 110px;
}

.guide-section:not(:last-child) {
  margin-bottom: 110px;
  padding-bottom: 110px;
  border-bottom: 1px solid var(--line);
}

.guide-section__number {
  color: var(--tobacco);
  font-family: var(--serif);
  font-size: 4rem;
  font-style: italic;
}

.guide-section h2,
.policy-content h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.guide-section h3 {
  margin: 35px 0 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.guide-section p,
.policy-content p {
  color: var(--muted);
}

.guide-lede {
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.55;
}

.guide-callout {
  margin-top: 40px;
  padding: 25px 28px;
  background: var(--cream);
  border-left: 3px solid var(--tobacco);
}

.guide-callout strong {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.guide-callout p {
  margin: 5px 0 0;
  font-size: 0.78rem;
}

.content-cta {
  padding-block: 100px;
  color: var(--cream);
  background: var(--brown-800);
  text-align: center;
}

.content-cta .eyebrow {
  color: var(--gold);
}

.content-cta h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.content-cta p {
  color: rgba(255, 255, 255, 0.62);
}

.policy-status {
  padding-block: 18px;
  color: var(--brown-950);
  background: var(--gold);
}

.policy-status .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.policy-status strong {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.policy-status span {
  font-size: 0.72rem;
  font-weight: 700;
}

.policy-content {
  max-width: 900px;
  padding-block: 100px 120px;
}

.policy-content section:not(:last-of-type) {
  margin-bottom: 55px;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

@media (max-width: 670px) {
  .content-nav {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .content-nav a:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .guide-section__number {
    font-size: 2.6rem;
  }

  .policy-status .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

/* Brand collection pages */
.brand-page-hero {
  padding-block: 52px 58px;
  border-bottom: 1px solid var(--line);
}

.brand-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
  gap: clamp(35px, 7vw, 90px);
}

.brand-page-hero h1 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.brand-page-hero__grid > div:first-child > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
}

.brand-page-hero__seal {
  width: 180px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  color: var(--gold);
  background: var(--brown-800);
  border: 1px solid rgba(230, 184, 95, 0.4);
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(51, 31, 21, 0.2);
}

.brand-page-hero__seal > span {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.brand-page-hero__seal small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-listing {
  padding-block: 68px 110px;
}

.brand-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 45px;
}

.brand-line-group {
  margin-top: 54px;
}

.brand-line-group + .brand-line-group {
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.brand-line-group__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.brand-line-group__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.brand-line-group__heading span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
}

.brand-line-group .brand-list-grid {
  margin-top: 22px;
}

.brand-list-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(51, 31, 21, 0.1);
}

.brand-list-card__art {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--brown-800);
}

.brand-list-card__art::before,
.brand-list-card__art::after {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(230, 184, 95, 0.23);
  border-radius: 50%;
  content: "";
}

.brand-list-card__art::after {
  width: 90px;
  height: 90px;
}

.brand-list-card__art i {
  z-index: 2;
  font-family: var(--serif);
  font-size: 2rem;
  font-style: normal;
}

.brand-list-card__art > img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 16px 14px rgba(0, 0, 0, 0.28));
}

.brand-list-card__art small {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 7px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.54rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-list-card__body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 19px;
}

.brand-list-card__body > small {
  color: var(--tobacco);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-list-card__body strong {
  margin: 8px 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.2;
}

.brand-list-card__body em {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.64rem;
  font-style: normal;
}

.brand-list-card__body b {
  margin-top: auto;
  color: var(--tobacco);
  font-size: 0.64rem;
}

@media (max-width: 950px) {
  .brand-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .brand-page-hero__grid {
    grid-template-columns: 1fr;
  }

  .brand-page-hero__seal {
    width: 150px;
    margin-inline: auto;
  }

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

@media (max-width: 480px) {
  .brand-list-grid {
    grid-template-columns: 1fr;
  }
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--cream);
  background:
    radial-gradient(circle at 70% 20%, rgba(230, 184, 95, 0.16), transparent 30%),
    repeating-radial-gradient(circle at 70% 20%, transparent 0 60px, rgba(230, 184, 95, 0.08) 61px 62px),
    var(--brown-950);
  text-align: center;
}

.not-found > div {
  width: min(700px, 100%);
}

.not-found img {
  width: min(330px, 75vw);
  margin: 0 auto 45px;
}

.not-found .eyebrow {
  color: var(--gold);
}

.not-found h1 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.not-found > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.6);
}

.not-found > div > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

/* Local search landing page */
.location-hero {
  color: var(--cream);
  background: var(--brown-900);
}

.location-hero__grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(45px, 7vw, 95px);
}

.location-hero .eyebrow {
  color: var(--gold);
}

.location-hero h1 {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.5vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.location-hero__grid > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
}

.location-hero__grid > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.location-hero img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.location-details,
.location-services {
  padding-block: clamp(85px, 9vw, 130px);
}

.location-details {
  background: var(--cream);
}

.location-details__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.location-details h2,
.location-services h2 {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.location-details address {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: normal;
  line-height: 1.6;
}

.location-details dl {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.location-details dl div {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.location-details dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-details dd {
  margin: 0;
  font-family: var(--serif);
}

.location-services {
  background: var(--paper);
}

.location-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 45px;
  background: var(--line);
  border: 1px solid var(--line);
}

.location-services article {
  min-height: 330px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 35px;
  background: var(--white);
}

.location-services article > span {
  color: var(--tobacco);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
}

.location-services h3 {
  margin: auto 0 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.location-services article p {
  color: var(--muted);
  font-size: 0.76rem;
}

.location-services article a {
  color: var(--tobacco);
  font-size: 0.68rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

@media (max-width: 820px) {
  .location-hero__grid,
  .location-details__grid {
    grid-template-columns: 1fr;
    padding-block: 75px;
  }

  .location-hero img {
    height: 460px;
  }

  .location-services__grid {
    grid-template-columns: 1fr;
  }

  .location-services article {
    min-height: 260px;
  }
}

@media (max-width: 570px) {
  .location-hero img {
    height: 360px;
  }
}

@media (max-width: 820px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .product-detail__visual {
    min-height: 500px;
  }

  .product-info__grid,
  .product-inquiry__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 570px) {
  .breadcrumbs {
    overflow: hidden;
    white-space: nowrap;
  }

  .product-detail {
    padding-top: 20px;
  }

  .product-detail__visual {
    min-height: 380px;
  }

  .product-detail__seal {
    width: 118px;
    height: 118px;
    font-size: 3rem;
  }

  .product-detail__facts,
  .compact-form,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .compact-form .consent-field,
  .compact-form .button,
  .compact-form .form-status {
    grid-column: auto;
  }
}

/* Modern storefront experience */
.home-page {
  --shell: min(1240px, calc(100% - 48px));
  --paper: #f7f3ea;
  --cream: #ede4d5;
  --gold: #e8bd68;
  --line: rgba(52, 31, 20, 0.13);
  --shadow: 0 24px 70px rgba(31, 15, 8, 0.14);
  background:
    radial-gradient(circle at 8% 28%, rgba(200, 116, 67, 0.08), transparent 22%),
    var(--paper);
  font-size: 17px;
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--copper), var(--gold));
  box-shadow: 0 0 15px rgba(230, 184, 95, 0.5);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.home-page .button {
  min-height: 54px;
  padding-inline: 25px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(28, 13, 7, 0.08);
}

.home-page .button--text {
  border-radius: 0;
  box-shadow: none;
}

.home-page .button--primary {
  background: linear-gradient(135deg, #f0cd82, var(--gold));
  box-shadow: 0 12px 30px rgba(230, 184, 95, 0.19);
}

.home-page .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(28, 13, 7, 0.16);
}

.home-page .announcement {
  position: relative;
  z-index: 52;
  min-height: 38px;
  background: #100a07;
}

.home-page .site-header {
  background: rgba(23, 16, 12, 0.82);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.home-page .site-header.is-scrolled {
  background: rgba(18, 11, 8, 0.94);
  box-shadow: 0 12px 36px rgba(13, 7, 4, 0.22);
}

.home-page .site-header__inner {
  min-height: 76px;
  grid-template-columns: 180px minmax(320px, 1fr) auto;
  gap: 25px;
}

.home-page .site-nav {
  width: var(--shell);
  min-height: 44px;
  justify-content: flex-start;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

.home-page .site-nav a {
  padding: 7px 3px;
  font-size: 0.75rem;
}

.home-page .site-nav a.is-active {
  color: var(--white);
}

.home-page .site-nav a.is-active::after {
  transform: scaleX(1);
}

.home-page .list-button {
  padding: 8px 8px 8px 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.home-page .hero.hero--retail {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--brown-950);
}

.home-page .hero.hero--retail::before { display: none; }

.hero__backdrop,
.hero__retail-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__backdrop {
  object-fit: cover;
  object-position: center 54%;
}

.hero__retail-shade {
  background:
    linear-gradient(90deg, rgba(18, 10, 7, 0.98) 0%, rgba(24, 13, 9, 0.94) 34%, rgba(24, 13, 9, 0.52) 63%, rgba(14, 8, 5, 0.16) 100%),
    linear-gradient(0deg, rgba(14, 8, 5, 0.46), transparent 55%);
}

.hero__retail-content {
  position: relative;
  z-index: 2;
  padding-block: 76px 66px;
}

.home-page .hero.hero--retail .eyebrow {
  color: var(--gold);
}

.home-page .hero.hero--retail h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.92;
}

.home-page .hero.hero--retail h1::after { display: none; }

.home-page .hero.hero--retail .hero__lede {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.home-page .hero.hero--retail .hero__actions {
  margin-top: 32px;
}

.hero__brand-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 54px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__brand-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.hero__brand-links a:hover { color: var(--gold); }

.quick-shop {
  background: #ede3d3;
  border-bottom: 1px solid var(--line);
}

.quick-shop__grid {
  min-height: 108px;
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  align-items: stretch;
}

.quick-shop__grid > span {
  align-self: center;
  padding-right: 28px;
  color: var(--tobacco);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-shop a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px 28px;
  border-left: 1px solid var(--line);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.quick-shop strong,
.quick-shop small { display: block; }

.quick-shop strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
}

.quick-shop small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.66rem;
}

.quick-shop a:hover {
  color: var(--cream);
  background: var(--brown-800);
}

.quick-shop a:hover small { color: rgba(255, 255, 255, 0.62); }

.home-page .hero {
  min-height: min(810px, calc(100vh - 115px));
  background:
    radial-gradient(circle at 17% 20%, rgba(200, 116, 67, 0.28), transparent 31%),
    linear-gradient(120deg, #21120c 0%, #160e0a 64%, #0e0906 100%);
}

.home-page .hero::before {
  top: -54%;
  left: -17%;
  width: 72vw;
  height: 1180px;
  border-color: rgba(230, 184, 95, 0.11);
  box-shadow: 0 0 0 80px rgba(230, 184, 95, 0.025), 0 0 0 160px rgba(230, 184, 95, 0.018);
}

.home-page .hero__texture {
  opacity: 0.42;
  background-image:
    linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.035) 50%, transparent 76%),
    radial-gradient(circle at 82% 18%, rgba(230, 184, 95, 0.15), transparent 25%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
}

.home-page .hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  gap: clamp(55px, 7vw, 110px);
  padding-block: 76px 118px;
}

.home-page .hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 6.3vw, 7rem);
  line-height: 0.9;
}

.home-page .hero h1::after {
  width: 68px;
  height: 3px;
  display: block;
  margin-top: 30px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.home-page .hero__lede {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.home-page .hero__visual {
  min-height: 570px;
  align-self: center;
  perspective: 1100px;
}

.home-page .hero__image-wrap {
  inset: 14px 8px 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px 8px 34px 8px;
  box-shadow: 0 38px 85px rgba(0, 0, 0, 0.42);
  transform: rotateY(-2deg) rotateZ(0.5deg);
}

.home-page .hero__image-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px 4px 24px 4px;
  content: "";
  pointer-events: none;
}

.home-page .hero__image-wrap img {
  transform: scale(1.025);
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-page .hero:hover .hero__image-wrap img {
  transform: scale(1.065);
}

.home-page .hero__image-shade {
  background:
    linear-gradient(180deg, rgba(17, 10, 7, 0.06), rgba(17, 10, 7, 0.38)),
    linear-gradient(90deg, rgba(36, 21, 15, 0.38), transparent 45%);
}

.home-page .hero__card {
  min-width: 260px;
  padding: 18px 21px;
  background: rgba(250, 246, 237, 0.88);
  border-radius: 16px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  animation: hero-float 6s ease-in-out infinite;
}

.home-page .hero__card--top {
  top: -1%;
  right: -2%;
}

.home-page .hero__card--bottom {
  right: auto;
  bottom: -1%;
  left: -5%;
  animation-delay: -3s;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.home-page .service-strip {
  z-index: 4;
  padding-bottom: 0;
  background: transparent;
  border: 0;
}

.home-page .service-strip__grid {
  margin-top: -54px;
  background: rgba(250, 247, 240, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  box-shadow: 0 24px 65px rgba(39, 21, 12, 0.16);
  backdrop-filter: blur(14px);
}

.home-page .service-strip article {
  min-height: 132px;
  padding: 30px 38px;
  transition: background 180ms ease;
}

.home-page .service-strip article:first-child { border-radius: 20px 0 0 20px; }
.home-page .service-strip article:last-child { border-radius: 0 20px 20px 0; }
.home-page .service-strip article:hover { background: rgba(255, 255, 255, 0.62); }

.home-page .service-strip article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: none;
  background: rgba(155, 75, 45, 0.09);
  border-radius: 50%;
  font-style: normal;
}

.home-page .service-strip strong { font-size: 1.12rem; }
.home-page .service-strip p { font-size: 0.8rem; }

.home-page .brand-browser {
  padding-top: clamp(75px, 8vw, 115px);
  padding-bottom: 48px;
}

.home-page .section-heading h2,
.home-page .house-feature h2,
.home-page .concierge h2,
.home-page .visit h2 {
  font-size: clamp(3rem, 5.3vw, 5rem);
}

.home-page .brand-chips {
  gap: 12px;
  background: transparent;
  border: 0;
}

.home-page .brand-chip {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.75);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(51, 31, 21, 0.055);
  transition: transform 200ms ease, color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.home-page .brand-chip::before {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(155, 75, 45, 0.14);
  border-radius: 50%;
  content: "";
}

.home-page .brand-chip:hover,
.home-page .brand-chip.is-active {
  background: linear-gradient(145deg, #4a291d, #25140e);
  box-shadow: 0 18px 42px rgba(35, 18, 11, 0.18);
  transform: translateY(-5px);
}

.home-page .catalog {
  padding-top: 82px;
  background:
    linear-gradient(180deg, transparent, rgba(237, 228, 213, 0.42) 18%, rgba(237, 228, 213, 0.18));
}

.home-page .catalog__heading { max-width: 820px; }

.home-page .catalog__tools {
  position: sticky;
  z-index: 15;
  top: 98px;
  gap: 10px;
  margin: 46px 0 6px;
  padding: 12px;
  background: rgba(247, 243, 234, 0.88);
  border: 1px solid rgba(64, 39, 24, 0.11);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(42, 24, 14, 0.1);
  backdrop-filter: blur(18px);
}

.home-page .catalog__tools input,
.home-page .catalog__tools select {
  height: 58px;
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(51, 31, 21, 0.13);
  border-radius: 12px;
  font-size: 0.84rem;
}

.home-page .search-field svg { top: 19px; }

.home-page .catalog__status {
  min-height: 66px;
  padding-inline: 12px;
}

.home-page .catalog__status p { font-size: 0.82rem; }

.home-page .product-grid {
  gap: 22px;
}

.home-page .product-card {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.9);
  border-color: rgba(51, 31, 21, 0.11);
  border-radius: 18px;
  box-shadow: 0 9px 30px rgba(47, 28, 17, 0.065);
}

.home-page .product-card:hover {
  border-color: rgba(155, 75, 45, 0.3);
  box-shadow: 0 25px 55px rgba(45, 25, 14, 0.16);
  transform: translateY(-8px);
}

.home-page .product-card__art {
  min-height: 230px;
  background: linear-gradient(145deg, #6e3322, #24130d 72%);
}

.home-page .product-card__art::before {
  width: 182px;
  height: 182px;
  border-color: rgba(230, 184, 95, 0.2);
  box-shadow: 0 0 0 22px rgba(230, 184, 95, 0.025);
}

.home-page .product-card__art::after {
  width: 148px;
  height: 148px;
}

.product-card__cigar {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  transform: rotate(-18deg) translate(58px, 4px);
}

.product-card__cigar i {
  position: absolute;
  top: 54px;
  left: 48%;
  width: 24px;
  height: 170px;
  background: linear-gradient(90deg, #512416, #bd7650 48%, #512416);
  border-radius: 11px 11px 4px 4px;
  box-shadow: 5px 7px 15px rgba(0, 0, 0, 0.28);
}

.product-card__cigar i::after {
  position: absolute;
  top: 45px;
  right: 0;
  left: 0;
  height: 22px;
  background: var(--gold);
  border-block: 2px solid rgba(83, 46, 17, 0.7);
  content: "";
}

.product-card__cigar i:nth-child(2) { left: 60%; transform: translateY(-9px); }
.product-card__cigar i:nth-child(3) { left: 72%; transform: translateY(7px); }

.home-page .product-card__monogram {
  z-index: 1;
  width: 96px;
  height: 96px;
  background: rgba(16, 8, 5, 0.44);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(5px);
}

.home-page .product-card__package {
  z-index: 2;
  padding: 7px 10px;
  background: rgba(9, 5, 3, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.home-page .product-card__body { padding: 24px; }
.home-page .product-card h3 { font-size: 1.32rem; }
.home-page .product-card__details { font-size: 0.76rem; }
.home-page .product-card__detail { font-size: 0.72rem; }

.home-page .product-card__add {
  width: auto;
  min-width: 108px;
  height: 42px;
  padding-inline: 14px;
  box-shadow: 0 7px 18px rgba(36, 21, 15, 0.2);
}

.home-page .pricing-note {
  max-width: 900px;
  border: 1px solid rgba(155, 75, 45, 0.16);
  border-left: 4px solid var(--tobacco);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(49, 28, 16, 0.06);
}

.home-page .house-feature__grid { min-height: 720px; }

.home-page .house-feature__image img {
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-page .house-feature:hover .house-feature__image img { transform: scale(1.04); }

.home-page .house-feature__image > span,
.home-page .collection-tile > div:last-child > span {
  border-radius: 999px;
}

.home-page .collection-preview__grid,
.home-page .journal__grid { gap: 22px; }

.home-page .collection-tile,
.home-page .journal-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(38, 20, 12, 0.12);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.home-page .collection-tile:hover,
.home-page .journal-card:hover {
  box-shadow: 0 28px 64px rgba(38, 20, 12, 0.2);
  transform: translateY(-8px);
}

.home-page .lead-form,
.home-page .signup-form {
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.17);
}

.home-page .lead-form input[type="text"],
.home-page .lead-form input[type="email"],
.home-page .lead-form input[type="tel"],
.home-page .signup-form input[type="text"],
.home-page .signup-form input[type="email"] {
  height: 56px;
  border-radius: 11px;
}

.home-page .lead-form__selection { border-radius: 10px; }

.home-page .membership__badge {
  position: relative;
  box-shadow: 0 22px 60px rgba(51, 31, 21, 0.24), 0 0 0 12px rgba(155, 75, 45, 0.05);
}

.home-page .community__visual,
.home-page .visit__map {
  border-radius: 24px;
  box-shadow: 0 30px 75px rgba(19, 10, 6, 0.28);
}

.home-page .community__rings { animation: ring-breathe 8s ease-in-out infinite; }

@keyframes ring-breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.72; }
  50% { transform: scale(1.04); opacity: 1; }
}

.home-page .faq details {
  padding-inline: 20px;
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  border-radius: 12px;
  transition: background 180ms ease, border-color 180ms ease;
}

.home-page .faq details[open] {
  background: rgba(255, 253, 248, 0.72);
  border-color: var(--line);
}

.back-to-top {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(36, 21, 15, 0.92);
  border: 1px solid rgba(230, 184, 95, 0.3);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(24, 12, 6, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--tobacco); }

.has-motion .reveal-on-scroll {
  opacity: 0.86;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.has-motion .reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.has-motion .home-page .product-card {
  animation: product-card-in 360ms both cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-delay: calc(min(var(--card-index), 7) * 28ms);
}

@keyframes product-card-in {
  from { transform: translateY(12px); }
  to { transform: translateY(0); }
}

@media (max-width: 1050px) {
  .home-page .site-nav {
    padding-inline: 7px;
  }

  .home-page .site-header__inner {
    grid-template-columns: 155px minmax(260px, 1fr) auto;
    gap: 16px;
  }

  .home-page .hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: 42px;
  }

  .home-page .product-grid { gap: 18px; }
}

@media (max-width: 820px) {
  .home-page { --shell: min(100% - 32px, 700px); }

  .home-page .site-header__inner {
    min-height: 124px;
    grid-template-columns: 42px 1fr 42px;
    grid-template-areas:
      "menu brand cart"
      "search search search";
    gap: 7px 12px;
    padding-block: 8px 10px;
  }

  .home-page .brand { grid-area: brand; justify-self: center; }
  .home-page .menu-button { grid-area: menu; order: initial; }
  .home-page .header-search { grid-area: search; }
  .home-page .list-button { grid-area: cart; justify-self: end; padding: 7px; }

  .home-page .header-search input,
  .home-page .header-search button { height: 43px; }

  .home-page .header-search svg { top: 13px; }

  .home-page .site-nav {
    width: auto;
    padding: 16px;
    background: rgba(23, 16, 12, 0.98);
    border: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 22px 45px rgba(12, 6, 3, 0.28);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .home-page.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .home-page .hero.hero--retail {
    min-height: 560px;
  }

  .home-page .hero.hero--retail h1 {
    max-width: 620px;
    font-size: clamp(3.5rem, 11.5vw, 5.3rem);
  }

  .hero__backdrop { object-position: 62% 54%; }
  .hero__retail-shade { background: linear-gradient(90deg, rgba(18, 10, 7, 0.98), rgba(20, 11, 8, 0.8) 72%, rgba(14, 8, 5, 0.42)); }
  .hero__retail-content { padding-block: 64px 56px; }

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

  .quick-shop__grid > span {
    grid-column: 1 / -1;
    padding: 16px 0 10px;
  }

  .quick-shop a {
    min-height: 92px;
    padding: 18px 20px;
    border-top: 1px solid var(--line);
  }

  .home-page .hero {
    min-height: auto;
  }

  .home-page .hero__grid {
    grid-template-columns: 1fr;
    gap: 62px;
    padding-block: 78px 108px;
  }

  .home-page .hero h1 { font-size: clamp(4rem, 12.7vw, 6.4rem); }
  .home-page .hero__visual { min-height: 510px; }
  .home-page .hero__image-wrap { inset: 0; }

  .home-page .service-strip__grid { margin-top: -48px; }

  .home-page .service-strip article:first-child { border-radius: 20px 20px 0 0; }
  .home-page .service-strip article:last-child { border-radius: 0 0 20px 20px; }

  .home-page .catalog__tools {
    top: 82px;
  }
}

@media (max-width: 570px) {
  .home-page {
    --shell: calc(100% - 28px);
    font-size: 16px;
  }

  .home-page .hero__grid { padding-block: 62px 94px; }
  .home-page .hero h1 { font-size: clamp(3.55rem, 16.5vw, 5.5rem); }
  .home-page .hero__visual { min-height: 420px; }
  .home-page .hero__image-wrap { border-radius: 25px 7px 25px 7px; }
  .home-page .hero__image-wrap::before { inset: 12px; }

  .home-page .hero__card {
    min-width: 218px;
    max-width: calc(100% - 22px);
  }

  .home-page .hero.hero--retail {
    min-height: 570px;
  }

  .home-page .hero.hero--retail h1 {
    font-size: clamp(3.05rem, 14.5vw, 4.6rem);
  }

  .home-page .hero.hero--retail .hero__actions {
    align-items: stretch;
    flex-direction: row;
  }

  .home-page .hero.hero--retail .hero__actions .button {
    flex: 1;
    padding-inline: 14px;
  }

  .hero__brand-links {
    gap: 9px 18px;
    margin-top: 38px;
  }

  .quick-shop a { border-left: 0; }
  .quick-shop a:nth-of-type(even) { border-left: 1px solid var(--line); }

  .home-page .service-strip article { padding: 23px 22px; }

  .home-page .brand-chips { gap: 10px; }
  .home-page .brand-chip { min-height: 108px; }

  .home-page .catalog__tools {
    position: static;
    padding: 10px;
  }

  .home-page .product-grid { gap: 18px; }
  .home-page .product-card__art { min-height: 235px; }

  .home-page .collection-tile,
  .home-page .journal-card,
  .home-page .lead-form,
  .home-page .signup-form,
  .home-page .community__visual,
  .home-page .visit__map { border-radius: 16px; }

  .back-to-top {
    right: 15px;
    bottom: 15px;
  }
}

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

/* Searchable catalog mega menu */
.nav-mega-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 3px;
  color: rgba(255, 255, 255, 0.78);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-mega-trigger::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-mega-trigger:hover,
.nav-mega-trigger[aria-expanded="true"] {
  color: var(--white);
}

.nav-mega-trigger:hover::after,
.nav-mega-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-mega-trigger svg {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.nav-mega-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  z-index: 55;
  top: calc(100% + 1px);
  left: 50%;
  width: min(1240px, calc(100vw - 32px));
  color: var(--ink);
  background: #fbf8f1;
  border: 1px solid rgba(230, 184, 95, 0.32);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 35px 90px rgba(19, 9, 4, 0.38);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate(-50%, -12px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 180ms ease;
}

.mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.mega-menu::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tobacco), var(--gold), var(--tobacco));
  content: "";
}

.mega-menu__shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  max-height: min(710px, calc(100vh - 136px));
}

.mega-menu__rail {
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px;
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 80%, rgba(200, 116, 67, 0.2), transparent 42%),
    #21130e;
}

.mega-menu__label {
  margin-bottom: 13px;
  color: var(--tobacco);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mega-menu__rail .mega-menu__label {
  color: var(--gold);
}

.mega-menu__rail > div:first-child > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, padding-left 160ms ease;
}

.mega-menu__rail > div:first-child > a:hover,
.mega-menu__rail > div:first-child > a.is-featured {
  padding-left: 17px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 9px;
}

.mega-menu__rail > div:first-child > a span {
  font-family: var(--serif);
  font-size: 0.92rem;
}

.mega-menu__rail > div:first-child > a small {
  max-width: 92px;
  color: rgba(255, 255, 255, 0.39);
  font-size: 0.56rem;
  line-height: 1.35;
  text-align: right;
}

.mega-menu__rail-links {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.mega-menu__rail-links a {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
}

.mega-menu__rail-links a:hover { color: var(--gold); }

.mega-menu__feature {
  position: relative;
  min-height: 142px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  margin-top: auto;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(180deg, transparent, rgba(15, 8, 5, 0.9)),
    url("assets/helmann-connecticut.jpg") center 54% / cover;
  border: 1px solid rgba(230, 184, 95, 0.2);
  border-radius: 14px;
  text-decoration: none;
}

.mega-menu__feature span,
.mega-menu__feature strong,
.mega-menu__feature small { display: block; }

.mega-menu__feature span {
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mega-menu__feature strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.mega-menu__feature small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.58rem;
  line-height: 1.35;
}

.mega-menu__directory {
  min-width: 0;
  overflow-y: auto;
  padding: 30px 34px 20px;
  background:
    radial-gradient(circle at 96% 5%, rgba(230, 184, 95, 0.13), transparent 25%),
    #fbf8f1;
  scrollbar-color: rgba(91, 47, 32, 0.3) transparent;
}

.mega-menu__top {
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) minmax(260px, 1.35fr) auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.mega-menu__top .mega-menu__label { margin-bottom: 5px; }

.mega-menu__top h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.mega-menu__search {
  position: relative;
  display: block;
}

.mega-menu__search svg {
  position: absolute;
  top: 15px;
  left: 16px;
  width: 19px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.7;
}

.mega-menu__search input {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 46px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
}

.mega-menu__search input:focus {
  border-color: var(--tobacco);
  box-shadow: 0 0 0 4px rgba(155, 75, 45, 0.1);
}

.mega-menu__close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 300;
}

.mega-menu__close:hover {
  color: var(--white);
  background: var(--brown-800);
}

.mega-menu__status {
  padding: 13px 1px 11px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.mega-menu__column {
  min-width: 0;
}

.mega-brand-group + .mega-brand-group {
  margin-top: 17px;
}

.mega-brand-group h3 {
  margin-bottom: 6px;
  color: var(--tobacco);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-brand-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 29px;
  padding: 4px 8px;
  color: var(--brown-900);
  border-radius: 7px;
  font-size: 0.72rem;
  line-height: 1.25;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

.mega-brand-group a:hover,
.mega-brand-group a:focus-visible {
  color: var(--tobacco);
  background: rgba(155, 75, 45, 0.075);
  transform: translateX(3px);
}

.mega-brand-group a small {
  min-width: 24px;
  padding: 3px 5px;
  color: var(--muted);
  background: rgba(51, 31, 21, 0.055);
  border-radius: 999px;
  font-size: 0.55rem;
  text-align: center;
}

.mega-menu__empty {
  min-height: 240px;
  place-items: center;
  align-content: center;
  color: var(--muted);
  text-align: center;
}

.mega-menu__empty:not([hidden]) { display: grid; }
.mega-menu__empty strong { color: var(--ink); font-family: var(--serif); font-size: 1.4rem; }
.mega-menu__empty span { margin-top: 4px; font-size: 0.72rem; }

.mega-menu__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 19px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.mega-menu__footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.63rem;
}

.mega-menu__footer a {
  color: var(--tobacco);
  font-size: 0.67rem;
  font-weight: 900;
  text-decoration: none;
}

.mega-menu-scrim {
  position: fixed;
  z-index: 45;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(15, 8, 5, 0.55);
  border: 0;
  cursor: default;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  backdrop-filter: blur(3px);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mega-menu-open .mega-menu-scrim {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

@media (max-width: 1050px) and (min-width: 821px) {
  .mega-menu__shell { grid-template-columns: 235px minmax(0, 1fr); }
  .mega-menu__rail { padding-inline: 19px; }
  .mega-menu__directory { padding-inline: 25px; }
  .mega-menu__columns { gap: 18px; }
  .mega-brand-group a { font-size: 0.67rem; }
}

@media (max-width: 820px) {
  .nav-mega-trigger {
    width: 100%;
    min-height: 53px;
    justify-content: space-between;
    padding: 15px 10px;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--serif);
    font-size: 1.15rem;
    letter-spacing: 0;
    text-align: left;
  }

  .nav-mega-trigger::after { display: none; }
  .nav-mega-trigger svg { width: 12px; margin-right: 3px; }

  .home-page .site-nav {
    max-height: calc(100vh - 124px);
    justify-content: flex-start;
    overflow-y: auto;
  }

  .mega-menu {
    position: static;
    width: 100%;
    max-height: 0;
    flex: none;
    background: #f7f2e8;
    border: 0;
    border-radius: 0 0 14px 14px;
    box-shadow: none;
    opacity: 1;
    overflow: hidden;
    transform: none;
    transition: max-height 300ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 300ms ease;
  }

  .mega-menu.is-open {
    max-height: 4000px;
    overflow: visible;
    transform: none;
  }

  .mega-menu::before { display: none; }

  .mega-menu__shell {
    display: block;
    max-height: none;
  }

  .mega-menu__rail {
    padding: 19px;
  }

  .mega-menu__rail > div:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .mega-menu__rail > div:first-child .mega-menu__label {
    grid-column: 1 / -1;
  }

  .mega-menu__rail > div:first-child > a {
    min-height: 52px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
  }

  .mega-menu__rail > div:first-child > a small { display: none; }
  .mega-menu__rail-links { grid-template-columns: 1fr 1fr; }
  .mega-menu__feature { display: none; }

  .mega-menu__directory {
    overflow: visible;
    padding: 22px 19px 18px;
  }

  .mega-menu__top {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .mega-menu__search { grid-column: 1 / -1; grid-row: 2; }
  .mega-menu__close { grid-column: 2; grid-row: 1; }
  .mega-menu__columns { grid-template-columns: 1fr 1fr; gap: 24px; }
  .mega-menu__footer { align-items: flex-start; flex-direction: column; }

  .mega-menu-scrim { display: none; }
}

@media (max-width: 570px) {
  .mega-menu__rail > div:first-child,
  .mega-menu__columns { grid-template-columns: 1fr; }

  .mega-menu__column:not(:first-child) { margin-top: 15px; }
  .mega-brand-group a { min-height: 34px; font-size: 0.78rem; }
}

/* Dedicated cigar catalog */
.home-page .merchandising__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-page .site-nav > a.is-active {
  color: var(--white);
}

.catalog-page .site-nav > a.is-active::after {
  transform: scaleX(1);
}

.catalog-hero {
  padding-block: clamp(70px, 8vw, 115px);
  color: var(--cream);
  background:
    radial-gradient(circle at 85% 28%, rgba(230, 184, 95, 0.18), transparent 26%),
    repeating-radial-gradient(circle at 85% 28%, transparent 0 70px, rgba(230, 184, 95, 0.055) 71px 72px),
    var(--brown-900);
}

.catalog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.7fr);
  align-items: end;
  gap: 70px;
}

.catalog-hero .eyebrow { color: var(--gold); }

.catalog-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.catalog-hero__grid > div > p:last-child {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.75;
}

.catalog-hero dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.catalog-hero dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.catalog-hero dt {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.catalog-hero dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog--page {
  padding-block: clamp(85px, 9vw, 135px);
}

.catalog-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 42px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(45, 26, 18, 0.07);
}

.catalog-filters label {
  min-width: 0;
}

.catalog-filters label > span:not(.sr-only) {
  display: block;
  margin: 0 0 7px 3px;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.catalog-filters input,
.catalog-filters select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.73rem;
  outline: none;
}

.catalog-filters input:focus,
.catalog-filters select:focus {
  border-color: var(--tobacco);
  box-shadow: 0 0 0 4px rgba(155, 75, 45, 0.1);
}

.catalog-filters__search {
  grid-column: span 2;
  align-self: end;
}

.catalog-filters .search-field svg {
  top: auto;
  bottom: 15px;
}

.catalog-filters .search-field input {
  padding-left: 44px;
}

.filter-toggle {
  display: none;
  margin-top: 28px;
}

.filter-toggle span {
  min-width: 24px;
  margin-left: 8px;
  padding: 3px 7px;
  color: var(--cream);
  background: var(--brown-900);
  border-radius: 999px;
  font-size: 0.65rem;
}

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

.catalog-page .product-card__body {
  padding: 22px;
}

.catalog-page .product-card__image {
  height: 220px;
}

@media (max-width: 1120px) {
  .home-page .merchandising__grid,
  .catalog-page__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-filters { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .catalog-hero__grid { grid-template-columns: 1fr; gap: 42px; }
  .catalog-hero dl { max-width: 560px; }
  .filter-toggle { display: inline-flex; }
  .catalog-filters {
    max-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
    padding-block: 0;
    border-width: 0;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    transition: max-height 300ms ease, opacity 200ms ease, padding 300ms ease, border-width 300ms ease;
  }
  .catalog-filters.is-open {
    max-height: 1200px;
    padding-block: 18px;
    border-width: 1px;
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .home-page .merchandising__grid,
  .catalog-page__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 570px) {
  .home-page .merchandising__grid,
  .catalog-page__grid,
  .catalog-filters { grid-template-columns: 1fr; }
  .catalog-filters__search { grid-column: auto; }
  .catalog-hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .catalog-page .product-card__image { height: 210px; }
}

/* Product-first merchandising: official logos, horizontal cigars, and richer PDPs */
.home-page .brand-chip {
  min-height: 150px;
  grid-template-rows: 72px auto;
  padding: 22px 16px 18px;
  color: var(--cream);
  background: linear-gradient(145deg, #3d241a, #20130e);
  border-color: rgba(230, 184, 95, 0.24);
}

.home-page .brand-chip img {
  width: min(90%, 170px);
  height: 68px;
  object-fit: contain;
  transition: transform 200ms ease;
}

.home-page .brand-chip:hover,
.home-page .brand-chip.is-active {
  color: var(--cream);
  background: linear-gradient(145deg, #5a3222, #2b170f);
  border-color: rgba(230, 184, 95, 0.5);
}

.home-page .brand-chip:hover img { transform: scale(1.055); }
.home-page .brand-chip:hover small,
.home-page .brand-chip.is-active small,
.home-page .brand-chip small { color: rgba(255, 255, 255, 0.62); }

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

.product-card__art.has-image {
  min-height: 255px;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(230, 184, 95, 0.18), transparent 48%),
    linear-gradient(145deg, #3b2117, #170d09);
}

.product-card__image,
.catalog-page .product-card__image,
.home-page .product-card__image {
  position: absolute;
  top: 53%;
  left: 50%;
  width: auto;
  height: clamp(360px, 40vw, 540px);
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
}

.product-card:hover .product-card__image {
  transform: translate(-50%, -54%) rotate(90deg) scale(1.035);
}

.product-card h3 { font-size: clamp(1.28rem, 2vw, 1.55rem); }
.product-card__details { font-size: 0.75rem; }

.product-detail {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  align-items: start;
}

.product-detail__visual {
  min-height: 720px;
  grid-template-rows: minmax(320px, 1.08fr) minmax(255px, 0.92fr);
  align-content: stretch;
  gap: 14px;
  padding: 64px 18px 18px;
}

.product-detail__cigar-stage,
.product-detail__box-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  justify-self: stretch;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.product-detail__cigar-stage {
  min-height: 320px;
  background: rgba(0, 0, 0, 0.12);
}

.product-detail__box-stage {
  min-height: 255px;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(237, 228, 213, 0.95));
}

.product-detail__cigar-stage > span,
.product-detail__box-stage > span {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail__box-stage > span { color: var(--muted); }

.product-detail__image {
  position: absolute;
  top: 54%;
  left: 50%;
  width: auto;
  height: clamp(420px, 46vw, 600px);
  max-width: none;
  max-height: none;
  transform: translate(-50%, -50%) rotate(90deg);
  filter: drop-shadow(0 28px 22px rgba(0, 0, 0, 0.38));
}

.product-detail__box-image {
  width: min(86%, 330px);
  height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(50, 29, 18, 0.18));
}

.product-detail__box-placeholder {
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--muted);
}

.product-detail__box-placeholder span {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--tobacco);
}

.product-detail__box-placeholder small {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strength-profile {
  margin: 34px 0 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.strength-profile__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.strength-profile__heading span,
.strength-profile__heading strong { display: block; }
.strength-profile__heading span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.strength-profile__heading strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}
.strength-profile__heading b { color: var(--tobacco); font-size: 1.45rem; }
.strength-profile__heading b small { font-size: 0.66rem; }

.strength-profile__meter {
  position: relative;
  height: 14px;
  overflow: visible;
  background: rgba(66, 42, 29, 0.1);
  border-radius: 999px;
}

.strength-profile__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--strength);
  background: linear-gradient(90deg, #779b43 0%, #d5b63c 55%, #d66b38 78%, #9e342e 100%);
  border-radius: inherit;
  transition: width 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.strength-profile__marker {
  position: absolute;
  top: 50%;
  left: var(--strength);
  width: 24px;
  height: 24px;
  background: var(--paper);
  border: 5px solid var(--brown-800);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(46, 26, 15, 0.22);
  transform: translate(-50%, -50%);
}

.strength-profile__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.strength-profile > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.64rem;
}

.strength-profile.is-unrated .strength-profile__meter {
  background: repeating-linear-gradient(90deg, rgba(66, 42, 29, 0.08) 0 12px, rgba(66, 42, 29, 0.14) 12px 14px);
}

.specification-panel {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(51, 31, 21, 0.08);
}

.specification-panel__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 21px 22px;
  color: var(--cream);
  background: var(--brown-800);
}
.specification-panel__heading span { font-family: var(--serif); font-size: 1.25rem; }
.specification-panel__heading small { color: rgba(255,255,255,.58); font-size: .58rem; text-transform: uppercase; letter-spacing: .08em; }
.specification-panel .blend-table { border: 0; }
.specification-panel .blend-table div { grid-template-columns: .8fr 1.2fr; }

.brand-page-hero__seal img {
  width: 72%;
  max-height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.16));
}

.brand-list-card__art { overflow: hidden; }
.brand-list-card__art > img {
  position: absolute;
  top: 53%;
  left: 50%;
  width: auto;
  height: 330px;
  max-width: none;
  transform: translate(-50%, -50%) rotate(90deg);
}

.related-card__mark img { transform: rotate(90deg) scale(1.9); }

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__visual { min-height: 680px; }
  .product-detail__image { height: min(72vw, 600px); }
}

@media (max-width: 760px) {
  .merchandising__grid,
  .catalog-page__grid { grid-template-columns: 1fr; }
  .product-card__image,
  .catalog-page .product-card__image,
  .home-page .product-card__image { height: min(76vw, 540px); }
}

@media (max-width: 570px) {
  .home-page .brand-chip { min-height: 122px; grid-template-rows: 52px auto; }
  .home-page .brand-chip img { height: 50px; }
  .product-detail__visual { min-height: 590px; grid-template-rows: 280px 230px; padding-top: 56px; }
  .product-detail__cigar-stage { min-height: 280px; }
  .product-detail__box-stage { min-height: 230px; }
  .product-detail__image { height: min(88vw, 470px); }
  .product-detail__box-image { height: 190px; }
  .specification-panel__heading { align-items: flex-start; flex-direction: column; }
  .specification-panel .blend-table div { grid-template-columns: 1fr 1.2fr; }
}

/* Immersive single-row cigar merchandising */
.catalog--page,
.home-page .merchandising,
.home-page .merchandising--staff {
  background: #fff;
}

.merchandising__grid,
.catalog-page__grid,
.home-page .merchandising__grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid rgba(51, 31, 21, 0.14);
}

.product-card,
.home-page .product-card {
  min-height: 255px;
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(310px, 0.68fr);
  overflow: visible;
  background: #fff;
  border: 0;
  border-bottom: 1px solid rgba(51, 31, 21, 0.14);
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.product-card:hover,
.home-page .product-card:hover {
  z-index: 1;
  background: #fff;
  border-color: rgba(155, 75, 45, 0.36);
  box-shadow: 0 25px 60px rgba(47, 28, 17, 0.08);
  transform: none;
}

.product-card__art,
.product-card__art.has-image,
.home-page .product-card__art,
.home-page .product-card__art.has-image {
  min-height: 255px;
  background: #fff;
  border-right: 1px solid rgba(51, 31, 21, 0.1);
}

.product-card[data-tone] .product-card__art,
.home-page .product-card[data-tone] .product-card__art {
  background: #fff;
}

.product-card__art::before,
.product-card__art::after,
.home-page .product-card__art::before,
.home-page .product-card__art::after {
  display: none;
}

.product-card__image,
.catalog-page .product-card__image,
.home-page .product-card__image {
  top: 52%;
  height: clamp(520px, 53vw, 720px);
  filter: drop-shadow(0 20px 16px rgba(66, 37, 22, 0.18));
}

.product-card:hover .product-card__image,
.home-page .product-card:hover .product-card__image {
  transform: translate(-50%, -52%) rotate(90deg) scale(1.025);
}

.product-card__package,
.home-page .product-card__package {
  z-index: 3;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  color: var(--brown-800);
  background: #f4eee4;
  border: 1px solid rgba(51, 31, 21, 0.1);
  border-radius: 999px;
  backdrop-filter: none;
}

.product-card__badge {
  top: 20px;
  left: 20px;
  color: var(--brown-900);
  background: var(--gold);
  box-shadow: none;
}

.product-card__body,
.catalog-page .product-card__body,
.home-page .product-card__body {
  justify-content: center;
  padding: 22px 30px;
  background: #fff;
}

.product-card__brand {
  margin-bottom: 7px;
  font-size: 0.67rem;
}

.product-card h3,
.home-page .product-card h3 {
  max-width: 420px;
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 1.9vw, 1.85rem);
  line-height: 1.02;
}

.product-card__line {
  min-height: 0;
  margin: 0 0 8px;
  font-size: 0.75rem;
}

.product-card__details,
.home-page .product-card__details {
  margin-bottom: 10px;
  font-size: 0.72rem;
  line-height: 1.5;
}

.product-card__detail,
.home-page .product-card__detail {
  margin-bottom: 10px;
  font-size: 0.72rem;
}

.product-card__footer {
  align-items: center;
  padding-top: 12px;
}

.product-card__price strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.product-card__add,
.home-page .product-card__add {
  min-width: 126px;
  height: 40px;
  padding-inline: 18px;
}

.product-card__monogram,
.home-page .product-card__monogram {
  color: var(--tobacco);
  background: #f7f2e9;
  border-color: rgba(155, 75, 45, 0.3);
  box-shadow: none;
}

.product-card__cigar {
  opacity: 0.14;
}

/* PDP image gallery: large packaging presentation without image labels */
.product-detail__visual {
  --cigar-stage-height: 160px;
  min-height: calc(var(--cigar-stage-height) + 500px);
  grid-template-rows: var(--cigar-stage-height) minmax(500px, 1fr);
  gap: 0;
  padding: 0;
  background: #fff;
  box-shadow: none;
}

.product-detail__visual[data-tone="1"],
.product-detail__visual[data-tone="2"],
.product-detail__visual[data-tone="3"],
.product-detail__visual[data-tone="4"] {
  background: #fff;
}

.product-detail__visual::before,
.product-detail__visual::after {
  display: none;
}

.product-detail__cigar-stage,
.product-detail__box-stage {
  border: 0;
  border-radius: 0;
}

.product-detail__cigar-stage {
  min-height: 0;
  height: var(--cigar-stage-height);
  background: #fff;
  border-bottom: 0;
}

.product-detail__box-stage {
  min-height: 500px;
  padding: 0;
  background: #fff;
  border-top: 0;
}

.product-detail__visual.is-cigar-placeholder {
  min-height: 760px;
  grid-template-rows: 260px minmax(500px, 1fr);
}

.product-detail__visual.is-cigar-placeholder .product-detail__cigar-stage {
  min-height: 260px;
  height: 260px;
}

.product-detail__box-image {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  transform: scale(1.12);
  transform-origin: center;
  filter: drop-shadow(0 24px 25px rgba(50, 29, 18, 0.16));
}

.product-detail__image {
  height: clamp(420px, 46vw, 580px);
  filter: drop-shadow(0 20px 18px rgba(66, 37, 22, 0.18));
}

.product-detail__package {
  z-index: 5;
  color: var(--brown-800);
  background: #f4eee4;
  border: 1px solid rgba(51, 31, 21, 0.1);
}

@media (max-width: 980px) {
  .product-card,
  .home-page .product-card {
    grid-template-columns: minmax(0, 1.35fr) minmax(285px, 0.75fr);
  }

  .product-card__image,
  .catalog-page .product-card__image,
  .home-page .product-card__image {
    height: clamp(500px, 62vw, 660px);
  }
}

@media (max-width: 760px) {
  .product-card,
  .home-page .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__art,
  .product-card__art.has-image,
  .home-page .product-card__art,
  .home-page .product-card__art.has-image {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid rgba(51, 31, 21, 0.1);
  }

  .product-card__image,
  .catalog-page .product-card__image,
  .home-page .product-card__image {
    height: min(102vw, 560px);
  }

  .product-card__body,
  .catalog-page .product-card__body,
  .home-page .product-card__body {
    padding: 30px 24px 34px;
  }

  .product-card h3,
  .home-page .product-card h3 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .product-detail__visual {
    min-height: calc(var(--cigar-stage-height) + 420px);
    grid-template-rows: var(--cigar-stage-height) 420px;
  }

  .product-detail__cigar-stage { min-height: 0; height: var(--cigar-stage-height); }
  .product-detail__box-stage { min-height: 420px; padding: 0; }
  .product-detail__box-image { width: 100%; height: 100%; transform: scale(1.06); }

  .product-detail__visual.is-cigar-placeholder {
    min-height: 680px;
    grid-template-rows: 260px 420px;
  }

  .product-detail__visual.is-cigar-placeholder .product-detail__cigar-stage { min-height: 260px; }
}

@media (max-width: 480px) {
  .product-card__art,
  .product-card__art.has-image,
  .home-page .product-card__art,
  .home-page .product-card__art.has-image {
    min-height: 220px;
  }

  .product-card__image,
  .catalog-page .product-card__image,
  .home-page .product-card__image {
    height: min(108vw, 510px);
  }

  .product-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card__add,
  .home-page .product-card__add { width: 100%; }

  .product-detail__visual {
    min-height: calc(var(--cigar-stage-height) + 380px);
    grid-template-rows: var(--cigar-stage-height) 380px;
  }

  .product-detail__cigar-stage { min-height: 0; height: var(--cigar-stage-height); }
  .product-detail__box-stage { min-height: 380px; }
  .product-detail__box-image { height: 345px; }

  .product-detail__visual.is-cigar-placeholder {
    min-height: 620px;
    grid-template-rows: 240px 380px;
  }

  .product-detail__visual.is-cigar-placeholder .product-detail__cigar-stage { min-height: 240px; height: 240px; }
}

/* Compact brand-line accordions and one-product-per-row brand walls */
.brand-listing {
  padding-block: 58px 100px;
}

.brand-listing > .section-heading {
  margin-bottom: 38px;
}

.brand-line-group,
.brand-line-group + .brand-line-group {
  margin: 0;
  padding: 0;
  background: #fff;
  border: 0;
  border-top: 1px solid rgba(51, 31, 21, 0.14);
}

.brand-line-group:last-of-type {
  border-bottom: 1px solid rgba(51, 31, 21, 0.14);
}

.brand-line-group__heading {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 20px;
  align-items: center;
  gap: 20px;
  padding: 17px 6px;
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.brand-line-group__heading::-webkit-details-marker {
  display: none;
}

.brand-line-group__heading::after {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-3px);
  transition: transform 180ms ease;
}

.brand-line-group__heading:hover {
  color: var(--tobacco);
  background: rgba(155, 75, 45, 0.04);
  padding-inline: 14px;
}

.brand-line-group[open] > .brand-line-group__heading {
  color: var(--tobacco);
  background: #fbf8f2;
}

.brand-line-group[open] > .brand-line-group__heading::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.brand-line-group__title {
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand-line-group__count {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-list-grid,
.brand-line-group .brand-list-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(51, 31, 21, 0.1);
}

.brand-list-card {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, 0.68fr);
  background: #fff;
  border: 0;
  border-bottom: 1px solid rgba(51, 31, 21, 0.1);
  transform: none;
}

.brand-list-card:last-child {
  border-bottom: 0;
}

.brand-list-card:hover {
  z-index: 1;
  box-shadow: 0 20px 50px rgba(47, 28, 17, 0.075);
  transform: none;
}

.brand-list-card__art,
.brand-list-card__art[data-tone] {
  min-height: 230px;
  overflow: hidden;
  background: #fff;
  border-right: 1px solid rgba(51, 31, 21, 0.1);
}

.brand-list-card__art::before,
.brand-list-card__art::after {
  display: none;
}

.brand-list-card__art > img {
  top: 51%;
  height: clamp(500px, 51vw, 690px);
  filter: drop-shadow(0 18px 15px rgba(66, 37, 22, 0.17));
}

.brand-list-card__art i {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  color: var(--tobacco);
  background: #f7f2e9;
  border: 1px solid rgba(155, 75, 45, 0.25);
  border-radius: 50%;
}

.brand-list-card__body {
  justify-content: center;
  padding: 25px 30px;
}

/* Exact SKU imagery from product pages is already presentation-oriented.
   Older official line assets are tall cutouts and keep the 90-degree rotation. */
.product-card__image.is-source-oriented,
.catalog-page .product-card__image.is-source-oriented,
.home-page .product-card__image.is-source-oriented {
  width: min(88%, 720px);
  height: auto;
  max-width: 88%;
  max-height: 165px;
  transform: translate(-50%, -50%);
}

.product-card:hover .product-card__image.is-source-oriented,
.home-page .product-card:hover .product-card__image.is-source-oriented {
  transform: translate(-50%, -53%) scale(1.02);
}

.brand-list-card__art > img.is-source-oriented {
  width: min(86%, 720px);
  height: auto;
  max-width: 86%;
  max-height: 132px;
  transform: translate(-50%, -50%);
}

.product-detail__image.is-source-oriented {
  width: min(94%, 760px);
  height: auto;
  max-width: 94%;
  max-height: 220px;
  transform: translate(-50%, -50%);
}

.related-card__mark img.is-source-oriented {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transform: none;
}

@media (max-width: 760px) {
  .product-card__image.is-source-oriented,
  .catalog-page .product-card__image.is-source-oriented,
  .home-page .product-card__image.is-source-oriented {
    width: 90%;
    max-width: 90%;
    max-height: 145px;
  }

  .brand-list-card__art > img.is-source-oriented {
    width: 90%;
    max-width: 90%;
    max-height: 118px;
  }

  .product-detail__image.is-source-oriented {
    width: 94%;
    max-width: 94%;
    max-height: 190px;
  }
}

.brand-list-card__body > small {
  font-size: 0.55rem;
}

.brand-list-card__body strong {
  margin: 7px 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.brand-list-card__body em {
  margin-bottom: 14px;
  line-height: 1.5;
}

.brand-list-card__body b {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.brand-list-card__body b span {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 850;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .brand-line-group__heading {
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto 16px;
    gap: 12px;
  }

  .brand-list-card {
    grid-template-columns: 1fr;
  }

  .brand-list-card__art,
  .brand-list-card__art[data-tone] {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(51, 31, 21, 0.1);
  }

  .brand-list-card__art > img {
    height: min(102vw, 560px);
  }
}

@media (max-width: 520px) {
  .brand-line-group__heading {
    grid-template-columns: minmax(0, 1fr) 16px;
  }

  .brand-line-group__count {
    grid-column: 1;
    grid-row: 2;
  }

  .brand-line-group__heading::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .brand-list-card__body {
    padding: 24px 22px 28px;
  }
}

/* Product imagery is a primary navigation target and should fill its stage consistently. */
.product-card__art,
.home-page .product-card__art,
.brand-list-card__art {
  container-type: inline-size;
}

.product-card__art-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.product-card__art-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -5px;
}

.product-card__art-link .product-card__badge {
  pointer-events: none;
}

.product-card__image.is-rotated-source,
.catalog-page .product-card__image.is-rotated-source,
.home-page .product-card__image.is-rotated-source {
  height: min(103cqw, 820px);
}

.brand-list-card__art > img.is-rotated-source {
  height: min(103cqw, 800px);
}
