@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400 500; font-display: swap; src: url('/fonts/inter-latin.woff2') format('woff2'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 600 700; font-display: swap; src: url('/fonts/worksans-latin.woff2') format('woff2'); }


*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { min-height: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }


[data-mm-header]{--mm-bg:#ffffff;--mm-text:#333333;--mm-primary:#2563eb;--mm-overlay-bg:rgba(0,0,0,0.5);--mm-transition:0.3s ease}[data-mm-header]{position:relative}[data-mm-toggle]{display:flex;flex-direction:column;justify-content:center;gap:5px;background:none;border:none;cursor:pointer;padding:8px;z-index:1001}[data-mm-toggle] span{display:block;width:24px;height:2px;background:var(--mm-text);transition:var(--mm-transition)}[data-mm-menu]{position:fixed;top:0;left:0;width:100%;background:var(--mm-bg);transform:translateY(-100%);transition:transform var(--mm-transition);z-index:1100;overflow-y:auto;-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;padding:60px 24px 24px;box-shadow:0 4px 20px rgba(0,0,0,0.1)}[data-mm-menu].mm-open{transform:translateY(0)}[data-mm-menu] ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0}[data-mm-menu] ul li a{display:block;padding:14px 0;color:var(--mm-text);text-decoration:none;font-size:16px;border-bottom:1px solid rgba(0,0,0,0.08);transition:color var(--mm-transition)}[data-mm-menu] ul li a:hover{color:var(--mm-primary)}[data-mm-close]{position:absolute;top:16px;right:16px;background:none;border:none;font-size:28px;line-height:1;cursor:pointer;color:var(--mm-text);padding:4px 8px}[data-mm-overlay]{position:fixed;top:0;left:0;width:100%;height:100%;background:var(--mm-overlay-bg);opacity:0;visibility:hidden;transition:opacity var(--mm-transition),visibility var(--mm-transition);z-index:1050}[data-mm-overlay].mm-visible{opacity:1;visibility:visible}@media(min-width:768px){[data-mm-toggle]{display:none!important}[data-mm-menu]{position:static!important;width:auto!important;height:auto!important;background:transparent!important;transform:none!important;padding:0!important;overflow:visible!important;flex-direction:row!important;box-shadow:none!important}[data-mm-menu] ul{flex-direction:row;gap:0;align-items:center}[data-mm-menu] ul li a{padding:8px 16px;border-bottom:none;font-size:inherit}[data-mm-close]{display:none!important}[data-mm-overlay]{display:none!important}}@media(prefers-reduced-motion:reduce){[data-mm-menu],[data-mm-overlay],[data-mm-toggle] span{transition:none!important}}




:root {
  --cc-bg: #fffaf5;
  --cc-text: #431407;
  --cc-text-secondary: #7c2d12;
  --cc-border: rgba(67,20,7,0.14);
  --cc-primary: #c2410c;
  --cc-primary-hover: #9a3412;
  --cc-secondary: #ffffff;
  --cc-secondary-hover: #f3f4f6;
  --cc-secondary-border: #d1d5db;
  --cc-toggle-bg: #d1d5db;
  --cc-toggle-active: #c2410c;
  --cc-overlay: rgba(0, 0, 0, 0.6);
  --cc-shadow: 0 -4px 20px rgba(67,20,7,0.22);
  --cc-radius: 16px;
  --cc-radius-sm: 10px;
  --cc-transition: 0.3s ease;
  --cc-z-index: 99999;
}

.cc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--cc-z-index);
  background: var(--cc-bg);
  box-shadow: var(--cc-shadow);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--cc-transition), opacity var(--cc-transition), visibility var(--cc-transition);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--cc-text);
}

.cc-banner.cc-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cc-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cc-banner-content {
  flex: 1 1 auto;
  min-width: 280px;
  max-width: 700px;
}

.cc-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--cc-text);
}

.cc-description {
  margin: 0;
  font-size: 15px;
  color: var(--cc-text-secondary);
  line-height: 1.6;
}

