:root {
  --qv-forest: #173f35;
  --qv-forest-dark: #0f2d27;
  --qv-copper: #b86636;
  --qv-sand: #f2eadf;
  --qv-cream: #fbf8f3;
  --qv-white: #fff;
  --qv-ink: #18201d;
  --qv-muted: #66716c;
  --qv-line: rgba(24, 32, 29, 0.13);
  --qv-success: #237a54;
  --qv-warning: #9d5a25;
  --qv-radius-sm: 12px;
  --qv-radius: 20px;
  --qv-radius-lg: 32px;
  --qv-shadow: 0 24px 70px rgba(20, 42, 35, 0.1);
  --qv-shell: min(1240px, calc(100vw - 48px));
  --qv-transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--qv-cream);
  color: var(--qv-ink);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(184, 102, 54, 0.55);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  border-radius: 10px;
  background: var(--qv-white);
  color: var(--qv-ink);
  box-shadow: var(--qv-shadow);
}

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

.site-frame {
  min-height: 100vh;
  overflow: clip;
}

.site-main {
  min-height: 52vh;
}

h1,
h2,
h3,
h4 {
  margin-block: 0 0.75em;
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

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

p {
  margin-block: 0 1em;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--qv-copper);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button,
.wp-element-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--qv-forest);
  color: var(--qv-white);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: background var(--qv-transition), color var(--qv-transition), border-color var(--qv-transition), transform var(--qv-transition);
}

.button:hover,
.wp-element-button:hover {
  background: var(--qv-forest-dark);
  transform: translateY(-2px);
}

.button--secondary {
  border-color: var(--qv-line);
  background: transparent;
  color: var(--qv-ink);
}

.button--secondary:hover {
  border-color: var(--qv-forest);
  background: rgba(23, 63, 53, 0.06);
  color: var(--qv-forest);
}

.button--light {
  background: var(--qv-white);
  color: var(--qv-forest-dark);
}

.button--light:hover {
  background: var(--qv-sand);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--qv-forest);
  font-weight: 750;
  text-decoration: none;
}

.text-link svg {
  transition: transform var(--qv-transition);
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Header */
.utility-bar {
  background: var(--qv-forest-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.utility-bar p {
  margin: 0;
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--qv-line);
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(16px);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.site-header__inner {
  display: grid;
  grid-template-areas:
    "branding actions"
    "navigation navigation";
  grid-template-columns: minmax(260px, 1fr) auto;
  min-height: 132px;
  padding-block: 12px 10px;
  gap: 10px 34px;
  align-items: center;
}

.site-branding {
  display: flex;
  grid-area: branding;
  align-items: center;
}

.custom-logo-link {
  display: block;
  line-height: 0;
}

.custom-logo {
  width: auto;
  max-width: 190px;
  max-height: 62px;
  object-fit: contain;
}

.wordmark {
  display: flex;
  max-width: 440px;
  flex-direction: column;
  color: var(--qv-ink);
  text-decoration: none;
}

.wordmark__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.wordmark__tagline {
  max-width: 190px;
  margin-top: 5px;
  color: var(--qv-muted);
  font-size: 0.62rem;
  line-height: 1.15;
}

.primary-navigation {
  display: flex;
  grid-area: navigation;
  min-height: 48px;
  padding-top: 8px;
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--qv-line);
}

.catalog-link {
  display: inline-flex;
  min-height: 42px;
  padding: 11px 18px;
  align-items: center;
  border-radius: 999px;
  background: var(--qv-forest);
  color: var(--qv-white);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-menu,
.primary-menu ul {
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 0;
  align-items: center;
  list-style: none;
}

.primary-menu a {
  display: block;
  padding-block: 8px;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-menu a:hover {
  color: var(--qv-copper);
}

.primary-menu .menu-item-has-children {
  position: relative;
}

.primary-menu > .menu-item-has-children > a::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  display: grid;
  width: max-content;
  min-width: 220px;
  padding: 12px;
  gap: 2px;
  border: 1px solid var(--qv-line);
  border-radius: 14px;
  background: var(--qv-white);
  box-shadow: var(--qv-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--qv-transition), transform var(--qv-transition);
}

.primary-menu .sub-menu a {
  padding: 9px 11px;
  border-radius: 8px;
}

.primary-menu .sub-menu a:hover {
  background: var(--qv-sand);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  grid-area: actions;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.header-search .woocommerce-product-search,
.header-search .search-form {
  position: relative;
  width: clamp(180px, 16vw, 260px);
  margin: 0;
}

.header-search label {
  display: block;
}

.header-search .search-field {
  width: 100%;
  min-height: 44px;
  padding: 10px 44px 10px 15px;
  border: 1px solid var(--qv-line);
  border-radius: 999px;
  background: var(--qv-white);
  font-size: 0.86rem;
}

.header-search button,
.header-search [type="submit"] {
  position: absolute;
  top: 50%;
  right: 5px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--qv-forest);
  font-size: 0;
  transform: translateY(-50%);
}

.header-search [type="submit"] {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23173f35' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m16 16 5 5'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px;
}

.header-search button svg {
  font-size: 1rem;
}

.header-phone {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--qv-sand);
  color: var(--qv-forest);
}

.header-cart {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--qv-line);
  border-radius: 50%;
  background: var(--qv-white);
  color: var(--qv-forest-dark);
  text-decoration: none;
}

.header-cart__count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  min-width: 20px;
  height: 20px;
  padding-inline: 5px;
  place-items: center;
  border: 2px solid var(--qv-cream);
  border-radius: 999px;
  background: var(--qv-copper);
  color: var(--qv-white);
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--qv-line);
  border-radius: 50%;
  background: var(--qv-white);
}

.menu-toggle__icon {
  display: grid;
  place-items: center;
}

/* Homepage */
.home-hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 96px);
}

.home-hero::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 75%;
  background: radial-gradient(circle at 75% 15%, rgba(184, 102, 54, 0.11), transparent 30%);
  content: "";
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.home-hero h1 {
  max-width: 870px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 6.6vw, 6.6rem);
}

.home-hero__lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--qv-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.home-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  padding: 30px 0 0;
  margin: 38px 0 0;
  border-top: 1px solid var(--qv-line);
  list-style: none;
}

.home-hero__facts li {
  display: grid;
  padding-right: 20px;
  gap: 2px;
}

.home-hero__facts strong {
  font-size: 0.88rem;
}

.home-hero__facts span {
  color: var(--qv-muted);
  font-size: 0.78rem;
}

.home-hero__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--qv-radius-lg);
  background: var(--qv-forest-dark);
  box-shadow: var(--qv-shadow);
}

.home-hero__grain {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.04) 38% 39%, transparent 39% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 8px);
  opacity: 0.72;
}

.material-swatch {
  position: absolute;
  display: flex;
  width: 48%;
  min-height: 62%;
  padding: 24px;
  align-items: flex-end;
  border-radius: 22px 22px 8px 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: rotate(7deg);
}

.material-swatch::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(88deg, transparent 0 13px, rgba(80, 43, 20, 0.11) 14px, transparent 16px 28px);
  content: "";
}

