:root {
  --bg:#0e1512; --bg2:#121b16;
  --surf:rgba(255,255,255,.055); --surfStrong:rgba(255,255,255,.10);
  --line:rgba(255,255,255,.13);
  --text:#eef2ee; --muted:#b6b1a8;
  --accent:#9db89a; --accent2:#cfe0cc; --onAccent:#0e1512;
  --radius:22px; --cardRadius:20px; --btnRadius:999px;
  --shadow:0 24px 60px rgba(0,0,0,.42);
  --ui:'Jost', sans-serif;
  --disp:'PT Serif', serif;
  --container: min(100% - 40px, 1240px);
  --sec-pad: 84px;
}
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ui);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--onAccent); }
.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--surf); color: var(--muted);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.h1, .h2, .h3 { font-family: var(--disp); font-weight: 400; margin: 0; color: var(--text); }
.h1 { font-size: clamp(38px, 5vw, 74px); line-height: 1; letter-spacing: -.02em; text-wrap: balance; }
.h2 { font-size: clamp(30px, 3.8vw, 54px); line-height: 1.05; letter-spacing: -.02em; }
.h3 { font-size: 22px; line-height: 1.2; }
.lead { font-size: 17px; line-height: 1.6; color: var(--muted); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 26px;
  border-radius: var(--btnRadius);
  font-weight: 500; cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  font-family: var(--ui);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--onAccent); font-weight: 600; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-block { width: 100%; }
.card {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: var(--cardRadius);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.22); }

/* ============= Header ============= */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(18,27,22,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 76px;
}
.brand { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.brand-name { font-family: var(--ui); font-weight: 600; font-size: 21px; letter-spacing: .14em; line-height: 1; color: var(--text); white-space: nowrap; }
.brand-name span { color: var(--accent); }
.brand-tag { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a:not(.btn) { color: var(--muted); padding: 9px 13px; font-size: 14px; transition: color .2s; }
.nav a:not(.btn):hover, .nav a.active { color: var(--text); }
.nav .btn { margin-left: 8px; min-height: 44px; padding: 0 20px; font-size: 14px; }
.nav-toggle { display: none; }

/* ============= Hero (stack) ============= */
.hero { padding: 70px 0 60px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.hero-copy p { margin: 0; max-width: 540px; font-size: 18px; line-height: 1.65; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%;
  margin-top: 8px;
}
.hero-stat {
  padding: 18px; border: 1px solid var(--line);
  border-radius: var(--cardRadius); background: var(--surf);
}
.hero-stat strong { display: block; font-family: var(--disp); font-weight: 400; font-size: 30px; line-height: 1; color: var(--text); }
.hero-stat span { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); }
.hero-image { position: relative; min-height: 560px; }
.hero-image .fig-a, .hero-image .fig-b {
  position: absolute; margin: 0; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.hero-image .fig-a {
  right: 0; top: 20px; width: 80%; height: 76%;
  border-radius: calc(var(--cardRadius) + 8px);
}
.hero-image .fig-b {
  left: 0; bottom: 24px; width: 46%; height: 40%;
  border-radius: calc(var(--cardRadius) + 4px);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; right: 6%; bottom: 0;
  padding: 16px 20px; border-radius: var(--cardRadius);
  background: var(--bg2); border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: olviFloat 7s ease-in-out infinite;
}
.hero-badge strong { display: block; font-family: var(--disp); font-weight: 400; font-size: 22px; color: var(--accent); line-height: 1; }
.hero-badge span { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); }
@keyframes olviFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Page hero (smaller for inner pages) */
.page-hero { padding: 56px 0 32px; border-bottom: 1px solid var(--line); }
.page-hero .h1 { font-size: clamp(32px, 4.6vw, 60px); }
.page-hero p { margin: 18px 0 0; max-width: 720px; font-size: 17px; line-height: 1.6; color: var(--muted); }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero .breadcrumbs { display: flex; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.page-hero .breadcrumbs a:hover { color: var(--text); }
.page-hero .breadcrumbs span { color: var(--muted); opacity: .6; }

/* ============= Sections ============= */
.section { padding: var(--sec-pad) 0; }
.section.tight { padding: calc(var(--sec-pad) * .6) 0; }
.section.alt { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.section-head p { margin: 0; max-width: 720px; font-size: 17px; line-height: 1.6; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.trust-card { padding: 30px; }
.trust-icon {
  display: inline-flex; width: 52px; height: 52px;
  align-items: center; justify-content: center;
  border-radius: calc(var(--cardRadius) - 6px);
  background: var(--surfStrong); color: var(--accent);
  margin-bottom: 20px;
}
.trust-card h3 { margin: 0; }
.trust-card p { margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: var(--muted); }

/* Process */
.step-card { padding: 28px; }
.step-n {
  display: inline-flex; font-family: var(--disp); font-weight: 400;
  font-size: 15px; letter-spacing: .1em; color: var(--accent);
  border: 1px solid var(--line); border-radius: var(--btnRadius);
  padding: 6px 14px;
}
.step-card h3 { margin: 18px 0 0; font-size: 21px; }
.step-card p { margin: 10px 0 0; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.pricing-points { display: grid; gap: 14px; margin-top: 24px; }
.pricing-points > div { display: flex; gap: 14px; align-items: flex-start; }
.pricing-points > div::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); margin-top: 8px; flex-shrink: 0;
}
.pricing-points p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); }
.pricing-cards { display: grid; gap: 16px; }
.pricing-card { padding: 26px; }
.pricing-card strong { display: block; font-family: var(--disp); font-weight: 400; font-size: 40px; color: var(--text); line-height: 1; }
.pricing-card.accent strong { color: var(--accent); }
.pricing-card p { margin: 8px 0 0; font-size: 15px; line-height: 1.5; color: var(--muted); }

/* Turnkey */
.turnkey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.turnkey-col { padding: 34px; }
.turnkey-col h3 { margin: 0; font-size: 24px; }
.turnkey-list { display: grid; gap: 14px; margin-top: 22px; padding: 0; }
.turnkey-list li { display: flex; gap: 12px; align-items: flex-start; list-style: none; }
.turnkey-list li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  background-color: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") no-repeat center/contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") no-repeat center/contain;
}
.turnkey-list p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* Featured (home) 6-cards project sample */
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; margin-top: 40px; }
.proj { padding: 0; overflow: hidden; }
.proj .wrap { padding: 18px 20px 22px; }
.proj .thumb { overflow: hidden; aspect-ratio: 4/3; border-bottom: 1px solid var(--line); background: var(--bg2); }
.proj .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.proj:hover .thumb img { transform: scale(1.06); }
.proj h3 { margin: 0; font-size: 20px; }
.proj p { margin: 8px 0 0; font-size: 14px; line-height: 1.55; color: var(--muted); }
.proj .tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.proj-1 { grid-column: span 8; }
.proj-1 .thumb { aspect-ratio: 16/8; }
.proj-2, .proj-3, .proj-4, .proj-5, .proj-6 { grid-column: span 4; }

