:root {
  --bg: #fffaf4;
  --paper: #ffffff;
  --ink: #2a1b14;
  --muted: #6e625c;
  --line: #eadfd4;
  --brand: #6a3b22;
  --brand-dark: #452415;
  --brand-light: #f4e7d9;
  --sand: #f8efe6;
  --sage: #66705d;
  --shadow: 0 18px 50px rgba(70, 43, 25, 0.10);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,250,244,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234,223,212,0.72);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 150px;
}
.logo strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  letter-spacing: -0.04em;
  color: var(--brand-dark);
}
.logo span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  color: #34241c;
}
.nav-links a { opacity: 0.9; }
.nav-links a:hover { color: var(--brand); opacity: 1; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-link {
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 14px;
}
.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand-dark);
  margin: 4px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 24px rgba(106,59,34,.18); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { background: #fff; color: var(--brand-dark); border-color: var(--line); }
.btn-small { min-height: 40px; padding: 9px 16px; font-size: 14px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(244,231,217,.95), transparent 34%),
    linear-gradient(110deg, #fffaf4 0%, #fbf1e7 45%, #f5e7d8 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 60px;
  align-items: center;
  min-height: 690px;
  padding: 58px 0;
}
.eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 16px;
}
.hero h1, .section-title h2, .split h2, .page-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(46px, 6vw, 80px);
  max-width: 760px;
}
.hero p {
  color: #5f514a;
  font-size: 18px;
  max-width: 600px;
  margin: 24px 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-points {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
}
.point {
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(234,223,212,.72);
  border-radius: 16px;
  padding: 15px;
  min-height: 100px;
}
.point b { display: block; font-size: 14px; line-height: 1.35; }
.point span { color: var(--muted); font-size: 12px; }
.point .icon { font-size: 24px; margin-bottom: 8px; }
.hero-image {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.hero-image img { width: 100%; height: 590px; object-fit: cover; }
.hero-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(10px);
}
.hero-card strong { display:block; color: var(--brand-dark); }
.hero-card span { color: var(--muted); font-size: 14px; }

.section { padding: 92px 0; }
.section-soft { background: #fff; }
.section-title { text-align: center; max-width: 820px; margin: 0 auto 46px; }
.section-title h2 { font-size: clamp(34px, 4vw, 54px); }
.section-title p { color: var(--muted); margin: 18px auto 0; font-size: 17px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.stat {
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(70,43,25,.05);
}
.stat strong { display: block; font-size: 30px; color: var(--brand); line-height: 1; }
.stat span { color: var(--muted); font-size: 14px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(70,43,25,.06);
}
.card-body { padding: 24px; }
.card h3 { margin: 0 0 8px; font-size: 22px; }
.card p { margin: 0; color: var(--muted); }
.product-card img { width: 100%; height: 260px; object-fit: cover; }
.product-card a { color: var(--brand); font-weight: 700; margin-top: 16px; display: inline-flex; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.split h2 { font-size: clamp(34px, 4vw, 56px); }
.split p { color: var(--muted); font-size: 17px; }
.split-image {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.split-image img { height: 500px; width: 100%; object-fit: cover; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 26px 0 32px; padding: 0; list-style: none; }
.check-list li { color: #49362d; }
.check-list li::before { content: '✓'; color: var(--brand); font-weight: 900; margin-right: 10px; }

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.process-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  min-height: 160px;
}
.process-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 16px;
}
.process-item h3 { font-size: 17px; margin: 0 0 8px; }
.process-item p { margin: 0; color: var(--muted); font-size: 14px; }

.feature {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.feature .icon { font-size: 30px; margin-bottom: 10px; }
.feature h3 { margin: 0 0 8px; }
.feature p { color: var(--muted); margin: 0; }

.cta {
  background:
    linear-gradient(rgba(42,27,20,.74), rgba(42,27,20,.74)),
    url('../images/soft-yarn-bg.webp') center/cover;
  color: #fff;
  border-radius: 36px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}
.cta h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(34px, 4vw, 54px); line-height: 1.08; margin: 0 0 16px; }
.cta p { color: rgba(255,255,255,.82); margin: 0; }
.contact-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  padding: 28px;
}
.contact-row { display: flex; gap: 10px; margin: 12px 0; color: rgba(255,255,255,.9); }
.contact-row b { min-width: 88px; color:#fff; }

.page-hero {
  padding: 82px 0 60px;
  background: linear-gradient(120deg, #fffaf4, #f5e7d8);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(42px, 5vw, 68px); max-width: 860px; }
.page-hero p { color: var(--muted); max-width: 720px; font-size: 18px; }

.table-wrap { overflow-x: auto; border-radius: 20px; border: 1px solid var(--line); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--line); }
th { background: var(--sand); color: var(--brand-dark); }
tr:last-child td { border-bottom: 0; }

.faq-list { display: grid; gap: 14px; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
}
summary { cursor: pointer; font-weight: 800; color: var(--brand-dark); }
details p { color: var(--muted); margin-bottom: 0; }

.footer {
  background: #21140f;
  color: rgba(255,255,255,.82);
  padding: 54px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 38px;
  margin-bottom: 36px;
}
.footer h3, .footer h4 { color: #fff; margin: 0 0 14px; }
.footer a { display: block; color: rgba(255,255,255,.72); margin: 8px 0; }
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.56);
  font-size: 14px;
}

.notice {
  padding: 14px 18px;
  background: #fff7d8;
  border: 1px solid #ead383;
  color: #5c470b;
  border-radius: 14px;
  margin: 22px 0 0;
  font-size: 14px;
}

@media (max-width: 1020px) {
  .hero .container, .split, .cta { grid-template-columns: 1fr; }
  .hero .container { min-height: auto; }
  .hero-points { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 18px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { min-height: 68px; }
  .logo strong { font-size: 26px; }
  .mobile-toggle { display: block; }
  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-actions .btn-small { display: none; }
  .hero .container { padding: 36px 0; gap: 30px; }
  .hero-image img { height: 420px; }
  .hero-points, .stats, .grid-3, .grid-2, .check-list, .process, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .product-card img { height: 230px; }
  .split-image img { height: 360px; }
  .cta { padding: 34px 22px; border-radius: 24px; }
  .footer-bottom { flex-direction: column; }
}