.cc-link {
  color: var(--cc-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-link:hover {
  text-decoration: none;
}

.cc-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--cc-radius-sm);
  cursor: pointer;
  transition: all var(--cc-transition);
  text-decoration: none;
  border: 2px solid transparent;
  min-height: 48px;
  line-height: 1.2;
  font-family: inherit;
}

.cc-btn:focus-visible {
  outline: 2px solid var(--cc-primary);
  outline-offset: 2px;
}

.cc-btn-primary {
  background: var(--cc-primary);
  color: #ffffff;
  border-color: var(--cc-primary);
}

.cc-btn-primary:hover {
  background: var(--cc-primary-hover);
  border-color: var(--cc-primary-hover);
}

.cc-btn-secondary {
  background: var(--cc-secondary);
  color: var(--cc-text);
  border-color: var(--cc-secondary-border);
}

.cc-btn-secondary:hover {
  background: var(--cc-secondary-hover);
  border-color: var(--cc-text);
}

.cc-btn-link {
  background: transparent;
  color: var(--cc-primary);
  border-color: transparent;
  padding: 12px 16px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-btn-link:hover {
  text-decoration: none;
  background: #c2410c1A;
}

.cc-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--cc-z-index) + 1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--cc-transition), visibility var(--cc-transition);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--cc-text);
}

.cc-settings-modal.cc-visible {
  opacity: 1;
  visibility: visible;
}

.cc-settings-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cc-overlay);
  cursor: pointer;
}

.cc-settings-container {
  position: relative;
  background: var(--cc-bg);
  border-radius: var(--cc-radius);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform var(--cc-transition);
}

.cc-settings-modal.cc-visible .cc-settings-container {
  transform: scale(1);
}

.cc-settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--cc-border);
}

.cc-settings-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--cc-text);
}

.cc-settings-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--cc-text-secondary);
  transition: all var(--cc-transition);
}

.cc-settings-close:hover {
  background: var(--cc-secondary-hover);
  color: var(--cc-text);
}

.cc-settings-close:focus {
  outline: 2px solid var(--cc-primary);
  outline-offset: 2px;
}

.cc-settings-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cc-settings-description {
  margin: 0 0 24px 0;
  font-size: 15px;
  color: var(--cc-text-secondary);
}

.cc-settings-footer {
  padding: 24px;
  border-top: 1px solid var(--cc-border);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cc-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--cc-border);
}

.cc-category:last-child {
  border-bottom: none;
}

.cc-category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cc-category-info {
  flex: 1;
}

.cc-category-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--cc-text);
}

.cc-category-description {
  font-size: 14px;
  color: var(--cc-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.cc-toggle {
  flex-shrink: 0;
}

.cc-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-toggle-label {
  display: block;
  width: 52px;
  height: 28px;
  background: var(--cc-toggle-bg);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background var(--cc-transition);
}

.cc-toggle-label::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: transform var(--cc-transition);
}

.cc-toggle input:checked + .cc-toggle-label {
  background: var(--cc-toggle-active);
}

.cc-toggle input:checked + .cc-toggle-label::after {
  transform: translateX(24px);
}

.cc-toggle input:focus-visible + .cc-toggle-label {
  box-shadow: 0 0 0 3px #c2410c4D;
}

.cc-toggle-disabled .cc-toggle-label {
  opacity: 0.7;
  cursor: not-allowed;
}

.cc-toggle-disabled input:checked + .cc-toggle-label {
  background: var(--cc-toggle-active);
}

.cc-footer-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.8;
  transition: opacity var(--cc-transition);
  cursor: pointer;
  font-size: 14px;
}

.cc-footer-link:hover {
  opacity: 1;
}

