/* Self-hosted variable fonts (Google Fonts: Inter + Playfair Display). */

/* Inter — body face. Covers latin, latin-ext, cyrillic, greek. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Inter-var-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Inter-var-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Inter-var-greek-ext.woff2') format('woff2');
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Inter-var-greek.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Inter-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Playfair Display — display serif for headings. Covers latin, latin-ext, cyrillic. */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/PlayfairDisplay-var-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/PlayfairDisplay-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/PlayfairDisplay-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =========================================================
   Fabricotts theme — main stylesheet
   Palette: beige / white / near-black, serif display headings
   ========================================================= */

:root {
  --bg: #faf9f7;
  --beige: #ede4dc;
  --beige-soft: #f4efe9;
  --beige-deep: #eae1d8;
  --paper: #f8f6f3;
  --card: #fbfaf8;
  --footer-bg: #f3eeea;
  --ink: #131311;
  --text: #3f3b36;
  --muted: #6f6a62;
  --line-beige: #ddd3c7;
  --line: #e7e4de;
  --input-border: #dcd9d3;
  --btn: #131211;
  --btn-hover: #2b2825;
  --badge: #d9cfc2;
  --req: #b3402e;
  --success: #1a7a2e;
  --error: #b3402e;
  --font-serif: 'Playfair Display', 'Noto Serif', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Arial, sans-serif;
  --container: 1170px;
  --container-wide: 1280px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; inset-inline-start: 0; top: -80px;
  background: var(--ink); color: #fff; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { top: 0; }

.visually-hidden-input,
.field input.visually-hidden-input,
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; min-height: 0;
  padding: 0; border: 0; margin: 0;
  inset-inline-start: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border: 0; border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}
.btn-dark { background: var(--btn); color: #fff; }
.btn-dark:hover { background: var(--btn-hover); }
.btn .arrow { font-size: 15px; line-height: 1; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
[dir="rtl"] .btn .arrow { transform: scaleX(-1); }
[dir="rtl"] .btn:hover .arrow { transform: scaleX(-1) translateX(3px); }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: #45413c;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: var(--container-wide);
  display: flex; align-items: center; gap: 28px;
  min-height: 66px;
}
.brand { flex-shrink: 0; display: flex; align-items: center; }
.brand img { height: 42px; width: auto; }

.main-nav { margin-inline-start: auto; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  display: inline-block; padding: 6px 0;
  font-size: 11.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink); position: relative; white-space: nowrap;
}
.main-nav a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0;
  height: 2px; background: var(--ink);
  transform: scaleX(0); transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-cta { white-space: nowrap; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; border: 1px solid var(--input-border); border-radius: 5px;
  padding: 8px 12px; font-size: 12px; font-weight: 600; letter-spacing: .06em;
  color: var(--ink);
}
.lang-toggle:hover { border-color: var(--ink); }
.lang-toggle .icon-globe { width: 16px; height: 16px; }
.lang-toggle .icon-chevron { width: 10px; height: 7px; transition: transform .2s ease; }
.lang-switcher.is-open .icon-chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px);
  min-width: 200px; max-height: 70vh; overflow-y: auto;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 18, 14, .12);
  padding: 6px; z-index: 120;
}
.lang-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 5px; font-size: 13.5px;
}
.lang-menu a:hover { background: var(--beige-soft); }
.lang-menu a.is-current { background: var(--beige); font-weight: 600; }
.lang-menu .lang-code {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; color: var(--muted);
  width: 22px; flex-shrink: 0;
}

.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero { background: var(--beige); }
.hero-inner {
  max-width: var(--container-wide); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  align-items: stretch;
}
.hero-content {
  padding: 72px 48px 72px 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero h1 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(38px, 4.3vw, 58px); line-height: 1.12; letter-spacing: -.01em;
  color: var(--ink);
  margin: 22px 0 20px;
  max-width: 12em;
}
.hero-lead { max-width: 34em; font-size: 15px; color: var(--text); }
.hero-cta { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.hero-tagline {
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: #59544c;
}
.hero-media { position: relative; min-height: 380px; }
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* ---------- USP strip ---------- */
.usp-strip { background: var(--beige-soft); border-bottom: 1px solid var(--line); }
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: 34px;
}
.usp {
  display: flex; align-items: flex-start; gap: 16px;
  padding-inline: 28px;
  border-inline-start: 1px solid var(--line-beige);
}
.usp:first-child { border-inline-start: 0; padding-inline-start: 0; }
.usp img { flex-shrink: 0; margin-top: 3px; height: 36px; width: auto; }
.usp h3 {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 5px;
}
.usp p { font-size: 13px; line-height: 1.5; color: var(--muted); }

