/* === Product detail sticky sidebar layout === */
.product-detail-layout {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem 1rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.product-detail-content {
  min-width: 0;
}

.product-detail-content > section {
  position: relative;
  margin-bottom: 1.25rem;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.product-detail-content > section:last-child {
  margin-bottom: 0;
}

.product-detail-content > section[id],
.product-page-mobile-nav[id] {
  scroll-margin-top: 6.75rem;
}

.product-page-mobile-nav {
  margin-bottom: 1.25rem;
}

.product-sidecard {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.product-sidecard + .product-sidecard {
  margin-top: 1rem;
}

.product-sidecard__inner {
  padding: 1.15rem;
}

.product-sidecard__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(180, 83, 9, 0.08);
  color: #92400e;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-sidecard__title {
  margin: 0;
  color: #0f172a;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 800;
}

.product-sidecard__text {
  margin: 0.7rem 0 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-sidecard__meta {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.product-sidecard__meta-item {
  padding: 0.85rem;
  border-radius: 1rem;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.product-sidecard__meta-label {
  display: block;
  color: #64748b;
  font-size: 0.78rem;
  margin-bottom: 0.2rem;
}

.product-sidecard__meta-value {
  display: block;
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 700;
}

.product-sidebar {
  display: none;
}

.product-sidebar__nav {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.product-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.8rem 0.95rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(248, 250, 252, 0.92);
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.product-sidebar__link:hover,
.product-sidebar__link.is-active {
  border-color: rgba(180, 83, 9, 0.3);
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.1), rgba(245, 158, 11, 0.08));
  color: #92400e;
  transform: translateX(2px);
}

.product-sidebar__link-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #92400e;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.product-sidebar__link-label {
  flex: 1;
  min-width: 0;
}

.product-sidebar__cta-group {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-sidebar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.product-sidebar__cta:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}

.product-sidebar__cta--primary {
  background: linear-gradient(135deg, #92400e, #b45309);
  color: #fff;
  box-shadow: 0 12px 30px rgba(146, 64, 14, 0.26);
}

.product-sidebar__cta--secondary {
  background: #fff;
  color: #92400e;
  border: 1px solid rgba(180, 83, 9, 0.24);
}

.product-sidecard__list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.product-sidecard__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.65;
}

.product-sidecard__list-item i {
  margin-top: 0.18rem;
  color: #92400e;
  flex-shrink: 0;
}

.product-mobile-nav__scroll {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.product-mobile-nav__scroll::-webkit-scrollbar {
  height: 6px;
}

.product-mobile-nav__scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.45);
  border-radius: 999px;
}

.product-mobile-nav__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(248, 250, 252, 0.96);
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
}

.product-mobile-nav__chip:hover,
.product-mobile-nav__chip.is-active {
  border-color: rgba(180, 83, 9, 0.28);
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.1), rgba(245, 158, 11, 0.08));
  color: #92400e;
}

@media (min-width: 1280px) {
  .product-detail-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 0.5rem;
  }

  .product-sidebar {
    display: block;
    position: sticky;
    top: 6.5rem;
    align-self: start;
    height: fit-content;
  }

  .product-page-mobile-nav {
    display: none;
  }
}

@media (max-width: 1279px) {
  .product-detail-layout {
    padding-top: 1rem;
  }

  .product-detail-content > section {
    border-radius: 1.5rem;
  }
}

