:root {
  --color-ink: #17120f;
  --color-ink-soft: #4f433a;
  --color-muted: #7c6f63;
  --color-line: #dfd0be;
  --color-paper: #f4eadf;
  --color-canvas: #fbf7ef;
  --color-silk: #fffdf8;
  --color-smoke: #eee6dc;
  --color-moss: #5d6755;
  --color-moss-dark: #384033;
  --color-clay: #a96f5c;
  --color-blush: #ead0c5;
  --color-gold: #a87a3e;
  --color-rice: #f8f2e8;
  --shadow-soft: 0 26px 70px rgba(50, 37, 27, 0.13);
  --shadow-card: 0 14px 36px rgba(58, 42, 31, 0.09);
  --radius: 6px;
  --radius-soft: 8px;
  --container: 1180px;
  --font-sans: "Onest", "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Prata", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(244, 234, 223, 0.95) 0%, rgba(251, 247, 239, 1) 42%, rgba(246, 238, 228, 1) 100%);
  color: var(--color-ink);
  font-family: var(--font-sans);
  line-height: 1.56;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(168, 122, 62, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(168, 122, 62, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
  content: "";
}

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

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

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

button {
  font: inherit;
}

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin: 0 auto;
}

.section-band {
  padding: 76px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-150%);
  padding: 10px 14px;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-ink);
  color: var(--color-silk);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(70, 52, 39, 0.16);
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(18px);
}

.header-ribbon {
  border-bottom: 1px solid rgba(70, 52, 39, 0.12);
  background: rgba(229, 217, 202, 0.72);
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-ribbon-inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.header-ribbon span + span::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 28px;
  transform: translateY(-1px) rotate(45deg);
  background: var(--color-gold);
  content: "";
}

.header-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand,
.admin-brand {
  min-width: 0;
  color: var(--color-ink);
}

.brand {
  display: grid;
  justify-items: center;
  text-align: center;
}

.site-logo {
  width: 106px;
  height: 98px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.78;
}

.brand small,
.footer-brand small,
.admin-brand small {
  display: block;
  max-width: 190px;
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-silk);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.main-nav,
.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav {
  justify-content: flex-start;
  color: var(--color-ink-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  padding: 10px 9px;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-ink);
  outline: none;
}

.header-tools {
  justify-content: flex-end;
}

.header-action,
.header-icon-link,
.button,
.buy-button,
.filter-button,
.admin-icon-link {
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.header-action,
.button,
.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.header-icon-link {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(70, 52, 39, 0.2);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.54);
  color: var(--color-ink);
}

.header-action {
  min-height: 40px;
  padding: 0 15px;
  background: var(--color-ink);
  color: var(--color-silk);
  font-size: 13px;
  text-transform: uppercase;
}

.header-action:hover,
.header-icon-link:hover,
.button:hover,
.buy-button:hover,
.admin-icon-link:hover {
  transform: translateY(-1px);
}

.header-action:focus-visible,
.header-icon-link:focus-visible,
.button:focus-visible,
.buy-button:focus-visible,
.filter-button:focus-visible,
.admin-icon-link:focus-visible,
.back-link:focus-visible {
  outline: 3px solid rgba(168, 122, 62, 0.28);
  outline-offset: 3px;
}

.lucide {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 40px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(244, 234, 223, 0.96) 0%, rgba(255, 253, 248, 0.86) 47%, rgba(235, 214, 201, 0.72) 100%);
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(251, 247, 239, 0), rgba(251, 247, 239, 0.94));
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.hero-copy,
.hero-showcase {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact h2,
.footer-invite h2,
.product-page-copy h1,
.article-page h1,
.not-found h1,
.admin-topbar h1,
.admin-empty h1,
.admin-empty h2,
.product-detail-card h2,
.article-side-note h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 600px;
  font-size: 68px;
  overflow-wrap: anywhere;
}

.hero h1 span {
  display: block;
}

.hero-text {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  font-size: 13px;
  text-transform: uppercase;
}

.button-primary {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-silk);
  box-shadow: 0 16px 34px rgba(23, 18, 15, 0.14);
}

.button-secondary {
  border-color: rgba(70, 52, 39, 0.24);
  background: rgba(255, 253, 248, 0.56);
  color: var(--color-ink);
}

.button-light {
  border-color: rgba(70, 52, 39, 0.18);
  background: var(--color-silk);
  color: var(--color-ink);
}

.hero-showcase {
  position: relative;
  min-height: 520px;
}

