* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #8b4513;
  --secondary: #d2691e;
  --accent: #cd853f;
  --dark: #2c1810;
  --light: #f5e6d3;
  --white: #ffffff;
  --text: #3e2723;
}
body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  background: var(--white);
}
h1,
h2,
h3,
h4 {
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  line-height: 1.3;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.1rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 15px 20px;
  z-index: 9999;
  display: none;
}
.privacy-popup.show {
  display: block;
}
.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.privacy-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 200px;
}
.privacy-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.privacy-actions a {
  color: var(--accent);
  text-decoration: underline;
  font-size: 14px;
}
#acceptPrivacy {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.3s;
}
#acceptPrivacy:hover {
  background: var(--secondary);
}
.header {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 2px solid var(--light);
  position: relative;
  z-index: 100;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: "Crimson Pro", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  margin: 3px 0;
  transition: 0.3s;
}
.nav {
  display: flex;
  gap: 30px;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
.nav a:hover {
  color: var(--primary);
}
.hero-modern {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light) 0%, #e8d5c4 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10h80v80H10z" fill="none" stroke="%238B4513" stroke-width="2"/></svg>')
    repeat;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-label {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-text h1 {
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.2;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text);
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  border: 2px solid var(--primary);
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.hero-image {
  position: relative;
}
.hero-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.hero-card img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.values {
  padding: 60px 0;
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.value-box {
  text-align: center;
  padding: 30px 20px;
}
.value-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}
.value-box h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.2rem;
}
.value-box p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}
.story {
  padding: 80px 0;
  background: var(--light);
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.section-label {
  display: inline-block;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.story-content h2 {
  margin-bottom: 20px;
  color: var(--dark);
}
.story-content p {
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.8;
}
.btn-text {
  display: inline-block;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  margin-top: 10px;
  transition: color 0.3s;
}
.btn-text:hover {
  color: var(--secondary);
}
.featured {
  padding: 80px 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  margin-bottom: 12px;
  color: var(--dark);
}
.section-header p {
  color: var(--text);
  font-size: 1.05rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}
.featured-item {
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.featured-item:hover {
  transform: translateY(-8px);
}
.featured-img {
  position: relative;
  overflow: hidden;
}
.featured-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}
.featured-item:hover .featured-img img {
  transform: scale(1.05);
}
.featured-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--white);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.featured-info {
  padding: 25px;
}
.featured-info h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.3rem;
}
.featured-info p {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}
.featured-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.featured-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  font-family: "Crimson Pro", serif;
}
.btn-small {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.3s;
}
.btn-small:hover {
  background: var(--secondary);
}
.process {
  padding: 80px 0;
  background: var(--light);
}
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.process-step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}
.step-num {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 15px;
  font-family: "Crimson Pro", serif;
}
.process-step h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.2rem;
}
.process-step p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}
.process-arrow {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 300;
}
.testimonial {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
}
.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-mark {
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -30px;
}
.testimonial-content blockquote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--light);
}
.testimonial-content cite {
  font-style: normal;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
}
.craft-types {
  padding: 80px 0;
  background: var(--white);
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.craft-card {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s;
}
.craft-card:hover {
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.craft-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.2rem;
}
.craft-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}
.cta-modern {
  padding: 80px 0;
  background: var(--secondary);
}
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text {
  flex: 1;
  min-width: 300px;
}
.cta-text h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-text p {
  color: var(--light);
  font-size: 1.1rem;
}
.btn-cta {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--light);
  transform: translateY(-2px);
}
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 30px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-info p {
  margin: 0;
  font-size: 14px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--accent);
}
.page-hero-modern {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
}
.page-hero-modern h1 {
  margin-bottom: 15px;
}
.page-hero-modern p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
.portfolio-intro,
.makers-intro {
  padding: 60px 0;
  background: var(--white);
}
.intro-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.intro-box h2 {
  margin-bottom: 20px;
  color: var(--dark);
}
.intro-box p {
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.8;
}
.makers-profiles {
  padding: 80px 0;
  background: var(--light);
}
.makers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.maker-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}
.maker-card:hover {
  transform: translateY(-5px);
}
.maker-initial {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 auto 20px;
  font-family: "Crimson Pro", serif;
}
.maker-card h3 {
  margin-bottom: 5px;
  color: var(--dark);
  font-size: 1.3rem;
}
.maker-role {
  display: block;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.maker-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}