/* ---------- Sections ---------- */
.section-title {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(26px, 2.6vw, 34px); letter-spacing: .02em; text-transform: uppercase;
  color: var(--ink); text-align: center;
}
.section-sub { text-align: center; color: var(--muted); font-size: 14.5px; margin-top: 10px; }

/* ---------- Process ---------- */
.process { background: var(--bg); padding-block: 50px 72px; }
.process-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; gap: 8px;
  margin-top: 54px;
}
.step { text-align: center; padding-inline: 12px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--badge); color: var(--ink);
  font-family: var(--font-serif); font-weight: 600; font-size: 14px;
  margin-bottom: 20px;
}
.step img { margin: 0 auto 18px; }
.step h3 {
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 10px;
}
.step p { font-size: 13px; line-height: 1.65; color: var(--muted); max-width: 230px; margin-inline: auto; }
.step-divider { align-self: center; color: #b7ad9f; padding-top: 30px; }
.step-divider svg { width: 11px; height: 19px; }
[dir="rtl"] .step-divider svg { transform: scaleX(-1); }

/* ---------- Products ---------- */
.products { background: var(--paper); border-block: 1px solid var(--line); padding-block: 48px 68px; }
.product-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  margin-top: 44px;
}
.product-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 3px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(30, 26, 20, .1); }
.product-photo { aspect-ratio: 2 / 3; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-label { padding: 14px 10px 16px; text-align: center; }
.product-label h3 {
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 6px;
}
.product-label p { font-size: 11px; line-height: 1.5; color: var(--muted); }

/* ---------- Stats ---------- */
.stats { background: var(--beige-deep); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); padding-block: 44px; }
.stat {
  text-align: center; padding-inline: 12px;
  border-inline-start: 1px solid var(--line-beige);
}
.stat:first-child { border-inline-start: 0; }
.stat-num {
  display: block; font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(30px, 3vw, 42px); color: var(--ink); line-height: 1.15;
}
.stat-label {
  display: block; margin-top: 8px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #5d574f;
}

/* ---------- Quote ---------- */
.quote { background: var(--bg); padding-block: 64px; }
.quote-wrap {
  display: grid; grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(30, 26, 20, .07);
  padding: 0;
}
.quote-panel {
  position: relative;
  background: #262019 url('../img/quote.webp') center / cover no-repeat;
  min-height: 560px;
}
.quote-panel::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 15, .55), rgba(24, 20, 15, .18) 55%, rgba(24, 20, 15, .35));
}
.quote-panel-content {
  position: relative; z-index: 1;
  padding: 56px 44px;
  color: #f2eee8;
  display: flex; flex-direction: column; height: 100%;
}
.eyebrow-light { color: #d9d2c6; font-size: 10.5px; letter-spacing: .26em; }
.eyebrow-light::before {
  content: ""; display: block; width: 26px; height: 2px; background: #d9d2c6; margin-bottom: 14px;
}
.quote-panel h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(30px, 2.8vw, 38px); color: #fff;
  margin: 16px 0 14px;
}
.quote-panel-lead { font-size: 14.5px; max-width: 21em; color: #e6e0d6; }
.quote-checklist { margin-top: 34px; display: grid; gap: 16px; }
.quote-checklist li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .75); flex-shrink: 0;
}
.check svg { width: 11px; height: 9px; }

/* Form */
.quote-form { padding: 40px 44px 44px; background: #fff; }
.hp-field {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.form-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px 18px;
}
.field { grid-column: span 2; display: flex; flex-direction: column; min-width: 0; }
.field-half { grid-column: span 3; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #45413c; margin-bottom: 8px;
}
.req { color: var(--req); }
.field input, .field select, .field textarea {
  width: 100%; min-width: 0; border: 1px solid var(--input-border); border-radius: 4px;
  background: #fff; color: var(--ink);
  font-family: inherit; font-size: 13.5px;
  padding: 10px 12px; min-height: 42px;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #a29d94; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink);
}
.select-wrap { position: relative; }
.select-wrap select { appearance: none; padding-inline-end: 32px; }
.select-wrap::after {
  content: ""; position: absolute; inset-inline-end: 12px; top: 50%;
  width: 8px; height: 8px; margin-top: -6px;
  border-inline-end: 1.5px solid #6f6a62; border-bottom: 1.5px solid #6f6a62;
  transform: rotate(45deg); pointer-events: none;
}
.phone-row { display: flex; gap: 8px; }
.select-prefix { flex: 0 0 108px; }
.phone-row input { flex: 1; min-width: 0; }

.upload-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid var(--input-border); border-radius: 4px;
  min-height: 42px; padding: 10px 12px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  cursor: pointer; background: #fff;
  transition: border-color .2s ease, background .2s ease;
}
.upload-btn:hover { border-color: var(--ink); background: var(--paper); }
.upload-btn svg { width: 16px; height: 16px; }
.field-hint { font-size: 10px; color: var(--muted); margin-top: 7px; letter-spacing: .02em; }
.file-list { font-size: 12px; color: var(--text); margin-top: 6px; }

