@font-face {
  font-family: "LV Display";
  src: url("../fonts/Fraunces-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "LV Sans";
  src: url("../fonts/Archivo-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --lv-ink: #1b1814;
  --lv-ink-soft: #3b352e;
  --lv-paper: #eee7d8;
  --lv-paper-light: #f8f3e8;
  --lv-paper-deep: #d8cbb7;
  --lv-teal: #365d57;
  --lv-teal-dark: #24443f;
  --lv-tobacco: #8c5132;
  --lv-wine: #6b2b32;
  --lv-amber: #d59938;
  --lv-line: rgba(27, 24, 20, 0.22);
  --lv-shadow: 0 24px 64px rgba(23, 19, 14, 0.14);
  --lv-radius: 0;
  --lv-container: 1360px;
  --lv-gutter: clamp(20px, 3.4vw, 56px);
  --lv-display: "LV Display", Georgia, "Times New Roman", serif;
  --lv-sans: "LV Sans", "Arial Narrow", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

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

body::before {
  position: fixed;
  z-index: 99;
  inset: 0;
  background: url("../images/lv-grain.svg") repeat;
  content: "";
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

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

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

:focus-visible {
  outline: 3px solid var(--lv-amber);
  outline-offset: 4px;
}

::selection {
  background: var(--lv-wine);
  color: var(--lv-paper-light);
}

.lv-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--lv-ink);
  color: white;
  transform: translateY(-160%);
}

.lv-skip-link:focus {
  transform: none;
}

.lv-announcement {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px var(--lv-gutter);
  background: var(--lv-ink);
  color: var(--lv-paper);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.lv-header-marker {
  position: absolute;
  top: 34px;
  width: 1px;
  height: 1px;
}

.lv-header {
  position: relative;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 84px;
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  padding: 0 var(--lv-gutter);
  border-bottom: 1px solid var(--lv-line);
  background: color-mix(in srgb, var(--lv-paper-light) 92%, transparent);
  transition: box-shadow 180ms ease, min-height 180ms ease;
}

.lv-header.is-scrolled {
  position: sticky;
  top: 0;
  min-height: 72px;
  box-shadow: 0 14px 35px rgba(27, 24, 20, 0.08);
  backdrop-filter: blur(16px);
}

.admin-bar .lv-header.is-scrolled {
  top: 32px;
}

.lv-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--lv-ink);
  text-decoration: none;
}

.lv-brand__mark {
  width: 42px;
  height: 42px;
}

.lv-brand__name {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.84;
}

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

.lv-nav__list,
.lv-footer__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.lv-nav a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.lv-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.lv-nav a:hover::after,
.lv-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lv-header__actions {
  justify-self: end;
}

.lv-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.lv-cart-count {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--lv-ink);
  color: var(--lv-paper-light);
  font-size: 11px;
  letter-spacing: 0;
}

.lv-menu-toggle {
  display: none;
}

.lv-main {
  overflow: clip;
}

.lv-kicker {
  display: inline-block;
  color: inherit;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lv-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--lv-ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.lv-button--dark {
  background: var(--lv-ink);
  color: var(--lv-paper-light);
}

.lv-button--dark:hover {
  background: var(--lv-wine);
}

.lv-button--light {
  border-color: var(--lv-paper-light);
  background: var(--lv-paper-light);
  color: var(--lv-ink);
}

.lv-button--outline {
  background: transparent;
}

.lv-text-link {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.lv-hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100vh - 118px));
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  background: var(--lv-paper-light);
}

.lv-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 900px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(52px, 5.2vw, 84px) clamp(30px, 5vw, 76px);
}

.lv-hero h1 {
  max-width: 760px;
  margin: 20px 0 22px;
  font-family: var(--lv-display);
  font-size: clamp(54px, 6.2vw, 100px);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  font-weight: 720;
  letter-spacing: -0.066em;
  line-height: 0.88;
}

.lv-hero h1 em {
  position: relative;
  color: var(--lv-tobacco);
  font-weight: 420;
}

.lv-hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 8%;
  height: 19px;
  background: url("../images/lv-scribble.svg") center / 100% 100% no-repeat;
  color: var(--lv-tobacco);
  content: "";
}

.lv-hero__lead {
  max-width: 590px;
  margin: 0;
  color: var(--lv-ink-soft);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.45;
}

