/*
 * Palette Tunisie — front-end stylesheet.
 * Ported verbatim (values unchanged) from the locked Approved Design
 * Package's own `source/styles/globals.css`. Only *selector tokens* are
 * adapted where a real Gutenberg block wrapper adds a DOM level the
 * static React source did not have (documented in
 * project-docs/DESIGN_IMPLEMENTATION_MAP.md) — this changes no visible
 * value (rules/05-responsive-accessibility.md section 4).
 */
:root {
  --green: #123c2d;
  --wood: #c9904b;
  --cream: #f2eee5;
  --ink: #17211c;
  --line: #d9d6cd;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f8f7f3;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}

/* Neutralize WordPress block-library default spacing on our structural
   wrapper blocks so theme.json/global-styles defaults never silently
   change approved geometry (rules/05 section 2 lesson). */
.wp-block-group,
.wp-block-buttons,
.wp-block-columns {
  margin: 0;
  padding: 0;
}
/* Transparent pass-through wrappers: keep real block structure in
   post_content while adding zero visible box of their own. WordPress's
   own Group block render path unconditionally wraps its children in
   `.wp-block-group__inner-container` regardless of the "layout"
   attribute (verified against this project's installed WP version) —
   collapsing it here restores the direct parent/child grid & flex
   relationships every selector below assumes, with zero visible effect
   (rules/05-responsive-accessibility.md section 4). */
.wp-block-group__inner-container,
.hero-copy,
.pt-pass {
  display: contents;
}

.header {
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 34px;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: #f8f7f3;
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.34em;
  color: #66726b;
  margin-top: 3px;
}
.mark {
  width: 42px;
  height: 38px;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  transform: skewY(-5deg);
}
.mark i {
  display: block;
  width: 11px;
  background: var(--wood);
}
.mark i:nth-child(1) {
  height: 24px;
}
.mark i:nth-child(2) {
  height: 32px;
}
.mark i:nth-child(3) {
  height: 19px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.025em;
}
.nav a {
  padding: 35px 0;
  border: 0;
  background: transparent;
  white-space: nowrap;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-block;
}
.nav a:hover,
.nav a:focus-visible,
.nav a.current-menu-item-link {
  color: var(--wood);
}
.nav a[aria-current="page"] {
  color: var(--wood);
}
.headerCta {
  background: var(--wood);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}
.menuBtn {
  display: none;
}
.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  background: var(--green);
  color: white;
}
.heroCopy {
  padding: 105px clamp(34px, 7vw, 112px);
  align-self: center;
}
.kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #d6b07b;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.kicker:before {
  content: "";
  width: 28px;
  height: 1px;
  background: #d6b07b;
  flex: none;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(50px, 6vw, 91px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 32px 0 28px;
  max-width: 760px;
  font-weight: 400;
  /* The approved package's hero H1 copy is authored fully uppercase
     (e.g. "PALETTE TUNISIE") in source/components/site-page.tsx's data
     object, distinct from the page's normal-case SEO/meta title in
     IMPLEMENTATION_HANDOFF.json — reproduced visually here since the WP
     page title (this theme's H1 source) stays normal-case for SEO. */
  text-transform: uppercase;
}
.heroCopy p.hero-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #d7e0da;
  max-width: 620px;
  margin: 0;
}
.actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 38px;
  flex-wrap: wrap;
}
.primary {
  display: inline-flex;
  justify-content: space-between;
  gap: 28px;
  background: var(--wood);
  color: #14261e;
  padding: 17px 21px;
  font-weight: 800;
  font-size: 13px;
  min-width: 185px;
}
.primary:after {
  content: "↗";
}
.textLink {
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid #81998e;
  padding: 16px 0;
}
.textLink:after {
  content: "→";
  margin-left: 8px;
}
.heroImage {
  margin: 38px 38px 38px 0;
  min-height: 560px;
  overflow: hidden;
  position: relative;
  background: #1a4938;
}
.heroImage::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px #ffffff22;
  pointer-events: none;
}
.heroImage img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.contentWrap {
  max-width: 1280px;
  margin: auto;
  padding: 110px 34px;
}
.sectionHead {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-top: 1px solid #bcbdb8;
  padding-top: 24px;
  margin: 0 0 54px;
}
.sectionHead .badge-num {
  color: #9b6f39;
  font-size: 11px;
  font-weight: 800;
  margin: 0;
}
.sectionHead h2 {
  font: 500 clamp(35px, 4vw, 58px)/1.06 Georgia, serif;
  margin: 0;
  max-width: 800px;
}
.sectionHead p {
  max-width: 650px;
  line-height: 1.7;
  color: #5e6862;
  margin: 12px 0 0;
}
.activityGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 120px;
}
.activityGrid article {
  min-height: 225px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: #fbfaf7;
  transition: 0.25s;
}
.activityGrid article:hover {
  background: var(--green);
  color: white;
  transform: translateY(-4px);
}
.activityGrid article .badge-num,
.specGrid article .badge-num {
  font-size: 10px;
  color: #9b6f39;
  font-weight: 800;
  margin: 0;
}
.activityGrid h3 {
  font: 500 24px/1.25 Georgia, serif;
  margin-top: 60px;
  max-width: 290px;
}
.activityGrid article.has-arrow:after {
  content: "↗";
  position: absolute;
  right: 25px;
  top: 25px;
  font-style: normal;
}
.twoCol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 120px;
}
.twoCol h3 {
  font: 500 35px/1.25 Georgia, serif;
  margin: 0;
}
.twoCol p,
.prose p {
  font-size: 16px;
  line-height: 1.9;
  color: #59635d;
  margin: 0 0 24px;
}
.specGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 110px;
}
.specGrid.four {
  grid-template-columns: repeat(4, 1fr);
}
.specGrid article {
  background: var(--cream);
  min-height: 210px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.specGrid b,
.specGrid .spec-title {
  font: 500 25px/1.25 Georgia, serif;
}
.specGrid strong,
.specGrid .spec-value {
  font: 500 30px Georgia, serif;
  margin-top: auto;
}
.specGrid ul {
  padding-left: 18px;
  line-height: 2;
  margin: 0;
}
.prose {
  max-width: 860px;
  margin-left: auto;
  margin-bottom: 100px;
}
.numbered {
  border-top: 1px solid var(--line);
  margin-bottom: 110px;
}
.numbered article {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.numbered article .badge-num {
  color: #9b6f39;
  font-size: 11px;
  font-weight: 800;
  margin: 0;
}
.numbered h3 {
  font: 500 31px Georgia, serif;
  margin: 0 0 12px;
}
.numbered p {
  line-height: 1.75;
  color: #5d6761;
  max-width: 800px;
  margin: 0;
}
.contactBand {
  background: var(--wood);
  padding: 75px clamp(34px, 7vw, 112px);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
}
.contactBand .contactBandEyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin: 0;
}
.contactBand h2 {
  font: 500 clamp(38px, 5vw, 68px)/1.02 Georgia, serif;
  margin: 22px 0;
}
.contactBandRight {
  align-self: end;
}
.contactBandRight p {
  line-height: 1.7;
  margin: 0;
}
.contactBandRight a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #70522d;
  padding: 20px 0;
  font-weight: 800;
  font-size: 13px;
  margin-top: 20px;
}
.contactBandRight a:after {
  content: "↗";
}
.contactLayout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.contactLayout dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin: 0;
}
.contactLayout dt {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  color: #9b6f39;
  margin: 0;
}
.contactLayout dd {
  margin: 0 0 18px;
}
.contactLayout form,
.quoteForm {
  background: var(--green);
  color: white;
  padding: 48px;
}
.quoteForm .quoteFormEyebrow {
  font-size: 10px;
  color: #d6ae76;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin: 0;
}
.quoteForm h2 {
  font: 500 30px/1.2 Georgia, serif;
  margin: 18px 0 35px;
}
.quoteForm label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-top: 20px;
}
.quoteForm input,
.quoteForm textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #6f877c;
  background: transparent;
  color: white;
  padding: 13px 0;
  font: inherit;
  outline: none;
}
.quoteForm button {
  margin-top: 30px;
  border: 0;
  background: var(--wood);
  padding: 16px 20px;
  font-weight: 800;
  min-width: 150px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.formSuccess .button {
  margin-top: 30px;
  border: 0;
  background: var(--wood);
  color: #14261e;
  padding: 16px 20px;
  font-weight: 800;
  min-width: 150px;
  display: inline-flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.quoteForm .fieldError input,
.quoteForm .fieldError textarea {
  border-bottom-color: #f0a19a;
}
.quoteForm .fieldError small {
  display: block;
  margin-top: 7px;
  color: #ffd0cc;
  font-size: 11px;
  font-weight: 500;
}
.quoteForm .formErrorSummary {
  margin: -20px 0 24px;
  padding: 11px 13px;
  border-left: 3px solid #e08e86;
  background: rgba(224, 142, 134, 0.12);
  color: #ffd8d4;
  font-size: 12px;
}
.quoteForm .honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.formSuccess {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.formSuccess .successMark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #d6ae76;
  border-radius: 50%;
  color: #d6ae76;
  font-size: 22px;
}
.quoteForm .formSuccess h2 {
  margin-bottom: 16px;
}
.formSuccess p {
  max-width: 430px;
  margin: 0;
  color: #c4d2cb;
  line-height: 1.7;
}
.emptyBlog {
  border: 1px solid var(--line);
  padding: 70px;
  background: var(--cream);
  margin-bottom: 80px;
}
.emptyBlog .emptyBlogEyebrow {
  font-size: 10px;
  color: #9b6f39;
  font-weight: 800;
  margin: 0;
}
.emptyBlog h3 {
  font: 500 36px Georgia, serif;
  margin: 12px 0;
}
.emptyBlog p {
  color: #59635d;
  margin: 0;
}
footer {
  background: #0b2a1f;
  color: #dce6e0;
  padding: 70px clamp(34px, 7vw, 112px) 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 50px;
}
.brand.light small {
  color: #a9b8b0;
}
.footerBrand p {
  max-width: 310px;
  color: #9fb0a8;
  line-height: 1.7;
}
.footerCol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #aab8b1;
}
.footerCol b {
  color: white;
  text-transform: uppercase;
  font-size: 10px;
  margin-bottom: 8px;
}
.footerCol a[href] {
  color: inherit;
}
.footerNav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 12px;
}
.footerNav b {
  grid-column: 1 / -1;
  color: white;
  text-transform: uppercase;
  font-size: 10px;
}
.footerNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: contents;
}
.footerNav li {
  display: contents;
}
.footerNav a {
  font-size: 13px;
  color: #aab8b1;
}
footer > .siteCopyright {
  grid-column: 1/-1;
  border-top: 1px solid #345044;
  padding-top: 20px;
  color: #859a90;
  font-size: 12px;
  margin: 0;
}
.floatingActions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  z-index: 40;
}
.floatingWhats,
.floatingCall {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 8px 24px #0004;
  transition: transform 0.2s ease;
}
.floatingWhats:hover,
.floatingCall:hover,
.floatingWhats:focus-visible,
.floatingCall:focus-visible {
  transform: translateY(-3px);
}
.floatingWhats {
  background: #25d366;
}
.floatingCall {
  background: var(--wood);
}
.floatingWhats svg {
  width: 29px;
  fill: white;
}
.floatingCall svg {
  width: 25px;
  fill: #173326;
}
.solutionList {
  border-top: 1px solid var(--line);
  margin-bottom: 120px;
}
/* Each item is an <article> whose H3 contains the real, accessible link;
   the link is stretched to cover the whole row (standard "stretched
   link" pattern) so the full card stays clickable exactly like the
   approved package's own <a>-wrapped card — a non-visual technical
   adaptation, since no core Gutenberg block can wrap block-level
   siblings in an anchor (project-docs/DESIGN_IMPLEMENTATION_MAP.md). */