@media (max-width: 767px) {
  .product-detail-layout {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .product-sidecard__inner {
    padding: 1rem;
  }

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

/* === Product detail width tuning (2026-03-06) === */
@media (min-width: 1280px) {
  .product-detail-page .product-detail-layout {
    max-width: 80rem;
    grid-template-columns: minmax(0, 1fr) 336px;
    gap: 2rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .product-detail-page .product-detail-content > section > .container.max-w-5xl {
    max-width: 72rem;
  }

  .product-detail-page .product-detail-content > section > .container.max-w-4xl {
    max-width: 64rem;
  }
}

@media (min-width: 1536px) {
  .product-detail-page .product-detail-layout {
    max-width: 80rem;
    grid-template-columns: minmax(0, 1fr) 352px;
    gap: 2.25rem;
  }
}

/* Blog sidebar */
.blog-sidebar-column{
  min-width:0;
}

.blog-sidebar-sticky{
  position:static;
}
.blog-sidebar-card{
  border:1px solid rgba(229,231,235,0.95);
  box-shadow:0 18px 48px rgba(15,23,42,0.08);
}
.blog-sidebar-card + .blog-sidebar-card{ margin-top:1.5rem; }
.blog-sidebar-title{
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#a16207;
}
.blog-sidebar-list a{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  padding:.85rem 0;
  color:#1f2937;
  transition:color .18s ease, transform .18s ease;
}
.blog-sidebar-list a + a{ border-top:1px solid rgba(229,231,235,0.9); }
.blog-sidebar-list a:hover{
  color:#b45309;
  transform:translateX(2px);
}
.blog-sidebar-bullet{
  flex:0 0 .55rem;
  width:.55rem;
  height:.55rem;
  margin-top:.45rem;
  border-radius:999px;
  background:#f5b200;
  box-shadow:0 0 0 6px rgba(245,178,0,0.12);
}
.blog-toc-list{ list-style:none; padding:0; margin:0; }
.blog-toc-list a{
  display:block;
  padding:.6rem .85rem;
  border-radius:.9rem;
  color:#4b5563;
  line-height:1.45;
  transition:background .18s ease, color .18s ease, transform .18s ease;
}
.blog-toc-list a:hover{
  background:rgba(245,178,0,0.12);
  color:#92400e;
  transform:translateX(2px);
}
.blog-toc-list a.is-active{
  background:linear-gradient(135deg, rgba(245,178,0,0.18), rgba(245,178,0,0.08));
  color:#7c2d12;
  font-weight:700;
}
.blog-toc-list li + li{ margin-top:.35rem; }
.blog-toc-list li[data-level="3"] a{ padding-left:1.65rem; font-size:.95rem; }
.blog-article-content h2,
.blog-article-content h3{
  scroll-margin-top:120px;
}
.blog-sidebar-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  border-radius:999px;
  padding:.8rem 1rem;
  font-weight:700;
  width:100%;
}
@media (max-width: 1023px){
  .blog-sidebar-column,
  .blog-sidebar-sticky{ position:static; top:auto; }
}

.blog-detail-layout,
.blog-list-layout{
  display:block;
}
.blog-detail-main,
.blog-list-main,
.blog-sidebar-column{ min-width:0; }
.blog-sidebar-column{ margin-top:2.5rem; }
.blog-sidebar-btn--whatsapp{
  background:#25D366;
  color:#fff;
}
.blog-sidebar-btn--whatsapp:hover{ background:#128C7E; }
.blog-sidebar-btn--soft{
  background:rgba(245,178,0,0.12);
  color:#a16207;
}
.blog-sidebar-btn--soft:hover{ background:rgba(245,178,0,0.22); }
@media (min-width:1024px){
  .blog-detail-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:2rem;
    align-items:start;
  }
  .blog-sidebar-column{
    margin-top:0;
    position:sticky;
    top:calc(88px + 1.5rem);
    align-self:start;
    height:fit-content;
  }
}
@media (min-width:1280px){
  .blog-list-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:2rem;
    align-items:start;
  }
  .blog-list-sidebar{
    margin-top:0;
    position:sticky;
    top:calc(88px + 1.5rem);
    align-self:start;
    height:fit-content;
  }
}



/* === Product page utility compatibility shims (2026-03-19) === */
.text-text-primary { color: #0f172a; }
.text-text-secondary { color: #475569; }
.text-text-light { color: var(--color-light-text); }
.text-dark-text { color: #1f2937; }
.text-secondary-light { color: #d1d5db; }
.text-accent { color: var(--color-primary-dark); }
.text-gold-dark { color: #92400e; }

.bg-background { background-color: var(--color-light-bg); }
.bg-surface { background-color: #ffffff; }
.bg-section-bg { background-color: #fcfaf7; }
.bg-subtle { background-color: #fcfaf7; }
.bg-neutral { background-color: #fafaf9; }
.bg-secondary-light { background-color: rgba(34, 34, 34, 0.88); }
.bg-gold-light { background-color: rgba(var(--color-primary-rgb), 0.14); }
.bg-radial-gradient { background-image: radial-gradient(circle at center, rgba(255,255,255,0.55), rgba(255,255,255,0) 70%); }
.bg-secondary\/98 { background-color: rgba(34, 34, 34, 0.98); }

.shadow-soft { box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08); }
.shadow-lift { box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12); }
.shadow-lifted { box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14); }
.shadow-subtle { box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08); }
.hover\:shadow-soft:hover { box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10); }
.hover\:shadow-lift:hover { box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16); }

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 9999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(var(--color-primary-rgb), 0.28);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover {
  transform: translateY(-1px);
}

.btn-secondary,
.btn-outline {
  background: #ffffff;
  color: var(--color-secondary);
  border: 1px solid rgba(var(--color-primary-rgb), 0.32);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(var(--color-primary-rgb), 0.06);
  border-color: rgba(var(--color-primary-rgb), 0.5);
}

.aspect-w-1.aspect-h-1,
.aspect-w-4.aspect-h-3 {
  position: relative;
  overflow: hidden;
}

.aspect-w-1.aspect-h-1 { padding-bottom: 100%; }
.aspect-w-4.aspect-h-3 { padding-bottom: 75%; }

.aspect-w-1.aspect-h-1 > *,
.aspect-w-4.aspect-h-3 > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Champagne CTA panel fix */
body[data-page="champagne"] .champagne-cta-panel {
  min-height: 100%;
}

body[data-page="champagne"] .champagne-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 1rem;
  background: rgba(245, 178, 0, 0.12);
  color: #f5b200;
}

body[data-page="champagne"] .champagne-cta-primary,
body[data-page="champagne"] .champagne-cta-secondary {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

body[data-page="champagne"] .champagne-cta-primary {
  border: 1px solid rgba(245, 178, 0, 0.18);
  background: linear-gradient(135deg, rgba(245, 178, 0, 0.98), rgba(255, 200, 61, 0.94));
  color: #111827;
  box-shadow: 0 16px 30px rgba(245, 178, 0, 0.18);
}

body[data-page="champagne"] .champagne-cta-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(255, 200, 61, 0.98), rgba(245, 178, 0, 0.94));
}

body[data-page="champagne"] .champagne-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.96);
}