.lv-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 30px;
}

.lv-hero__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(36px, 5vh, 56px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lv-hero__note strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
}

.lv-hero__art {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--lv-teal);
  isolation: isolate;
}

.lv-hero__art::before,
.lv-hero__art::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(248, 243, 232, 0.22);
  border-radius: 50%;
  content: "";
}

.lv-hero__art::before {
  width: 70%;
  aspect-ratio: 1;
  top: 6%;
  left: 6%;
}

.lv-hero__art::after {
  width: 102%;
  aspect-ratio: 1;
  right: -48%;
  bottom: -56%;
}

.lv-hero__sun {
  position: absolute;
  z-index: -1;
  width: clamp(280px, 28vw, 520px);
  aspect-ratio: 1;
  top: 14%;
  right: -12%;
  border-radius: 50%;
  background: var(--lv-amber);
}

.lv-hero__art > img {
  position: absolute;
  width: min(110%, 880px);
  max-width: none;
  right: -5%;
  bottom: -6%;
  filter: drop-shadow(0 30px 30px rgba(10, 20, 18, 0.18));
}

.lv-hero__stamp {
  position: absolute;
  z-index: 3;
  top: 8%;
  left: 7%;
  display: grid;
  width: 102px;
  height: 102px;
  place-items: center;
  border: 2px solid var(--lv-paper-light);
  border-radius: 50%;
  color: var(--lv-paper-light);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-9deg);
}

.lv-ticker {
  overflow: hidden;
  border-top: 1px solid var(--lv-ink);
  border-bottom: 1px solid var(--lv-ink);
  background: var(--lv-amber);
}

.lv-ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: lv-ticker 28s linear infinite;
}

@keyframes lv-ticker {
  to { transform: translateX(-50%); }
}

.lv-section {
  max-width: var(--lv-container);
  margin: 0 auto;
  padding: clamp(72px, 7.4vw, 112px) var(--lv-gutter);
}

.lv-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
}

.lv-intro__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.lv-index {
  color: var(--lv-ink-soft);
  font-family: var(--lv-display);
  font-size: 20px;
  font-style: italic;
}

.lv-intro__content h2,
.lv-section-heading h2,
.lv-principles__title h2,
.lv-footer-cta h2,
.lv-page-hero h1,
.lv-shop-hero h1,
.lv-collection-hero h1 {
  margin: 0;
  font-family: var(--lv-display);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.lv-intro__content h2 {
  max-width: 1060px;
  font-size: clamp(44px, 4.9vw, 72px);
  line-height: 1;
}

.lv-intro__content p {
  max-width: 720px;
  margin: 28px 0 0 auto;
  color: var(--lv-ink-soft);
  font-size: clamp(17px, 1.35vw, 20px);
}

.lv-collections {
  max-width: none;
  background: var(--lv-ink);
  color: var(--lv-paper-light);
}

.lv-collections > * {
  max-width: calc(var(--lv-container) - (2 * var(--lv-gutter)));
  margin-right: auto;
  margin-left: auto;
}

.lv-section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.54fr);
  align-items: end;
  gap: clamp(36px, 5vw, 70px);
}

.lv-section-heading h2 {
  margin-top: 16px;
  font-size: clamp(54px, 6.7vw, 96px);
}

.lv-section-heading p {
  margin: 0 0 10px;
  color: rgba(248, 243, 232, 0.72);
  font-size: 17px;
}

.lv-collection-slots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(42px, 5vw, 68px);
  padding: 0;
  border-top: 1px solid rgba(248, 243, 232, 0.28);
  list-style: none;
}

.lv-collection-slots li {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px;
  border-right: 1px solid rgba(248, 243, 232, 0.28);
  transition: background 180ms ease, color 180ms ease;
}

.lv-collection-slots li:first-child {
  border-left: 1px solid rgba(248, 243, 232, 0.28);
}

.lv-collection-slots li:hover {
  background: var(--lv-amber);
  color: var(--lv-ink);
}

.lv-collection-slots span {
  font-family: var(--lv-display);
  font-size: 20px;
  font-style: italic;
}

.lv-collection-slots strong {
  font-size: clamp(17px, 1.6vw, 25px);
  letter-spacing: 0.05em;
}

.lv-collection-slots small {
  color: currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.7;
  text-transform: uppercase;
}