.material-swatch span {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.material-swatch--one {
  top: 8%;
  left: 9%;
  background: linear-gradient(135deg, #e9c99a, #a96c3f);
}

.material-swatch--two {
  top: 18%;
  left: 31%;
  background: linear-gradient(135deg, #c48758, #754329);
  transform: rotate(-4deg);
}

.material-swatch--three {
  top: 31%;
  right: -3%;
  background: linear-gradient(135deg, #815037, #3f281d);
  transform: rotate(8deg);
}

.home-section {
  padding-block: clamp(64px, 8vw, 112px);
}

.section-heading {
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  gap: 44px;
  align-items: end;
}

.section-heading--split > p {
  max-width: 460px;
  margin: 0;
  color: var(--qv-muted);
}

.section-heading--split > .text-link {
  justify-self: end;
}

.task-section {
  background: var(--qv-white);
}

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

.task-card {
  position: relative;
  display: flex;
  min-height: 340px;
  padding: clamp(26px, 3vw, 38px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--qv-line);
  border-radius: var(--qv-radius);
  background: var(--qv-cream);
  color: var(--qv-ink);
  text-decoration: none;
  transition: color var(--qv-transition), background var(--qv-transition), transform var(--qv-transition);
}

.task-card::after {
  position: absolute;
  right: -20%;
  bottom: -45%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: rgba(184, 102, 54, 0.11);
  content: "";
  transition: transform 300ms ease;
}

.task-card:hover {
  background: var(--qv-forest);
  color: var(--qv-white);
  transform: translateY(-6px);
}

.task-card:hover::after {
  transform: scale(1.8);
}

.task-card__number {
  margin-bottom: auto;
  color: var(--qv-copper);
  font-size: 0.78rem;
  font-weight: 850;
}

.task-card h3 {
  max-width: 280px;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.task-card p {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0;
  color: var(--qv-muted);
}

.task-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.task-card__arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--qv-white);
  color: var(--qv-forest-dark);
}

.category-section {
  background: var(--qv-sand);
}

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

.category-card {
  display: block;
  overflow: hidden;
  border-radius: var(--qv-radius);
  background: var(--qv-white);
  color: var(--qv-ink);
  text-decoration: none;
  transition: box-shadow var(--qv-transition), transform var(--qv-transition);
}

.category-card:hover {
  box-shadow: var(--qv-shadow);
  transform: translateY(-6px);
}

.category-card__media {
  display: block;
  aspect-ratio: 1.45;
  overflow: hidden;
  background: #d8c6ad;
}

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

.category-card:hover .category-card__media img {
  transform: scale(1.04);
}

.category-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(92deg, transparent 0 21px, rgba(94, 54, 28, 0.12) 22px, transparent 24px 42px),
    linear-gradient(135deg, #ead4b3, #b87a4f);
}

.category-card__body {
  display: flex;
  padding: 22px 24px;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.category-card__body strong {
  font-size: 1.08rem;
}

.category-card__body span {
  color: var(--qv-muted);
  font-size: 0.78rem;
}

.featured-products {
  background: var(--qv-cream);
}

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

.home-product-card {
  min-width: 0;
}

.home-product-card__image {
  display: block;
  aspect-ratio: 0.88;
  overflow: hidden;
  border-radius: var(--qv-radius);
  background: var(--qv-sand);
}

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

.home-product-card:hover .home-product-card__image img {
  transform: scale(1.035);
}

.home-product-card__body {
  padding: 20px 4px 0;
}

.home-product-card h3 {
  margin-bottom: 16px;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

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

.home-product-card__footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.home-product-card .price {
  color: var(--qv-forest-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

.home-product-card .price del {
  color: var(--qv-muted);
  font-size: 0.8em;
  font-weight: 500;
}

.round-link {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--qv-line);
  border-radius: 50%;
  color: var(--qv-forest);
  text-decoration: none;
  transition: background var(--qv-transition), color var(--qv-transition);
}

.round-link:hover {
  background: var(--qv-forest);
  color: var(--qv-white);
}

.consultation-section {
  padding-top: 0;
}

.consultation-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: clamp(34px, 6vw, 72px);
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
  border-radius: var(--qv-radius-lg);
  background: var(--qv-forest-dark);
  color: var(--qv-white);
}

.consultation-card h2 {
  max-width: 720px;
  margin: 0;
  color: var(--qv-white);
}

.consultation-card__action p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
}

/* Editorial and utility templates */
.content-shell,
.prose-page,
.empty-state-page {
  padding-block: clamp(48px, 8vw, 100px);
}

.archive-header,
.page-header {
  max-width: 900px;
  margin-bottom: 48px;
}

.archive-header h1,
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.archive-description,
.entry-content {
  color: #39423f;
}

.entry-content {
  max-width: 820px;
}

.entry-content > * + * {
  margin-top: 1.4em;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.8em;
}

.entry-content a {
  color: var(--qv-forest);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 12px;
  border: 1px solid var(--qv-line);
  text-align: left;
}

.single-hero-image {
  max-width: 1100px;
  margin: 0 0 48px;
}

.single-hero-image img {
  width: 100%;
  border-radius: var(--qv-radius);
}

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

.post-card {
  overflow: hidden;
  border: 1px solid var(--qv-line);
  border-radius: var(--qv-radius);
  background: var(--qv-white);
}

.post-card__image {
  display: block;
  aspect-ratio: 1.4;
  overflow: hidden;
  background: var(--qv-sand);
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--qv-sand), #d2ad82);
}

.post-card__body {
  padding: 24px;
}

.post-card h2 {
  font-size: 1.35rem;
}

.post-card h2 a {
  text-decoration: none;
}

.empty-state {
  max-width: 760px;
  padding-block: 56px;
}

.empty-state-page .empty-state {
  padding-block: 80px;
}

.navigation.pagination {
  margin-top: 48px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  padding-inline: 10px;
  place-items: center;
  border: 1px solid var(--qv-line);
  border-radius: 999px;
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--qv-forest);
  background: var(--qv-forest);
  color: var(--qv-white);
}

/* Footer */
.site-footer {
  padding: 74px 0 24px;
  background: #102c26;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 0.9fr;
  gap: 48px;
}

.footer-wordmark {
  color: var(--qv-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  text-decoration: none;
}

.site-footer__brand p {
  max-width: 360px;
  margin: 16px 0 22px;
}

.site-footer__phone {
  color: var(--qv-white);
  font-size: 1.15rem;
  font-weight: 750;
  text-decoration: none;
}

.site-footer h2,
.footer-widget__title {
  margin-bottom: 18px;
  color: var(--qv-white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 10px;
}

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

.site-footer__bottom {
  display: flex;
  padding-top: 28px;
  margin-top: 60px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__legal {
  display: flex;
  gap: 22px;
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-areas: "branding actions toggle";
    grid-template-columns: minmax(180px, 1fr) auto auto;
    min-height: 88px;
    padding-block: 0;
    gap: 14px;
  }

  .menu-toggle {
    display: grid;
    grid-area: toggle;
  }

  .primary-navigation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    display: flex;
    width: min(420px, 88vw);
    height: 100vh;
    padding: 92px 28px 32px;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    background: var(--qv-cream);
    border-top: 0;
    box-shadow: var(--qv-shadow);
    transform: translateX(-105%);
    transition: transform 240ms ease;
  }

  .primary-navigation.is-open {
    transform: translateX(0);
  }

  .primary-menu,
  .primary-menu ul {
    display: grid;
    gap: 4px;
  }

  .primary-menu a {
    padding: 12px 4px;
    font-size: 1rem;
  }

  .primary-menu .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-menu > .menu-item-has-children > a::after {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .header-search {
    display: none;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.65fr);
    gap: 44px;
  }

  .home-hero__visual {
    min-height: 500px;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }
}

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

  .utility-bar__hours,
  .header-phone span:not(.header-phone__icon) {
    display: none;
  }

  .utility-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .site-header__inner {
    min-height: 72px;
    grid-template-areas: "branding actions toggle";
    grid-template-columns: minmax(120px, 1fr) auto auto;
    gap: 10px;
  }

  .custom-logo {
    max-width: 130px;
    max-height: 48px;
  }

  .wordmark__name {
    font-size: 1.32rem;
  }

  .wordmark__tagline {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-phone__icon,
  .header-cart,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .home-hero {
    padding-top: 42px;
  }

  .home-hero__grid {
    display: flex;
    flex-direction: column;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .home-hero__visual {
    width: 100%;
    min-height: 430px;
  }

  .home-hero__facts {
    gap: 14px;
  }

  .section-heading--split,
  .consultation-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading--split > .text-link {
    justify-self: start;
  }

  .task-grid,
  .category-grid,
  .post-grid {
    grid-template-columns: 1fr 1fr;
  }

  .task-card:last-child,
  .category-card:last-child {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 560px) {
  :root {
    --qv-shell: calc(100% - 24px);
    --qv-radius: 16px;
    --qv-radius-lg: 22px;
  }

  body {
    font-size: 15px;
  }

  .utility-bar {
    font-size: 0.67rem;
  }

  .site-header__inner {
    grid-template-columns: minmax(96px, 1fr) auto auto;
  }

  .header-actions {
    gap: 7px;
  }

  .header-phone__icon,
  .header-cart,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .home-hero h1 {
    font-size: clamp(2.75rem, 13.5vw, 4.2rem);
  }

  .home-hero__lead {
    font-size: 1rem;
  }

  .home-hero .button-row .button {
    width: 100%;
  }

  .home-hero__facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-hero__facts li {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero__visual {
    min-height: 350px;
  }

  .material-swatch {
    padding: 16px;
  }

  .task-grid,
  .category-grid,
  .home-product-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .task-card,
  .task-card:last-child,
  .category-card:last-child {
    grid-column: auto;
  }

  .task-card {
    min-height: 290px;
  }

  .home-product-card__image {
    aspect-ratio: 1.05;
  }

  .consultation-card .button {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-footer__legal {
    flex-direction: column;
    gap: 7px;
  }
}

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

/* Brand-led storefront refresh */
:root {
  --qv-forest: #6b4329;
  --qv-forest-dark: #2c231d;
  --qv-copper: #a85f31;
  --qv-sand: #eee3d5;
  --qv-cream: #faf8f4;
  --qv-white: #fff;
  --qv-ink: #2b2723;
  --qv-muted: #746b63;
  --qv-line: rgba(54, 43, 34, 0.16);
  --qv-radius-sm: 4px;
  --qv-radius: 8px;
  --qv-radius-lg: 12px;
  --qv-shadow: 0 18px 52px rgba(55, 38, 25, 0.13);
  --qv-shell: min(1240px, calc(100vw - 48px));
}

body {
  background: var(--qv-cream);
  color: var(--qv-ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-weight: 750;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.65rem, 5vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.eyebrow {
  color: var(--qv-copper);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
}

.button,
.wp-element-button {
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 750;
}

.button:hover,
.wp-element-button:hover {
  transform: translateY(-1px);
}

.utility-bar {
  background: #30251e;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.73rem;
}

.utility-bar__inner {
  min-height: 30px;
}

.site-header {
  border-bottom-color: rgba(54, 43, 34, 0.12);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  grid-template-columns: minmax(210px, 1fr) auto;
  min-height: 126px;
  padding-block: 9px 8px;
  gap: 7px 34px;
}

.site-branding {
  min-height: 76px;
}

.brand-logo,
.brand-logo picture {
  display: block;
  line-height: 0;
}

.brand-logo img {
  width: auto;
  max-width: 178px;
  max-height: 76px;
  object-fit: contain;
}

.primary-navigation {
  min-height: 44px;
  padding-top: 7px;
  gap: 24px;
}

.catalog-link {
  min-height: 38px;
  padding: 9px 19px;
  border-radius: 4px;
  background: var(--qv-forest);
  font-size: 0.84rem;
  letter-spacing: 0.015em;
}

.primary-menu,
.primary-menu ul {
  gap: 25px;
}

.primary-menu a {
  font-size: 0.88rem;
  font-weight: 700;
}

.primary-menu .sub-menu {
  border-radius: 6px;
}

.header-actions {
  gap: 16px;
}

.header-search .woocommerce-product-search,
.header-search .search-form {
  width: clamp(210px, 20vw, 310px);
}

.header-search .search-field {
  min-height: 42px;
  border-radius: 5px;
  background: #faf9f7;
}

.header-search [type="submit"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b4329' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m16 16 5 5'/%3E%3C/svg%3E");
}

.header-phone {
  font-size: 0.91rem;
}

.header-phone__icon {
  border-radius: 4px;
  background: var(--qv-sand);
  color: var(--qv-forest);
}

.header-cart,
.menu-toggle {
  border-radius: 4px;
}

.header-cart__count {
  background: var(--qv-copper);
}

.home-hero {
  padding-block: 28px 58px;
}

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

.home-hero__media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--qv-radius-lg);
  background: #4a3426;
  box-shadow: var(--qv-shadow);
  isolation: isolate;
}

.home-hero__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.home-hero__media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(30, 23, 18, 0.94) 0%, rgba(36, 27, 21, 0.82) 42%, rgba(34, 25, 19, 0.25) 72%, rgba(34, 25, 19, 0.08) 100%),
    linear-gradient(0deg, rgba(30, 22, 17, 0.35), transparent 45%);
  content: "";
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(66%, 760px);
  min-height: 610px;
  padding: clamp(46px, 6vw, 78px);
  flex-direction: column;
  justify-content: center;
  color: var(--qv-white);
}

.home-hero .eyebrow {
  color: #e8c8a6;
}

.home-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--qv-white);
  font-size: clamp(2.9rem, 5.1vw, 4.75rem);
  line-height: 1.03;
  text-wrap: balance;
}

.home-hero__lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}

.home-hero .button--primary {
  background: #f7f1e9;
  color: #34261e;
}

.home-hero .button--primary:hover {
  background: var(--qv-white);
}

.home-hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--qv-white);
}

