/* Blackwoodhomecraft — Natural Luxury Furniture */
:root {
  --beige: #F5F1EC;
  --beige-deep: #EBE4DB;
  --wood: #3E2F27;
  --wood-soft: #5A463B;
  --olive: #6B7D6D;
  --olive-light: #8A9A8C;
  --grey: #8A8A8A;
  --grey-light: #C4C0BA;
  --white: #FFFcf8;
  --ink: #2A211C;
  --shadow: 0 18px 48px rgba(62, 47, 39, 0.12);
  --shadow-hover: 0 24px 56px rgba(62, 47, 39, 0.18);
  --radius: 4px;
  --header-h: 80px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(107, 125, 109, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(62, 47, 39, 0.06), transparent 45%),
    linear-gradient(180deg, var(--beige) 0%, var(--beige-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

body.menu-open .site-header {
  background: rgba(245, 241, 236, 0.98);
  box-shadow: 0 4px 20px rgba(62, 47, 39, 0.08);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--wood);
  letter-spacing: -0.01em;
}

.section-lead {
  margin-top: 1rem;
  max-width: 36rem;
  color: var(--grey);
  font-size: 1.05rem;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(245, 241, 236, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(62, 47, 39, 0.08);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(245, 241, 236, 0.98);
  box-shadow: 0 4px 20px rgba(62, 47, 39, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 1002;
  position: relative;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--wood);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--wood-soft);
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--olive);
  transition: width 0.3s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--wood);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  background: var(--wood);
  color: var(--beige) !important;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--olive);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wood);
  position: relative;
  transition: background 0.25s;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--wood);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

body.menu-open .menu-toggle span {
  background: transparent;
}

body.menu-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background: rgba(245, 241, 236, 0.99);
  padding: calc(var(--header-h) + 2rem) 2rem 2.5rem;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.menu-open .nav-mobile {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease-out;
  height: 500px;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  color: var(--wood);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(62, 47, 39, 0.08);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out, color 0.2s;
}

body.menu-open .nav-mobile a {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--olive);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
  background: var(--wood);
  color: var(--beige);
}

.btn-primary:hover {
  background: var(--olive);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 1px solid rgba(255, 252, 248, 0.55);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--wood);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 1px solid var(--wood);
  color: var(--wood);
}

.btn-outline-dark:hover {
  background: var(--wood);
  color: var(--beige);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(42, 33, 28, 0.78) 0%, rgba(42, 33, 28, 0.45) 48%, rgba(42, 33, 28, 0.25) 100%),
    linear-gradient(0deg, rgba(42, 33, 28, 0.55) 0%, transparent 45%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
  animation: fadeUp 0.9s var(--ease) both;
}

.brand-signal {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 236, 0.92);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.hero-sub {
  margin-top: 1.15rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(245, 241, 236, 0.82);
  max-width: 28rem;
  font-weight: 300;
}

.page-hero {
  min-height: 52vh;
  min-height: 52dvh;
  padding-bottom: 3.5rem;
}

.page-hero h1 {
  max-width: 16ch;
}

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

/* ——— Categories ——— */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  background: var(--beige-deep);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.cat-card:hover img {
  transform: scale(1.08);
}

.cat-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(42, 33, 28, 0.78));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

/* ——— Why Us ——— */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.why-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.why-visual:hover img {
  transform: scale(1.04);
}

.why-list {
  display: grid;
  gap: 1.35rem;
  margin-top: 2rem;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(62, 47, 39, 0.1);
}

.why-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--olive);
  line-height: 1;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--wood);
  margin-bottom: 0.25rem;
}

.why-item p {
  color: var(--grey);
  font-size: 0.95rem;
}