.hero-stage-base {
  position: absolute;
  left: 6%;
  right: 2%;
  bottom: 42px;
  height: 118px;
  transform: skewX(-9deg);
  border: 1px solid rgba(116, 92, 72, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(220, 205, 190, 0.56)),
    linear-gradient(90deg, transparent, rgba(168, 122, 62, 0.12));
  box-shadow: 0 32px 64px rgba(74, 52, 36, 0.12);
}

.hero-featured,
.hero-mini,
.curator-tile,
.product-card,
.article-card,
.trust-grid article,
.product-page-media,
.article-page-image,
.product-detail-card,
.article-side-note {
  border: 1px solid rgba(91, 70, 52, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow-card);
}

.hero-featured,
.hero-mini {
  position: absolute;
  display: block;
  overflow: hidden;
}

.hero-featured {
  right: 4%;
  bottom: 84px;
  z-index: 2;
  width: 54%;
  height: 378px;
}

.hero-mini {
  z-index: 3;
}

.hero-mini-one {
  left: 4%;
  top: 34px;
  width: 41%;
  height: 248px;
}

.hero-mini-two {
  right: 0;
  top: 0;
  width: 36%;
  height: 214px;
}

.hero-featured img,
.hero-mini img,
.curator-tile img,
.product-media img,
.article-media img,
.product-page-media img,
.article-page-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.34s ease;
}

.hero-featured:hover img,
.hero-mini:hover img,
.curator-tile:hover img,
.product-card:hover .product-media img,
.article-card:hover .article-media img {
  transform: scale(1.035);
}

.hero-featured span,
.hero-mini span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 24px);
  padding: 10px 12px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--color-ink);
  line-height: 1.1;
}

.hero-featured small,
.curator-tile small {
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-featured strong {
  font-size: 19px;
}

.hero-mini span {
  font-size: 13px;
  font-weight: 800;
}

.hero-proof {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-proof div {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(91, 70, 52, 0.18);
  background: rgba(251, 247, 239, 0.82);
  color: var(--color-ink-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-proof .lucide {
  color: var(--color-gold);
}

.hero-botanical {
  position: absolute;
  pointer-events: none;
  opacity: 0.42;
}

.hero-botanical::before,
.hero-botanical::after {
  position: absolute;
  display: block;
  content: "";
}

.hero-botanical-left {
  left: 26px;
  bottom: 64px;
  width: 170px;
  height: 220px;
  border-left: 1px solid rgba(168, 122, 62, 0.34);
  transform: rotate(13deg);
}

.hero-botanical-left::before {
  left: 16px;
  top: 54px;
  width: 58px;
  height: 24px;
  border-top: 1px solid rgba(168, 122, 62, 0.42);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.hero-botanical-left::after {
  left: 22px;
  top: 116px;
  width: 72px;
  height: 28px;
  border-top: 1px solid rgba(168, 122, 62, 0.42);
  border-radius: 50%;
  transform: rotate(26deg);
}

.hero-botanical-right {
  right: 20px;
  top: 48px;
  width: 190px;
  height: 260px;
  border-left: 1px solid rgba(168, 122, 62, 0.28);
  transform: rotate(-21deg);
}

.hero-botanical-right::before {
  left: 18px;
  top: 48px;
  width: 70px;
  height: 28px;
  border-top: 1px solid rgba(168, 122, 62, 0.38);
  border-radius: 50%;
  transform: rotate(24deg);
}

.hero-botanical-right::after {
  left: 18px;
  top: 128px;
  width: 88px;
  height: 34px;
  border-top: 1px solid rgba(168, 122, 62, 0.34);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.center-heading {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.product-heading {
  margin-top: 58px;
  margin-bottom: 22px;
}

.product-subsection + .product-subsection {
  margin-top: 58px;
}

.product-subsection-additional {
  padding-top: 22px;
  border-top: 1px solid rgba(91, 70, 52, 0.14);
}

.section-heading h2,
.contact h2,
.footer-invite h2 {
  font-size: 44px;
}

.section-heading p:not(.eyebrow),
.contact p,
.footer-invite p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 16px;
}

.why {
  position: relative;
  padding-top: 58px;
  padding-bottom: 58px;
  background: rgba(251, 247, 239, 0.72);
}

.why::before {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  background: rgba(168, 122, 62, 0.2);
  content: "";
}

.why-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.why-copy {
  margin-bottom: 0;
}

.why-copy p:not(.eyebrow) {
  max-width: 420px;
}

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

.trust-grid article {
  min-height: 190px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.68);
}

.trust-grid .lucide {
  width: 26px;
  height: 26px;
  color: var(--color-gold);
}

.trust-grid h3,
.product-body h3,
.article-body h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.16;
}

.trust-grid h3 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}

.trust-grid p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.products {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.74), rgba(244, 234, 223, 0.82));
}

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

.curator-tile {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  background: var(--color-smoke);
}

.curator-tile span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  gap: 5px;
  padding: 10px 12px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--color-ink);
}