.home-hero .button--secondary:hover {
  border-color: var(--qv-white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--qv-white);
}

.home-hero__facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  padding-top: 23px;
  margin-top: 32px;
  border-top-color: rgba(255, 255, 255, 0.25);
  gap: 18px;
}

.home-hero__facts li {
  padding-right: 8px;
}

.home-hero__facts strong {
  color: var(--qv-white);
  font-size: 0.78rem;
}

.home-hero__facts span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  line-height: 1.35;
}

.home-section {
  padding-block: clamp(60px, 7vw, 94px);
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.collection-section {
  background: var(--qv-white);
}

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

.collection-card {
  position: relative;
  display: block;
  min-height: 246px;
  grid-column: span 3;
  overflow: hidden;
  border-radius: var(--qv-radius);
  background: #71503b;
  color: var(--qv-white);
  text-decoration: none;
  isolation: isolate;
}

.collection-card--wide {
  min-height: 356px;
  grid-column: span 8;
}

.collection-card--main {
  min-height: 356px;
  grid-column: span 4;
}

.collection-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.collection-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(31, 23, 18, 0.88) 0%, rgba(31, 23, 18, 0.08) 74%);
}

.collection-card__body {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  padding-right: 42px;
  flex-direction: column;
  gap: 4px;
}