.cc-footer-separator {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .cc-banner-container {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 20px;
  }
  
  .cc-banner-content {
    max-width: 100%;
    min-width: auto;
  }
  
  .cc-title {
    font-size: 16px;
  }
  
  .cc-description {
    font-size: 14px;
  }
  
  .cc-banner-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .cc-btn {
    width: 100%;
    justify-content: center;
  }
  
  .cc-btn-primary,
  .cc-btn-secondary {
    order: 0;
  }
  
  .cc-btn-link {
    order: 1;
  }
  
  .cc-settings-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
  
  .cc-settings-body {
    padding: 16px;
  }
  
  .cc-category-header {
    flex-direction: column;
    gap: 12px;
  }
  
  .cc-toggle {
    align-self: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc-banner,
  .cc-settings-modal,
  .cc-settings-container,
  .cc-btn,
  .cc-toggle-label,
  .cc-toggle-label::after,
  .cc-settings-close {
    transition: none;
  }
}

@media print {
  .cc-banner,
  .cc-settings-modal {
    display: none !important;
  }
}



:root {
  --surface-base: #fffaf5;
  --surface-raised: #fff3e6;
  --surface-warm: #ffe8cc;
  --surface-card: #ffffff;
  --surface-ink: #2b1105;
  --text-strong: #431407;
  --text-body: #5a2410;
  --text-soft: #8a3a14;
  --text-on-ink: #f6e3cf;
  --text-on-ink-soft: #d9b89a;
  --link-on-ink: #ffc58f;
  --action-primary: #b93d0c;
  --action-hover: #8f2f0a;
  --accent-bright: #ea580c;
  --accent-glow: rgba(234, 88, 12, 0.34);
  --line-soft: #f2d4b8;
  --line-strong: #e7b58a;
  --space-1: 10px;
  --space-2: 16px;
  --space-3: 26px;
  --space-4: 42px;
  --space-5: 68px;
  --radius-card: 14px;
  --shell-width: 1180px;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-head: 'Work Sans', 'Segoe UI', Arial, sans-serif;
}


html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  background: var(--surface-base);
  color: var(--text-body);
  padding-bottom: 96px;
}
main {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
section { flex: 1 1 auto; padding: var(--space-5) 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text-strong);
  hyphens: auto;
  overflow-wrap: break-word;
}
h1 { font-size: 46px; line-height: 1.12; margin-bottom: var(--space-3); }
h2 { font-size: 34px; line-height: 1.2; margin-bottom: var(--space-3); -webkit-hyphens: manual; hyphens: manual; }
h3 { font-size: 21px; line-height: 1.3; margin-bottom: var(--space-1); }
p { font-size: 17px; line-height: 1.65; margin-bottom: var(--space-2); }
p:last-child { margin-bottom: 0; }
a { color: var(--action-primary); text-underline-offset: 3px; }
a:hover { color: var(--action-hover); }
strong { color: var(--text-strong); font-weight: 600; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 8px; }
table { width: 100%; border-collapse: collapse; }
th { font-family: var(--font-head); font-size: 14px; letter-spacing: 0.6px; text-transform: uppercase; text-align: left; color: var(--text-soft); padding: 12px 14px; border-bottom: 2px solid var(--line-strong); }
td { padding: 14px; border-bottom: 1px solid var(--line-soft); vertical-align: top; font-size: 16px; }
label { display: block; font-weight: 500; font-size: 15px; color: var(--text-strong); margin-bottom: 6px; }
input { width: 100%; padding: 13px 14px; border: 2px solid var(--line-strong); border-radius: 10px; background: #fff; color: var(--text-strong); font-size: 17px; }
input:focus { outline: 3px solid var(--accent-glow); outline-offset: 1px; border-color: var(--action-primary); }
small { font-size: 14px; color: var(--text-soft); }
s { color: var(--text-soft); }
hr { border: 0; border-top: 1px solid var(--line-soft); margin: var(--space-3) 0; }
:focus-visible { outline: 3px solid var(--action-primary); outline-offset: 2px; }


.bench-wrap { width: 100%; max-width: var(--shell-width); margin: 0 auto; padding: 0 28px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(255, 250, 245, 0.96);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 6px 22px rgba(67, 20, 7, 0.06);
}
[data-mm-header] {
  --mm-bg: #fffaf5;
  --mm-text: #431407;
  --mm-primary: #b93d0c;
  --mm-overlay-bg: rgba(43, 17, 5, 0.55);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 68px; }
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-strong); font-family: var(--font-head); font-weight: 700; font-size: 20px; }
.logo-mark { width: 40px; height: 40px; }
.site-nav ul { gap: 4px; }
.site-nav a { font-weight: 500; font-size: 16px; color: var(--text-strong); text-decoration: none; border-radius: 8px; transition: box-shadow 0.3s ease, color 0.3s ease; }
.site-nav a:hover { color: var(--action-primary); box-shadow: 0 0 0 2px var(--accent-glow); }
@media (min-width: 768px) and (max-width: 1023px) { .site-nav ul li a { padding: 8px 9px; font-size: 15px; white-space: nowrap; } }
.nav-close { color: var(--text-strong); }
.nav-toggle { margin-left: auto; margin-right: 14px; flex: 0 0 44px; width: 44px; height: 44px; align-items: center; border-radius: 10px; }
.nav-toggle span { width: 24px; height: 3px; border-radius: 3px; background: var(--text-strong); }