.curator-tile strong {
  font-size: 13px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.filter-button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-silk);
  color: var(--color-muted);
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-silk);
}

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

.empty-collection {
  display: grid;
  min-height: 150px;
  place-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 28px;
  border: 1px dashed rgba(91, 70, 52, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.54);
  color: var(--color-muted);
  text-align: center;
}

.empty-collection .lucide {
  width: 30px;
  height: 30px;
  color: var(--color-gold);
}

.empty-collection p {
  max-width: 520px;
  margin: 0;
  font-size: 15px;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.84);
}

.product-card[hidden] {
  display: none;
}

.product-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-smoke);
}

.product-card-featured .product-media {
  min-height: 100%;
  aspect-ratio: auto;
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  background: rgba(23, 18, 15, 0.84);
  color: var(--color-silk);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--color-clay);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.product-copy {
  margin: 11px 0 0;
  color: var(--color-ink-soft);
  font-size: 14px;
}

.product-points {
  display: grid;
  gap: 7px;
  margin: 16px 0 20px;
  padding: 0;
  color: var(--color-muted);
  font-size: 13px;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 18px;
}

.product-points li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 1px;
  background: var(--color-gold);
  content: "";
}

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

.product-footer strong {
  color: var(--color-ink);
  font-size: 18px;
  white-space: nowrap;
}

.buy-button {
  min-height: 40px;
  padding: 0 13px;
  border-color: var(--color-moss-dark);
  background: var(--color-moss-dark);
  color: var(--color-silk);
  font-size: 12px;
  text-transform: uppercase;
}

.articles {
  background: rgba(251, 247, 239, 0.9);
}

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

.article-card {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.8);
}

.article-media {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-smoke);
}

.article-body {
  padding: 20px;
}

.article-body time,
.article-page-copy time {
  display: block;
  color: var(--color-clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-body h3 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.article-body p {
  margin: 12px 0 18px;
  color: var(--color-muted);
  font-size: 14px;
}

.article-body a,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-moss-dark);
  font-weight: 900;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(234, 208, 197, 0.55), rgba(255, 253, 248, 0.88) 45%, rgba(237, 226, 213, 0.76));
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.72fr);
  gap: 46px;
  align-items: center;
}

.contact-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(91, 70, 52, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.contact-visual span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 21px;
}

.contact-copy {
  min-width: 0;
}

.contact p {
  max-width: 670px;
  color: var(--color-ink-soft);
}

.contact-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.contact-benefits span {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 13px;
  border-top: 1px solid rgba(91, 70, 52, 0.2);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.28;
}

.contact-benefits .lucide {
  color: var(--color-gold);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.article-page,
.product-page {
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.92), rgba(255, 253, 248, 0.78));
}

.article-page-inner,
.product-page-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

.article-page-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
}

.product-page-inner {
  grid-template-columns: minmax(320px, 0.56fr) minmax(0, 0.74fr);
}

.article-page-copy time {
  margin: 8px 0 14px;
}

.article-page h1,
.product-page-copy h1,
.not-found h1 {
  font-size: 58px;
}

.article-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--color-ink-soft);
  font-size: 19px;
  line-height: 1.68;
}

.article-page-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-detail-grid,
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: 34px;
  align-items: start;
  padding-top: 42px;
}

.article-content {
  min-width: 0;
}

.article-content p {
  margin: 0 0 20px;
  color: var(--color-ink-soft);
  font-size: 17px;
  line-height: 1.78;
}

.article-side-note,
.product-detail-card {
  position: sticky;
  top: 148px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.72);
}

.article-side-note h2,
.product-detail-card h2 {
  font-size: 28px;
}

.article-side-note p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.product-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--color-muted);
  list-style: none;
}

.product-detail-card li {
  position: relative;
  padding-left: 18px;
}

.product-detail-card li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--color-gold);
  content: "";
}

.article-cta {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.back-link {
  width: fit-content;
  margin-bottom: 24px;
  font-size: 13px;
  text-transform: uppercase;
}

.product-page-media {
  position: relative;
  overflow: hidden;
  background: var(--color-smoke);
}

.product-page-media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-page-media span {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  background: rgba(23, 18, 15, 0.84);
  color: var(--color-silk);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-page-price {
  display: block;
  margin-top: 24px;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.not-found {
  min-height: 58vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(234, 208, 197, 0.48), rgba(251, 247, 239, 0.88));
}

.not-found-inner {
  max-width: 720px;
}

.not-found p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--color-muted);
  font-size: 18px;
}