.collection-card__body strong {
  color: var(--qv-white);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.collection-card--wide .collection-card__body strong {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.collection-card__body span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.collection-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.collection-card:hover > img {
  transform: scale(1.045);
}

.collection-card:hover .collection-card__arrow {
  border-color: var(--qv-white);
  background: var(--qv-white);
  color: var(--qv-forest-dark);
}

.collection-footer {
  display: flex;
  padding-top: 28px;
  justify-content: center;
}

.task-section {
  background: var(--qv-cream);
}

.task-grid {
  gap: 16px;
}

.task-card {
  min-height: 232px;
  padding: 28px 30px;
  border-radius: var(--qv-radius);
  background: var(--qv-white);
  transition: border-color var(--qv-transition), box-shadow var(--qv-transition), transform var(--qv-transition);
}

.task-card::after {
  right: auto;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 0;
  background: var(--qv-copper);
}

.task-card:hover {
  border-color: rgba(107, 67, 41, 0.42);
  background: var(--qv-white);
  color: var(--qv-ink);
  box-shadow: var(--qv-shadow);
  transform: translateY(-3px);
}

.task-card:hover::after {
  transform: none;
}

.task-card__number {
  margin-bottom: 30px;
}

.task-card h3 {
  max-width: 260px;
  margin-bottom: 9px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.task-card p,
.task-card:hover p {
  max-width: 300px;
  padding-right: 34px;
  color: var(--qv-muted);
  font-size: 0.88rem;
}

.task-card__arrow {
  right: 24px;
  bottom: 24px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--qv-line);
  background: var(--qv-cream);
  color: var(--qv-forest);
}

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

.home-product-card__image {
  aspect-ratio: 1;
  border-radius: 6px;
}

.home-product-card__body {
  padding-top: 16px;
}

.home-product-card h3 {
  margin-bottom: 12px;
}

.round-link {
  border-radius: 4px;
}

.consultation-card {
  border-radius: 10px;
  background: #34271f;
}

.site-footer {
  background: #2d241e;
}

.footer-logo {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 4px;
  background: var(--qv-white);
  line-height: 0;
}

.footer-logo img {
  width: auto;
  max-width: 145px;
  max-height: 66px;
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-areas: "branding actions toggle";
    grid-template-columns: minmax(160px, 1fr) auto auto;
    min-height: 88px;
    padding-block: 4px;
  }

  .site-branding {
    min-height: 0;
  }

  .brand-logo img {
    max-width: 150px;
    max-height: 68px;
  }

  .primary-navigation {
    padding-top: 88px;
    background: var(--qv-white);
  }

  .home-hero__content {
    width: min(75%, 720px);
  }

  .collection-card--compact {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 76px;
  }

  .brand-logo img {
    max-width: 132px;
    max-height: 58px;
  }

  .home-hero {
    padding-top: 18px;
  }

  .home-hero__media,
  .home-hero__content {
    min-height: 600px;
  }

  .home-hero__media::after {
    background: linear-gradient(90deg, rgba(30, 23, 18, 0.94), rgba(34, 25, 19, 0.45));
  }

  .home-hero__content {
    width: 100%;
    padding: 46px 38px;
  }

  .home-hero h1 {
    max-width: 620px;
    font-size: clamp(2.6rem, 8.5vw, 4.2rem);
  }

  .collection-card--wide,
  .collection-card--main,
  .collection-card--compact {
    min-height: 290px;
    grid-column: span 6;
  }

  .collection-card--wide {
    grid-column: span 12;
  }

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

  .task-card,
  .task-card:last-child {
    min-height: 210px;
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --qv-radius: 6px;
    --qv-radius-lg: 8px;
  }

  .utility-bar__inner {
    min-height: 28px;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand-logo img {
    max-width: 104px;
    max-height: 52px;
  }

  .home-hero {
    padding-bottom: 42px;
  }

  .home-hero__media,
  .home-hero__content {
    min-height: 610px;
  }

  .home-hero__media > img {
    object-position: 61% center;
  }

  .home-hero__media::after {
    background: linear-gradient(90deg, rgba(29, 22, 17, 0.94), rgba(34, 25, 19, 0.58));
  }

  .home-hero__content {
    padding: 38px 22px;
    justify-content: flex-end;
  }

  .home-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .home-hero__lead {
    font-size: 0.96rem;
  }

  .home-hero__facts {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .home-hero__facts li {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .home-section {
    padding-block: 52px;
  }

  .section-heading--split {
    gap: 12px;
  }

  .collection-card--wide,
  .collection-card--main,
  .collection-card--compact {
    min-height: 250px;
    grid-column: span 12;
  }

  .collection-card--wide {
    min-height: 300px;
  }

  .collection-card__body {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .task-card,
  .task-card:last-child {
    min-height: 220px;
    padding: 26px 24px;
  }

  .home-product-card__image {
    aspect-ratio: 1.08;
  }
}

/* Commerce-first storefront refinement */
:root {
  --qv-forest: #6e4028;
  --qv-forest-dark: #30231b;
  --qv-copper: #ad6232;
  --qv-sand: #eee3d4;
  --qv-cream: #faf8f4;
  --qv-ink: #221d19;
  --qv-muted: #6f645c;
  --qv-line: rgba(50, 37, 28, 0.15);
  --qv-radius-sm: 4px;
  --qv-radius: 6px;
  --qv-radius-lg: 8px;
  --qv-shadow: 0 18px 48px rgba(50, 35, 25, 0.1);
}

body {
  background: #fff;
  color: var(--qv-ink);
}

.button,
.wp-element-button {
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 4px;
}

.button:hover,
.wp-element-button:hover {
  transform: none;
}

.site-header {
  background: #fff;
  backdrop-filter: none;
}

.site-header__inner {
  min-height: 118px;
  padding-block: 7px 8px;
}

.brand-logo img {
  max-width: 164px;
  max-height: 80px;
}

.primary-navigation {
  min-height: 43px;
  padding-top: 5px;
}

.catalog-link,
.header-search .search-field,
.header-phone__icon,
.header-cart,
.menu-toggle {
  border-radius: 4px;
}

.catalog-link {
  min-height: 39px;
  padding: 9px 18px;
}

.home-hero {
  padding-block: 24px 0;
  background: var(--qv-cream);
}

.home-hero__media {
  min-height: 360px;
  border-radius: 6px 6px 0 0;
  box-shadow: none;
}

.home-hero__media > img {
  object-position: center;
}

.home-hero__media::after {
  background: linear-gradient(90deg, rgba(37, 26, 19, 0.91) 0%, rgba(49, 32, 22, 0.73) 38%, rgba(40, 27, 19, 0.18) 69%, transparent 100%);
}

.home-hero__content {
  width: min(54%, 640px);
  min-height: 360px;
  padding: 38px 52px;
}

.home-hero .eyebrow {
  margin-bottom: 12px;
  color: #e8c49f;
}

.home-hero h1 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 3.7vw, 3.45rem);
  line-height: 1.03;
}

.home-hero__lead {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.5;
}

.home-hero .button--primary {
  background: #fff;
}

.home-benefits {
  display: grid;
  padding: 19px 28px;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--qv-line);
  border-top: 0;
  border-radius: 0 0 6px 6px;
  background: #fff;
  list-style: none;
}

.home-benefits li {
  display: flex;
  padding: 2px 24px;
  flex-direction: column;
  border-right: 1px solid var(--qv-line);
}

.home-benefits li:first-child {
  padding-left: 0;
}

.home-benefits li:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-benefits strong {
  font-size: 0.86rem;
  line-height: 1.3;
}

.home-benefits span {
  margin-top: 3px;
  color: var(--qv-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.home-section {
  padding-block: 68px;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 54px;
}

.section-heading--split > p {
  max-width: 410px;
  padding-top: 28px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.collection-section {
  background: #fff;
}

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

.collection-card,
.collection-card--wide,
.collection-card--main,
.collection-card--compact {
  min-height: 256px;
  grid-column: auto;
  border-radius: 3px;
  box-shadow: none;
}

.collection-card__shade {
  background: linear-gradient(0deg, rgba(26, 20, 16, 0.84) 0%, rgba(28, 20, 15, 0.12) 66%);
}

.collection-card__body,
.collection-card--wide .collection-card__body {
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.collection-card__body strong,
.collection-card--wide .collection-card__body strong {
  max-width: 290px;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.08;
}

.collection-card__body span {
  max-width: 280px;
  font-size: 0.75rem;
}

.collection-card__arrow {
  right: 18px;
  bottom: 18px;
  width: 32px;
  height: 32px;
}

.collection-footer {
  padding-top: 24px;
}

.featured-products {
  background: var(--qv-cream);
}

.home-product-card__image {
  border: 1px solid rgba(50, 37, 28, 0.08);
  border-radius: 3px;
  background: #fff;
}

.home-product-card__body {
  padding-top: 14px;
}

.task-section {
  background: #fff;
}

.task-card {
  min-height: 210px;
  border-radius: 4px;
  background: var(--qv-cream);
  box-shadow: none;
}

.task-card:hover {
  box-shadow: 0 12px 32px rgba(50, 35, 25, 0.09);
}

.consultation-section {
  padding-top: 8px;
  background: #fff;
}

.consultation-card {
  border-radius: 6px;
}

/* The legacy consent plugin should not cover half of the storefront. */
#cookie-law-info-bar {
  right: 18px !important;
  bottom: 18px !important;
  left: 18px !important;
  width: auto !important;
  max-width: 960px !important;
  padding: 13px 15px !important;
  margin-inline: auto !important;
  border: 1px solid var(--qv-line) !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: var(--qv-ink) !important;
  box-shadow: 0 12px 38px rgba(35, 27, 21, 0.18) !important;
}

#cookie-law-info-bar .cli-bar-container {
  display: flex !important;
  max-width: none !important;
  padding: 0 !important;
  gap: 18px;
  align-items: center;
}

#cookie-law-info-bar .cli-bar-message {
  width: auto !important;
  flex: 1;
  font-size: 0.72rem;
  line-height: 1.42;
  text-align: left;
}

#cookie-law-info-bar .cli-bar-btn_container {
  margin: 0 !important;
}

#cookie-law-info-bar #cookie_action_close_header {
  min-width: 116px;
  padding: 10px 14px !important;
  margin: 0 !important;
  border-radius: 3px !important;
  background: var(--qv-forest) !important;
  color: #fff !important;
  font-size: 0.72rem !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 72px;
  }

  .brand-logo img {
    max-width: 124px;
    max-height: 58px;
  }

  .home-hero__media,
  .home-hero__content {
    min-height: 350px;
  }

  .home-hero__content {
    width: min(72%, 560px);
    padding: 34px 36px;
  }

  .home-hero h1 {
    font-size: clamp(2.15rem, 7vw, 3.25rem);
  }

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

  .section-heading--split > p {
    padding-top: 0;
  }

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

  .collection-card,
  .collection-card--wide,
  .collection-card--main,
  .collection-card--compact {
    min-height: 250px;
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .utility-bar__inner {
    min-height: 26px;
    white-space: nowrap;
  }

  .utility-bar__hours {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand-logo img {
    max-width: 102px;
    max-height: 50px;
  }

  .home-hero {
    padding-block: 12px 0;
  }

  .home-hero__media,
  .home-hero__content {
    min-height: 340px;
  }

  .home-hero__media > img {
    object-position: center;
  }

  .home-hero__media::after {
    background: linear-gradient(90deg, rgba(36, 25, 18, 0.9), rgba(43, 29, 20, 0.53));
  }

  .home-hero__content {
    width: 100%;
    padding: 26px 22px;
    justify-content: flex-end;
  }

  .home-hero .eyebrow {
    margin-bottom: 9px;
    font-size: 0.66rem;
  }

  .home-hero h1 {
    max-width: 310px;
    margin-bottom: 12px;
    font-size: 2.05rem;
    line-height: 1.04;
  }

  .home-hero__lead {
    max-width: 315px;
    margin-bottom: 17px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .home-hero .button-row .button {
    width: auto;
    min-height: 44px;
  }

  .home-benefits {
    padding: 7px 18px;
    grid-template-columns: 1fr;
  }

  .home-benefits li,
  .home-benefits li:first-child,
  .home-benefits li:last-child {
    display: grid;
    padding: 8px 0;
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--qv-line);
    gap: 10px;
  }

  .home-benefits li:last-child {
    border-bottom: 0;
  }

  .home-benefits span {
    margin: 0;
    text-align: right;
  }

  .home-section {
    padding-block: 48px;
  }

  .section-heading {
    margin-bottom: 23px;
  }

  .section-heading--split {
    gap: 8px;
  }

  .section-heading h2 {
    font-size: 1.9rem;
  }

  .section-heading--split > p {
    padding-top: 0;
    font-size: 0.9rem;
  }

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

  .collection-card,
  .collection-card--wide,
  .collection-card--main,
  .collection-card--compact {
    min-height: 220px;
    grid-column: auto;
  }

  .collection-card__body,
  .collection-card--wide .collection-card__body {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }

  .collection-card__body strong,
  .collection-card--wide .collection-card__body strong {
    font-size: 1.25rem;
  }

  .featured-products {
    padding-block: 48px;
  }

  .task-card,
  .task-card:last-child {
    min-height: 196px;
  }

  #cookie-law-info-bar {
    right: 10px !important;
    bottom: 10px !important;
    left: 10px !important;
    padding: 10px 11px !important;
  }

  #cookie-law-info-bar .cli-bar-container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  #cookie-law-info-bar .cli-bar-message {
    font-size: 0.62rem;
    line-height: 1.3;
  }

  #cookie-law-info-bar .cli-bar-btn_container {
    align-self: end;
    justify-content: flex-end !important;
  }

  #cookie-law-info-bar #cookie_action_close_header {
    min-width: 0;
    padding: 8px 12px !important;
  }
}