.lv-principles {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) 1fr;
  gap: clamp(46px, 6vw, 86px);
}

.lv-principles__title h2 {
  margin-top: 16px;
  font-size: clamp(46px, 4.8vw, 68px);
}

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

.lv-principles article {
  display: grid;
  grid-template-columns: 54px minmax(180px, 0.5fr) 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--lv-line);
}

.lv-principles article > span {
  font-family: var(--lv-display);
  font-style: italic;
}

.lv-principles h3 {
  margin: 0;
  font-family: var(--lv-display);
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 580;
  letter-spacing: -0.04em;
  line-height: 1;
}

.lv-principles p {
  margin: 0;
  color: var(--lv-ink-soft);
}

.lv-manifesto {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) 1.1fr;
  background: var(--lv-teal);
  color: var(--lv-paper-light);
}

.lv-manifesto__art {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--lv-paper-deep);
}

.lv-manifesto__art::before {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  top: 10%;
  left: 13%;
  border: 1px solid rgba(27, 24, 20, 0.28);
  border-radius: 50%;
  content: "";
}

.lv-manifesto__art img {
  position: absolute;
  width: min(95%, 720px);
  right: 1%;
  bottom: -15%;
}

.lv-manifesto__copy {
  display: flex;
  max-width: 820px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(58px, 7vw, 96px);
}

