:root {
  --ivory: #f6f2eb;
  --soft: #ebe4d9;
  --white: #fffdf9;
  --ink: #181715;
  --muted: #6d665e;
  --line: #d8cfc2;
  --black: #0e0e0d;
  --wine: #7a2224;
  --gold: #a98655;
  --shadow: 0 28px 70px rgba(24, 23, 21, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4.2rem, 10vw, 11rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
  margin: 0;
}

.eyebrow,
.product-meta {
  margin: 0;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.announcement {
  padding: 9px 18px;
  background: var(--black);
  color: rgba(255, 253, 249, 0.82);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
}

.site-shell {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 242, 235, 0.96);
  border-bottom: 1px solid rgba(216, 207, 194, 0.82);
}

.site-header {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  min-height: 76px;
  padding: 0 clamp(22px, 4vw, 64px);
}

.brand,
.footer-brand,
.drawer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.desktop-nav,
.desktop-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.desktop-actions {
  justify-content: flex-end;
}

.desktop-nav a:hover,
.desktop-actions a:hover,
.text-link:hover,
.product-card a:hover {
  color: var(--wine);
}

.menu-trigger,
.drawer-close,
.text-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-trigger {
  display: none;
  color: var(--muted);
  font-weight: 700;
}

.mobile-cart-link {
  display: none;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(14, 14, 13, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 70;
  width: min(440px, 100vw);
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-drawer.is-open {
  opacity: 1;
  transform: translateX(0);
}

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

.drawer-brand {
  font-size: 1.65rem;
}

.drawer-close {
  color: var(--wine);
  font-weight: 700;
}

.drawer-links {
  display: grid;
  gap: 0;
  padding: 34px 0;
}

.drawer-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-links span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.drawer-links small,
.drawer-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.lux-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  height: calc(100vh - 113px);
  max-height: calc(100vh - 113px);
  min-height: 0;
  background: var(--ivory);
}

.hero-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 22px;
  padding: clamp(52px, 7vw, 110px);
}

.hero-panel p:not(.eyebrow),
.page-hero p,
.craft-hero p,
.split-feature p,
.closing-cta p,
.status-page p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.hero-photo {
  display: block;
  height: 100%;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--black);
  border-radius: 2px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  background: var(--black);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--black);
}

.button.full {
  width: 100%;
}

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

.text-link {
  display: inline-flex;
  color: var(--wine);
  font-weight: 800;
}

.press-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.press-strip span {
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.press-strip span:last-child {
  border-right: 0;
}

.section,
.page-hero,
.status-page,
.closing-cta {
  padding: clamp(70px, 9vw, 132px) clamp(22px, 4vw, 64px);
}

.section.compact {
  padding-top: 34px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.section-heading.centered {
  display: grid;
  justify-items: center;
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
  gap: clamp(26px, 3.5vw, 48px);
}

.product-grid-constrained {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 320px));
  justify-content: start;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-image-link {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-card-body {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  padding-top: 16px;
}

.product-card-line {
  align-self: end;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  background: var(--white);
}

.split-feature img {
  width: 100%;
  height: 760px;
  object-fit: cover;
}

.split-feature div {
  display: grid;
  gap: 22px;
  justify-items: start;
  padding: clamp(44px, 7vw, 98px);
}

.editorial-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.editorial-tiles a {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
}

.editorial-tiles a::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, rgba(14, 14, 13, 0) 0%, rgba(14, 14, 13, 0.72) 68%, rgba(14, 14, 13, 0.88) 100%);
  pointer-events: none;
}