body[data-page="champagne"] .champagne-cta-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 178, 0, 0.35);
  color: #f5b200;
}

body[data-page="champagne"] .champagne-cta-primary:focus-visible,
body[data-page="champagne"] .champagne-cta-secondary:focus-visible {
  outline: 2px solid rgba(245, 178, 0, 0.6);
  outline-offset: 2px;
}

/* === Unified page hero system === */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-hero--standard,
.page-hero--compact {
  padding-bottom: 2.75rem !important;
}

.page-hero--standard {
  min-height: clamp(430px, 56vh, 580px);
}

.page-hero--compact {
  min-height: clamp(320px, 42vh, 430px);
}

.page-hero__image {
  transform: scale(1.03);
  filter: saturate(0.96) contrast(1.04);
}

.page-hero__overlay {
  background:
    radial-gradient(circle at top center, rgba(245, 178, 0, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.42) 0%, rgba(8, 12, 20, 0.64) 58%, rgba(8, 12, 20, 0.8) 100%);
}

.page-hero__content,
.page-hero__feature-content {
  position: relative;
  z-index: 2;
}

.page-hero__content--center {
  display: flex;
  justify-content: center;
}

.page-hero__surface {
  width: min(100%, 72rem);
  padding: clamp(1.5rem, 2.8vw, 2.75rem);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(10, 15, 26, 0.58), rgba(10, 15, 26, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 80px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.page-hero--compact .page-hero__surface {
  width: min(100%, 65rem);
  padding: clamp(1.35rem, 2.2vw, 2.25rem);
}

.page-hero__surface > h1,
.page-hero__surface > p,
.page-hero__surface > nav,
.page-hero__surface > div,
.page-hero__surface > span {
  margin-left: auto;
  margin-right: auto;
}

.page-hero__surface > h1 {
  max-width: 17ch;
  text-wrap: balance;
}

.page-hero--standard .page-hero__surface > h1 {
  max-width: 18ch;
}

.page-hero__surface > p {
  max-width: 58rem;
  color: rgba(255, 255, 255, 0.92);
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-hero__breadcrumb {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.page-hero__actions a {
  box-shadow: 0 12px 28px rgba(8, 12, 20, 0.18);
}

.page-hero--feature {
  padding-bottom: 4rem !important;
}

.page-hero__feature-grid {
  align-items: center;
}

.page-hero__feature-main {
  padding: clamp(1.5rem, 2.8vw, 2.75rem);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(10, 15, 26, 0.42), rgba(10, 15, 26, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-hero__feature-card {
  box-shadow: 0 26px 80px rgba(2, 6, 23, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.page-hero__feature-main h1 {
  text-wrap: balance;
}

.page-hero__feature-main p:last-of-type {
  margin-bottom: 0;
}

.legal-page-shell {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background:
    linear-gradient(180deg, rgba(248, 244, 236, 0.95) 0%, rgba(255, 255, 255, 1) 34%),
    radial-gradient(circle at top center, rgba(245, 178, 0, 0.14), transparent 42%);
}

.legal-page-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: min(28rem, 48vh);
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.82), rgba(8, 12, 20, 0.58)),
    url('https://ik.imagekit.io/singwo/W9fgUbQ.jpg') center/cover no-repeat;
}

.legal-page-container {
  position: relative;
  z-index: 1;
  max-width: 72rem !important;
}

.legal-page-hero {
  padding: clamp(1.75rem, 3vw, 3rem);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(10, 15, 26, 0.78), rgba(10, 15, 26, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.legal-page-hero h1 {
  color: #fff;
  text-wrap: balance;
}

.legal-page-hero__meta {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.25rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82) !important;
}

.legal-page-hero__text {
  max-width: 58rem;
  color: rgba(255, 255, 255, 0.92) !important;
}

.legal-page-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.16) !important;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}

.legal-page-container > .legal-page-card,
.legal-page-container > section {
  margin-top: 1.5rem;
}

@media (max-width: 1023px) {
  .page-hero--feature {
    padding-top: 7rem !important;
  }

  .page-hero__feature-main {
    margin-bottom: 1rem;
  }
}



/* === Compact blog hero tuning for long H1 pages === */
body:is(
  [data-page="blog-yamazaki-recycling-guide-2026"],
  [data-page="blog-yoichi-recycling-guide-2026"],
  [data-page="blog-dom-perignon-vintage-philosophy"],
  [data-page="blog-la-tache-investment-guide"],
  [data-page="blog-dom-perignon-krug-salon-value-comparison"],
  [data-page="blog-martell-recycling-price-guide-2026"]
) .page-hero.page-hero--compact {
  min-height: clamp(340px, 45vh, 460px);
}

body:is(
  [data-page="blog-yamazaki-recycling-guide-2026"],
  [data-page="blog-yoichi-recycling-guide-2026"],
  [data-page="blog-dom-perignon-vintage-philosophy"],
  [data-page="blog-la-tache-investment-guide"],
  [data-page="blog-dom-perignon-krug-salon-value-comparison"],
  [data-page="blog-martell-recycling-price-guide-2026"]
) .page-hero--compact .page-hero__surface {
  width: min(100%, 69rem);
  padding: clamp(1.45rem, 2.4vw, 2.35rem);
}

body:is(
  [data-page="blog-yamazaki-recycling-guide-2026"],
  [data-page="blog-yoichi-recycling-guide-2026"],
  [data-page="blog-dom-perignon-vintage-philosophy"],
  [data-page="blog-la-tache-investment-guide"],
  [data-page="blog-dom-perignon-krug-salon-value-comparison"],
  [data-page="blog-martell-recycling-price-guide-2026"]
) .page-hero--compact .page-hero__surface > h1 {
  max-width: 24ch;
  font-size: clamp(1.9rem, 3.2vw, 3.35rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em;
}

@media (max-width: 767px) {
  body:is(
    [data-page="blog-yamazaki-recycling-guide-2026"],
    [data-page="blog-yoichi-recycling-guide-2026"],
    [data-page="blog-dom-perignon-vintage-philosophy"],
    [data-page="blog-la-tache-investment-guide"],
    [data-page="blog-dom-perignon-krug-salon-value-comparison"],
    [data-page="blog-martell-recycling-price-guide-2026"]
  ) .page-hero.page-hero--compact {
    min-height: 330px;
  }

  body:is(
    [data-page="blog-yamazaki-recycling-guide-2026"],
    [data-page="blog-yoichi-recycling-guide-2026"],
    [data-page="blog-dom-perignon-vintage-philosophy"],
    [data-page="blog-la-tache-investment-guide"],
    [data-page="blog-dom-perignon-krug-salon-value-comparison"],
    [data-page="blog-martell-recycling-price-guide-2026"]
  ) .page-hero--compact .page-hero__surface {
    width: min(100%, 100%);
    padding: 1.15rem;
  }

  body:is(
    [data-page="blog-yamazaki-recycling-guide-2026"],
    [data-page="blog-yoichi-recycling-guide-2026"],
    [data-page="blog-dom-perignon-vintage-philosophy"],
    [data-page="blog-la-tache-investment-guide"],
    [data-page="blog-dom-perignon-krug-salon-value-comparison"],
    [data-page="blog-martell-recycling-price-guide-2026"]
  ) .page-hero--compact .page-hero__surface > h1 {
    max-width: 15ch;
    font-size: clamp(1.7rem, 7vw, 2.15rem) !important;
    line-height: 1.14 !important;
  }
}

@media (max-width: 767px) {
  .page-hero--standard {
    min-height: 420px;
  }

  .page-hero--compact {
    min-height: 310px;
  }

  .page-hero__surface,
  .page-hero__feature-main,
  .legal-page-hero {
    border-radius: 1.5rem;
  }

  .page-hero__surface {
    padding: 1.25rem;
  }

  .page-hero__actions {
    gap: 0.7rem;
  }

  .page-hero__actions a {
    width: 100%;
  }

  .page-hero__actions a[href^="#"] {
    width: auto;
  }

  .legal-page-shell {
    padding-top: 3rem;
  }

  .legal-page-shell::before {
    height: 21rem;
  }
}


/* === Utility compatibility shims (2026-03-23 layout audit) === */
.text-secondary-dark { color: #1f2937; }
.border-surface { border-color: #ffffff; }
.border-gold { border-color: rgba(var(--color-primary-rgb), 0.34); }
.border-gold\/30 { border-color: rgba(var(--color-primary-rgb), 0.30); }
.bg-gold\/10 { background-color: rgba(var(--color-primary-rgb), 0.10); }
.bg-primary\/12 { background-color: rgba(var(--color-primary-rgb), 0.12); }
.border-white\/12 { border-color: rgba(255, 255, 255, 0.12); }
.hover\:shadow-soft-lg:hover { box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14); }
.hover\:border-gold:hover { border-color: rgba(var(--color-primary-rgb), 0.36); }
.group:hover .group-hover\:text-gold { color: var(--color-primary); }
.shadow-\[0_24px_80px_rgba\(0\,0\,0\,0\.28\)\] { box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28); }
.bg-\[radial-gradient\(circle_at_top\,_rgba\(201\,169\,97\,0\.22\)\,_transparent_48\%\)\] {
  background-image: radial-gradient(circle at top, rgba(201, 169, 97, 0.22), transparent 48%);
}
.prose.prose-lg,
.prose-lg {
  font-size: 1.0625rem;
  line-height: 1.85;
}
@media (min-width: 768px) {
  .prose.prose-lg,
  .prose-lg {
    font-size: 1.125rem;
  }
}


/* === Desktop width tuning pass (2026-03-30, widen again) === */
@media (min-width: 1280px) {
  .max-w-7xl {
    max-width: 88rem !important;
  }

  .max-w-6xl {
    max-width: 82rem !important;
  }

  .max-w-5xl {
    max-width: 74rem !important;
  }

  .container:not(.max-w-3xl):not(.max-w-4xl):not(.max-w-5xl):not(.max-w-6xl):not(.max-w-7xl) {
    max-width: 88rem !important;
  }

  .page-hero__surface {
    width: min(100%, 80rem);
  }

  .page-hero--compact .page-hero__surface {
    width: min(100%, 72rem);
  }

  .legal-page-container {
    max-width: 80rem !important;
  }

  .blog-detail-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2.25rem;
  }

  .blog-list-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2.25rem;
  }

  .product-detail-page .product-detail-layout {
    max-width: 88rem;
    grid-template-columns: minmax(0, 1fr) 352px;
    gap: 2.25rem;
  }

  .product-detail-page .product-detail-content > section > .container.max-w-5xl {
    max-width: 76rem;
  }

  .product-detail-page .product-detail-content > section > .container.max-w-4xl {
    max-width: 68rem;
  }
}

@media (min-width: 1536px) {
  .blog-detail-layout,
  .blog-list-layout {
    gap: 2.5rem;
  }

  .product-detail-page .product-detail-layout {
    max-width: 90rem;
    grid-template-columns: minmax(0, 1fr) 368px;
    gap: 2.5rem;
  }
}
