:root {
  --primary: #C4785B;
  --primary-dark: #A85F45;
  --primary-light: #E0A58E;
  --secondary: #3D5A5B;
  --secondary-dark: #2D4445;
  --secondary-light: #5A7E7F;
  --accent: #D4A96A;
  --accent-light: #E8C98E;
  --bg-cream: #FBF7F0;
  --bg-light: #F5EFE6;
  --bg-white: #FFFFFF;
  --text-dark: #2B2B2B;
  --text-muted: #6B6B6B;
  --text-light: #999999;
  --border: #E0D6CC;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 20px rgba(0,0,0,0.12);
  --radius: 6px;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Outfit', sans-serif;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--secondary);
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.15rem;
}

h4 {
  font-size: 1rem;
}

p {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--bg-white);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

.header-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color var(--transition);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.header-scrolled {
  background-color: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 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: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--primary);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--secondary);
  margin: 0 30px;
  white-space: nowrap;
}

.logo:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  width: 26px;
  height: 18px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  position: absolute;
  left: 0;
  transition: all 0.35s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(251, 247, 240, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  transition: color var(--transition), transform var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary);
  transform: scale(1.05);
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 14px;
  font-size: 2.4rem;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.hero-image-wrapper img {
  width: 100%;
  object-fit: cover;
}

.hero-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

.hero-decoration-1 {
  top: -50px;
  right: -30px;
}

.hero-decoration-2 {
  bottom: -40px;
  left: -50px;
}

.section {
  padding: 50px 0;
}

.section-alt {
  background-color: var(--bg-white);
}

.section-colored {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.section-colored h2,
.section-colored h3 {
  color: var(--bg-white);
}

.section-colored p {
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.section-header h2 {
  margin-bottom: 8px;
}

.section-header p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 10px auto 0;
  border-radius: 2px;
}

.welcome-section {
  text-align: center;
}

.welcome-section .welcome-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.welcome-section p {
  max-width: 600px;
  margin: 0 auto 10px;
  font-size: 0.95rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.category-card h3 {
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  text-align: center;
  padding: 20px 15px;
}

.feature-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: inline-block;
}

.feature-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.feature-card p {
  font-size: 0.82rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.step-content p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 50px 20px;
}

.cta-section h2 {
  color: var(--bg-white);
  margin-bottom: 10px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background-color: var(--bg-white);
  color: var(--primary);
}

.cta-section .btn:hover {
  background-color: var(--accent-light);
  color: var(--primary-dark);
}

.page-hero {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.page-hero h1 {
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.page-hero-img {
  margin-top: 25px;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}

.page-hero-img img {
  width: 100%;
  object-fit: cover;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 25px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.product-card i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.product-card h3 {
  margin-bottom: 6px;
}

.product-card p {
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.materials-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.materials-text {
  flex: 1;
}

.materials-text h2 {
  margin-bottom: 10px;
}

.materials-text p {
  font-size: 0.9rem;
}

.materials-list {
  margin-top: 12px;
}

.materials-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.materials-list li i {
  color: var(--primary);
  font-size: 0.8rem;
}

.materials-visual {
  flex: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.material-tag {
  padding: 8px 16px;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--secondary);
  border: 1px solid var(--border);
}

.about-story {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-story h2 {
  margin-bottom: 12px;
}

.about-story p {
  font-size: 0.9rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: 20px 15px;
  background: var(--bg-white);
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-2px);
}

.value-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.value-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.value-card p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.contact-form-wrapper h2 {
  margin-bottom: 4px;
  font-size: 1.4rem;
}

.contact-form-wrapper > p {
  margin-bottom: 18px;
  font-size: 0.85rem;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-cream);
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--primary);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info-card h3 i {
  color: var(--primary);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-detail i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--bg-light);
}

.contact-hours li:last-child {
  border-bottom: none;
}

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.thankyou-content,
.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 100%;
  height: 100vh;
}

.thankyou-content i,
.error-content i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.error-content i {
  color: var(--accent);
}

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 10px;
}

.thankyou-content p,
.error-content p {
  max-width: 400px;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.site-footer {
  background-color: var(--secondary);
  color: rgba(255, 255, 255, 0.7);
  padding: 20px 0;
  font-size: 0.75rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--bg-white);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary);
  color: rgba(255, 255, 255, 0.9);
  padding: 14px 20px;
  z-index: 2000;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.cookie-popup.visible {
  display: block;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  flex: 1;
}

.cookie-inner a {
  color: var(--accent-light);
}

.cookie-accept {
  padding: 7px 20px;
  background-color: var(--primary);
  color: var(--bg-white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition);
  white-space: nowrap;
}

.cookie-accept:hover {
  background-color: var(--primary-dark);
}

.policy-content {
  padding: 80px 0 40px;
}

.policy-content h1 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.policy-content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.policy-content h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.policy-content p {
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.policy-content ul {
  margin: 8px 0 14px 20px;
}

.policy-content ul li {
  list-style: disc;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.breadcrumb {
  padding: 70px 0 0;
  font-size: 0.78rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--text-light);
  margin: 0 6px;
}

.current-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-img-section {
  text-align: center;
}

.about-img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
}

.about-img-wrapper img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-nav {
    display: flex;
  }

  .header-inner {
    justify-content: flex-start;
  }

  .logo {
    margin: 0;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .materials-section {
    flex-direction: column;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 13px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 35px 0;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 380px) {
  html {
    font-size: 12px;
  }

  .container {
    padding: 0 14px;
  }

  .header-inner {
    padding: 10px 14px;
  }

  .logo {
    font-size: 1rem;
  }

  .hero {
    padding: 70px 0 30px;
  }

  .contact-form-wrapper {
    padding: 20px 16px;
  }
}
