/* AvatarCraft — single stylesheet, no external deps. Warm cream theme with sakura + amber accents. */

:root {
  --bg: #faf6f1;
  --bg2: #f3ede5;
  --surface: #ffffff;
  --surface2: #fef9f3;
  --line: #e8ddd0;
  --text: #2c2420;
  --muted: #7a6e62;
  --brand1: #e8836b;
  --brand2: #d4577a;
  --pink: #e8836b;
  --amber: #c47a3a;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 28px rgba(44, 36, 32, 0.10);
  --grad: linear-gradient(135deg, var(--brand1), var(--brand2));
}

* { box-sizing: border-box; }
html { scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(232, 131, 107, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(212, 87, 122, 0.05), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: var(--brand1); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.25; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 820px; }

:focus-visible { outline: 2px solid var(--brand2); outline-offset: 2px; border-radius: 4px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 6px 20px rgba(232, 131, 107, 0.25); }
.btn-primary:hover { box-shadow: 0 10px 26px rgba(232, 131, 107, 0.35); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand1); color: var(--brand1); }
.btn-light { background: var(--text); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-block { display: block; width: 100%; }

/* ---------- demo banner ---------- */
.demo-banner {
  background: rgba(196, 122, 58, 0.08);
  color: var(--amber);
  border-bottom: 1px solid rgba(196, 122, 58, 0.2);
  text-align: center;
  font-size: 13px;
  padding: 7px 16px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 26px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; font-size: 17px; }
.brand:hover { text-decoration: none; }
.brand-mark { border-radius: 9px; box-shadow: 0 2px 8px rgba(232, 131, 107, 0.3); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  color: var(--muted);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 15px;
}
.nav-links a:hover { color: var(--text); text-decoration: none; background: rgba(232, 131, 107, 0.06); }
.nav-links a.active { color: var(--text); background: rgba(232, 131, 107, 0.12); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
}
.lang-toggle:hover { color: var(--brand1); border-color: var(--brand1); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; }

/* ---------- breadcrumbs ---------- */
.crumbs { display: flex; gap: 8px; font-size: 13.5px; color: var(--muted); padding: 16px 0 0; flex-wrap: wrap; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand1); }
.crumb-here { color: var(--text); }

/* ---------- sections ---------- */
.section { padding: 56px 0; }
.page-section { padding-top: 34px; }
.section-head { max-width: 640px; margin: 0 auto 34px; text-align: center; }
.section-title { text-align: center; margin: 42px 0 22px; }
.kicker { text-transform: uppercase; letter-spacing: 0.14em; font-size: 12.5px; font-weight: 700; color: var(--brand1); margin: 0 0 10px; }
.section-head h2, .page-head h1 { font-size: clamp(26px, 4vw, 38px); }
.sub { color: var(--muted); font-size: 16.5px; }
.sub.center { text-align: center; }
.mini-title { font-size: 15px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin: 0 0 14px; }
.center-cta { text-align: center; margin-top: 28px; }
.mt { margin-top: 26px; }