.site-footer {
  padding: 44px 0 32px;
  background: var(--color-ink);
  color: rgba(255, 253, 248, 0.76);
}

.footer-invite {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
}

.footer-invite h2 {
  max-width: 660px;
  color: var(--color-silk);
  font-size: 34px;
}

.site-footer .eyebrow {
  color: #d7b071;
}

.site-footer .button-primary {
  border-color: #d7b071;
  background: #d7b071;
  color: var(--color-ink);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}

.footer-brand {
  display: grid;
}

.footer-logo {
  width: 112px;
  height: 96px;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
}

.footer-brand .brand-name {
  color: var(--color-silk);
  font-size: 36px;
}

.footer-brand small {
  color: rgba(255, 253, 248, 0.62);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 38px;
}

.footer-links div {
  display: grid;
  gap: 7px;
}

.footer-links span {
  color: var(--color-silk);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 253, 248, 0.68);
  font-size: 14px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-silk);
  outline: none;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(244, 234, 223, 0.96), rgba(251, 247, 239, 1));
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  border-right: 1px solid rgba(91, 70, 52, 0.18);
  background: rgba(255, 253, 248, 0.74);
  backdrop-filter: blur(16px);
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.admin-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}

.admin-brand strong {
  display: block;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--color-muted);
  font-weight: 900;
}

.admin-nav a:hover,
.admin-nav a:focus-visible,
.admin-nav a.is-active {
  border-color: rgba(91, 70, 52, 0.16);
  background: rgba(244, 234, 223, 0.72);
  color: var(--color-ink);
  outline: none;
}

.admin-main {
  min-width: 0;
  padding: 28px;
}

.admin-panel {
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(91, 70, 52, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-card);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.admin-topbar h1 {
  font-size: 42px;
}

.admin-notice,
.admin-errors {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 800;
}

.admin-notice {
  border: 1px solid rgba(93, 103, 85, 0.26);
  background: rgba(240, 242, 236, 0.88);
  color: var(--color-moss-dark);
}

.admin-errors {
  border: 1px solid rgba(169, 111, 92, 0.34);
  background: rgba(234, 208, 197, 0.55);
  color: #75362b;
}

.admin-errors p {
  margin: 0;
}

.admin-errors p + p {
  margin-top: 8px;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(91, 70, 52, 0.18);
  border-radius: var(--radius);
}

.admin-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(91, 70, 52, 0.16);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  background: rgba(244, 234, 223, 0.64);
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table code {
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(244, 234, 223, 0.72);
  color: var(--color-moss-dark);
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(91, 70, 52, 0.18);
  border-radius: 999px;
  background: rgba(244, 234, 223, 0.66);
  color: var(--color-ink-soft);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.admin-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 300px;
}

.admin-item img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--color-smoke);
}

.admin-item strong,
.admin-item span {
  display: block;
}

.admin-item span,
.admin-value {
  color: var(--color-muted);
  font-size: 14px;
}

.admin-row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.admin-row-actions form {
  margin: 0;
}

.admin-icon-link {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(91, 70, 52, 0.2);
  border-radius: var(--radius);
  background: var(--color-silk);
  color: var(--color-ink);
  cursor: pointer;
}

.admin-icon-link:hover,
.admin-icon-link:focus-visible {
  background: rgba(244, 234, 223, 0.72);
  outline: none;
}

.admin-danger {
  color: #943c30;
}

.admin-form {
  display: grid;
  gap: 18px;
}

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

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-hint {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(91, 70, 52, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  color: var(--color-ink);
  font: inherit;
  font-size: 15px;
}

.admin-form input,
.admin-form select {
  min-height: 48px;
  padding: 0 13px;
}

.admin-form select {
  cursor: pointer;
}

.admin-form textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: var(--color-gold);
  outline: 3px solid rgba(168, 122, 62, 0.18);
}

.admin-form input[readonly] {
  background: rgba(244, 234, 223, 0.58);
  color: var(--color-moss-dark);
}

.admin-preview {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 10px;
  border: 1px solid rgba(91, 70, 52, 0.18);
  border-radius: var(--radius);
  background: rgba(244, 234, 223, 0.52);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-preview img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  object-fit: cover;
}

.admin-form-actions {
  display: flex;
  justify-content: flex-start;
}

