/** Shopify CDN: Minification failed

Line 1948:0 Unexpected "`"

**/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@400;500&family=IBM+Plex+Mono:wght@300;400&display=swap');

/* HONZA Stylesheet */

/* Color variables */
:root {
  --ink: #1a1a1a;
  --graphite: #3d3d3d;
  --concrete: #7a7a7a;
  --stone-border: #c4bfb6;
  --stone: #f0ece4;
  --pure-white: #fafaf8;
  --terracotta: #c4622a;
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: rgba(196, 98, 42, 0.18);
  color: var(--ink);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--pure-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Keyframes */
@keyframes lineGrow {
  0% { height: 0; }
  100% { height: 48px; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.honza-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
}

.honza-nav.scrolled {
  padding: 14px 48px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #c4bfb644;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.45s ease;
}

.honza-nav.scrolled .nav-logo {
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.honza-nav.scrolled .nav-link {
  color: var(--graphite);
}

.nav-link:hover {
  color: var(--terracotta);
}

/* Pill buttons */
.pill-btn {
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  background: transparent;
}

.pill-btn-sm {
  padding: 10px 26px;
  font-size: 10.5px;
}

.pill-btn-lg {
  padding: 14px 44px;
  font-size: 11.5px;
}

.pill-dark {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.pill-dark:hover {
  background: var(--ink);
  color: var(--pure-white);
}

.pill-terracotta {
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
}

.pill-terracotta:hover {
  background: var(--terracotta);
  color: var(--pure-white);
}

.pill-light {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--pure-white);
}

.pill-light:hover {
  background: var(--pure-white);
  color: var(--ink);
}

.pill-light-solid {
  border: 1.5px solid var(--pure-white);
  color: var(--pure-white);
}

.pill-light-solid:hover {
  background: var(--pure-white);
  color: var(--ink);
}

/* Hero section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-crosshair {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.hero-accent {
  color: var(--terracotta);
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  margin: 36px auto;
}

.hero-corners {
  position: absolute;
  bottom: 40px;
  left: 56px;
  right: 56px;
  display: flex;
  justify-content: space-between;
}

.hero-corner-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  color: var(--concrete);
  letter-spacing: 0.08em;
}

/* Philosophy section */
.philosophy-section {
  background: var(--pure-white);
}

.grid-2-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.philosophy-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

/* Shared typographic utilities */
.label-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--terracotta);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.heading-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.08;
}

.heading-serif-40 {
  font-size: 40px;
  margin-bottom: 28px;
}

.heading-serif-36 {
  font-size: 36px;
}

.heading-serif-italic {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
}

.accent-line {
  width: 28px;
  height: 2px;
  background: var(--terracotta);
  margin-bottom: 28px;
}

.body-text {
  font-size: 14px;
  color: var(--concrete);
  line-height: 1.9;
  max-width: 380px;
  margin-bottom: 16px;
}

/* Materials section */
.materials-section {
  padding: 100px 32px;
  background: var(--stone);
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

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

.material-card {
  cursor: pointer;
}

.material-card-img {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  overflow: hidden;
  background: var(--stone);
}

.material-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.material-card .primary-img {
  opacity: 1;
}

.material-card:hover .primary-img {
  opacity: 0;
  transform: scale(1.03);
}

.material-card .secondary-img {
  opacity: 0;
}

.material-card:hover .secondary-img {
  opacity: 1;
}

.material-card-info {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  min-height: 150px;
}

.material-origin {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 8px;
}

.material-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
  transition: color 0.3s ease;
}

.material-card:hover .material-name {
  color: var(--terracotta);
}

.material-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--concrete);
  margin-top: 10px;
  line-height: 1.6;
}

/* Signature section */
.signature-section {
  padding: 100px 32px;
  background: var(--pure-white);
}

.grid-signature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

/* Interiors section */
.interiors-section {
  position: relative;
  background: var(--ink);
}

.interiors-section img.interiors-bg {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.35);
}

.interiors-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
}

/* Custom / Trade section */
.custom-section {
  background: var(--ink);
}