.workbench-intro {
  padding: var(--space-4) 0 var(--space-5);
  background:
    radial-gradient(circle at 82% 30%, rgba(234, 88, 12, 0.28), rgba(234, 88, 12, 0) 46%),
    linear-gradient(160deg, #fde2bd 0%, #fff3e6 58%, #fffaf5 100%);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "head card" "body card" "trust card";
  gap: 0 48px;
  align-items: start;
}
.intro-head { grid-area: head; min-width: 0; padding-top: 18px; }
.intro-head h1 { -webkit-hyphens: manual; hyphens: manual; }
.intro-body { grid-area: body; min-width: 0; margin-bottom: var(--space-3); }
.intro-kicker { display: inline-block; font-size: 14px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-soft); background: var(--surface-card); border: 1px solid var(--line-strong); border-radius: 30px; padding: 5px 14px; margin-bottom: var(--space-2); }
.intro-lead { font-size: 19px; color: var(--text-body); max-width: 600px; }
.price-tag { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin: var(--space-3) 0 var(--space-2); }
.price-tag strong { font-family: var(--font-head); font-size: 44px; line-height: 1; color: var(--text-strong); }
.price-tag s { font-size: 21px; }
.price-cut { font-weight: 600; font-size: 15px; color: #fff; background: var(--action-primary); border-radius: 30px; padding: 4px 12px; }
.trust-row { grid-area: trust; list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-width: 0; }
.trust-row li { display: flex; gap: 10px; align-items: flex-start; margin: 0; padding: 12px 14px; background: rgba(255, 255, 255, 0.72); border: 1px solid var(--line-soft); border-radius: 12px; font-size: 15px; line-height: 1.45; color: var(--text-strong); }
.trust-row svg { flex: 0 0 22px; width: 22px; height: 22px; }
.order-card {
  grid-area: card;
  min-width: 0;
  background: var(--surface-card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 44px rgba(67, 20, 7, 0.14), 0 0 60px var(--accent-glow);
}
.card-photo { width: 100%; height: auto; border-radius: 12px; margin-bottom: 18px; }
.card-form { min-width: 0; }
.card-price { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 14px; font-size: 15px; color: var(--text-soft); }
.card-price strong { font-family: var(--font-head); font-size: 26px; color: var(--text-strong); }


.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--action-primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  padding: 8px 0;
  min-height: 44px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  text-shadow: 0 0 18px var(--accent-glow);
  transition: color 0.25s ease, text-shadow 0.3s ease;
}
.primary-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.primary-button:hover { color: var(--action-hover); text-shadow: 0 0 24px var(--accent-glow); }
.primary-button:hover::after { transform: scaleX(1); }
.solid-button {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: var(--action-primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--accent-glow);
  transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.2s ease;
}
.solid-button:hover { background: var(--action-hover); box-shadow: 0 6px 25px var(--accent-glow); transform: translateY(-2px); }


.order-form { display: flex; flex-direction: column; gap: 14px; }
.order-form p { margin: 0; }
.phone-field { display: flex; align-items: stretch; }
.phone-field span { display: flex; align-items: center; padding: 0 12px; border: 2px solid var(--line-strong); border-right: 0; border-radius: 10px 0 0 10px; background: var(--surface-raised); font-weight: 600; color: var(--text-strong); }
.phone-field input { border-radius: 0 10px 10px 0; min-width: 0; }
.consent-line { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; font-weight: 400; color: var(--text-body); line-height: 1.5; }
.consent-line input { width: 22px; height: 22px; flex: 0 0 22px; margin-top: 1px; accent-color: var(--action-primary); }
.form-error { display: none; color: #9b1c1c; font-size: 14px; font-weight: 500; }
.form-error.is-shown { display: block; }


.wave-seam { position: relative; line-height: 0; margin-top: -1px; }
.wave-seam svg { display: block; width: 100%; height: 90px; }
.wave-back { fill: rgba(234, 88, 12, 0.2); }
.wave-front { fill: var(--surface-raised); }
.wave-seam.to-warm .wave-front { fill: var(--surface-warm); }
.wave-seam.to-base .wave-front { fill: var(--surface-base); }


.craft-list, .why-handmade, .write-to-us { background: var(--surface-raised); }
.the-workshop, .from-raw-to-ready, .asked-often { background: var(--surface-base); }
.guarantee-note { background: var(--surface-warm); }
.section-head { max-width: 720px; margin-bottom: var(--space-4); }
.section-head p { font-size: 18px; }


.dose-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: start; }
.dose-layout > * { min-width: 0; }
.dose-table { background: var(--surface-card); border-radius: var(--radius-card); box-shadow: 0 4px 20px rgba(234, 88, 12, 0.12); overflow: hidden; }
.dose-table caption { caption-side: bottom; text-align: left; padding: 12px 14px; font-size: 14px; color: var(--text-soft); }
.dose-table td:first-child { font-weight: 600; color: var(--text-strong); white-space: nowrap; }
.dose-table td:nth-child(2), .dose-table td:nth-child(3) { white-space: nowrap; }
.group-row td { background: var(--surface-raised); font-size: 13px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--text-soft); padding: 8px 14px; font-weight: 600; }
.dose-facts { list-style: none; padding: 24px; background: var(--surface-card); border: 2px solid var(--line-soft); border-radius: var(--radius-card); }
.dose-facts li { padding: 10px 0; border-bottom: 1px dashed var(--line-strong); margin: 0; }
.dose-facts li:last-child { border-bottom: 0; }
.dose-facts b { display: block; font-family: var(--font-head); font-size: 22px; color: var(--text-strong); }