.admin-empty {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 32px;
  border: 1px dashed rgba(91, 70, 52, 0.24);
  border-radius: var(--radius);
  color: var(--color-muted);
  text-align: center;
}

.admin-empty .lucide {
  width: 42px;
  height: 42px;
  color: var(--color-gold);
}

.admin-empty h1,
.admin-empty h2 {
  margin-top: 12px;
  color: var(--color-ink);
}

.admin-empty p {
  max-width: 560px;
  margin: 10px auto 0;
}

.admin-empty code {
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(244, 234, 223, 0.72);
  color: var(--color-ink);
  font-size: 0.92em;
}

@media (max-width: 1100px) {
  .hero-inner,
  .why-inner,
  .contact-inner,
  .article-page-inner,
  .product-page-inner,
  .article-detail-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 500px;
  }

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

  .product-card-featured {
    grid-column: span 2;
  }

  .article-cta {
    grid-column: auto;
  }

  .article-side-note,
  .product-detail-card {
    position: static;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 0;
  }

  .site-header {
    position: static;
  }

  .header-ribbon-inner {
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 7px 0;
  }

  .header-ribbon span + span::before {
    margin-right: 18px;
  }

  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 14px 0 16px;
  }

  .brand {
    order: -1;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

  .header-tools {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 52px;
  }

  .section-heading h2,
  .contact h2,
  .footer-invite h2,
  .article-page h1,
  .product-page-copy h1,
  .not-found h1 {
    font-size: 42px;
  }

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

  .footer-invite,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    padding: 18px;
  }

  .admin-nav {
    grid-template-columns: repeat(4, minmax(max-content, 1fr));
    overflow-x: auto;
  }

  .admin-main {
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 24px);
  }

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

  .header-ribbon {
    display: none;
  }

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

  .site-logo {
    width: 82px;
    height: 76px;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .header-action {
    flex: 1;
  }

  .hero {
    min-height: 0;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text,
  .article-lead {
    font-size: 16px;
  }

  .hero-actions,
  .product-footer,
  .article-cta,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .buy-button {
    width: 100%;
  }

  .hero-showcase {
    display: grid;
    gap: 12px;
    min-height: 0;
  }

  .hero-stage-base,
  .hero-botanical {
    display: none;
  }

  .hero-featured,
  .hero-mini,
  .hero-proof {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
  }

  .hero-featured,
  .hero-mini {
    aspect-ratio: 4 / 3;
  }

  .hero-proof,
  .trust-grid,
  .contact-benefits,
  .curator-grid,
  .article-grid,
  .product-grid,
  .footer-links,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .product-card-featured {
    grid-column: auto;
    display: flex;
  }

  .product-card-featured .product-media {
    aspect-ratio: 4 / 3;
  }

  .section-heading h2,
  .contact h2,
  .footer-invite h2,
  .article-page h1,
  .product-page-copy h1,
  .not-found h1 {
    font-size: 34px;
  }

  .contact-visual,
  .contact-visual img {
    min-height: 300px;
  }

  .article-content p {
    font-size: 16px;
  }

  .product-page-price {
    font-size: 30px;
  }

  .footer-invite {
    display: grid;
  }

  .admin-panel {
    padding: 18px;
  }

  .admin-topbar,
  .admin-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-topbar .button,
  .admin-form-actions .button {
    width: 100%;
  }

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

  .admin-nav a {
    min-height: 44px;
    font-size: 14px;
  }
}

/* Home redesign below the hero */
.why.section-band {
  padding: 50px 0 28px;
  border-top: 1px solid rgba(91, 70, 52, 0.08);
  background: rgba(251, 247, 239, 0.96);
}

.why::before {
  display: none;
}

.why-title {
  max-width: none;
  margin-bottom: 22px;
}

.why-title .eyebrow {
  margin-bottom: 0;
}

.why .trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why .trust-grid article {
  min-height: 198px;
  padding: 24px 22px 22px;
  border-color: rgba(91, 70, 52, 0.18);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: none;
}

.why .trust-grid .lucide {
  width: 27px;
  height: 27px;
  color: var(--color-gold);
  stroke-width: 1.6;
}

.why .trust-grid h3 {
  margin-top: 20px;
  font-size: 22px;
  line-height: 1.08;
}

.why .trust-grid p {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.75;
}

.products.section-band {
  padding: 34px 0 0;
  border-top: 1px solid rgba(91, 70, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(246, 239, 229, 0.94), rgba(251, 247, 239, 0.98));
}

.section-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-topline h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-link .lucide {
  width: 15px;
  height: 15px;
}

.products .product-grid-main {
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 12px;
}

.products .product-card {
  min-height: 100%;
  border-color: rgba(91, 70, 52, 0.16);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: none;
}

.products .product-card-featured {
  grid-column: auto;
  display: flex;
}

.products .product-media,
.products .product-card-featured .product-media {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.products .product-media img {
  object-fit: cover;
}

.products .product-badge {
  left: 8px;
  top: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--color-ink-soft);
  font-size: 9px;
  line-height: 1;
}

.products .product-body {
  padding: 14px 12px 12px;
}

.products .product-body h3 {
  min-height: 34px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.28;
}

.products .product-copy,
.products .product-kicker,
.products .product-points {
  display: none;
}

.product-price {
  display: block;
  margin-top: 8px;
  margin-bottom: 13px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.products .buy-button {
  width: 100%;
  min-height: 32px;
  margin-top: auto;
  padding: 0 10px;
  border-color: var(--color-ink);
  border-radius: 2px;
  background: var(--color-ink);
  color: var(--color-silk);
  font-size: 11px;
  text-transform: none;
}

.accessory-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 54px;
  padding: 28px 0 30px;
  border-top: 1px solid rgba(91, 70, 52, 0.12);
  border-bottom: 1px solid rgba(91, 70, 52, 0.12);
}

.accessory-copy {
  min-width: 0;
}

.accessory-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.accessory-copy p:not(.eyebrow) {
  margin: 14px 0 22px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.accessory-copy .button {
  width: fit-content;
  min-height: 38px;
  padding: 0 13px;
  border-color: rgba(91, 70, 52, 0.24);
  background: rgba(255, 253, 248, 0.74);
  font-size: 12px;
  text-transform: none;
}

.products .product-grid-additional {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.products .product-grid-additional .product-media {
  aspect-ratio: 16 / 9;
}

.products .product-grid-additional .product-body h3 {
  min-height: 0;
}

.products .product-grid-additional .product-price {
  margin-bottom: 0;
}

.articles.section-band {
  padding: 30px 0 0;
  background: rgba(251, 247, 239, 0.98);
}

.journal-topline {
  margin-bottom: 16px;
}

.journal-topline .eyebrow {
  margin-bottom: 8px;
}

.journal-topline h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: none;
}

.articles .article-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 14px;
}

.articles .article-card {
  min-height: 182px;
  border-color: rgba(91, 70, 52, 0.16);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: none;
}

.articles .article-card-wide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.articles .article-card-wide .article-media {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: auto;
}

.articles .article-card-wide .article-body {
  grid-column: 1;
  grid-row: 1;
}

.articles .article-media {
  aspect-ratio: 16 / 10;
}

.articles .article-body {
  padding: 18px;
}

.articles .article-body time {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 600;
}

.articles .article-body h3 {
  margin-top: 9px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.28;
}

.articles .article-body p {
  margin: 10px 0 16px;
  font-size: 12px;
  line-height: 1.58;
}

.articles .article-body a {
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 800;
}

.contact.section-band {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(231, 213, 194, 0.86), rgba(251, 247, 239, 0.96) 48%, rgba(246, 239, 229, 0.92));
}