.grid-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.custom-panel {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-panel:first-child {
  border-right: 1px solid var(--graphite);
}

/* Product card */
.product-card {
  cursor: pointer;
}

.product-card-img {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  background: var(--stone);
  position: relative;
}

.product-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card .primary-img {
  opacity: 1;
}

.product-card:hover .primary-img.has-hover {
  opacity: 0;
}

.product-card:hover .primary-img:not(.has-hover) {
  transform: scale(1.03);
}

.product-card .secondary-img {
  opacity: 0;
  transform: scale(1.05);
}

.product-card:hover .secondary-img {
  opacity: 1;
  transform: scale(1);
}

.product-card .add-to-cart-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%, 8px);
  opacity: 0;
  transition: all 0.35s ease;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1.5px solid var(--pure-white);
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--pure-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.product-card:hover .add-to-cart-btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-card-meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.product-card-material {
  font-size: 11.5px;
  color: var(--concrete);
  margin-top: 3px;
}

.product-card-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--graphite);
}

/* Collection section */
.collection-section {
  padding: 100px 32px;
  background: var(--pure-white);
}

.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.collection-filters {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.filter-tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--concrete);
  border-bottom: 1.5px solid transparent;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.filter-tab.active {
  color: var(--ink);
  border-bottom-color: var(--terracotta);
}

/* Instagram section */
.insta-section {
  padding: 64px 32px 0;
  background: var(--stone);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.9);
}

.insta-img:hover {
  transform: scale(1.05);
  filter: saturate(1);
}

/* Newsletter section */
.newsletter-section {
  padding: 72px 32px;
  background: var(--stone);
}

.newsletter-input {
  padding: 12px 22px;
  border: 1px solid var(--stone-border);
  border-radius: 999px;
  background: var(--pure-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: var(--ink);
  outline: none;
  width: 240px;
}

/* Footer */
.honza-footer {
  padding: 52px 56px 28px;
  background: var(--ink);
}

.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--graphite);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone-border);
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-border);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-link {
  display: block;
  font-size: 12px;
  color: var(--concrete);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--terracotta);
}

.footer-bottom {
  max-width: 1080px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: var(--concrete);
  letter-spacing: 0.06em;
}

/* Cart drawer */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: min(420px, 92vw);
  background: var(--pure-white);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  font-family: 'DM Sans', sans-serif;
  box-shadow: none;
}

.cart-drawer.open {
  transform: translateX(0);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}

.cart-header {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c4bfb644;
}

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--graphite);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-empty {
  text-align: center;
  padding-top: 80px;
}

.cart-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #c4bfb622;
}

.cart-item-img {
  width: 80px;
  height: 100px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--stone);
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.cart-item-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--graphite);
}

.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--stone-border);
  border-radius: 999px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 14px;
  color: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-value {
  width: 32px;
  text-align: center;
  font-size: 12px;
  color: var(--ink);
}

.cart-remove-btn {
  background: none;
  border: none;
  font-size: 11px;
  color: var(--concrete);
  cursor: pointer;
  text-decoration: underline;
  font-family: 'DM Sans', sans-serif;
}

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid #c4bfb644;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: baseline;
}

.cart-subtotal-label {
  font-size: 13px;
  color: var(--concrete);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-subtotal-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  color: var(--ink);
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 16px 0;
  background: var(--ink);
  color: var(--pure-white);
  text-align: center;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.checkout-btn:hover {
  background: var(--terracotta);
}

.cart-shipping-note {
  font-size: 10.5px;
  color: var(--concrete);
  text-align: center;
  margin-top: 12px;
}

/* Projects page */
.projects-showcase {
  padding: 100px 32px 120px;
}

.projects-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.projects-header {
  text-align: center;
  margin-bottom: 64px;
}

.projects-heading {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 20px;
}

.projects-intro {
  margin-top: 0;
}

.projects-stats {
  margin-bottom: 80px;
}

.projects-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 48px 32px;
  justify-items: center;
  text-align: center;
}

.projects-stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 300;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.projects-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--concrete);
}

.projects-gallery {
  margin-bottom: 80px;
}

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

.projects-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
  background: var(--stone);
}

