@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Mulish:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #8B6F4E;
  --primary-dark: #6B5438;
  --primary-light: #B8A088;
  --secondary: #C7724E;
  --accent: #5B7B56;
  --bg: #FAF7F2;
  --bg-alt: #F0ECE4;
  --bg-dark: #2C2420;
  --text: #2C2420;
  --text-light: #6B6158;
  --text-muted: #9B9088;
  --white: #FFFFFF;
  --border: #E0D8CE;
  --shadow: rgba(44, 36, 32, 0.08);
  --shadow-md: rgba(44, 36, 32, 0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Mulish', sans-serif;
  --header-h: 60px;
  --footer-h: auto;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 0.8em;
  color: var(--text-light);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: #b5654a;
  color: var(--white);
  transform: translateY(-1px);
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 12px;
}

.section-desc {
  max-width: 560px;
  font-size: 14px;
}

.text-center {
  text-align: center;
}

.section-desc.text-center {
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.35s ease,
              box-shadow 0.35s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 16px var(--shadow);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-h);
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 24px;
}

.nav-left a,
.nav-right a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.site-header.hero-top .nav-left a,
.site-header.hero-top .nav-right a {
  color: var(--white);
}

.site-header.scrolled .nav-left a,
.site-header.scrolled .nav-right a {
  color: var(--text);
}

.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--secondary);
  transition: width var(--transition);
}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after {
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 36px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 18px;
  color: var(--secondary);
}

.site-header.hero-top .logo-icon {
  color: var(--white);
}

.site-header.scrolled .logo-icon {
  color: var(--secondary);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-header.hero-top .logo-text {
  color: var(--white);
}

.site-header.scrolled .logo-text {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1010;
  padding: 0;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #4c3c35;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.site-header.hero-top .nav-toggle span {
  background: var(--white);
}

.site-header.scrolled .nav-toggle span {
  background: var(--text);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--text);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 247, 242, 0.98);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1005;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  height: 100vh;
}

.mobile-nav ul {
  text-align: center;
}

.mobile-nav li {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-nav.active li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active li:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: var(--secondary);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 80px 20px 60px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 24px;
}

.page-banner {
  background: var(--bg-dark);
  padding: 90px 20px 40px;
  text-align: center;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto;
}

.section-intro {
  padding: 50px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-grid img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.intro-text h2 {
  margin-bottom: 12px;
}

.intro-text p {
  margin-bottom: 10px;
}

.products-section {
  padding: 50px 0;
  background: var(--bg-alt);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-md);
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-alt), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--primary);
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 13px;
  margin-bottom: 14px;
  min-height: 48px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
}

.craft-section {
  padding: 50px 0;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.craft-grid img {
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px var(--shadow);
}

.craft-text h2 {
  margin-bottom: 12px;
}

.craft-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.craft-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.craft-feature i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 13px;
}

.craft-feature span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.why-section {
  padding: 50px 0;
  background: var(--bg-alt);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.why-card i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 12px;
}

.process-section {
  padding: 50px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 20px 12px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto 12px;
}

.process-step h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 12px;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--border);
}

.process-step:last-child::after {
  display: none;
}

.cta-section {
  padding: 50px 0;
  background: var(--bg-dark);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.content-section {
  padding: 50px 0;
}

.content-section:nth-child(even) {
  background: var(--bg-alt);
}

.content-block {
  max-width: 760px;
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: 14px;
}

.content-block h3 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.content-block p {
  margin-bottom: 10px;
}

.content-block ul,
.content-block ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.content-block li {
  list-style: disc;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 4px;
  line-height: 1.6;
}

.content-block ol li {
  list-style: decimal;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: transform var(--transition);
}

.guide-card:hover {
  transform: translateY(-3px);
}

.guide-card i {
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 10px;
  display: block;
}

.guide-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.guide-card p {
  font-size: 12px;
}

.technique-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.technique-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.technique-item i {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.technique-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.technique-item p {
  font-size: 12px;
}

.story-section {
  padding: 50px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-grid img {
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px var(--shadow);
}

.story-text h2 {
  margin-bottom: 12px;
}

.values-section {
  padding: 50px 0;
  background: var(--bg-alt);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.value-card {
  text-align: center;
  padding: 28px 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.value-card i {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 12px;
}

.contact-section {
  padding: 50px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.contact-form-wrap h2 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.contact-form-wrap > p {
  font-size: 13px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 13px;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.form-checkbox a {
  color: var(--secondary);
  text-decoration: underline;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info-card h3 i {
  color: var(--secondary);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  color: var(--primary);
  margin-top: 2px;
  font-size: 14px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.info-item span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.hours-list {
  font-size: 13px;
  color: var(--text-light);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dotted var(--border);
}

.hours-list li:last-child {
  border-bottom: none;
}

.map-section {
  padding: 0 0 50px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-section {
  padding: 50px 0;
  background: var(--bg-alt);
}

.faq-list {
  max-width: 700px;
  margin: 24px auto 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question i {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 18px 14px;
  font-size: 13px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.site-footer {
  background: var(--bg-dark);
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  padding: 16px 20px;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-accept {
  padding: 8px 20px;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background var(--transition);
  flex-shrink: 0;
}

.cookie-accept:hover {
  background: #b5654a;
}

.fullpage-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  padding-top: 60px;
  height: 100vh;
}

.fullpage-message i {
  font-size: 48px;
  color: var(--primary-light);
  margin-bottom: 18px;
}

.fullpage-message h1 {
  margin-bottom: 10px;
}

.fullpage-message p {
  max-width: 420px;
  font-size: 14px;
  margin-bottom: 24px;
}

.policy-page {
  padding: 50px 0;
  padding-top: 80px;
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 6px;
}

.policy-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.policy-content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.policy-content h3 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.policy-content p {
  margin-bottom: 10px;
  font-size: 13px;
}

.policy-content ul,
.policy-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.policy-content li {
  list-style: disc;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 4px;
  line-height: 1.6;
}

.policy-content ol li {
  list-style: decimal;
}

.paper-img-section {
  padding: 50px 0;
}

.paper-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.paper-img-grid img {
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px var(--shadow);
}

.paper-img-text h2 {
  margin-bottom: 12px;
}

.benefit-list {
  margin-top: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.benefit-item i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 13px;
  flex-shrink: 0;
}

.benefit-item div h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.benefit-item div p {
  font-size: 12px;
}

@media (max-width: 900px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .logo {
    margin: 0;
    margin-right: auto;
  }

  .header-inner {
    justify-content: flex-start;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-step::after {
    display: none;
  }

  .craft-grid,
  .story-grid,
  .paper-img-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .guide-cards {
    grid-template-columns: 1fr 1fr;
  }

  .technique-list {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .craft-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }

  .hero {
    min-height: 420px;
  }

  .hero-content {
    padding: 70px 16px 40px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .page-banner {
    padding: 80px 16px 30px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .guide-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 20px 16px;
  }

  .logo-text {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  body {
    font-size: 13px;
  }

  .container {
    padding: 0 14px;
  }

  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .btn {
    padding: 8px 18px;
    font-size: 12px;
  }

  .logo-text {
    font-size: 12px;
  }

  .product-card {
    padding: 20px 14px;
  }
}