.editorial-tiles img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.editorial-tiles span {
  position: absolute;
  z-index: 1;
  left: 26px;
  bottom: 24px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.closing-cta {
  display: grid;
  gap: 22px;
  justify-items: center;
  background: var(--soft);
  text-align: center;
}

.closing-cta h2 {
  max-width: 920px;
}

.page-hero {
  display: grid;
  gap: 18px;
  max-width: 1120px;
}

.page-hero h1,
.status-page h1 {
  font-size: clamp(3.8rem, 8vw, 8.5rem);
}

.shop-page-hero {
  padding-bottom: 46px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 clamp(22px, 4vw, 64px) 34px;
}

.filter-bar a {
  display: inline-flex;
  gap: 8px;
  min-height: 40px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.filter-bar a.active,
.filter-bar a:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.blog-hero {
  padding-bottom: 34px;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(640px, 0.48fr) minmax(420px, 0.52fr);
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  max-width: 1680px;
  margin-inline: 0 auto;
  padding: 0 clamp(22px, 4vw, 64px) clamp(46px, 6vw, 86px);
}

.blog-feature img,
.blog-card-image img,
.blog-article-image {
  width: 100%;
  object-fit: cover;
  background: var(--soft);
}

.blog-feature img {
  max-height: 410px;
  aspect-ratio: 16 / 9;
}

.blog-feature div {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.blog-feature p:not(.eyebrow),
.blog-card p:not(.product-meta),
.blog-article-head p:not(.eyebrow),
.blog-article-body p {
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}

.blog-card {
  display: grid;
  gap: 13px;
  align-content: start;
}

.blog-card-image {
  display: block;
  overflow: hidden;
}

.blog-card-image img {
  aspect-ratio: 3 / 2;
  transition: transform 500ms ease;
}

.blog-card:hover img {
  transform: scale(1.025);
}

.blog-card div {
  display: grid;
  gap: 10px;
}

.blog-card h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
  line-height: 1.03;
}

.journal-preview .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.journal-preview .blog-card {
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.journal-preview .blog-card-image img {
  aspect-ratio: 1;
}

.journal-preview .blog-card h2,
.related-products .blog-card h2 {
  font-size: clamp(1.28rem, 1.6vw, 1.8rem);
}

.journal-preview .blog-card p:not(.product-meta),
.related-products .blog-card p:not(.product-meta) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.related-products .blog-card-image img {
  aspect-ratio: 16 / 10;
}

.blog-article {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(46px, 6vw, 82px) clamp(22px, 4vw, 64px) clamp(62px, 8vw, 112px);
}

.blog-article-head,
.blog-article-body {
  width: min(800px, 100%);
  margin-inline: auto;
}

.blog-article-head {
  display: grid;
  gap: 18px;
}

.blog-article-head h1 {
  font-size: clamp(3.1rem, 5.8vw, 6.4rem);
}

.blog-article-image {
  max-width: 1120px;
  max-height: 460px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
}

.blog-article-body {
  display: grid;
  gap: 18px;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.78;
}

.blog-article-body p {
  max-width: 72ch;
}

.blog-article-body p:first-child {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.25vw, 1.18rem);
  line-height: 1.72;
}

.blog-product-cta {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  width: min(860px, 100%);
  margin-inline: auto;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
}

.blog-product-cta img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.blog-product-cta > div {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.blog-product-cta h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.blog-product-cta p:not(.eyebrow) {
  color: var(--muted);
}

.blog-product-cta > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.blog-product-cta span {
  font-weight: 800;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  padding: clamp(28px, 4vw, 64px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--soft);
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-image:first-of-type {
  grid-column: span 2;
  aspect-ratio: 5 / 4;
}

.gallery-image:nth-of-type(2):last-of-type {
  grid-column: span 2;
  aspect-ratio: 5 / 4;
}

.gallery-controls,
.gallery-thumbs {
  display: none;
}

.product-panel {
  position: sticky;
  top: 140px;
  display: grid;
  gap: 18px;
}

.product-panel h1 {
  font-size: clamp(3rem, 5.8vw, 6rem);
}

.price {
  font-size: 1.2rem;
  font-weight: 800;
}

.buy-form {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: end;
  margin-top: 10px;
}

.buy-form label,
.quantity-form label {
  grid-column: span 2;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

select {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
}

.product-specs {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--line);
}

.product-specs div,
.product-assurance span {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.product-specs dt {
  color: var(--muted);
}

.product-specs dd {
  margin: 0;
}

.product-assurance {
  display: grid;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-assurance span {
  display: block;
}

.sold-out {
  color: var(--wine);
  font-weight: 800;
}

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

.craft-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(64px, 8vw, 120px) clamp(22px, 4vw, 64px);
}

.craft-hero div {
  display: grid;
  gap: 22px;
}

.craft-hero h1 {
  font-size: clamp(4rem, 8vw, 8.5rem);
}

.craft-hero img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.craft-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black);
  color: var(--white);
}

.craft-process article {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 430px;
  padding: clamp(30px, 4vw, 58px);
  border-right: 1px solid rgba(255, 253, 249, 0.15);
}

.craft-process article:last-child {
  border-right: 0;
}

.craft-process span {
  color: var(--gold);
  font-weight: 800;
}

.craft-process h2 {
  font-size: clamp(2.3rem, 3.6vw, 4.5rem);
}

.craft-process p {
  color: rgba(255, 253, 249, 0.72);
}

.craft-split {
  background: var(--ivory);
}

.service-strip,
.service-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-strip div,
.service-page-grid article {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: clamp(24px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.service-strip div:last-child,
.service-page-grid article:last-child {
  border-right: 0;
}

.service-strip span,
.service-page-grid p {
  color: var(--muted);
}

.service-page-grid h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 4vw, 58px);
  padding: 0 clamp(22px, 4vw, 64px) clamp(70px, 9vw, 120px);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  padding: 0 clamp(22px, 4vw, 64px) clamp(70px, 9vw, 120px);
}

.checkout-heading {
  display: grid;
  gap: 10px;
  padding: clamp(34px, 5vw, 62px) clamp(22px, 4vw, 64px) clamp(22px, 3vw, 36px);
  border-bottom: 1px solid var(--line);
}

.checkout-heading h1 {
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
}

.checkout-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
}

.checkout-summary,
.checkout-embed {
  background: var(--white);
  border: 1px solid var(--line);
}

.checkout-summary {
  position: sticky;
  top: 140px;
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 28px;
}

.checkout-summary h2 {
  font-size: 1.8rem;
}

.checkout-summary div,
.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.checkout-summary .total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-embed {
  min-height: 640px;
  padding: clamp(18px, 3vw, 32px);
}

.checkout-form {
  display: grid;
  gap: 28px;
}

.checkout-form section {
  display: grid;
  gap: 12px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

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

.checkout-form .wide {
  grid-column: 1 / -1;
}

.stripe-element-shell {
  width: 100%;
}

.success-order-number {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.success-order-number span {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-order-number strong {
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: clamp(26px, 4vw, 52px);
}

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

.cart-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 120px 90px;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 132px;
  aspect-ratio: 1;
  object-fit: cover;
}

.cart-item h2,
.order-summary h2,
.empty-state h2 {
  font-size: 1.6rem;
}

.cart-item p,
.fineprint {
  color: var(--muted);
}

.quantity-form {
  display: grid;
  gap: 7px;
}

.text-button {
  padding: 0;
  color: var(--wine);
  font-weight: 800;
}

.order-summary {
  position: sticky;
  top: 140px;
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.order-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.order-summary .total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.empty-state,
.status-page {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.success-state {
  min-height: 55vh;
}

.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-callout {
  display: grid;
  gap: 16px;
  max-width: 980px;
  padding: clamp(56px, 7vw, 92px) clamp(22px, 4vw, 64px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, 190px);
  gap: 38px;
  padding: 36px clamp(22px, 4vw, 64px);
  border-top: 1px solid rgba(255, 253, 249, 0.15);
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 253, 249, 0.7);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer strong {
  margin-bottom: 4px;
}

.cookie-banner {
  position: fixed;
  left: clamp(14px, 3vw, 34px);
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  color: var(--muted);
}

.cookie-banner p:first-child {
  color: var(--ink);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.cookie-actions a {
  color: var(--wine);
  font-weight: 800;
}

.legal-page {
  display: grid;
  gap: 1px;
  padding: 0 clamp(22px, 4vw, 64px) clamp(76px, 9vw, 132px);
}

.legal-page article {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(22px, 5vw, 76px);
  padding: clamp(28px, 4vw, 52px) 0;
  border-top: 1px solid var(--line);
}

.legal-page article > :not(h2) {
  grid-column: 2;
}

.legal-page h2 {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
}

.legal-page p {
  color: var(--muted);
}

.legal-page a {
  color: var(--wine);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .menu-trigger,
  .mobile-cart-link {
    display: inline-flex;
  }

  .menu-trigger {
    justify-self: start;
  }

  .mobile-cart-link {
    justify-self: end;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .lux-hero,
  .split-feature,
  .craft-hero,
  .blog-feature,
  .blog-product-cta,
  .product-detail,
  .checkout-layout,
  .cart-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner,
  .legal-page article,
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }

  .checkout-form .wide {
    grid-column: auto;
  }

  .legal-page article > :not(h2) {
    grid-column: auto;
  }

  .lux-hero {
    height: auto;
    max-height: none;
  }

  .hero-photo {
    min-height: 58vh;
    order: -1;
  }

  .product-panel,
  .checkout-summary,
  .order-summary {
    position: static;
  }

  .product-grid-featured,
  .journal-preview .blog-grid,
  .related-products .blog-grid,
  .editorial-tiles,
  .craft-process,
  .service-strip,
  .service-page-grid,
  .press-strip {
    grid-template-columns: 1fr;
  }

  .press-strip span,
  .service-strip div,
  .service-page-grid article,
  .craft-process article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .craft-process article {
    min-height: auto;
    border-bottom-color: rgba(255, 253, 249, 0.15);
  }

  .journal-preview .blog-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 14px;
  }

  .announcement {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .brand {
    font-size: 1.35rem;
    letter-spacing: 0.14em;
  }

  .mobile-cart-link {
    font-size: 0;
  }

  .mobile-cart-link::after {
    content: "Korb";
    font-size: 0.76rem;
  }

  .hero-panel,
  .section,
  .page-hero,
  .status-page,
  .closing-cta,
  .craft-hero,
  .product-detail {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-photo {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .hero-actions,
  .buy-form,
  .cart-item {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .gallery {
    position: relative;
    grid-template-columns: 1fr;
  }

  .gallery-image {
    grid-column: 1;
    grid-row: 1;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    visibility: hidden;
  }

  .gallery-image.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .gallery-image:first-of-type,
  .gallery-image:nth-of-type(2):last-of-type {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-controls {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc((100vw - 36px) * 0.625);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .gallery-controls button {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(24, 23, 21, 0.18);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.86);
    color: var(--ink);
    cursor: pointer;
    font-size: 1.55rem;
    line-height: 1;
    pointer-events: auto;
  }

  .gallery-thumbs {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .gallery-thumbs button {
    flex: 0 0 74px;
    padding: 0;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
  }

  .gallery-thumbs button.active {
    border-color: var(--black);
  }

  .gallery-thumbs img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--soft);
  }

  .cookie-banner {
    align-items: start;
  }

  .cookie-actions {
    justify-content: space-between;
    white-space: normal;
  }

  .split-feature img,
  .craft-hero img,
  .editorial-tiles a {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

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

  .product-specs div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .cart-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .journal-preview .blog-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .journal-preview .blog-card h2,
  .related-products .blog-card h2 {
    font-size: 1.28rem;
  }

  .blog-feature img,
  .blog-article-image {
    max-height: none;
  }

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

  .blog-product-cta img {
    aspect-ratio: 16 / 10;
  }
}

.admin-body {
  background: var(--ivory);
}

.admin-shell {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px);
}

.admin-login {
  display: grid;
  gap: 18px;
  max-width: 560px;
  margin: 12vh auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-login h1,
.admin-header h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.admin-login label,
.admin-editor label,
.admin-upload label,
.admin-rename label,
.admin-folder-rename label,
.admin-tag-form label,
.admin-tag-create label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-login input,
.admin-editor input,
.admin-editor textarea,
.admin-upload input,
.admin-rename input,
.admin-folder-rename input,
.admin-tag-form input,
.admin-tag-create input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.admin-editor textarea {
  resize: vertical;
}

.admin-alert,
.admin-success {
  padding: 12px 14px;
  background: #f5e7e7;
  color: var(--wine);
  font-weight: 700;
}

.admin-success {
  margin: 24px 0 0;
  background: #e9efe4;
  color: #3c5f3b;
}

.admin-help {
  color: var(--muted);
}

.admin-help a {
  color: var(--wine);
  font-weight: 800;
}

.admin-header,
.admin-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-tools-menu {
  position: relative;
}

.admin-tools-menu summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.admin-tools-menu summary::-webkit-details-marker {
  display: none;
}

.admin-tools-menu summary::after {
  content: "v";
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

.admin-tools-menu[open] summary {
  border-color: var(--black);
}

.admin-tools-menu nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.admin-tools-menu nav a {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.admin-tools-menu nav a:last-child {
  border-bottom: 0;
}

.admin-tools-menu nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.admin-stats a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.admin-stats a:last-child {
  border-right: 0;
}

.admin-stats a:hover,
.admin-stats a.active {
  background: var(--soft);
}

.admin-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
  line-height: 1;
}

.admin-stats span {
  color: var(--muted);
  font-weight: 700;
}

.admin-low-stock {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  margin: 30px 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-low-stock h2,
.admin-media h2,
.admin-tags h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.admin-low-stock-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.admin-low-stock-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
}

.admin-low-stock-list a:hover {
  border-color: var(--black);
}

.admin-low-stock-list span {
  font-weight: 800;
}

.admin-low-stock-list strong {
  color: var(--wine);
  white-space: nowrap;
}

.admin-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 30px;
}

.admin-products,
.admin-editor,
.admin-delete {
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-products,
.admin-editor {
  padding: 22px;
}

.admin-delete {
  grid-column: 2;
  padding: 18px 22px;
}

.admin-panel-head {
  margin-bottom: 18px;
}

.admin-panel-head h2,
.admin-images h2 {
  font-size: clamp(2rem, 3vw, 3.6rem);
}

.admin-product-row {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.admin-product-row.active {
  color: var(--wine);
}

.admin-product-row img {
  width: 68px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.admin-product-row span {
  font-weight: 800;
}

.admin-product-row small {
  color: var(--muted);
}

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

.admin-wide,
.admin-switches,
.admin-images {
  margin-top: 18px;
}

.admin-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.admin-switches label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-switches input {
  width: auto;
  min-height: auto;
}

.admin-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.admin-editor .admin-product-tags label {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.admin-editor .admin-product-tags label:hover {
  border-color: var(--black);
  color: var(--ink);
}

.admin-editor .admin-product-tags label:has(input:checked) {
  border-color: rgba(122, 35, 43, 0.55);
  background: #fff3e0;
  color: var(--wine);
  box-shadow: inset 0 0 0 1px rgba(122, 35, 43, 0.12);
}

.admin-editor .admin-product-tags input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.admin-images {
  display: grid;
  gap: 12px;
}

.admin-images p {
  color: var(--muted);
}

.admin-image-folders {
  display: grid;
  gap: 10px;
}

.admin-image-folder {
  border: 1px solid var(--line);
}

.admin-image-folder summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.admin-image-folder summary span {
  color: var(--muted);
}

.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
  gap: 12px;
  max-height: 520px;
  overflow: auto;
  padding-right: 6px;
}

.admin-image-folder .admin-image-grid {
  max-height: 360px;
  padding: 0 12px 12px;
}

.admin-image-choice {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 8px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.admin-image-choice input {
  position: absolute;
  top: 10px;
  left: 10px;
  width: auto;
  min-height: auto;
}

.admin-image-choice img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.admin-image-choice span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-media,
.admin-tags {
  margin-top: 30px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-tags .admin-panel-head > span {
  color: var(--muted);
  font-weight: 800;
}

.admin-tag-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.admin-tag-list {
  display: grid;
  gap: 12px;
}

.admin-tag-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
}

.admin-tag-form {
  display: grid;
  grid-template-columns: minmax(160px, 1.2fr) minmax(140px, 0.9fr) 110px auto auto auto;
  gap: 12px;
  align-items: end;
}

.admin-check {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.admin-check input {
  width: auto;
  min-height: auto;
}

.admin-tag-count {
  align-self: center;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.admin-tag-delete {
  align-self: end;
  padding-bottom: 10px;
}

.admin-tag-create {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.admin-tag-create h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

.admin-orders {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-orders .admin-panel-head > span {
  color: var(--muted);
  font-weight: 800;
}

.admin-blog {
  margin: 30px 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-blog h2 {
  font-size: clamp(2.1rem, 3.4vw, 4.2rem);
}

.admin-blog h3,
.admin-blog-editor h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
}

.admin-blog-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-posts {
  display: grid;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
}

.admin-posts .admin-panel-head > span {
  color: var(--muted);
  font-weight: 800;
}

.admin-post-row {
  display: grid;
  gap: 4px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.admin-post-row.active,
.admin-post-row:hover {
  color: var(--wine);
}

.admin-post-row span {
  font-weight: 800;
}

.admin-post-row small,
.admin-post-row em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.admin-blog-delete {
  grid-column: 2;
}

.admin-order-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr 0.8fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.admin-order-row div {
  display: grid;
  gap: 3px;
  align-content: start;
}

.admin-order-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-media .admin-panel-head > span {
  color: var(--muted);
  font-weight: 800;
}

.admin-media-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
}

.admin-folder-nav {
  display: grid;
  align-content: start;
  max-height: 720px;
  overflow: auto;
  border: 1px solid var(--line);
}

.admin-folder-nav a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.admin-folder-nav a:last-child {
  border-bottom: 0;
}

.admin-folder-nav a.active,
.admin-folder-nav a:hover {
  background: var(--black);
  color: var(--white);
}

.admin-folder-nav small {
  color: inherit;
}

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

.admin-media-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.admin-breadcrumbs a:hover {
  color: var(--wine);
}

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

.admin-upload {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 16px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.admin-current-folder-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.admin-folder-rename {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.admin-folder-delete {
  align-self: end;
  padding-bottom: 12px;
}

.admin-folder-section {
  display: grid;
  gap: 12px;
}

.admin-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.admin-section-title h3 {
  font-size: clamp(1.7rem, 2.3vw, 2.6rem);
}

.admin-section-title span,
.admin-empty-note {
  color: var(--muted);
  font-weight: 800;
}

.admin-folder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.admin-folder-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.admin-folder-card a {
  display: grid;
  gap: 5px;
}

.admin-folder-card strong {
  font-size: 1rem;
}

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

.admin-folder-card:hover {
  border-color: var(--black);
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.admin-media-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 10px;
  border: 1px solid var(--line);
}

.admin-media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.admin-media-card form {
  display: grid;
  gap: 8px;
}

.text-button.danger {
  color: #9e1f1f;
}

@media (max-width: 980px) {
  .admin-layout,
  .admin-blog-layout,
  .admin-delete {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .admin-blog-delete {
    grid-column: auto;
  }

  .admin-stats,
  .admin-form-grid,
  .admin-low-stock,
  .admin-media-layout,
  .admin-tag-layout,
  .admin-tag-row,
  .admin-tag-form,
  .admin-order-row,
  .admin-media-actions,
  .admin-current-folder-tools,
  .admin-folder-rename,
  .admin-upload {
    grid-template-columns: 1fr;
  }

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

  .admin-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .admin-stats a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