.lv-manifesto blockquote {
  margin: 24px 0 28px;
  font-family: var(--lv-display);
  font-size: clamp(40px, 4.7vw, 66px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.lv-manifesto p {
  max-width: 640px;
  color: rgba(248, 243, 232, 0.76);
  font-size: 17px;
}

.lv-manifesto .lv-button {
  margin-top: 22px;
  border-color: var(--lv-paper-light);
}

.lv-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(48px, 5vw, 72px) var(--lv-gutter);
  background: var(--lv-wine);
  color: var(--lv-paper-light);
}

.lv-footer-cta h2 {
  max-width: 820px;
  margin-top: 12px;
  font-size: clamp(36px, 4vw, 56px);
}

.lv-footer {
  display: grid;
  grid-template-columns: 1fr auto minmax(250px, 0.55fr);
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(56px, 6vw, 84px) var(--lv-gutter) 28px;
  background: var(--lv-ink);
  color: var(--lv-paper-light);
}

.lv-footer__brand img {
  width: 70px;
  color: var(--lv-paper-light);
  filter: invert(1);
}

.lv-footer__statement {
  max-width: 430px;
  margin: 30px 0 0;
  font-family: var(--lv-display);
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

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

.lv-footer__links a,
.lv-footer__cookie-link {
  padding: 4px 0;
  border: 0;
  background: none;
  color: rgba(248, 243, 232, 0.76);
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
}

.lv-footer__links a:hover,
.lv-footer__cookie-link:hover {
  color: var(--lv-amber);
}

.lv-footer__operator {
  color: rgba(248, 243, 232, 0.72);
  font-size: 13px;
}

.lv-footer__operator p {
  margin: 0 0 5px;
}

.lv-footer__operator strong {
  color: var(--lv-paper-light);
}

.lv-footer__operator a {
  display: inline-block;
  margin-top: 14px;
}

.lv-footer__bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(248, 243, 232, 0.16);
  color: rgba(248, 243, 232, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lv-page-hero,
.lv-shop-hero {
  padding: clamp(48px, 4.2vw, 64px) var(--lv-gutter) clamp(40px, 3.8vw, 54px);
  border-bottom: 1px solid var(--lv-line);
  background: var(--lv-paper-light);
}

.lv-page-hero h1,
.lv-shop-hero h1 {
  max-width: 1040px;
  margin-top: 16px;
  font-size: clamp(54px, 6vw, 92px);
  overflow-wrap: anywhere;
}

.lv-page-hero--medium h1 {
  max-width: 900px;
  font-size: clamp(48px, 5.4vw, 80px);
}

.lv-page-hero--long h1 {
  max-width: 940px;
  font-size: clamp(42px, 4.7vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.lv-shop-hero p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--lv-ink-soft);
  font-size: 17px;
}

.lv-prose-wrap {
  width: 100%;
  margin: 0;
  padding: clamp(50px, 5.5vw, 78px) var(--lv-gutter);
}

.lv-prose {
  max-width: 880px;
  font-size: 17px;
  line-height: 1.7;
}

.lv-prose > *:first-child {
  margin-top: 0;
}

.lv-prose h2,
.lv-prose h3,
.lv-prose h4 {
  margin: 1.8em 0 0.55em;
  font-family: var(--lv-display);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.lv-prose h2 { font-size: clamp(31px, 3.2vw, 44px); }
.lv-prose h3 { font-size: clamp(25px, 2.5vw, 34px); }
.lv-prose p,
.lv-prose li { color: var(--lv-ink-soft); }
.lv-prose p { margin: 0 0 1.05em; }
.lv-prose ul,
.lv-prose ol { margin: 0 0 1.25em; padding-left: 1.35em; }
.lv-prose li + li { margin-top: 0.3em; }
.lv-prose a { color: var(--lv-wine); }
.lv-prose .lv-button,
.lv-prose .lv-button:hover {
  color: var(--lv-paper-light);
  text-decoration: none;
}
.lv-prose hr { margin: 60px 0; border: 0; border-top: 1px solid var(--lv-line); }
.lv-prose table { width: 100%; border-collapse: collapse; font-size: 14px; }
.lv-prose th,
.lv-prose td { padding: 12px; border: 1px solid var(--lv-line); text-align: left; vertical-align: top; }
.lv-prose th { background: var(--lv-paper-deep); }

.lv-shop-wrap {
  max-width: var(--lv-container);
  min-height: 320px;
  margin: 0 auto;
  padding: clamp(50px, 5.5vw, 78px) var(--lv-gutter);
}

.lv-empty-shop {
  display: flex;
  min-height: 300px;
  max-width: 860px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid var(--lv-line);
  background: var(--lv-paper-light);
  box-shadow: var(--lv-shadow);
}

.lv-empty-shop h2 {
  margin: 18px 0 12px;
  font-family: var(--lv-display);
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.lv-empty-shop p {
  margin: 0 0 24px;
  color: var(--lv-ink-soft);
  font-size: 17px;
}

.lv-commerce-empty {
  display: grid;
  max-width: 820px;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 26px 34px;
  align-items: start;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--lv-line);
  background: var(--lv-paper-light);
  box-shadow: var(--lv-shadow);
}

.lv-commerce-empty__mark {
  display: grid;
  width: 84px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--lv-line);
  border-radius: 50%;
  color: var(--lv-tobacco);
  font-family: var(--lv-display);
  font-size: 32px;
  font-style: italic;
}

.lv-commerce-empty h2 {
  margin: 5px 0 10px;
  font-family: var(--lv-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1;
}

.lv-commerce-empty p {
  margin: 0 0 22px;
}

.woocommerce-account .lv-prose { max-width: 720px; }
.woocommerce-account .woocommerce h2 {
  margin: 0 0 20px;
  font-family: var(--lv-display);
  font-size: clamp(32px, 3.2vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register {
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--lv-line);
  border-radius: 0;
  background: var(--lv-paper-light);
}
.woocommerce form .form-row { margin: 0 0 18px; padding: 0; }
.woocommerce form .form-row label { margin-bottom: 6px; font-size: 13px; font-weight: 750; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--lv-line);
  border-radius: 0;
  background: #fffdf8;
}

.lv-shop-wrap ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  margin: 0;
  padding: 0;
}

.lv-shop-wrap ul.products::before,
.lv-shop-wrap ul.products::after {
  display: none;
}

.lv-shop-wrap ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
}

.lv-shop-wrap ul.products li.product a img {
  margin: 0 0 20px;
  background: var(--lv-paper-deep);
}

.lv-shop-wrap ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  font-family: var(--lv-display);
  font-size: 26px;
  letter-spacing: -0.03em;
}

.lv-shop-wrap ul.products li.product .price {
  color: var(--lv-ink-soft);
  font-weight: 750;
}

.lv-shop-wrap .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  min-height: 44px;
  padding: 13px 17px;
  border-radius: 0;
  background: var(--lv-ink);
  color: var(--lv-paper-light);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lv-shop-wrap .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
  background: var(--lv-wine);
  color: var(--lv-paper-light);
}

.lv-collection-hero {
  --lv-collection-accent: var(--lv-tobacco);
  position: relative;
  display: grid;
  min-height: 600px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: var(--lv-collection-accent);
  color: var(--lv-paper-light);
}