.projects-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.projects-gallery-item:hover img {
  transform: scale(1.04);
}

.projects-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pure-white);
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.85));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.projects-gallery-item:hover .projects-gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.projects-video {
  max-width: 900px;
  margin: 0 auto;
}

.projects-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
}

.projects-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Trade page - Benefits */
.trade-benefits-section {
  padding: 80px 32px 80px;
}

.trade-benefits-image {
  max-width: 900px;
  margin: 0 auto 56px;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--ink);
}

.trade-benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trade-benefits-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trade-benefits-placeholder::after {
  content: '';
  width: 120px;
  height: 2px;
  background: rgba(196, 98, 42, 0.4);
}

.trade-benefits-header {
  text-align: center;
  margin-bottom: 56px;
}

.trade-benefits-header .body-text {
  margin: 16px auto 0;
}

.trade-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.trade-benefit-card {
  padding: 32px 28px;
  background: var(--pure-white);
  border-radius: 2px;
  border: 1px solid rgba(196, 191, 182, 0.4);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.trade-benefit-card:hover {
  border-color: var(--stone-border);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.06);
}

.trade-benefit-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: block;
}

.trade-benefit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.trade-benefit-desc {
  font-size: 13px;
  color: var(--concrete);
  line-height: 1.75;
  margin: 0;
}

/* Trade page - Contact form */
.trade-contact-section {
  padding: 80px 32px 100px;
}

.trade-contact-inner {
  max-width: 560px;
  margin: 0 auto;
}

.trade-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trade-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trade-input,
.trade-textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--graphite);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--pure-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.trade-input::placeholder,
.trade-textarea::placeholder {
  color: var(--concrete);
}

.trade-input:focus,
.trade-textarea:focus {
  border-color: var(--terracotta);
  background: rgba(255, 255, 255, 0.06);
}

.trade-textarea {
  min-height: 120px;
  resize: vertical;
}

.trade-submit {
  margin-top: 8px;
  align-self: flex-start;
}

/* About Us page */
.about-section {
  padding: 100px 32px 120px;
}

.about-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-heading {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 20px;
}

.about-intro {
  margin-top: 0;
}

.about-main {
  margin-bottom: 72px;
}

.about-main > *:first-child {
  padding: 0;
}

.about-main > *:last-child {
  min-height: auto;
}

.about-main .about-image-wrap {
  min-height: 420px;
  background: var(--stone);
}

.about-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(145deg, var(--stone) 0%, #e8e4dc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-placeholder::after {
  content: '';
  width: 60px;
  height: 60px;
  border: 1px solid var(--stone-border);
  border-radius: 50%;
  opacity: 0.5;
}

.about-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(196, 191, 182, 0.35);
}

.about-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

/* Section padding utility */
.section-pad {
  padding: 100px 32px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2-editorial {
    grid-template-columns: 1fr;
  }

  .grid-2-editorial > *:first-child {
    padding: 48px 32px;
  }

  .grid-2-editorial > *:last-child {
    min-height: 400px;
  }

  .grid-signature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .custom-panel:first-child {
    border-right: none;
    border-bottom: 1px solid var(--graphite);
  }

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

  .trade-benefits-grid {
    grid-template-columns: 1fr;
  }

  .about-main .about-content {
    padding-left: 0;
    padding-top: 32px;
  }

  .about-blocks {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Responsive - Mobile landscape */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .section-pad {
    padding: 64px 20px;
  }

  .hero-h1 {
    font-size: clamp(32px, 10vw, 56px);
  }

  .custom-panel {
    padding: 48px 24px;
  }

  .projects-showcase {
    padding: 64px 20px 80px;
  }

  .projects-stats-grid {
    gap: 36px 24px;
  }

  .projects-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trade-form-row {
    grid-template-columns: 1fr;
  }
}

/* Responsive - Mobile portrait */
@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .honza-footer {
    padding: 32px 24px 20px;
  }

  .hero-corners {
    display: none;
  }
}
.trade-benefits-section {
  padding: 80px 32px;
  display: block;
}

.trade-benefits-header {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 760px;
}

.trade-benefits-intro {
  margin: 16px auto 0;
  max-width: 620px;
}