.zig-row { display: flex; align-items: center; gap: 48px; margin-bottom: var(--space-4); }
.zig-row:last-child { margin-bottom: 0; }
.zig-text { flex: 1 1 55%; min-width: 0; }
.zig-media { flex: 1 1 45%; min-width: 0; display: flex; justify-content: center; align-items: center; min-height: 220px; border-radius: 22px; background: linear-gradient(145deg, #fde2bd, #ffe8cc 60%, #fff3e6); box-shadow: inset 0 0 0 2px var(--line-soft); }
.zig-media svg { width: 190px; height: 190px; }
.zig-row:nth-child(odd) .zig-text { order: 1; }
.zig-row:nth-child(odd) .zig-media { order: 2; }
.zig-row:nth-child(even) .zig-text { order: 2; }
.zig-row:nth-child(even) .zig-media { order: 1; }
.zig-step { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--action-primary); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }


.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.craft-card {
  border: 2px solid var(--line-soft);
  border-radius: 12px;
  padding: 28px;
  background: var(--surface-card);
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.2s ease;
  min-width: 0;
}
.craft-card:hover { border-color: var(--action-primary); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(234, 88, 12, 0.28); }
.craft-card svg { width: 42px; height: 42px; margin-bottom: 14px; }


.promise-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.promise-grid > * { min-width: 0; }
.promise-list { list-style: none; padding: 0; counter-reset: promise; }
.promise-list li { position: relative; padding: 18px 18px 18px 62px; background: rgba(255, 255, 255, 0.7); border-radius: 12px; margin-bottom: 12px; counter-increment: promise; }
.promise-list li::before { content: counter(promise); position: absolute; left: 16px; top: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--action-primary); color: #fff; font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; }


.step-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: var(--space-4); }
.step-list li { margin: 0; padding: 26px; border-top: 4px solid var(--accent-bright); background: var(--surface-raised); border-radius: 0 0 12px 12px; min-width: 0; }
.step-list b { display: block; font-family: var(--font-head); font-size: 40px; line-height: 1; color: var(--action-primary); margin-bottom: 10px; }
.label-notes { border-left: 4px solid var(--line-strong); padding: 6px 0 6px 20px; max-width: 820px; }
.label-notes p { font-size: 16px; }