.solutionList article {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr 44px;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.2s ease, background 0.2s ease;
}
.solutionList article:has(h3 a:hover),
.solutionList article:has(h3 a:focus-visible) {
  padding-left: 20px;
  padding-right: 20px;
  background: var(--cream);
}
.solutionList article .badge-num {
  color: #9b6f39;
  font-size: 11px;
  font-weight: 800;
  margin: 0;
}
.solutionList h3 {
  margin: 0 0 7px;
  font: 500 27px Georgia, serif;
  grid-column: 2;
}
.solutionList h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.solutionList p {
  max-width: 720px;
  margin: 0;
  color: #5d6761;
  line-height: 1.65;
  grid-column: 2;
}
.solutionList article::after {
  content: "↗";
  font-size: 22px;
  grid-column: 3;
}
.woodStory {
  margin: 0 calc(50% - 50vw) 120px;
  padding: 90px max(34px, calc((100vw - 1212px) / 2));
  background: var(--green);
  color: white;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-areas:
    "label body"
    "headline body";
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 100px;
  row-gap: 0;
}
.woodStory > .wp-block-group__inner-container > .badge-num {
  grid-area: label;
}
.woodStory > .wp-block-group__inner-container > .wp-block-group:nth-of-type(1) {
  grid-area: headline;
}
.woodStory > .wp-block-group__inner-container > .wp-block-group:nth-of-type(2) {
  grid-area: body;
}
.woodStory .woodStoryEyebrow {
  color: #d6b07b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  margin: 0;
}
.woodStory h2 {
  margin: 24px 0 0;
  font: 500 clamp(40px, 5vw, 66px) / 1.05 Georgia, serif;
}
.woodStory p {
  color: #cbd8d1;
  line-height: 1.8;
  margin: 0 0 22px;
}
.woodStory a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #668075;
  padding-top: 18px;
  margin-top: 35px;
  font-size: 13px;
  font-weight: 800;
}
.woodStory a:after {
  content: "→";
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 70px;
}
.steps article {
  background: var(--cream);
  padding: 30px;
  min-height: 245px;
}
.steps article .badge-num {
  color: #9b6f39;
  font-size: 11px;
  font-weight: 800;
  margin: 0;
}
.steps h3 {
  margin: 60px 0 12px;
  font: 500 26px Georgia, serif;
}
.steps p {
  color: #5d6761;
  line-height: 1.65;
  margin: 0;
}
.serviceFacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.serviceFacts .factItem {
  padding: 25px;
  border-right: 1px solid var(--line);
}
.serviceFacts .factItem:last-child {
  border-right: 0;
}
.serviceFacts .factLabel {
  display: block;
  color: #9b6f39;
  font-size: 9px;
  font-weight: 800;
  margin: 0 0 14px;
}
.serviceFacts strong {
  font: 500 26px Georgia, serif;
}
.historyMerge,
.crateBrief,
.qualityCompare,
.furnitureStory {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  padding: 70px;
  margin-bottom: 110px;
  background: var(--green);
  color: white;
}
.historyMerge .badge-num,
.crateBrief .badge-num,
.qualityCompare .badge-num,
.furnitureStory .badge-num {
  color: #d6b07b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 0;
}
.historyMerge strong,
.historyMerge .historyYear {
  display: block;
  margin: 25px 0;
  color: var(--wood);
  font: 500 88px Georgia, serif;
}
.historyMerge h2,
.crateBrief h2,
.qualityCompare h2,
.furnitureStory h2 {
  margin: 20px 0;
  font: 500 clamp(38px, 4.4vw, 62px) / 1.06 Georgia, serif;
}
.historyMerge p,
.crateBrief p,
.qualityCompare p,
.furnitureStory p {
  color: #cbd8d1;
  line-height: 1.8;
  margin: 0 0 16px;
}
.sizeTable {
  margin-bottom: 100px;
  border-top: 1px solid var(--line);
}
.sizeTable .sizeRow {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}
.sizeTable .sizeRow > * {
  margin: 0;
}
.sizeTable .sizeHead {
  color: #9b6f39;
  font-size: 10px;
  text-transform: uppercase;
}
.sizeTable .sizeCellStrong {
  font-weight: 700;
}
.editorialSplit,
.euroText {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  margin-bottom: 110px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.editorialSplit .badge-num {
  color: #9b6f39;
  font-size: 10px;
  font-weight: 800;
  margin: 0;
}
.editorialSplit h3,
.euroText h3 {
  font: 500 35px / 1.2 Georgia, serif;
  margin: 0;
}
.editorialSplit p,
.euroText p {
  color: #5d6761;
  line-height: 1.8;
  margin: 0;
}
.measureFlow,
.cycle,
.qualityPillars,
.ideaRail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-bottom: 110px;
}
.measureFlow article,
.cycle article,
.qualityPillars article,
.ideaRail article {
  min-height: 270px;
  padding: 28px;
  background: #f8f7f3;
}
.measureFlow .badge-num,
.cycle .badge-num,
.qualityPillars .badge-num,
.ideaRail .badge-num {
  color: #9b6f39;
  font-size: 10px;
  font-weight: 800;
  margin: 0;
}
.measureFlow h3,
.cycle h3,
.qualityPillars h3,
.ideaRail h3 {
  margin: 70px 0 12px;
  font: 500 26px Georgia, serif;
}
.measureFlow p,
.cycle p,
.qualityPillars p,
.ideaRail p {
  color: #5d6761;
  line-height: 1.65;
  margin: 0;
}
.crateBrief ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.crateBrief li {
  padding: 14px 0;
  border-top: 1px solid #60796e;
}
.crateBrief a,
.furnitureStory a {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #60796e;
  font-weight: 700;
}
.crateBrief a:after,
.furnitureStory a:after {
  content: "↗";
}
.euroSignature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 110px;
  background: var(--wood);
}
.euroSignature .euroFact {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid #92662f;
  display: flex;
  flex-direction: column;
}
.euroSignature .euroFactLabel {
  font-size: 10px;
  font-weight: 800;
  margin: 0;
}
.euroSignature strong,
.euroSignature .euroFactValue {
  margin-top: auto;
  font: 500 clamp(38px, 4vw, 60px) Georgia, serif;
}
.euroSignature small,
.euroSignature .euroFactUnit {
  margin-top: 8px;
  display: block;
  font-size: 13px;
}
.recycleStatement {
  padding: 70px;
  margin-bottom: 100px;
  background: var(--wood);
}
.recycleStatement .recycleEyebrow {
  font-size: 10px;
  font-weight: 800;
  margin: 0;
}
.recycleStatement h2 {
  margin: 22px 0;
  font: 500 clamp(42px, 5vw, 70px) Georgia, serif;
}
.recycleStatement p {
  margin: 0;
}
.qualityPillars {
  grid-template-columns: repeat(5, 1fr);
}
.qualityPillars article {
  min-height: 310px;
}
.ideaRail {
  grid-template-columns: repeat(3, 1fr);
}
.decoNote {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding: 50px 0;
  margin-bottom: 100px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.decoNote strong {
  font: 500 38px Georgia, serif;
}
.decoNote p {
  max-width: 600px;
  color: #5d6761;
  line-height: 1.8;
}
.furnitureTypes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 110px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.furnitureTypes .furnitureType {
  padding: 50px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
  font: 500 20px Georgia, serif;
  margin: 0;
}

/* Dynamic company-info block (rules/09 section 22) — visual labels
   recovered via CSS since the block owns its own markup shape. */
.zov-company-info-block {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
}
.zov-company-info-block .zov-company-info__heading {
  grid-column: 1/-1;
  font: 500 20px Georgia, serif;
  margin: 0 0 10px;
}
.zov-company-info-block ul {
  grid-column: 2;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.zov-company-info-block .zov-company-info__phones:before {
  content: "Téléphone";
  display: block;
  grid-column: 1;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  color: #9b6f39;
}
.zov-company-info-block .zov-company-info__emails:before {
  content: "E-mail";
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  color: #9b6f39;
}
.zov-company-info-block .zov-company-info__addresses:before {
  content: "Adresse";
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  color: #9b6f39;
}
.zov-company-info-block .zov-company-info__hours-list:before {
  content: "Horaires";
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  color: #9b6f39;
}

@media (max-width: 1180px) {
  .nav {
    gap: 12px;
  }
  .nav a {
    font-size: 10px;
  }
  .headerCta {
    display: none;
  }
  .heroCopy {
    padding: 80px 45px;
  }
  .specGrid.four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .header {
    height: 74px;
    padding: 0 22px;
  }
  .menuBtn {
    display: flex;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .menuBtn span {
    width: 18px;
    height: 1px;
    background: var(--ink);
  }
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #f8f7f3;
    padding: 20px 24px 30px;
    align-items: stretch;
    box-shadow: 0 20px 30px #11251c25;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav a {
    display: block;
    text-align: left;
    padding: 12px 0;
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .heroCopy {
    padding: 70px 30px 55px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .heroImage {
    margin: 0 30px 36px;
    min-height: 410px;
  }
  .heroImage img {
    min-height: 410px;
  }
  .contentWrap {
    padding: 75px 26px;
  }
  .activityGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .twoCol {
    gap: 36px;
  }
  .contactLayout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contactBand {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .woodStory {
    display: block;
  }
  .woodStory > .wp-block-group__inner-container > .wp-block-group:nth-of-type(2) {
    margin-top: 45px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .serviceFacts {
    grid-template-columns: repeat(2, 1fr);
  }
  .historyMerge,
  .crateBrief,
  .qualityCompare,
  .furnitureStory,
  .editorialSplit,
  .euroText,
  .decoNote {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .measureFlow,
  .cycle,
  .qualityPillars {
    grid-template-columns: repeat(2, 1fr);
  }
  footer {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footerCol:last-of-type {
    display: none;
  }
}
@media (max-width: 600px) {
  .brand {
    min-width: 0;
  }
  .heroCopy {
    padding: 58px 22px 45px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .heroCopy p.hero-intro {
    font-size: 16px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .heroImage {
    margin: 0 18px 20px;
    min-height: 330px;
  }
  .heroImage img {
    min-height: 330px;
  }
  .contentWrap {
    padding: 65px 18px;
  }
  .sectionHead {
    grid-template-columns: 45px 1fr;
    margin-bottom: 38px;
  }
  .sectionHead h2 {
    font-size: 35px;
  }
  .activityGrid {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }
  .activityGrid article {
    min-height: 175px;
  }
  .activityGrid h3 {
    margin-top: 35px;
  }
  .twoCol {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 80px;
  }
  .twoCol h3 {
    font-size: 29px;
  }
  .specGrid,
  .specGrid.four {
    grid-template-columns: 1fr;
  }
  .specGrid article {
    min-height: 175px;
  }
  .numbered article {
    grid-template-columns: 45px 1fr;
  }
  .contactBand {
    padding: 58px 22px;
  }
  .contactBand h2 {
    font-size: 41px;
  }
  .quoteForm {
    padding: 32px 22px;
  }
  .contactLayout dl {
    grid-template-columns: 85px 1fr;
  }
  .emptyBlog {
    padding: 35px 24px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 55px 24px 25px;
  }
  .footerBrand {
    grid-column: 1/-1;
  }
  .footerNav {
    grid-column: 1/-1;
  }
  .footerCol:nth-of-type(3) {
    grid-column: 1/-1;
  }
  footer > .siteCopyright {
    grid-column: 1/-1;
  }
  .floatingWhats,
  .floatingCall {
    width: 48px;
    height: 48px;
  }
  .solutionList a {
    grid-template-columns: 42px 1fr 24px;
    gap: 8px;
  }
  .solutionList h3 {
    font-size: 23px;
  }
  .solutionList p {
    font-size: 14px;
  }
  .woodStory {
    margin-bottom: 80px;
    padding: 65px 22px;
  }
  .serviceFacts .factItem {
    padding: 20px 14px;
  }
  .historyMerge,
  .crateBrief,
  .qualityCompare,
  .furnitureStory,
  .recycleStatement {
    padding: 45px 24px;
    margin-bottom: 80px;
  }
  .sizeTable .sizeRow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .measureFlow,
  .cycle,
  .qualityPillars,
  .ideaRail,
  .euroSignature,
  .furnitureTypes {
    grid-template-columns: 1fr;
  }
  .measureFlow article,
  .cycle article,
  .qualityPillars article,
  .ideaRail article {
    min-height: 210px;
  }
  .furnitureTypes .furnitureType {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Focus visibility (rules/05 section 19) — package does not specify a
   custom focus treatment, so the browser default outline is preserved,
   only ensured visible against dark backgrounds. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #d6b07b;
  outline-offset: 2px;
}