.trade-benefits-image {
  margin: 0 auto 48px;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 2px;
  background: #ddd8cf;
}

.trade-benefits-image img {
  display: block;
  width: 100%;
  height: auto;
}

.trade-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.trade-benefit-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(196, 191, 182, 0.55);
  padding: 32px 28px;
  min-height: 220px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.trade-benefit-number {
  display: block;
  margin-bottom: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.trade-benefit-title {
  display: block;
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.trade-benefit-desc {
  display: block;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--graphite);
}

@media (max-width: 768px) {
  .trade-benefits-grid {
    grid-template-columns: 1fr;
  }
}
.trade-contact-section {
  padding: 90px 32px 110px;
  display: block;
}

.trade-contact-inner {
  max-width: 760px;
  margin: 0 auto;
}

.trade-contact-content {
  max-width: 680px;
  margin: 0 auto;
}

.trade-contact-label {
  display: block;
  margin-bottom: 20px;
}

.trade-contact-heading {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pure-white);
}

.trade-contact-paragraph {
  margin: 0 0 32px;
  max-width: 560px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #b8b2aa;
}

.trade-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.trade-input,
.trade-textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--pure-white);
  border-radius: 2px;
  padding: 15px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.trade-input::placeholder,
.trade-textarea::placeholder {
  color: #8f8880;
}

.trade-input:focus,
.trade-textarea:focus {
  border-color: rgba(196, 98, 42, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.trade-textarea {
  min-height: 150px;
  resize: vertical;
}

.trade-submit {
  margin-top: 8px;
  align-self: flex-start;
}

.trade-form-success {
  padding: 14px 16px;
  border: 1px solid rgba(196, 98, 42, 0.45);
  color: #f2d3bf;
  background: rgba(196, 98, 42, 0.08);
  font-size: 14px;
}

.trade-form-errors {
  padding: 14px 16px;
  border: 1px solid rgba(255, 120, 120, 0.35);
  color: #ffb3b3;
  background: rgba(255, 120, 120, 0.08);
  font-size: 14px;
}

.trade-form-errors ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 768px) {
  .trade-contact-section {
    padding: 64px 20px 80px;
  }

  .trade-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trade-contact-heading {
    font-size: 34px;
  }
}
.projects-showcase {
  padding: 100px 32px 120px;
}

.projects-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.projects-header {
  text-align: center;
  margin-bottom: 64px;
}

.projects-heading {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 20px;
}

.projects-intro {
  margin-top: 0;
}

.projects-stats {
  margin-bottom: 80px;
}

.projects-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 48px 32px;
  justify-items: center;
  text-align: center;
}

.projects-stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 300;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.projects-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--concrete);
}

.projects-gallery {
  margin-bottom: 80px;
}

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

.projects-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
  background: var(--stone);
}

.projects-gallery-item--clickable {
  cursor: pointer;
}

.projects-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.projects-gallery-item:hover img {
  transform: scale(1.04);
}

.projects-gallery-item-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pure-white);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.projects-gallery-item--clickable:hover .projects-gallery-item-hint {
  opacity: 1;
}

.projects-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pure-white);
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.85));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.projects-gallery-item:hover .projects-gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery modal (popup) */
.project-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.project-gallery-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(26, 26, 26, 0.92);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}

.project-gallery-modal-box {
  position: relative;
  z-index: 1;
  max-width: min(900px, 92vw);
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}

.project-gallery-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.project-gallery-modal-close:hover {
  color: var(--pure-white);
}

.project-gallery-modal-close span {
  display: block;
  line-height: 1;
}

.project-gallery-modal-main {
  position: relative;
  width: 100%;
  max-width: min(900px, 92vw);
  padding: 28px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--ink);
  box-sizing: border-box;
}

.project-gallery-modal-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(75vh, calc(90vh - 120px));
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--ink);
  margin: 0 auto;
}

.project-gallery-modal-prev,
.project-gallery-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.6);
  color: var(--pure-white);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.project-gallery-modal-prev:hover,
.project-gallery-modal-next:hover {
  background: rgba(196, 98, 42, 0.5);
  border-color: var(--terracotta);
}