.lv-collection-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(52px, 6vw, 88px) var(--lv-gutter);
}

.lv-collection-hero h1 {
  margin-top: 22px;
  font-size: clamp(54px, 7vw, 110px);
}

.lv-collection-hero__statement {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(248, 243, 232, 0.78);
  font-size: 19px;
}

.lv-collection-hero__statement p { margin: 0; }

.lv-collection-hero__media {
  position: relative;
  min-height: 600px;
}

.lv-collection-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--lv-collection-accent) 72%, transparent), transparent 40%);
  content: "";
}

.lv-collection-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lv-collection-hero__fallback {
  display: grid;
  min-height: 600px;
  place-items: center;
  background: var(--lv-paper-deep);
  color: var(--lv-ink);
}

.lv-collection-hero__fallback img {
  width: min(44%, 350px);
  opacity: 0.18;
}

.lv-error-page {
  display: grid;
  min-height: 62vh;
  grid-template-columns: minmax(280px, 0.7fr) 1fr;
  align-items: center;
  gap: 70px;
  padding: clamp(52px, 6vw, 88px) var(--lv-gutter);
}

.lv-error-page__code {
  color: var(--lv-tobacco);
  font-family: var(--lv-display);
  font-size: clamp(130px, 20vw, 300px);
  font-weight: 750;
  letter-spacing: -0.1em;
  line-height: 0.7;
}

.lv-error-page h1 {
  margin: 22px 0;
  font-family: var(--lv-display);
  font-size: clamp(44px, 5vw, 70px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.lv-error-page p { margin: 0 0 30px; color: var(--lv-ink-soft); }

.lv-post-grid {
  display: grid;
  max-width: var(--lv-container);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) var(--lv-gutter);
}

.lv-post-card {
  padding: 28px;
  border: 1px solid var(--lv-line);
  background: var(--lv-paper-light);
}

.lv-post-card > span { font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.lv-post-card h2 { font-family: var(--lv-display); font-size: 34px; line-height: 1; }

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

  .lv-menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .lv-menu-toggle__icon,
  .lv-menu-toggle__icon::before,
  .lv-menu-toggle__icon::after {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 160ms ease;
  }

  .lv-menu-toggle__icon { position: relative; }
  .lv-menu-toggle__icon::before { position: absolute; top: -7px; }
  .lv-menu-toggle__icon::after { position: absolute; top: 7px; }
  .lv-menu-toggle[aria-expanded="true"] .lv-menu-toggle__icon { background: transparent; }
  .lv-menu-toggle[aria-expanded="true"] .lv-menu-toggle__icon::before { top: 0; transform: rotate(45deg); }
  .lv-menu-toggle[aria-expanded="true"] .lv-menu-toggle__icon::after { top: 0; transform: rotate(-45deg); }

  .lv-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 22px var(--lv-gutter) 35px;
    border-bottom: 1px solid var(--lv-line);
    background: var(--lv-paper-light);
    box-shadow: 0 20px 30px rgba(27, 24, 20, 0.1);
  }

  .lv-nav.is-open { display: block; }
  .lv-nav__list { flex-direction: column; align-items: flex-start; gap: 8px; }
  .lv-nav a { font-size: 20px; letter-spacing: 0.03em; }
  .lv-header__actions { grid-column: 3; grid-row: 1; justify-self: start; }
  .lv-menu-toggle { grid-column: 2; grid-row: 1; }

  .lv-hero { grid-template-columns: 1fr 0.88fr; }
  .lv-collection-slots { grid-template-columns: repeat(3, 1fr); }
  .lv-collection-slots li:nth-child(4),
  .lv-collection-slots li:nth-child(5) { border-top: 1px solid rgba(248,243,232,.28); }
  .lv-principles { grid-template-columns: 1fr; }
  .lv-footer { grid-template-columns: 1fr 1fr; }
  .lv-footer__operator { grid-column: 2; }
}