.contact-modern {
  padding: 80px 0;
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
.contact-form-side h2 {
  margin-bottom: 15px;
  color: var(--dark);
}
.contact-form-side > p {
  margin-bottom: 30px;
  color: var(--text);
}
.modern-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light);
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  background: var(--white);
  transition: border-color 0.3s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-row textarea {
  resize: vertical;
  min-height: 120px;
}
.checkbox-row {
  flex-direction: row;
  align-items: flex-start;
}
.checkbox-modern {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
}
.checkbox-modern input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.checkbox-modern a {
  color: var(--primary);
  text-decoration: underline;
}
.contact-info-side h2 {
  margin-bottom: 30px;
  color: var(--dark);
}
.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info-block {
  padding: 20px;
  background: var(--light);
  border-radius: 8px;
}
.info-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.info-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}
.map-section {
  padding: 60px 0;
  background: var(--light);
}
.map-section h2 {
  text-align: center;
  margin-bottom: 35px;
  color: var(--dark);
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.message-section {
  padding: 100px 0;
  background: var(--light);
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}
.message-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.message-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 25px;
  font-weight: 300;
}
.message-box h1 {
  margin-bottom: 20px;
  color: var(--dark);
}
.message-box p {
  margin-bottom: 15px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}
.message-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 35px;
  flex-wrap: wrap;
}
.error-num {
  font-size: 8rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Crimson Pro", serif;
}
.policy-section {
  padding: 60px 0;
  background: var(--white);
}
.policy-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.policy-wrap h1 {
  margin-bottom: 10px;
  color: var(--dark);
}
.policy-date {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 30px;
  opacity: 0.7;
}
.policy-wrap h2 {
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--dark);
  font-size: 1.6rem;
}
.policy-wrap p {
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    z-index: 102;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    border-top: 2px solid var(--light);
    z-index: 101;
  }
  .nav.active {
    display: flex;
  }
  .hero-modern {
    padding: 50px 0;
  }
  .hero-grid,
  .story-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .cta-box {
    flex-direction: column;
    text-align: center;
  }
  .btn-cta {
    width: 100%;
    max-width: 300px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .process-arrow {
    display: none;
  }
  .testimonial-content blockquote {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  body {
    font-size: 14px;
  }
  .hero-modern,
  .story,
  .featured,
  .process,
  .craft-types,
  .cta-modern,
  .portfolio-intro,
  .makers-profiles,
  .contact-modern {
    padding: 50px 0;
  }
  .values,
  .testimonial {
    padding: 40px 0;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text p,
  .page-hero-modern p {
    font-size: 1rem;
  }
  .hero-buttons,
  .message-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons a,
  .message-actions a {
    width: 100%;
    text-align: center;
  }
  .btn-primary,
  .btn-outline,
  .btn-cta {
    padding: 12px 24px;
    font-size: 14px;
  }
  .featured-grid,
  .craft-grid,
  .makers-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .value-box,
  .craft-card,
  .maker-card {
    padding: 25px 20px;
  }
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
  .privacy-content {
    flex-direction: column;
    gap: 15px;
  }
  .privacy-actions {
    width: 100%;
    justify-content: space-between;
  }
  .testimonial-content blockquote {
    font-size: 1rem;
  }
  .quote-mark {
    font-size: 4rem;
  }
  .message-box {
    padding: 40px 25px;
  }
  .error-num {
    font-size: 5rem;
  }
}
@media (max-width: 360px) {
  .logo {
    font-size: 1.3rem;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .hero-text h1 {
    font-size: 1.6rem;
  }
  .hero-label,
  .section-label {
    font-size: 11px;
  }
  .step-num {
    font-size: 2rem;
  }
}