/* ---------- root gate ---------- */
.gate { min-height: calc(100vh - 66px); display: flex; align-items: center; padding: 48px 0; }
.gate-inner { text-align: center; }
.gate-logo { border-radius: 18px; box-shadow: var(--shadow); }
.gate-title { font-size: clamp(30px, 5vw, 44px); margin: 22px 0 6px; }
.gate-sub { color: var(--muted); max-width: 520px; margin: 0 auto 30px; }
.gate-pick { font-weight: 600; margin-bottom: 16px; }
.gate-cards { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.gate-card {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  width: 260px; padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.gate-card:hover { transform: translateY(-3px); border-color: var(--brand2); text-decoration: none; }
.gate-card strong { font-size: 21px; color: var(--text); }
.gate-card span { color: var(--muted); font-size: 14.5px; }
.gate-card em { font-style: normal; color: var(--brand2); font-weight: 600; margin-top: 8px; }

/* ---------- hero ---------- */
.hero { padding: 64px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.badge {
  display: inline-block;
  background: rgba(232, 131, 107, 0.1);
  border: 1px solid rgba(232, 131, 107, 0.3);
  color: var(--brand1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.hero-title { font-size: clamp(34px, 5.4vw, 58px); margin-bottom: 16px; }
.accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: var(--muted); font-size: 17.5px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0 16px; }
.hero-stat { color: var(--muted); font-size: 14px; }
.hero-art { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-art img {
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  transition: transform 0.2s ease;
}
.hero-art img:hover { transform: scale(1.04) rotate(0deg) !important; }
.hero-art .m1 { transform: rotate(-3deg); }
.hero-art .m2 { transform: rotate(2deg) translateY(8px); }
.hero-art .m3 { transform: rotate(-1deg); }
.hero-art .m4 { transform: rotate(3deg) translateY(-6px); }
.hero-art .m5 { transform: rotate(-2deg) translateY(6px); }
.hero-art .m6 { transform: rotate(2deg); }

/* ---------- facts strip ---------- */
.facts { border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.5); }
.facts-row { display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center; padding: 16px 22px; }
.fact { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.fact::before { content: "✓ "; color: var(--brand1); font-weight: 700; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(232, 131, 107, 0.5); }
.card-cover { display: block; }
.cover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); }
.cover-grid img { aspect-ratio: 1; object-fit: cover; width: 100%; display: block; }
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 18px; margin: 0 0 6px; }
.card-title a { color: var(--text); }
.card-tag { color: var(--muted); font-size: 14px; flex: 1; }
.card-foot { display: flex; align-items: baseline; gap: 10px; margin: 12px 0 6px; }
.price { font-size: 21px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.card-meta { color: var(--muted); font-size: 12.5px; }
.card-cta { font-weight: 600; font-size: 14.5px; margin-top: 6px; }

/* ---------- steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.step h3 { font-size: 16.5px; margin: 12px 0 6px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }
.step-num {
  display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--grad); color: #fff; font-weight: 700; font-size: 14px;
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 15px 46px 15px 18px;
  font-weight: 600;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand2);
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-a { padding: 0 18px 16px; color: var(--muted); }
.faq-a p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { margin: 30px 0 0; padding: 54px 0; background: linear-gradient(135deg, rgba(232, 131, 107, 0.08), rgba(212, 87, 122, 0.06)); border-block: 1px solid var(--line); }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: clamp(24px, 3.4vw, 34px); }
.cta-inner p { color: var(--muted); margin-bottom: 22px; }

/* ---------- shop ---------- */
.page-head { max-width: 680px; margin: 0 auto 22px; text-align: center; }
.page-head .sub { margin-bottom: 0; }
.fact-strip {
  text-align: center;
  color: var(--amber);
  background: rgba(196, 122, 58, 0.06);
  border: 1px dashed rgba(196, 122, 58, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  max-width: 680px;
  margin: 0 auto 26px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
.chip {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover { color: var(--text); border-color: var(--brand2); }
.chip.active { background: var(--grad); color: #fff; border-color: transparent; }
.chip.static { cursor: default; background: rgba(232, 131, 107, 0.1); color: var(--brand1); border-color: rgba(232, 131, 107, 0.3); justify-content: center; display: inline-flex; }
.chips.static { justify-content: flex-start; }
.empty-note { text-align: center; color: var(--muted); padding: 30px 0; }

/* ---------- product page ---------- */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; margin-bottom: 46px; }
.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.thumb { padding: 0; border: 2px solid var(--line); border-radius: 12px; background: none; cursor: pointer; overflow: hidden; transition: border-color 0.15s ease; }
.thumb img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.thumb:hover { border-color: var(--brand1); }
.thumb.current { border-color: var(--brand2); }
.pinfo h1 { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 8px; }
.p-tag { color: var(--muted); font-size: 16.5px; }
.p-price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0; }
.price-now { font-size: 34px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-note { color: var(--muted); font-size: 13.5px; }
.license-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.license-opt {
  display: flex; gap: 12px; align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.15s ease;
  background: var(--bg);
}
.license-opt:has(input:checked) { border-color: var(--brand1); background: rgba(232, 131, 107, 0.06); }
.license-opt input { margin-top: 4px; accent-color: var(--brand1); }
.license-text { display: flex; flex-direction: column; gap: 2px; }
.license-text strong { font-size: 15px; }
.license-text em { font-style: normal; color: var(--muted); font-size: 13px; }
.license-box .btn { margin-top: 8px; }
.hl-list { margin: 18px 0 0; padding: 0 0 0 2px; list-style: none; }
.hl-list li { padding: 5px 0 5px 28px; position: relative; color: var(--muted); font-size: 15px; }
.hl-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--brand1); font-weight: 700; }
.p-section { margin: 40px 0; }
.p-section h2 { font-size: 22px; }
.p-cols { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; }
.p-desc { color: var(--muted); }
.fact-table { width: 100%; border-collapse: collapse; max-width: 640px; }
.fact-table th, .fact-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 15px; }
.fact-table th { color: var(--muted); font-weight: 500; width: 45%; }
.fact-table td { font-weight: 600; }

/* ---------- dialog ---------- */
.buy-dialog {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  padding: 26px;
  max-width: 440px;
  width: calc(100vw - 40px);
  box-shadow: var(--shadow);
}
.buy-dialog::backdrop { background: rgba(44, 36, 32, 0.5); backdrop-filter: blur(4px); }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.modal-head h3 { margin: 0; font-size: 20px; }
.modal-close { background: none; border: 0; color: var(--muted); font-size: 26px; cursor: pointer; line-height: 1; padding: 2px 8px; border-radius: 8px; }
.modal-close:hover { color: var(--text); background: rgba(232, 131, 107, 0.08); }
.modal-license { color: var(--muted); font-size: 14.5px; margin: 12px 0 6px; }
.modal-total { font-size: 16px; margin: 0 0 12px; }
.modal-total strong { color: var(--brand2); font-size: 20px; }
.modal-note { color: var(--muted); font-size: 13.5px; background: rgba(196, 122, 58, 0.06); border: 1px dashed rgba(196, 122, 58, 0.25); border-radius: var(--radius-sm); padding: 10px 12px; }
.modal-actions { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.modal-actions .btn { flex: 1; }
.modal-subactions { text-align: center; font-size: 13.5px; margin: 14px 0 0; color: var(--muted); }
.modal-subactions a { color: var(--muted); text-decoration: underline; }

/* ---------- custom page ---------- */
.fact-box { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--brand2); border-radius: var(--radius-sm); padding: 20px 22px; max-width: 760px; margin: 0 auto 10px; }
.fact-lines { margin: 0; padding: 0; list-style: none; }
.fact-lines li { padding: 4px 0 4px 26px; position: relative; color: var(--muted); }
.fact-lines li::before { content: "◆"; position: absolute; left: 2px; color: var(--brand2); font-size: 11px; top: 9px; }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--brand1); box-shadow: 0 12px 34px rgba(232, 131, 107, 0.18); }
.badge-pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; border-radius: 999px; padding: 4px 14px; white-space: nowrap; }
.price-card h3 { font-size: 18px; margin: 4px 0 4px; }
.pkg-price { font-size: 32px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 0 0 14px; }
.price-card ul { margin: 0 0 22px; padding: 0; list-style: none; flex: 1; }
.price-card li { color: var(--muted); font-size: 14.5px; padding: 5px 0 5px 24px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--brand1); font-weight: 700; }
.style-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 22px; }
.style-card { text-align: center; color: var(--muted); font-size: 13px; }
.style-card:hover { text-decoration: none; color: var(--brand2); }
.style-card img { border-radius: 14px; border: 1px solid var(--line); aspect-ratio: 1; object-fit: cover; transition: transform 0.15s ease, border-color 0.15s ease; margin-bottom: 8px; }
.style-card:hover img { transform: translateY(-3px); border-color: var(--brand2); }