.order-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.order-layout > * { min-width: 0; }
.order-steps { list-style: none; padding: 0; margin: var(--space-3) 0; }
.order-steps li { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.order-steps b { flex: 0 0 40px; height: 40px; border-radius: 50%; border: 2px solid var(--action-primary); color: var(--action-primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); }
.order-panel { background: var(--surface-card); border: 2px solid var(--line-soft); border-radius: 18px; padding: 30px; box-shadow: 0 0 60px var(--accent-glow); }
.order-panel .price-tag { margin-top: 0; }
.call-line { font-size: 16px; }


.faq-tabs { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; align-items: start; }
.faq-tabs > * { min-width: 0; }
.faq-questions { border-left: 2px solid var(--line-soft); }
.faq-questions button {
  display: block;
  width: 100%;
  min-height: 44px;
  text-align: left;
  padding: 13px 16px;
  border: none;
  background: none;
  cursor: pointer;
  border-left: 3px solid transparent;
  margin-left: -2px;
  font-size: 16px;
  color: var(--text-body);
  transition: color 0.2s ease, box-shadow 0.3s ease;
}
.faq-questions button:hover { color: var(--action-primary); }
.faq-questions button.is-active { border-left-color: var(--action-primary); font-weight: 700; color: var(--text-strong); background: var(--surface-raised); }
.faq-panel { background: var(--surface-card); border: 2px solid var(--line-soft); border-radius: var(--radius-card); padding: 28px; box-shadow: 0 4px 20px rgba(234, 88, 12, 0.12); margin-bottom: 16px; }
.faq-panel[hidden] { display: none; }


.site-footer { background: var(--surface-ink); color: var(--text-on-ink); padding: 56px 0 28px; }
.site-footer a { color: var(--link-on-ink); }
.site-footer a:hover { color: #ffffff; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(246, 227, 207, 0.16); }
.footer-top > * { min-width: 0; }
.footer-callout h2 { color: #fff; font-size: 32px; margin-bottom: 12px; }
.footer-callout p { color: var(--text-on-ink-soft); }
.footer-phone { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-phone a { display: inline-flex; align-items: center; min-height: 48px; padding: 10px 20px; border: 2px solid var(--link-on-ink); border-radius: 40px; font-weight: 600; font-size: 18px; text-decoration: none; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-links h3 { color: #fff; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 4px; }
.footer-links a { display: inline-block; padding: 6px 0; font-size: 15px; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom { padding-top: 22px; font-size: 14px; color: var(--text-on-ink-soft); }
.footer-bottom p { font-size: 14px; margin-bottom: 8px; }
.footer-logo { width: 34px; height: 34px; display: inline-block; vertical-align: middle; margin-right: 8px; }


.order-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px 0 16px;
  border-radius: 40px;
  background: var(--action-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(67, 20, 7, 0.3), 0 0 30px var(--accent-glow);
  transition: box-shadow 0.3s ease, transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
}
.order-fab:hover { color: #fff; background: var(--action-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(67, 20, 7, 0.35), 0 0 40px var(--accent-glow); }
.order-fab svg { width: 26px; height: 26px; }
.order-fab.is-parked { opacity: 0; visibility: hidden; transform: translateY(20px); }


.reveal { transform: translateY(14px); transition: transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }


.legal-page { padding: var(--space-4) 0 var(--space-5); }
.legal-page article { max-width: 820px; }
.legal-page h1 { font-size: 40px; -webkit-hyphens: auto; hyphens: auto; overflow-wrap: break-word; }
.legal-page h2 { font-size: 24px; margin: var(--space-3) 0 var(--space-1); }
.legal-page li { font-size: 16px; }
.legal-date { font-size: 15px; color: var(--text-soft); }
.notice-box { padding: 22px; border-radius: 12px; background: var(--surface-raised); border: 2px solid var(--line-soft); margin: var(--space-3) 0; }


@media (max-width: 1024px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { gap: 18px 32px; }
  .dose-layout, .promise-grid, .order-layout { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; grid-template-rows: none; grid-template-areas: "head" "photo" "body" "form" "trust"; }
  .intro-head { padding-top: 0; }
  .order-card { display: contents; }
  .card-photo { grid-area: photo; max-width: 520px; margin-bottom: var(--space-3); box-shadow: 0 10px 34px rgba(67, 20, 7, 0.16); }
  .card-form { grid-area: form; max-width: 520px; background: var(--surface-card); padding: 20px; border-radius: 16px; margin-bottom: var(--space-3); box-shadow: 0 10px 34px rgba(67, 20, 7, 0.12), 0 0 50px var(--accent-glow); }
  .faq-tabs { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; padding-bottom: 88px; }
  section { padding: 44px 0; }
  .workbench-intro { padding: 22px 0 44px; }
  .bench-wrap { padding: 0 18px; }
  h1 { font-size: 31px; margin-bottom: 14px; }
  h2 { font-size: 26px; -webkit-hyphens: auto; hyphens: auto; }
  .intro-kicker { font-size: 12px; margin-bottom: 10px; }
  .intro-lead { font-size: 17px; }
  .intro-lead + .intro-lead { display: none; }
  .price-tag strong { font-size: 36px; }
  .intro-body .price-tag, .intro-body .primary-button { display: none; }
  .zig-row { flex-direction: column; gap: 20px; align-items: stretch; }
  .zig-row:nth-child(odd) .zig-text, .zig-row:nth-child(even) .zig-text { order: 2; }
  .zig-row:nth-child(odd) .zig-media, .zig-row:nth-child(even) .zig-media { order: 1; }
  .zig-media { min-height: 150px; }
  .zig-media svg { width: 120px; height: 120px; }
  .card-grid, .step-list, .trust-row { grid-template-columns: 1fr; }
  .wave-seam svg { height: 50px; }
  .footer-top, .footer-links { grid-template-columns: 1fr; }
  .order-panel { padding: 20px; }
  .legal-page h1 { font-size: 30px; }
}

@media (max-width: 700px) {
  .dose-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .dose-table, .dose-table tbody, .dose-table tr, .dose-table td { display: block; width: 100%; }
  .dose-table tr { display: grid; grid-template-columns: 1fr auto auto; gap: 4px 14px; padding: 14px 16px; border-bottom: 1px solid var(--line-soft); }
  .dose-table td { padding: 0; border: 0; }
  .dose-table td:nth-child(4) { grid-column: 1 / -1; white-space: normal; font-size: 15px; color: var(--text-body); }
  .dose-table .group-row { display: block; padding: 0; }
  .dose-table .group-row td { padding: 8px 16px; }
  .dose-table caption { display: block; }
}

@media (max-width: 420px) {
  h1 { font-size: 28px; }
  .legal-page h1 { font-size: 26px; }
  .order-fab { right: 14px; bottom: 14px; padding: 0 18px 0 14px; font-size: 16px; }
  .site-logo { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transform: none; transition: none; }
}