.contact .container {
  width: 100%;
  max-width: none;
}

.contact-inner {
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.52fr);
  gap: 48px;
  min-height: 0;
  align-items: center;
}

.contact-visual {
  height: 290px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-visual img {
  width: 210%;
  height: 100%;
  max-width: none;
  min-height: 0;
  object-fit: cover;
  object-position: left center;
}

.contact-copy {
  max-width: 570px;
  padding: 34px 40px 34px 0;
}

.contact h2 {
  max-width: 560px;
  font-size: 34px;
  line-height: 1.05;
}

.contact p {
  max-width: 470px;
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.7;
}

.contact-actions {
  margin-top: 20px;
}

.contact .button {
  min-height: 40px;
  padding: 0 18px;
  font-size: 12px;
  text-transform: none;
}

.site-footer {
  padding: 32px 0 22px;
  background:
    radial-gradient(circle at 20% 0, rgba(255, 253, 248, 0.08), transparent 28%),
    #141311;
  color: rgba(255, 253, 248, 0.72);
}

.footer-invite {
  display: none;
}

.site-footer .footer-inner {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-logo {
  width: 112px;
  height: 84px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.footer-wordmark {
  color: var(--color-silk);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 0.95;
}

.footer-brand small {
  max-width: 190px;
  margin-top: 0;
  color: rgba(255, 253, 248, 0.64);
  font-size: 11px;
  line-height: 1.35;
}

.site-footer .footer-links {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 32px;
}

.site-footer .footer-links div {
  gap: 6px;
}

.site-footer .footer-links span {
  color: #d7b071;
  font-size: 11px;
}

.site-footer .footer-links a {
  color: rgba(255, 253, 248, 0.68);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  justify-content: center;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 248, 0.11);
  color: rgba(255, 253, 248, 0.5);
  font-size: 12px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--color-silk);
  outline: none;
}

@media (max-width: 1100px) {
  .why .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .articles .article-grid {
    grid-template-columns: 1fr;
  }

  .articles .article-card-wide {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .section-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .accessory-section,
  .contact-inner,
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact .container {
    width: calc(100% - 40px);
    max-width: var(--container);
  }

  .contact-inner {
    gap: 0;
    padding: 34px 0;
  }

  .contact-visual {
    height: 280px;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .contact-copy {
    max-width: none;
    padding: 28px 0 0;
  }

  .site-footer .footer-links {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 640px) {
  .why.section-band {
    padding-top: 40px;
  }

  .why .trust-grid,
  .products .product-grid-main,
  .products .product-grid-additional,
  .articles .article-card-wide,
  .site-footer .footer-links {
    grid-template-columns: 1fr;
  }

  .products.section-band {
    padding-top: 28px;
  }

  .accessory-section {
    margin-top: 36px;
  }

  .accessory-copy h2,
  .contact h2 {
    font-size: 30px;
  }

  .journal-topline h2 {
    font-size: 28px;
  }

  .articles .article-card-wide .article-media,
  .articles .article-card-wide .article-body {
    grid-column: auto;
    grid-row: auto;
  }

  .contact .container {
    width: calc(100% - 24px);
  }

  .contact-visual {
    height: 240px;
  }

  .contact-visual img {
    width: 180%;
  }

  .contact .button,
  .accessory-copy .button {
    width: 100%;
  }
}

/* Sketch alignment: header and home sections below the hero */
.header-ribbon {
  background: rgba(231, 221, 208, 0.72);
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
}

.header-ribbon-inner {
  min-height: 30px;
}

.header-ribbon-inner span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.header-ribbon .lucide {
  width: 13px;
  height: 13px;
  color: var(--color-gold);
  stroke-width: 1.7;
}

.header-ribbon span + span::before {
  width: 3px;
  height: 3px;
  margin-right: 28px;
  opacity: 0.78;
}

.main-nav {
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
}

.main-nav a {
  padding: 10px 12px;
}

.header-action {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.header-icon-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 253, 248, 0.66);
}

.proof-strip {
  border-top: 1px solid rgba(91, 70, 52, 0.12);
  border-bottom: 1px solid rgba(91, 70, 52, 0.12);
  background: rgba(246, 239, 229, 0.84);
}

.proof-strip-inner {
  min-height: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-strip-inner div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  padding: 10px 18px;
  color: var(--color-ink-soft);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.proof-strip-inner div + div {
  border-left: 1px solid rgba(91, 70, 52, 0.14);
}

.proof-strip .lucide {
  width: 15px;
  height: 15px;
  color: var(--color-gold);
  stroke-width: 1.7;
}

.why.section-band {
  padding: 30px 0 26px;
  border-top: 0;
}

.why-title {
  margin-bottom: 18px;
}

.why .trust-grid {
  gap: 18px;
}

.why .trust-grid article {
  min-height: 200px;
  padding: 26px 24px 22px;
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(251, 247, 239, 0.72));
}

.why .trust-grid h3 {
  font-size: 21px;
}

.products.section-band {
  padding: 32px 0 0;
  background:
    linear-gradient(180deg, rgba(246, 239, 229, 0.96), rgba(251, 247, 239, 0.99));
}

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

.products .product-card {
  border-color: rgba(91, 70, 52, 0.17);
  background: rgba(255, 253, 248, 0.94);
}

.products .product-media,
.products .product-card-featured .product-media {
  aspect-ratio: 1 / 1;
}

.products .product-badge {
  background: rgba(248, 242, 232, 0.92);
  color: var(--color-gold);
  font-size: 9px;
  font-weight: 800;
}

.products .product-body {
  padding: 13px 11px 11px;
}

.products .product-body h3 {
  min-height: 38px;
  font-size: 12px;
  font-weight: 500;
}

.product-price {
  font-size: 13px;
  font-weight: 800;
}

.products .buy-button {
  min-height: 31px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
}

.product-slider-mark {
  width: 58px;
  height: 2px;
  margin: 26px auto 0;
  background: var(--color-gold);
}

.accessory-section {
  grid-template-columns: minmax(210px, 0.27fr) minmax(0, 1fr);
  gap: 36px;
  margin-top: 28px;
  padding: 34px 0 34px;
  align-items: stretch;
}

.accessory-copy {
  align-self: center;
}

.accessory-copy h2 {
  font-size: 32px;
}

.products .product-grid-additional {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.products .product-grid-additional .product-card {
  min-height: 100%;
}

.products .product-grid-additional .product-media {
  aspect-ratio: 16 / 10;
}

.products .product-grid-additional .product-body {
  padding: 14px 16px 15px;
}

.products .product-grid-additional .product-body h3 {
  min-height: 0;
  font-size: 13px;
}

.articles.section-band {
  padding: 26px 0 0;
}

.journal-topline {
  margin-bottom: 17px;
}

.articles .article-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 14px;
}

.articles .article-card {
  min-height: 206px;
  overflow: hidden;
  border-radius: 4px;
}

.articles .article-media {
  aspect-ratio: 16 / 9;
}

.articles .article-card-wide {
  position: relative;
  display: block;
  min-height: 206px;
  background: var(--color-ink);
}

.articles .article-card-wide .article-media {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}

.articles .article-card-wide .article-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 19, 17, 0.78), rgba(20, 19, 17, 0.2));
  content: "";
}