.form-footer { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.btn-submit { padding: 14px 26px; }
.confidential {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted);
}
.confidential svg { width: 15px; height: 15px; }

.form-status:not(:empty) { margin-bottom: 6px; }
.form-msg {
  padding: 12px 14px; border-radius: 4px; font-size: 13.5px; margin-bottom: 16px;
}
.form-msg.is-success { background: #edf6ee; color: var(--success); border: 1px solid #bfdec4; }
.form-msg.is-error { background: #fbeeec; color: var(--error); border: 1px solid #e8c5bd; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); }
.footer-stitch {
  position: relative;
  max-width: var(--container-wide); margin-inline: auto;
  padding-inline: 24px;
  height: 46px;
}
.footer-stitch::after {
  content: ""; position: absolute; inset-inline-start: 0; inset-inline-end: 84px; bottom: 0;
  border-bottom: 2px dashed #6d645a;
}
.stitch-machine {
  position: absolute; inset-inline-end: 40px; bottom: 1px;
  width: 50px; height: auto; z-index: 1;
}
[dir="rtl"] .stitch-machine { transform: scaleX(-1); }

.footer-cols {
  display: grid;
  grid-template-columns: minmax(0, 30fr) minmax(0, 26fr) minmax(0, 20fr) minmax(0, 24fr);
  gap: 40px;
  padding-block: 56px 48px;
}
.footer-brand img { height: 52px; width: auto; }
.footer-brand > p { margin-top: 20px; font-size: 14px; line-height: 1.75; max-width: 21em; }
.footer-heading {
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 18px;
}
.footer-brand .footer-heading { margin-top: 30px; margin-bottom: 14px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; color: var(--ink);
  transition: opacity .2s ease;
}
.social-links a:hover { opacity: .6; }
.social-links svg { width: 22px; height: 22px; }

.contact-list { display: grid; gap: 16px; margin-bottom: 26px; }
.contact-list li { display: flex; gap: 12px; font-size: 14px; line-height: 1.7; }
.contact-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; color: var(--ink); }
.contact-list a:hover { text-decoration: underline; }

.footer-links ul, .footer-caps ul { display: grid; gap: 12px; }
.footer-links a, .footer-caps a { font-size: 14px; color: var(--text); }
.footer-links a:hover, .footer-caps a:hover { color: var(--ink); text-decoration: underline; }

.footer-bottom { border-top: 1px solid #ddd5cd; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding-block: 22px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.legal-links { display: flex; gap: 34px; }
.legal-links a:hover { color: var(--ink); text-decoration: underline; }

/* ---------- Generic page ---------- */
.page-content { padding-block: 64px; }
.page-content .entry-title {
  font-family: var(--font-serif); font-size: 36px; color: var(--ink); margin-bottom: 24px;
}
.entry-content p { margin-bottom: 1em; }

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .main-nav ul { gap: 18px; }
  .header-inner { gap: 18px; }
}

/* The header collapses earlier than the content layout: several languages have
   long nav labels + CTA that don't fit below ~1300px. */
@media (max-width: 1300px) {
  .main-nav {
    display: none;
    position: absolute; top: 100%; inset-inline: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 10px 0; font-size: 13px; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .header-actions { margin-inline-start: auto; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 40px 24px; }
  .hero-media { min-height: 320px; }
  .hero-media img { position: static; height: 100%; }

  .usp-grid { grid-template-columns: 1fr 1fr; gap: 26px 0; }
  .usp:nth-child(odd) { border-inline-start: 0; padding-inline-start: 0; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .step-divider { display: none; }

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

  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 26px 0; padding-block: 36px; }
  .stat:nth-child(4) { border-inline-start: 0; }

  .quote-wrap { grid-template-columns: 1fr; }
  .quote-panel { min-height: 420px; }
}

@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .field, .field-half { grid-column: span 2; }
  .quote-form { padding: 28px 22px 32px; }
  .quote-panel-content { padding: 40px 26px; }

  .footer-cols { grid-template-columns: 1fr; gap: 36px; padding-block: 44px 36px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .legal-links { gap: 22px; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-inline-start: 0 !important; }
  .usp-grid { grid-template-columns: 1fr; }
  .usp { border-inline-start: 0; padding-inline: 0; }
  .hero h1 { font-size: clamp(26px, 7.4vw, 34px); overflow-wrap: break-word; }
}

@media (max-width: 560px) {
  .header-inner { gap: 10px; min-height: 58px; }
  .brand img { height: 30px; }
  .header-actions { gap: 6px; }
  .lang-toggle { padding: 7px 9px; gap: 5px; }
  .nav-toggle { padding: 6px 4px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