/* ——— Product Grid ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: transparent;
  transition: transform 0.35s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--beige-deep);
  box-shadow: 0 8px 28px rgba(62, 47, 39, 0.08);
  transition: box-shadow 0.35s var(--ease);
}

.product-card:hover .product-media {
  box-shadow: var(--shadow-hover);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--wood);
  margin-top: 1rem;
}

.product-card p {
  color: var(--grey);
  font-size: 0.92rem;
  margin-top: 0.3rem;
}

.product-price {
  margin-top: 0.55rem;
  color: var(--olive);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ——— Split / Banner ——— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.split-body {
  background: var(--wood);
  color: var(--beige);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
}

.split-body p {
  margin-top: 1rem;
  color: rgba(245, 241, 236, 0.78);
  max-width: 28rem;
}

.split-body .btn-group {
  margin-top: 1.5rem;
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 760px;
  margin-top: 1rem;
}

.faq-item {
  border-bottom: 1px solid rgba(62, 47, 39, 0.12);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--wood);
}

.faq-q::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--olive);
  transition: transform 0.3s;
}

.faq-item.open .faq-q::after {
  content: "–";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
  color: var(--grey);
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* ——— Pricing ——— */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.price-card {
  padding: 1.75rem 1.4rem;
  background: rgba(255, 252, 248, 0.55);
  border: 1px solid rgba(62, 47, 39, 0.08);
  border-radius: var(--radius);
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(107, 125, 109, 0.35);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--wood);
  font-weight: 500;
}

.price-card .amount {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: var(--olive);
  font-weight: 500;
}

.price-card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--grey);
}

/* ——— About / Content ——— */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-block .text p + p {
  margin-top: 1rem;
}

.content-block .text p {
  color: var(--grey);
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.05);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-mosaic .media-frame {
  aspect-ratio: 1;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.detail-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--wood);
  margin-bottom: 0.4rem;
}

.detail-block p,
.detail-block .plain-text {
  color: var(--grey);
  font-size: 1rem;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}

.social-list a {
  color: var(--olive);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
}

.social-list a:hover {
  color: var(--wood);
  border-bottom-color: var(--wood);
}

.contact-form {
  background: rgba(255, 252, 248, 0.7);
  border: 1px solid rgba(62, 47, 39, 0.08);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wood-soft);
  margin-bottom: 0.45rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(62, 47, 39, 0.15);
  border-radius: var(--radius);
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107, 125, 109, 0.15);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--grey);
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(107, 125, 109, 0.12);
  color: var(--olive);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.form-error {
  display: none;
  padding: 1rem;
  background: rgba(146, 81, 61, 0.12);
  color: #92513d;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.form-error.show,
.form-success.show {
  display: block;
}

.contact-visual {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  box-shadow: var(--shadow);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ——— Legal ——— */
.legal-content {
  max-width: 780px;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--wood);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--wood);
  font-weight: 500;
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--grey);
  margin-bottom: 0.85rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content li {
  list-style: disc;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--wood);
  color: rgba(245, 241, 236, 0.82);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 241, 236, 0.12);
}

.footer-brand .logo-text {
  color: var(--beige);
}

.footer-brand .logo-text span {
  color: var(--olive-light);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.92rem;
  max-width: 260px;
  color: rgba(245, 241, 236, 0.65);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--beige);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(245, 241, 236, 0.65);
  padding: 0.28rem 0;
}

.footer-col a:hover {
  color: var(--beige);
}

.footer-col .plain-text {
  display: block;
  font-size: 0.92rem;
  color: rgba(245, 241, 236, 0.65);
  padding: 0.28rem 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-social a {
  display: inline;
  padding: 0;
  color: var(--olive-light);
  font-weight: 500;
}

.footer-social a:hover {
  color: var(--beige);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.82rem;
  color: rgba(245, 241, 236, 0.45);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-legal a:hover {
  color: var(--beige);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ——— Cookie bar ——— */
.cookie-bar {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: min(calc(100% - 2rem), 640px);
  background: var(--wood);
  color: var(--beige);
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  z-index: 1100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  transition: transform 0.45s var(--ease);
}

.cookie-bar.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-bar p {
  font-size: 0.88rem;
  flex: 1;
  min-width: 200px;
  color: rgba(245, 241, 236, 0.8);
}

.cookie-bar a {
  color: var(--olive-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-actions .btn {
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
}

/* ——— Utilities ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mt-section {
  margin-top: clamp(1rem, 3vw, 2rem);
}

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

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

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

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

@media (max-width: 860px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .why-grid,
  .content-block,
  .content-block.reverse,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .split-media {
    min-height: 260px;
  }

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

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 70px;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .cat-grid,
  .product-grid,
  .price-grid,
  .footer-grid,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .contact-visual {
    aspect-ratio: 16 / 10;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