@media (max-width: 782px) {
  .admin-bar .lv-header.is-scrolled { top: 46px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .lv-announcement span:nth-of-type(n+2) { display: none; }
  .lv-header { min-height: 72px; grid-template-columns: 1fr auto; }
  .lv-brand__mark { width: 36px; height: 36px; }
  .lv-brand__name { font-size: 12px; }
  .lv-menu-toggle { grid-column: 2; }
  .lv-menu-toggle__label { display: none; }
  .lv-header__actions { display: none; }

  .lv-hero { min-height: auto; grid-template-columns: 1fr; }
  .lv-hero__copy { padding: 48px var(--lv-gutter) 46px; }
  .lv-hero h1 { margin: 18px 0 20px; font-size: clamp(51px, 14.5vw, 62px); line-height: .9; }
  .lv-hero h1 em::after { bottom: -10px; height: 16px; }
  .lv-hero__lead { font-size: 17px; }
  .lv-hero__actions { align-items: center; gap: 14px 18px; margin-top: 26px; }
  .lv-hero__note { margin-top: 34px; }
  .lv-hero__art { min-height: 440px; }
  .lv-hero__art > img { width: 102%; right: -3%; bottom: -4%; }
  .lv-hero__stamp { width: 82px; height: 82px; font-size: 10px; }

  .lv-section { padding-top: 62px; padding-bottom: 62px; }
  .lv-intro { grid-template-columns: 1fr; }
  .lv-intro__aside { flex-direction: row; gap: 20px; }
  .lv-intro__content h2 { font-size: clamp(40px, 11.5vw, 50px); }
  .lv-intro__content p { margin-top: 22px; margin-left: 0; }
  .lv-section-heading { grid-template-columns: 1fr; gap: 22px; }
  .lv-section-heading h2 { font-size: clamp(54px, 16vw, 68px); }
  .lv-collection-slots { grid-template-columns: 1fr; }
  .lv-collection-slots { margin-top: 36px; }
  .lv-collection-slots li { min-height: 132px; padding: 18px 20px; border-left: 1px solid rgba(248,243,232,.28); border-top: 1px solid rgba(248,243,232,.28); }
  .lv-collection-slots li:first-child { border-top: 0; }
  .lv-principles__title h2 { font-size: clamp(42px, 12vw, 52px); }
  .lv-principles article { grid-template-columns: 42px 1fr; }
  .lv-principles article p { grid-column: 2; }

  .lv-manifesto { grid-template-columns: 1fr; }
  .lv-manifesto__art { min-height: 380px; }
  .lv-manifesto__art img { width: 94%; bottom: -20%; }
  .lv-manifesto__copy { padding: 58px var(--lv-gutter); }
  .lv-manifesto blockquote { font-size: clamp(39px, 11.5vw, 48px); }
  .lv-footer-cta { align-items: flex-start; flex-direction: column; }
  .lv-footer-cta h2 { font-size: clamp(34px, 10vw, 42px); }
  .lv-footer { grid-template-columns: 1fr; }
  .lv-footer__operator { grid-column: auto; }
  .lv-footer__bottom { align-items: flex-start; flex-direction: column; }

  .lv-shop-wrap ul.products { grid-template-columns: 1fr; }
  .lv-page-hero,
  .lv-shop-hero { padding-top: 44px; padding-bottom: 42px; }
  .lv-page-hero h1,
  .lv-shop-hero h1 { margin-top: 12px; font-size: clamp(50px, 15vw, 62px); }
  .lv-page-hero--medium h1 { font-size: clamp(44px, 13vw, 54px); }
  .lv-page-hero--long h1 { font-size: clamp(38px, 11.5vw, 47px); line-height: 1.02; }
  .lv-prose-wrap,
  .lv-shop-wrap { padding-top: 42px; padding-bottom: 50px; }
  .lv-prose { font-size: 16px; line-height: 1.65; }
  .lv-commerce-empty { grid-template-columns: 1fr; gap: 18px; }
  .lv-commerce-empty__mark { width: 64px; font-size: 26px; }
  .lv-empty-shop { min-height: auto; }
  .lv-collection-hero { grid-template-columns: 1fr; }
  .lv-collection-hero__copy { min-height: 380px; }
  .lv-collection-hero__media,
  .lv-collection-hero__fallback { min-height: 420px; }
  .lv-collection-hero__media::after { background: linear-gradient(180deg, var(--lv-collection-accent), transparent 32%); }
  .lv-error-page { grid-template-columns: 1fr; gap: 40px; }
  .lv-post-grid { grid-template-columns: 1fr; }
  .lv-prose table { display: block; overflow-x: auto; }
}

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