.custom-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; max-width: 720px; margin: 18px auto 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand2); }
.field input[type="file"] { padding: 9px; }
.form-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.form-note { color: var(--muted); font-size: 13px; margin: 14px 0 0; }
.order-success { background: rgba(46, 160, 100, 0.08); border: 1px solid rgba(46, 160, 100, 0.35); border-radius: var(--radius-sm); padding: 20px 22px; }
.order-success h3 { margin: 0 0 8px; color: #2e9a64; }
.order-success p { margin: 0; color: var(--muted); }
.order-success .order-id { color: var(--text); font-family: ui-monospace, monospace; }

/* ---------- about ---------- */
.about-story { max-width: 720px; margin: 0 auto 34px; color: var(--muted); font-size: 16.5px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.value h2 { font-size: 17px; margin-bottom: 6px; }
.value p { color: var(--muted); font-size: 14.5px; margin: 0; }
.contact-block { max-width: 720px; margin: 0 auto; text-align: center; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0 8px; }
.ccard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; gap: 4px; color: var(--text); }
.ccard:hover { text-decoration: none; border-color: var(--brand2); }
.ccard strong { color: var(--brand2); font-size: 14px; }
.ccard span { font-size: 14.5px; word-break: break-all; }

/* ---------- 404 ---------- */
.nf { min-height: calc(100vh - 66px); display: flex; align-items: center; text-align: center; }
.nf-inner { max-width: 560px; }
.nf h1 { font-size: clamp(26px, 4.5vw, 40px); }
.nf p { color: var(--muted); }
.nf-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 24px 0 18px; }
.nf-langs { font-size: 14px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg2); margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; padding: 44px 22px 30px; }
.foot-brand img { border-radius: 8px; margin-bottom: 12px; }
.foot-brand p { color: var(--muted); font-size: 14.5px; }
.foot-langs { font-size: 13.5px; }
.foot-col { display: flex; flex-direction: column; gap: 9px; }
.foot-col h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin: 0 0 6px; }
.foot-col a, .foot-col span { color: var(--muted); font-size: 14.5px; }
.foot-col a:hover { color: var(--brand2); }
.foot-rights { color: var(--muted); font-size: 13px; padding: 18px 22px 26px; border-top: 1px solid var(--line); }

/* ---------- choose / guide grids ---------- */
.choose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.choose-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
.choose { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.choose h3 { font-size: 16px; margin: 0; }
.choose p { color: var(--muted); font-size: 14px; margin: 0; flex: 1; }
.choose a { font-weight: 600; font-size: 14px; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { max-width: 520px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; gap: 30px; }
  .p-cols { grid-template-columns: 1fr; gap: 30px; }
  .price-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .style-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .choose-grid { grid-template-columns: repeat(2, 1fr); }
  .values, .contact-cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .values { margin-bottom: 34px; }

  .nav-links {
    position: fixed;
    inset: 66px 0 auto 0;
    background: rgba(250, 246, 241, 0.97);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 14px 22px 20px;
    gap: 6px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; font-size: 16px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

@media (max-width: 560px) {
  .section { padding: 40px 0; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: repeat(2, 1fr); }
  .choose-grid, .choose-grid.two { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-template-columns: repeat(5, 1fr); }
  .hero { padding: 40px 0 26px; }
  .hero-ctas .btn { width: 100%; }
  .modal-actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