/* Wide contemporary storefront */
:root {
  --qv-forest: #1d1d1a;
  --qv-forest-dark: #151513;
  --qv-copper: #c56d38;
  --qv-sand: #eee9e1;
  --qv-cream: #f6f5f2;
  --qv-white: #fff;
  --qv-ink: #1d1d1a;
  --qv-muted: #686863;
  --qv-line: rgba(29, 29, 26, 0.13);
  --qv-radius-sm: 7px;
  --qv-radius: 12px;
  --qv-radius-lg: 16px;
  --qv-shadow: 0 24px 70px rgba(24, 22, 18, 0.1);
  --qv-shell: min(1560px, calc(100vw - 64px));
}

body {
  background: var(--qv-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

h1,
h2,
h3,
h4 {
  font-weight: 680;
  letter-spacing: -0.045em;
}

.eyebrow {
  color: var(--qv-copper);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.button,
.wp-element-button {
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 8px;
}

.utility-bar {
  background: var(--qv-forest-dark);
  font-size: 0.72rem;
}

.utility-bar__inner {
  min-height: 30px;
}

.site-header {
  border-bottom-color: rgba(29, 29, 26, 0.1);
}

.site-header__inner {
  display: grid;
  min-height: 86px;
  padding-block: 0;
  grid-template-areas: "branding navigation actions";
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(24px, 2.6vw, 48px);
}

.brand-logo img {
  max-width: 138px;
  max-height: 70px;
}

.primary-navigation {
  min-width: 0;
  min-height: 86px;
  padding: 0;
  gap: clamp(14px, 1.5vw, 26px);
  border-top: 0;
}

.catalog-link {
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 8px;
  background: var(--qv-forest);
}

.primary-menu,
.primary-menu ul {
  min-width: 0;
  gap: clamp(12px, 1.3vw, 24px);
}

.primary-menu a {
  font-size: clamp(0.78rem, 0.82vw, 0.9rem);
  font-weight: 650;
  white-space: nowrap;
}

.header-actions {
  gap: 10px;
}

.header-search .woocommerce-product-search,
.header-search .search-form {
  width: clamp(180px, 15vw, 250px);
}

.header-search .search-field {
  min-height: 42px;
  border-radius: 10px;
  background: var(--qv-cream);
}

.header-phone__icon,
.header-cart,
.menu-toggle {
  border-radius: 9px;
}

.header-phone {
  font-size: 0.84rem;
}

.home-hero {
  padding: 0;
  background: var(--qv-white);
}

.home-hero > .shell {
  width: 100%;
}

.home-hero__media {
  min-height: clamp(430px, 34vw, 580px);
  border-radius: 0;
}

.home-hero__media::after {
  background:
    linear-gradient(90deg, rgba(18, 18, 16, 0.9) 0%, rgba(19, 19, 17, 0.7) 36%, rgba(19, 19, 17, 0.14) 68%, transparent 100%),
    linear-gradient(0deg, rgba(18, 18, 16, 0.24), transparent 50%);
}

.home-hero__content {
  width: 100%;
  min-height: clamp(430px, 34vw, 580px);
  padding-block: 64px 88px;
  padding-right: max(50vw, 680px);
  padding-left: max(32px, calc((100vw - 1560px) / 2 + 32px));
}

.home-hero .eyebrow {
  color: #f0b98f;
}

.home-hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.home-hero__lead {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
}

.home-hero .button--primary {
  min-height: 52px;
  background: var(--qv-white);
}

.home-benefits {
  position: relative;
  z-index: 3;
  width: var(--qv-shell);
  padding: 25px 34px;
  margin: -42px auto 0;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(27, 25, 21, 0.12);
}

.home-benefits li {
  padding-inline: clamp(22px, 3vw, 48px);
}

.home-benefits strong {
  font-size: 0.92rem;
}

.home-benefits span {
  font-size: 0.78rem;
}

.home-section {
  padding-block: clamp(82px, 7vw, 118px);
}

.section-heading {
  margin-bottom: clamp(34px, 4vw, 56px);
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.4fr);
  gap: clamp(40px, 6vw, 96px);
}

.section-heading h2 {
  max-width: 960px;
  font-size: clamp(2.55rem, 3.6vw, 4.1rem);
  line-height: 1;
}

.section-heading--split > p {
  max-width: 430px;
  padding-top: 30px;
  font-size: 0.98rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 20px);
}

.collection-card,
.collection-card--wide,
.collection-card--main,
.collection-card--compact {
  min-height: 290px;
  grid-column: span 3;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(28, 25, 20, 0.08);
}

.collection-card:nth-child(1) {
  min-height: clamp(390px, 30vw, 500px);
  grid-column: span 7;
}

.collection-card:nth-child(2) {
  min-height: clamp(390px, 30vw, 500px);
  grid-column: span 5;
}

.collection-card__shade {
  background: linear-gradient(0deg, rgba(18, 18, 16, 0.82) 0%, rgba(18, 18, 16, 0.04) 66%);
}

.collection-card__body,
.collection-card--wide .collection-card__body {
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.collection-card__body strong,
.collection-card--wide .collection-card__body strong {
  max-width: 440px;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
}

.collection-card:nth-child(-n + 2) .collection-card__body strong {
  font-size: clamp(2rem, 2.7vw, 3rem);
}

.collection-card__body span {
  font-size: 0.8rem;
}

.collection-card__arrow {
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  background: rgba(20, 20, 18, 0.2);
  backdrop-filter: blur(8px);
}

.collection-card:hover .collection-card__arrow {
  border-color: var(--qv-white);
  background: var(--qv-white);
  color: var(--qv-ink);
}

.collection-footer {
  padding-top: 34px;
}

.featured-products {
  background: var(--qv-cream);
}

.home-product-grid {
  gap: clamp(18px, 1.8vw, 30px);
}

.home-product-card__image {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(28, 25, 20, 0.06);
}

.home-product-card h3 {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  letter-spacing: -0.025em;
}

.round-link {
  border-radius: 8px;
}

.task-section {
  background: var(--qv-white);
}

.task-grid {
  gap: clamp(16px, 1.5vw, 24px);
}

.task-card {
  min-height: 260px;
  padding: 34px 36px;
  border: 0;
  border-radius: 12px;
  background: var(--qv-cream);
}

.task-card::after {
  top: auto;
  right: 28px;
  bottom: 0;
  left: 28px;
  width: auto;
  height: 3px;
  background: var(--qv-copper);
}

.task-card__number {
  margin-bottom: 42px;
  color: var(--qv-copper);
}

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

.task-card__arrow {
  border-radius: 8px;
  background: var(--qv-white);
}

.consultation-section {
  padding: 0 0 clamp(82px, 7vw, 118px);
}

.consultation-card {
  min-height: 340px;
  padding: clamp(48px, 5vw, 82px);
  border-radius: 16px;
  background: var(--qv-forest-dark);
}

.site-footer {
  background: var(--qv-forest-dark);
}

@media (max-width: 1280px) {
  .site-header__inner {
    min-height: 78px;
    grid-template-areas: "branding actions toggle";
    grid-template-columns: minmax(150px, 1fr) auto auto;
    gap: 14px;
  }

  .brand-logo img {
    max-width: 128px;
    max-height: 62px;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-navigation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    display: flex;
    width: min(430px, 88vw);
    height: 100vh;
    min-height: 0;
    padding: 92px 28px 32px;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    border: 0;
    background: var(--qv-white);
    box-shadow: var(--qv-shadow);
    transform: translateX(-105%);
    transition: transform 240ms ease;
  }

  .primary-navigation.is-open {
    transform: translateX(0);
  }

  .primary-menu,
  .primary-menu ul {
    display: grid;
    gap: 4px;
  }

  .primary-menu a {
    padding: 12px 4px;
    font-size: 1rem;
    white-space: normal;
  }

  .primary-menu .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-menu > .menu-item-has-children > a::after {
    display: none;
  }

  .header-search {
    display: none;
  }

  .collection-card,
  .collection-card--wide,
  .collection-card--main,
  .collection-card--compact,
  .collection-card:nth-child(1),
  .collection-card:nth-child(2) {
    min-height: 330px;
    grid-column: span 6;
  }
}

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

  .home-hero__media,
  .home-hero__content {
    min-height: 440px;
  }

  .home-hero__content {
    padding: 54px 34% 72px 32px;
  }

  .home-hero h1 {
    font-size: clamp(2.55rem, 7.6vw, 3.8rem);
  }

  .home-benefits {
    padding: 20px 24px;
    margin-top: -30px;
  }

  .home-benefits li {
    padding-inline: 18px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading--split > p {
    padding-top: 0;
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 7vw, 3.3rem);
  }

  .collection-card,
  .collection-card--wide,
  .collection-card--main,
  .collection-card--compact,
  .collection-card:nth-child(1),
  .collection-card:nth-child(2) {
    min-height: 300px;
    grid-column: span 6;
  }

  .collection-card:nth-child(-n + 2) .collection-card__body strong {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }

  .task-card {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  :root {
    --qv-shell: calc(100% - 24px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .home-hero__media,
  .home-hero__content {
    min-height: 370px;
  }

  .home-hero__media > img {
    object-position: center;
  }

  .home-hero__media::after {
    background: linear-gradient(90deg, rgba(17, 17, 15, 0.91), rgba(17, 17, 15, 0.38));
  }

  .home-hero__content {
    padding: 38px 24px;
    justify-content: flex-end;
  }

  .home-hero h1 {
    max-width: 330px;
    font-size: 2.35rem;
  }

  .home-benefits {
    width: calc(100% - 24px);
    padding: 8px 18px;
    margin-top: -16px;
    border-radius: 10px;
  }

  .home-benefits li,
  .home-benefits li:first-child,
  .home-benefits li:last-child {
    padding-block: 9px;
  }

  .home-section {
    padding-block: 64px;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .collection-card,
  .collection-card--wide,
  .collection-card--main,
  .collection-card--compact,
  .collection-card:nth-child(1),
  .collection-card:nth-child(2) {
    min-height: 250px;
    grid-column: auto;
  }

  .collection-card:nth-child(1) {
    min-height: 310px;
  }

  .collection-card__body,
  .collection-card--wide .collection-card__body {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .collection-card__body strong,
  .collection-card--wide .collection-card__body strong,
  .collection-card:nth-child(-n + 2) .collection-card__body strong {
    font-size: 1.45rem;
  }

  .collection-card__arrow {
    right: 18px;
    bottom: 18px;
    width: 38px;
    height: 38px;
  }

  .task-card,
  .task-card:last-child {
    min-height: 208px;
    padding: 28px 26px;
  }

  .task-card__number {
    margin-bottom: 28px;
  }

  .consultation-card {
    min-height: 0;
    padding: 38px 28px;
    border-radius: 12px;
  }
}

/* Header commerce controls: compact catalog dropdown and direct messengers. */
.header-catalog {
  position: relative;
  flex: none;
}

.header-catalog__toggle {
  display: inline-flex;
  min-height: 42px;
  padding: 9px 14px;
  gap: 9px;
  align-items: center;
  border: 1px solid var(--qv-forest);
  border-radius: 9px;
  background: var(--qv-forest);
  color: var(--qv-white);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1;
}

.header-catalog__icon {
  display: grid;
  place-items: center;
}

.header-catalog__icon svg {
  width: 18px;
  height: 18px;
}

.header-catalog__chevron {
  width: 7px;
  height: 7px;
  margin: -3px 1px 0 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--qv-transition);
}

.header-catalog.is-open .header-catalog__chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.header-catalog__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 140;
  width: min(390px, calc(100vw - 48px));
  max-height: min(620px, calc(100vh - 130px));
  padding: 12px;
  overflow-y: auto;
  border: 1px solid var(--qv-line);
  border-radius: 12px;
  background: var(--qv-white);
  box-shadow: 0 24px 64px rgba(18, 28, 24, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-7px);
  transition: opacity var(--qv-transition), transform var(--qv-transition);
}

.header-catalog.is-open .header-catalog__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-catalog__head {
  display: flex;
  min-height: 45px;
  padding: 4px 6px 11px;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--qv-line);
}

.header-catalog__head strong {
  color: var(--qv-ink);
  font-size: 0.94rem;
}

.header-catalog__head a {
  color: var(--qv-copper);
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.header-catalog__list {
  display: grid;
  padding: 7px 0 0;
  margin: 0;
  gap: 1px;
  list-style: none;
}

.header-catalog__list a {
  display: flex;
  min-height: 43px;
  padding: 9px 10px;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  border-radius: 7px;
  color: var(--qv-ink);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.header-catalog__list a:hover,
.header-catalog__list a:focus-visible {
  background: var(--qv-cream);
  color: var(--qv-copper);
}

.header-catalog__list svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.header-messengers {
  display: flex;
  flex: none;
  gap: 6px;
  align-items: center;
}

.header-messenger {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--qv-line);
  border-radius: 9px;
  background: var(--qv-white);
  text-decoration: none;
  transition: border-color var(--qv-transition), background var(--qv-transition), color var(--qv-transition), transform var(--qv-transition);
}

.header-messenger:hover {
  transform: translateY(-1px);
}

.header-messenger--whatsapp {
  color: #168b55;
}

.header-messenger--whatsapp:hover {
  border-color: #168b55;
  background: #168b55;
  color: var(--qv-white);
}

.header-messenger--whatsapp svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.7;
}

.header-messenger--max {
  border-color: rgba(78, 94, 222, 0.22);
  background: #f3f4ff;
  color: #4e5ede;
}

.header-messenger--max:hover {
  border-color: #4e5ede;
  background: #4e5ede;
  color: var(--qv-white);
}

.header-messenger--max span {
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.primary-navigation__contacts {
  display: none;
}

@media (max-width: 1280px) {
  .header-phone > span:last-child {
    display: none;
  }

  .primary-navigation__contacts {
    display: grid;
    padding-top: 22px;
    margin-top: auto;
    gap: 14px;
    border-top: 1px solid var(--qv-line);
  }

  .primary-navigation__phone {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--qv-ink);
    font-weight: 750;
    text-decoration: none;
  }

  .primary-navigation__phone svg {
    width: 19px;
    height: 19px;
    color: var(--qv-copper);
  }

  .header-messengers--navigation .header-messenger {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 700px) {
  .site-header__inner {
    grid-template-columns: minmax(92px, 1fr) auto auto;
    gap: 8px;
  }

  .brand-logo img {
    max-width: 112px;
    max-height: 56px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-phone {
    display: none;
  }

  .header-catalog__toggle {
    min-width: 42px;
    min-height: 40px;
    padding: 8px 10px;
  }

  .header-catalog__chevron {
    display: none;
  }

  .header-messenger {
    width: 38px;
    height: 38px;
  }

  .header-cart,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 560px) {
  .site-header {
    backdrop-filter: none;
  }

  .header-catalog__toggle > span:nth-child(2) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .header-catalog__menu {
    position: fixed;
    top: 104px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100vh - 116px);
  }

  .site-header.is-sticky .header-catalog__menu {
    top: 80px;
    max-height: calc(100vh - 92px);
  }
}

@media (max-width: 400px) {
  .brand-logo img {
    max-width: 100px;
  }

  .header-messengers--header .header-messenger--max {
    display: none;
  }
}

/* Design concept: a precise interface around warm, real product photography. */
@font-face {
  font-family: "Qvalitet Manrope";
  src: url("../fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Qvalitet Data";
  src: url("../fonts/source-code-pro.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --qv-forest: #145a6e;
  --qv-forest-dark: #103b47;
  --qv-copper: #a8380f;
  --qv-sand: #e4f0f3;
  --qv-cream: #f4f2ed;
  --qv-white: #fff;
  --qv-ink: #16191c;
  --qv-muted: #687078;
  --qv-line: #d9d6ce;
  --qv-success: #2c6e4b;
  --qv-radius-sm: 4px;
  --qv-radius: 6px;
  --qv-radius-lg: 8px;
  --qv-shadow: 0 22px 60px rgba(22, 25, 28, 0.11);
}

body {
  background: var(--qv-cream);
  font-family: "Qvalitet Manrope", Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.035em;
}

.concept-label {
  margin: 0;
  color: var(--qv-forest);
  font-family: "Qvalitet Data", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.concept-section {
  padding-block: clamp(72px, 7vw, 112px);
  border-top: 1px solid var(--qv-line);
}

.concept-section--white {
  background: var(--qv-white);
}

.concept-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  margin-bottom: clamp(30px, 4vw, 52px);
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}

.concept-heading h2 {
  max-width: 920px;
  margin: 8px 0 0;
  color: var(--qv-ink);
  font-size: clamp(2.25rem, 3.5vw, 4rem);
  line-height: 1;
}

.concept-heading > p {
  max-width: 460px;
  margin: 0;
  color: var(--qv-muted);
  font-size: 0.97rem;
}

.concept-hero {
  position: relative;
  min-height: clamp(570px, 43vw, 720px);
  overflow: hidden;
  background: #211b17;
  color: var(--qv-white);
  isolation: isolate;
}

.concept-hero__image,
.concept-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.concept-hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: center 54%;
}

.concept-hero__veil {
  z-index: -1;
  background:
    linear-gradient(92deg, rgba(14, 17, 19, 0.94) 0%, rgba(14, 17, 19, 0.78) 42%, rgba(14, 17, 19, 0.12) 79%),
    linear-gradient(0deg, rgba(14, 17, 19, 0.38), transparent 58%);
}

.concept-hero__inner {
  display: grid;
  min-height: clamp(570px, 43vw, 720px);
  padding-top: clamp(62px, 8vw, 118px);
  grid-template-rows: 1fr auto;
  align-items: center;
}

.concept-hero__content {
  width: min(760px, 58vw);
  padding-bottom: 54px;
}

.concept-hero .concept-label {
  color: #a7d4df;
}

.concept-hero h1 {
  max-width: 760px;
  margin: 16px 0 22px;
  color: var(--qv-white);
  font-size: clamp(3rem, 4.7vw, 5.25rem);
  line-height: 0.98;
}

.concept-hero__content > p:not(.concept-label) {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.concept-hero__actions {
  display: flex;
  margin-top: 30px;
  gap: 10px;
  flex-wrap: wrap;
}

.concept-hero .button {
  border-radius: 3px;
}

.concept-hero .button--primary {
  border-color: #1e7f97;
  background: #1e7f97;
  color: var(--qv-white);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--qv-white);
}

.button--ghost:hover {
  border-color: var(--qv-white);
  background: var(--qv-white);
  color: var(--qv-ink);
}

.concept-hero__facts {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.concept-hero__facts > div {
  min-height: 92px;
  padding: 18px 22px 17px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.concept-hero__facts > div + div {
  padding-left: 22px;
}

.concept-hero__facts > div:last-child {
  border-right: 0;
}

.concept-hero__facts dt {
  color: var(--qv-white);
  font-family: "Qvalitet Data", ui-monospace, monospace;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.concept-hero__facts dd {
  max-width: 220px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  line-height: 1.4;
}

.concept-task-grid {
  display: grid;
  padding: 1px;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--qv-line);
}

.concept-task {
  display: flex;
  min-height: 260px;
  padding: 26px;
  flex-direction: column;
  background: var(--qv-white);
  color: var(--qv-ink);
  text-decoration: none;
  transition: background var(--qv-transition), color var(--qv-transition);
}

.concept-task:hover {
  background: var(--qv-forest-dark);
  color: var(--qv-white);
}

.concept-task__number {
  margin-bottom: auto;
  color: var(--qv-forest);
  font-family: "Qvalitet Data", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.concept-task:hover .concept-task__number {
  color: #93d9ea;
}

.concept-task h3 {
  margin: 40px 0 8px;
  color: currentColor;
  font-size: clamp(1.2rem, 1.55vw, 1.65rem);
  line-height: 1.12;
}

.concept-task p {
  margin: 0;
  color: var(--qv-muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.concept-task:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.concept-task__link {
  display: flex;
  margin-top: 24px;
  gap: 8px;
  align-items: center;
  color: var(--qv-forest);
  font-size: 0.74rem;
  font-weight: 750;
}

.concept-task:hover .concept-task__link {
  color: #93d9ea;
}

.species-section {
  background: var(--qv-cream);
}

.species-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 20px);
}

.species-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--qv-line);
  background: var(--qv-white);
  color: var(--qv-ink);
  text-decoration: none;
  transition: border-color var(--qv-transition), transform var(--qv-transition);
}

.species-card:hover {
  border-color: var(--qv-forest);
  transform: translateY(-3px);
}

.species-card__image {
  height: clamp(190px, 17vw, 270px);
  overflow: hidden;
  background: #ddd9d0;
}

.species-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

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

.species-card__body {
  display: flex;
  min-height: 190px;
  padding: 22px;
  flex-direction: column;
}

.species-card__body strong {
  font-size: 1.28rem;
}

.species-card__body > span {
  margin-top: 8px;
  color: var(--qv-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.species-card__body em {
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid var(--qv-line);
  color: var(--qv-forest);
  font-family: "Qvalitet Data", ui-monospace, monospace;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.concept-home .featured-products {
  background: var(--qv-white);
}

.concept-home .home-product-grid {
  gap: clamp(14px, 1.4vw, 24px);
}

.concept-home .home-product-card {
  border: 1px solid var(--qv-line);
  background: var(--qv-white);
}

.concept-home .home-product-card__image {
  aspect-ratio: 1.05;
  border: 0;
  border-bottom: 1px solid var(--qv-line);
  border-radius: 0;
  box-shadow: none;
}

.concept-home .home-product-card__body {
  padding: 18px;
}

.concept-home .home-product-card h3 {
  min-height: 2.7em;
  margin-bottom: 18px;
  font-size: 0.96rem;
  line-height: 1.35;
}

.concept-home .home-product-card .price {
  font-family: "Qvalitet Data", ui-monospace, monospace;
  font-size: 0.98rem;
  font-weight: 650;
}

.concept-home .round-link {
  border-radius: 3px;
}

.concept-home .consultation-section {
  padding-top: clamp(72px, 7vw, 112px);
  background: var(--qv-cream);
}

.concept-home .consultation-card {
  border-radius: 4px;
  background: var(--qv-forest-dark);
}

.concept-home .consultation-card .concept-label {
  color: #93d9ea;
}

@media (max-width: 1100px) {
  .concept-task-grid,
  .species-grid,
  .concept-home .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-task {
    min-height: 230px;
  }

  .concept-hero__content {
    width: min(700px, 72vw);
  }
}

@media (max-width: 720px) {
  .concept-section {
    padding-block: 62px;
  }

  .concept-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .concept-heading h2 {
    font-size: clamp(2.1rem, 9vw, 3.1rem);
  }

  .concept-hero,
  .concept-hero__inner {
    min-height: 610px;
  }

  .concept-hero__veil {
    background: linear-gradient(90deg, rgba(14, 17, 19, 0.92), rgba(14, 17, 19, 0.38));
  }

  .concept-hero__inner {
    padding-top: 48px;
  }

  .concept-hero__content {
    width: min(100%, 570px);
    padding-bottom: 36px;
  }

  .concept-hero h1 {
    font-size: clamp(2.65rem, 11vw, 4.2rem);
  }

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

  .concept-hero__facts > div,
  .concept-hero__facts > div + div {
    min-height: 74px;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .concept-hero__facts > div:nth-child(2) {
    border-right: 0;
  }

  .concept-task-grid,
  .species-grid,
  .concept-home .home-product-grid {
    grid-template-columns: 1fr;
  }

  .concept-task {
    min-height: 200px;
  }

  .species-card {
    display: grid;
    grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
  }

  .species-card__image {
    height: 100%;
    min-height: 220px;
  }

  .species-card__body {
    min-height: 220px;
  }

  .concept-home .consultation-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .concept-hero__actions {
    display: grid;
  }

  .concept-hero__actions .button {
    justify-content: center;
  }

  .species-card {
    grid-template-columns: 1fr;
  }

  .species-card__image {
    min-height: 190px;
  }
}

/* Warm brand layer. The CJM structure stays; the cold concept palette does not. */
:root {
  --qv-forest: #70442d;
  --qv-forest-dark: #30241d;
  --qv-copper: #b66536;
  --qv-sand: #efe4d6;
  --qv-cream: #faf7f2;
  --qv-white: #fff;
  --qv-ink: #261f1a;
  --qv-muted: #71665e;
  --qv-line: rgba(58, 42, 31, 0.16);
  --qv-success: #367051;
  --qv-warning: #a5532d;
}

body {
  background: var(--qv-cream);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.concept-label,
.concept-hero__facts dt,
.concept-task__number,
.species-card__body em,
.concept-home .home-product-card .price {
  font-family: inherit;
}

:focus-visible {
  outline-color: rgba(182, 101, 54, 0.56);
}

.utility-bar {
  background: var(--qv-forest-dark);
  color: rgba(255, 255, 255, 0.74);
}

.site-header {
  border-bottom-color: var(--qv-line);
  background: rgba(255, 253, 250, 0.97);
}

.header-catalog__toggle {
  background: var(--qv-forest);
}

.header-catalog__toggle:hover,
.header-catalog__toggle:focus-visible,
.header-catalog.is-open .header-catalog__toggle {
  background: var(--qv-forest-dark);
}

.concept-hero .button--primary {
  background: var(--qv-copper);
}

.concept-hero .button--primary:hover {
  background: #934a24;
}

.concept-task:hover,
.concept-home .consultation-card {
  background: var(--qv-forest-dark);
}

.concept-task:hover .concept-task__number,
.concept-task:hover .concept-task__link,
.concept-home .consultation-card .concept-label {
  color: #e7b18e;
}

.concept-hero .concept-label {
  color: #e7b18e;
}

/* A useful, light footer instead of a large dark colour block. */
.site-footer {
  padding: 0 0 22px;
  border-top: 1px solid var(--qv-line);
  background: #eee5da;
  color: var(--qv-muted);
}

.site-footer__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-block: clamp(42px, 4.5vw, 70px);
  gap: clamp(32px, 6vw, 100px);
  align-items: end;
  border-bottom: 1px solid var(--qv-line);
}

.site-footer__eyebrow {
  margin: 0 0 8px;
  color: var(--qv-copper);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer .site-footer__lead h2 {
  max-width: 820px;
  margin: 0;
  color: var(--qv-ink);
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-transform: none;
}

.site-footer__lead-contact {
  display: grid;
  min-width: 230px;
  gap: 5px;
}

.site-footer__lead-contact a {
  color: var(--qv-ink);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 750;
  text-decoration: none;
}

.site-footer__lead-contact span {
  font-size: 0.78rem;
}

.site-footer__grid {
  grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(150px, 0.72fr));
  padding-block: clamp(38px, 4vw, 60px);
  gap: clamp(30px, 4vw, 72px);
}

.site-footer .footer-logo {
  padding: 0;
  background: transparent;
}

.site-footer .footer-logo img {
  max-width: 170px;
  max-height: 76px;
}

.site-footer__brand p {
  max-width: 410px;
  margin: 17px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.site-footer__brand .site-footer__location {
  color: var(--qv-ink);
  font-size: 0.76rem;
  font-weight: 650;
}

.site-footer h2,
.site-footer .footer-widget__title {
  margin-bottom: 16px;
  color: var(--qv-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  text-decoration-color: rgba(112, 68, 45, 0.28);
}

.site-footer a:hover {
  color: var(--qv-copper);
}

.site-footer__contacts > p {
  max-width: 280px;
  margin: 12px 0 16px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.site-footer__phone {
  color: var(--qv-ink);
  font-size: 1.05rem;
}

.header-messengers--footer {
  display: flex;
}

.header-messengers--footer .header-messenger {
  background: rgba(255, 255, 255, 0.58);
}

.site-footer__bottom {
  padding-top: 20px;
  margin-top: 0;
  border-top-color: var(--qv-line);
  color: var(--qv-muted);
}

@media (max-width: 980px) {
  .site-footer__lead {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

@media (max-width: 560px) {
  .site-footer__lead,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }
}