.project-gallery-modal-prev {
  left: 16px;
}

.project-gallery-modal-next {
  right: 16px;
}

.project-gallery-modal-caption {
  margin-top: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-border);
  text-align: center;
  max-width: 100%;
}

.project-gallery-modal-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.project-gallery-modal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--stone-border);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.project-gallery-modal-dot:hover {
  border-color: var(--terracotta);
}

.project-gallery-modal-dot.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.projects-video {
  max-width: 900px;
  margin: 0 auto;
}

.projects-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
}

.projects-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Projects responsive */
@media (max-width: 1024px) {
  .projects-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-showcase {
    padding: 64px 20px 80px;
  }

  .projects-stats-grid {
    gap: 36px 24px;
  }

  .projects-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
```
/* Dawn fix: Honza reveal elements should be visible without custom theme JS */
.projects-showcase .reveal,
.trade-benefits-section .reveal,
.trade-contact-section .reveal,
.about-section .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.projects-gallery-item--clickable {
  cursor: pointer;
}

.projects-gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--stone) 0%, #ddd7ce 100%);
}

.projects-gallery-item-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pure-white);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.projects-gallery-item--clickable:hover .projects-gallery-item-hint {
  opacity: 1;
}

.project-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-gallery-modal.open {
  opacity: 1;
  visibility: visible;
}

.project-gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.9);
}

.project-gallery-modal-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(920px, 92vw);
}

.project-gallery-modal-main {
  position: relative;
  background: var(--ink);
  padding: 28px;
}

.project-gallery-modal-img {
  display: block;
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  margin: 0 auto;
}

.project-gallery-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--pure-white);
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}

.project-gallery-modal-prev,
.project-gallery-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.55);
  color: var(--pure-white);
  cursor: pointer;
  z-index: 5;
}

.project-gallery-modal-prev {
  left: 14px;
}

.project-gallery-modal-next {
  right: 14px;
}

.project-gallery-modal-caption {
  text-align: center;
  margin-top: 14px;
  color: var(--stone-border);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-gallery-modal-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.project-gallery-modal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--stone-border);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.project-gallery-modal-dot.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.about-section {
  padding: 90px 32px 110px;
  display: block;
}

.about-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.about-heading {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 56px);
}

.about-intro {
  margin: 0 auto;
  max-width: 620px;
}

.about-main {
  align-items: stretch;
  margin-bottom: 72px;
}

.about-image-wrap {
  min-height: 520px;
  background: var(--stone);
  overflow: hidden;
}

.about-main-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-content {
  padding-left: 56px;
}

.about-content .body-text {
  max-width: 460px;
}

.about-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: linear-gradient(145deg, var(--stone) 0%, #e7e1d7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-placeholder::after {
  content: '';
  width: 64px;
  height: 64px;
  border: 1px solid rgba(196, 191, 182, 0.8);
  border-radius: 50%;
}

.about-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 56px;
  max-width: 920px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(196, 191, 182, 0.35);
}

.about-block-title {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-block-text {
  margin: 0;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .about-content {
    padding-left: 0;
    padding-top: 32px;
  }

  .about-blocks {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 64px 20px 80px;
  }

  .about-image-wrap,
  .about-main-image,
  .about-placeholder {
    min-height: 380px;
  }
}
/* Global Honza header */
.section-header.shopify-section-group-header-group,
.shopify-section-header-sticky,
.header-wrapper {
  background: transparent;
}

.header-wrapper {
  border-bottom: 1px solid rgba(196, 191, 182, 0.18);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.header {
  max-width: 100%;
  padding: 18px 56px;
}

.header__heading-link {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: 0.30em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  text-decoration: none !important;
}

.header__inline-menu .list-menu__item,
.header__menu-item {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 10.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--graphite) !important;
}

.header__menu-item span {
  text-decoration: none !important;
}

.header__icons .header__icon,
.header__icons .svg-wrapper,
.header__icon {
  color: var(--ink) !important;
}

body.template-index .header-wrapper {
  background: transparent;
  border-bottom: 1px solid transparent;
}

body.template-index .header__heading-link,
body.template-index .header__menu-item,
body.template-index .header__icons .header__icon,
body.template-index .header__icon {
  color: #f5f3ef !important;
}

body.scrolled .header-wrapper,
body:not(.template-index) .header-wrapper {
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 191, 182, 0.35);
}

body.scrolled .header__heading-link,
body.scrolled .header__menu-item,
body.scrolled .header__icons .header__icon,
body.scrolled .header__icon,
body:not(.template-index) .header__heading-link,
body:not(.template-index) .header__menu-item,
body:not(.template-index) .header__icons .header__icon,
body:not(.template-index) .header__icon {
  color: var(--ink) !important;
}

@media screen and (max-width: 990px) {
  .header {
    padding: 16px 20px;
  }

  .header__heading-link {
    font-size: 18px !important;
    letter-spacing: 0.24em !important;
  }
}
/* HONZA global header */

.section-header {
  position: sticky !important;
  top: 0;
  z-index: 999;
}

.header-wrapper {
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 191, 182, 0.28);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.header {
  max-width: 100% !important;
  padding: 18px 56px !important;
}

.header__heading-link {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: 0.30em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  text-decoration: none !important;
}

.header__heading-link .h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: 0.30em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
}

.header__inline-menu {
  margin-left: 3.2rem;
}

.list-menu--inline {
  gap: 3.2rem;
}

.header__menu-item,
.header__inline-menu .list-menu__item,
.header__menu-item span {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 10.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--graphite) !important;
  text-decoration: none !important;
}

.header__menu-item:hover,
.header__menu-item:hover span {
  color: var(--terracotta) !important;
}

.header__icon,
.header__icons .svg-wrapper,
.header__icons summary,
.header__icons a {
  color: var(--ink) !important;
}

.header__icon .svg-wrapper svg,
.header__icons .svg-wrapper svg {
  width: 2.2rem;
  height: 2.2rem;
}

.cart-count-bubble {
  background: var(--terracotta) !important;
  color: var(--pure-white) !important;
  box-shadow: none !important;
}

/* Homepage transparent header at top */
body.template-index .header-wrapper {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

body.template-index .header__heading-link,
body.template-index .header__heading-link .h2,
body.template-index .header__menu-item,
body.template-index .header__menu-item span,
body.template-index .header__icon,
body.template-index .header__icons a,
body.template-index .header__icons summary,
body.template-index .header__icons .svg-wrapper {
  color: rgba(255, 255, 255, 0.88) !important;
}

/* Homepage after scroll = same solid header as inner pages */
body.template-index.scrolled .header-wrapper {
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 191, 182, 0.28);
}

body.template-index.scrolled .header__heading-link,
body.template-index.scrolled .header__heading-link .h2,
body.template-index.scrolled .header__menu-item,
body.template-index.scrolled .header__menu-item span,
body.template-index.scrolled .header__icon,
body.template-index.scrolled .header__icons a,
body.template-index.scrolled .header__icons summary,
body.template-index.scrolled .header__icons .svg-wrapper {
  color: var(--ink) !important;
}

/* Inner pages always solid */
body:not(.template-index) .header-wrapper {
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 191, 182, 0.28);
}

body:not(.template-index) .header__heading-link,
body:not(.template-index) .header__heading-link .h2,
body:not(.template-index) .header__menu-item,
body:not(.template-index) .header__menu-item span,
body:not(.template-index) .header__icon,
body:not(.template-index) .header__icons a,
body:not(.template-index) .header__icons summary,
body:not(.template-index) .header__icons .svg-wrapper {
  color: var(--ink) !important;
}

@media screen and (max-width: 990px) {
  .header {
    padding: 16px 20px !important;
  }

  .header__heading-link,
  .header__heading-link .h2 {
    font-size: 18px !important;
    letter-spacing: 0.24em !important;
  }

  .header__inline-menu {
    margin-left: 1.6rem;
  }

  .list-menu--inline {
    gap: 1.6rem;
  }
}

.honza-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: currentColor;
}

.honza-header-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.header__icon .svg-wrapper {
  display: none !important;
}