.articles .article-card-wide .article-body {
  position: relative;
  z-index: 1;
  max-width: 48%;
  min-height: 206px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-silk);
}

.articles .article-card-wide .article-body time,
.articles .article-card-wide .article-body p,
.articles .article-card-wide .article-body a {
  color: rgba(255, 253, 248, 0.82);
}

.articles .article-card-wide .article-body h3 {
  color: var(--color-silk);
}

.contact.section-band {
  margin-top: 28px;
}

.contact-inner {
  min-height: 306px;
}

.contact-visual {
  height: 306px;
}

.contact-copy {
  padding-top: 38px;
  padding-bottom: 38px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 12px;
}

.footer-socials .lucide {
  width: 16px;
  height: 16px;
  color: #d7b071;
}

@media (max-width: 1100px) {
  .proof-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip-inner div:nth-child(3) {
    border-left: 0;
  }

  .products .product-grid-main {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-ribbon-inner {
    justify-content: flex-start;
  }

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

  .articles .article-grid {
    grid-template-columns: 1fr;
  }

  .articles .article-card-wide .article-body {
    max-width: 62%;
  }
}

@media (max-width: 640px) {
  .proof-strip-inner,
  .products .product-grid-main,
  .products .product-grid-additional {
    grid-template-columns: 1fr;
  }

  .proof-strip-inner div,
  .proof-strip-inner div:nth-child(3) {
    justify-content: flex-start;
    border-left: 0;
    border-top: 1px solid rgba(91, 70, 52, 0.12);
  }

  .proof-strip-inner div:first-child {
    border-top: 0;
  }

  .why.section-band {
    padding-top: 28px;
  }

  .articles .article-card-wide .article-body {
    max-width: none;
    min-height: 220px;
  }
}

.admin-form-checks {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 12px 13px;
  border: 1px solid rgba(91, 70, 52, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.7);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-checkbox {
  display: flex !important;
  align-items: center;
  gap: 9px;
  color: var(--color-ink-soft) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.admin-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  padding: 0;
  accent-color: var(--color-gold);
}

.admin-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-muted {
  color: var(--color-muted);
  font-weight: 800;
}

.products .product-badges {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: calc(100% - 16px);
  pointer-events: none;
}

.products .product-badges .product-badge {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(248, 242, 232, 0.94);
  color: var(--color-gold);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(20, 19, 17, 0.08);
}

.contact.section-band .contact-visual {
  display: grid;
  height: clamp(280px, 25vw, 360px);
  min-height: 0;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(244, 234, 223, 0.5));
}

.contact.section-band .contact-visual img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.contact.section-band .contact-copy,
.contact.section-band h2 {
  min-width: 0;
  max-width: 100%;
}

.contact.section-band h2 {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .contact.section-band .contact-visual {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .contact.section-band .container,
  .contact.section-band .contact-inner,
  .contact.section-band .contact-copy {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    min-width: 0;
  }

  .contact.section-band .contact-visual {
    height: 250px;
    padding: 12px;
  }

  .contact.section-band h2 {
    width: min(320px, calc(100vw - 24px));
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    font-size: 24px;
    line-height: 1.12;
  }
}