/* Big collection grid (kitchens/wardrobes page) */
.collection-toolbar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.filter-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surf);
  color: var(--muted); font-size: 13px; cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.filter-btn:hover { color: var(--text); border-color: rgba(255,255,255,.24); }
.filter-btn.active { background: var(--accent); color: var(--onAccent); border-color: var(--accent); font-weight: 600; }
.filter-btn .count { font-size: 11px; color: inherit; opacity: .7; }
.filter-btn.active .count { opacity: .85; }
.collection-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 28px;
}
.collection-item {
  position: relative; overflow: hidden;
  border-radius: var(--cardRadius); border: 1px solid var(--line);
  background: var(--surf);
  aspect-ratio: 4/3; cursor: zoom-in;
  transition: transform .3s ease, border-color .3s ease;
}
.collection-item:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.22); }
.collection-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.collection-item:hover img { transform: scale(1.05); }
.collection-item::after {
  content: attr(data-label);
  position: absolute; left: 12px; bottom: 12px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(14,21,18,.72); backdrop-filter: blur(6px);
  color: var(--text); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.collection-empty { padding: 40px; text-align: center; color: var(--muted); grid-column: 1 / -1; }

/* Materials */
.material-card { padding: 34px; display: flex; flex-direction: column; gap: 16px; }
.material-swatch {
  width: 100%; aspect-ratio: 3/2; border-radius: calc(var(--cardRadius) - 6px);
  overflow: hidden; border: 1px solid var(--line);
}
.material-swatch img { width: 100%; height: 100%; object-fit: cover; }
.material-card h3 { margin: 0; font-size: 24px; }
.material-card .meta { display: flex; flex-wrap: wrap; gap: 8px; }
.material-card .chip {
  display: inline-flex; padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg2);
  color: var(--muted); font-size: 12px;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-copy p { margin: 18px 0 0; max-width: 520px; font-size: 16px; line-height: 1.65; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--btnRadius);
  background: var(--surf); color: var(--muted); font-size: 14px;
}
.chip::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.callout {
  margin-top: 26px; padding: 20px 22px;
  background: var(--surf); border: 1px solid var(--line);
  border-radius: var(--cardRadius);
}
.callout span { font-size: 13px; color: var(--muted); }
.callout a { display: block; margin-top: 6px; font-family: var(--disp); font-weight: 400; font-size: 26px; color: var(--text); }
.form-card {
  padding: 32px;
  background: var(--surf); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 15px;
  background: var(--bg2); color: var(--text);
  border: 1px solid var(--line); border-radius: calc(var(--cardRadius) - 8px);
  outline: none; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { min-height: 130px; resize: vertical; }
.honeypot { display: none !important; }

/* FAQ */
.faq { display: grid; gap: 12px; margin-top: 28px; }
.faq details {
  padding: 22px 26px; border: 1px solid var(--line); border-radius: var(--cardRadius);
  background: var(--surf);
}
.faq summary {
  cursor: pointer; font-family: var(--disp); font-weight: 400; font-size: 20px;
  color: var(--text); position: relative; padding-right: 28px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: -2px;
  font-family: var(--ui); font-weight: 300; font-size: 26px; color: var(--accent);
  transition: transform .3s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 12px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* Footer */
.site-footer { background: var(--bg2); border-top: 1px solid var(--line); }
.site-footer .container {
  padding: 48px 0;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: start;
}
.site-footer p { margin: 16px 0 0; max-width: 640px; font-size: 15px; line-height: 1.65; color: var(--muted); }
.foot-links { display: flex; flex-wrap: wrap; gap: 10px; }
.foot-links a {
  padding: 8px 13px; border: 1px solid var(--line); border-radius: var(--btnRadius);
  color: var(--muted); font-size: 14px; transition: color .2s, border-color .2s;
}
.foot-links a:hover { color: var(--text); border-color: rgba(255,255,255,.22); }
.copyright { margin-top: 14px !important; font-size: 13px; color: var(--muted); }

/* Lightbox */
.lb-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6,10,8,.94);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.lb-overlay.open { display: flex; }
.lb-inner {
  position: relative; width: 100%; max-width: 1200px; height: 100%;
  display: flex; flex-direction: column;
}
.lb-stage {
  flex: 1; min-height: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.lb-stage img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  border-radius: var(--cardRadius);
}
.lb-thumbs {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: 18px;
}
.lb-thumb {
  width: 72px; height: 54px; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line); cursor: pointer; opacity: .5;
  transition: opacity .2s, border-color .2s;
  background: var(--surf);
}
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb-thumb.active { opacity: 1; border-color: var(--accent); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; z-index: 2;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(14,21,18,.72);
  color: var(--text); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ui); font-size: 20px;
}
.lb-close { top: 12px; right: 12px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
.lb-caption {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  padding: 8px 14px; border-radius: 999px;
  background: rgba(14,21,18,.72); border: 1px solid var(--line);
  color: var(--muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
}

/* ============= Responsive ============= */
@media (max-width: 1100px) {
  :root { --sec-pad: 72px; }
  .hero { padding: 48px 0 40px; }
  .hero-image { min-height: 480px; }
  .h1 { font-size: clamp(34px, 5vw, 58px); }
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  :root { --sec-pad: 60px; }
  .nav { gap: 0; }
  .nav a:not(.btn) { padding: 8px 10px; font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { min-height: 420px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .turnkey-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .projects-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .proj-1 { grid-column: span 6; }
  .proj-2, .proj-3 { grid-column: span 3; }
  .proj-4, .proj-5, .proj-6 { grid-column: span 2; }
  .proj-1 .thumb { aspect-ratio: 16/9; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .site-footer .container { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  :root { --sec-pad: 48px; }
  .site-header .container { min-height: 64px; }
  .brand-tag { display: none; }
  .brand-name { font-size: 18px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--line);
    border-radius: var(--btnRadius);
    background: var(--surf); color: var(--text); cursor: pointer; padding: 0;
  }
  .nav-toggle svg { width: 20px; height: 20px; }
  .nav {
    position: fixed; inset: 64px 0 auto 0;
    background: var(--bg2); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 20px 20px;
    transform: translateY(-120%); transition: transform .25s ease;
    z-index: 39; max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a:not(.btn) { padding: 14px 4px; font-size: 15px; border-bottom: 1px solid var(--line); }
  .nav .btn { margin: 12px 0 0; min-height: 48px; width: 100%; }
  .hero { padding: 24px 0 20px; }
  .hero-grid { gap: 24px; }
  .hero-copy { gap: 18px; }
  .hero-copy p { font-size: 15px; }
  .hero-actions .btn { flex: 1 1 auto; min-height: 52px; padding: 0 18px; font-size: 14px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-stat { padding: 14px 12px; }
  .hero-stat strong { font-size: 22px; }
  .hero-stat span { font-size: 11px; }
  .hero-image { position: static; min-height: 0; display: block; }
  .hero-image .fig-a {
    position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 4/3;
    border-radius: var(--cardRadius);
  }
  .hero-image .fig-b, .hero-badge { display: none; }
  .h1 { font-size: clamp(28px, 8vw, 42px); }
  .h2 { font-size: clamp(24px, 6vw, 36px); }
  .h3 { font-size: 20px; }
  .page-hero { padding: 32px 0 20px; }
  .grid-3 { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .trust-card, .step-card, .turnkey-col { padding: 24px; }
  .turnkey-col h3 { font-size: 22px; }
  .pricing-card { padding: 22px; }
  .pricing-card strong { font-size: 34px; }
  .projects-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .proj-1, .proj-2, .proj-3, .proj-4, .proj-5, .proj-6 { grid-column: span 1; }
  .proj-1 .thumb { aspect-ratio: 4/3; }
  .proj .wrap { padding: 16px 18px 20px; }
  .collection-grid { grid-template-columns: 1fr; gap: 14px; }
  .filter-btn { padding: 8px 14px; font-size: 12px; }
  .material-card { padding: 24px; }
  .contact-copy p { margin-top: 14px; }
  .form-card { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .callout a { font-size: 22px; }
  .site-footer .container { padding: 32px 0; }
  .lb-thumbs { display: none; }
}
@media (max-width: 380px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .chips .chip { font-size: 13px; padding: 8px 12px; }
}
