:root {
  --primary: #5B7553;
  --primary-dark: #3D5137;
  --primary-light: #7A9B70;
  --secondary: #C49A6C;
  --secondary-dark: #A67B4B;
  --secondary-light: #DDB88A;
  --accent: #D4A574;
  --bg: #ffffff;
  --bg-alt: #F8F5F0;
  --bg-dark: #2C3028;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --text-white: #ffffff;
  --border: #E8E2D9;
  --heading-font: 'Cormorant Garamond', serif;
  --body-font: 'Outfit', sans-serif;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--body-font);
}

input, textarea, select {
  font-family: var(--body-font);
  font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-white);
}

.section-dark p {
  color: rgba(255,255,255,0.8);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-header p {
  max-width: 550px;
  margin: 20px auto 0;
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.3px;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text-white);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
}

.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 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(0);
}

.header-top-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary-light));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  transition: padding var(--transition);
}

.site-header.scrolled .header-inner {
  padding: 8px 0;
}

.site-header.transparent {
  background: transparent;
}

.site-header.solid {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 0.85rem;
}

.brand-name {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}

.site-header.transparent .brand-name {
  color: var(--text-white);
}

.site-header.transparent .brand-icon {
  background: rgba(255,255,255,0.2);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.site-header.transparent .nav-list a {
  color: var(--text-white);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  z-index: 1001;
  border-radius: 50%;
  transition: all var(--transition);
}

.site-header.transparent .menu-toggle {
  color: var(--text-white);
}

.menu-icon-close {
  display: none;
}

body.nav-open .menu-icon-open {
  display: none;
}

body.nav-open .menu-icon-close {
  display: inline;
}

.site-header.solid .menu-icon-close {
  color: black;
}

body.nav-open .menu-toggle {
  color: var(--text-white);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44,48,40,0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.nav-open .mobile-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  text-align: center;
}

.mobile-nav a {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-white);
  padding: 12px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

body.nav-open .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

body.nav-open .mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
body.nav-open .mobile-nav a:nth-child(2) { transition-delay: 0.15s; }
body.nav-open .mobile-nav a:nth-child(3) { transition-delay: 0.2s; }
body.nav-open .mobile-nav a:nth-child(4) { transition-delay: 0.25s; }

.mobile-nav a:hover {
  color: var(--secondary);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('') center/cover;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: var(--text-white);
}

.hero-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(196,154,108,0.25);
  border: 1px solid rgba(196,154,108,0.4);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--secondary-light);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--text-white);
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-decoration {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 350px;
  height: 350px;
  border: 2px solid rgba(196,154,108,0.15);
  border-radius: 50%;
  z-index: 1;
}

.hero-decoration::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 2px solid rgba(196,154,108,0.1);
  border-radius: 50%;
}

.hero-img-wrap {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 450px;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.philosophy-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.philosophy-img::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  z-index: -1;
}

.philosophy-img img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.philosophy-text h2 {
  margin-bottom: 12px;
}

.philosophy-text p {
  margin-bottom: 10px;
}

.philosophy-list {
  margin-top: 16px;
}

.philosophy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.philosophy-list li i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 0.75rem;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.style-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}

.style-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary);
}

.style-card-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.2rem;
  color: var(--primary);
}

.style-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.style-card p {
  font-size: 0.82rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  opacity: 0.4;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.78rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--secondary);
}

.testimonial-quote {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.5rem;
  color: var(--border);
  font-family: var(--heading-font);
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.72rem;
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--text-white);
  margin-bottom: 10px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 24px;
}

.cta-section .btn {
  background: var(--secondary);
  color: var(--text-white);
}

.cta-section .btn:hover {
  background: var(--secondary-dark);
}

.page-banner {
  background: linear-gradient(135deg, var(--bg-dark), var(--primary-dark));
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary-light));
}

.page-banner h1 {
  color: var(--text-white);
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.page-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.75rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span {
  color: var(--secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-header {
  background: var(--bg-alt);
  padding: 28px 22px 20px;
  text-align: center;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.product-card-header i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.product-card-header h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.product-price {
  display: inline-block;
  background: var(--primary);
  color: var(--text-white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-top: 8px;
}

.product-card-body {
  padding: 20px 22px;
}

.product-features {
  margin-bottom: 18px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li i {
  color: var(--primary);
  font-size: 0.7rem;
}

.product-card-body .btn {
  width: 100%;
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.materials-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.material-item {
  background: var(--bg);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.material-item i {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.material-item h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.material-item p {
  font-size: 0.75rem;
  margin-bottom: 0;
}

.materials-img {
  border-radius: 8px;
  overflow: hidden;
}

.materials-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: var(--body-font);
  color: var(--text);
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question i {
  font-size: 0.7rem;
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 18px 14px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
}

.about-text h2 {
  margin-bottom: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--text-white);
  font-size: 1.1rem;
}

.value-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.78rem;
  margin-bottom: 0;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}

.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);
  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;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform var(--transition);
}

.contact-info-card:hover {
  transform: translateX(4px);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.85rem;
  margin-bottom: 3px;
}

.contact-info-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.contact-hours {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--text-white);
}

.contact-hours h4 {
  color: var(--text-white);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.contact-hours li:last-child {
  border-bottom: none;
}

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--bg-dark);
  padding: 28px 0 0;
  color: rgba(255,255,255,0.7);
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand-name {
  color: var(--text-white);
  font-size: 1.1rem;
}

.footer-brand p {
  font-size: 0.75rem;
  margin-top: 6px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.5);
  max-width: 250px;
}

.footer-links h4 {
  color: var(--text-white);
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-family: var(--body-font);
  font-weight: 600;
}

.footer-links a {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  padding: 3px 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact p {
  font-size: 0.75rem;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.6);
}

.footer-contact i {
  width: 16px;
  color: var(--secondary);
  margin-right: 6px;
  font-size: 0.7rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copyright {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

.footer-copyright span {
  color: var(--secondary);
}

.footer-policy-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-policy-links a {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-policy-links a:hover {
  color: var(--secondary);
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  padding: 18px 0;
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-popup.active {
  bottom: 0;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

.cookie-text a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-accept {
  padding: 8px 20px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 500;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-decline {
  padding: 8px 20px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 0.78rem;
  transition: all var(--transition);
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--text-white);
}

.fullpage-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-alt);
}

.fullpage-content {
  max-width: 500px;
}

.fullpage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-white);
  font-size: 2rem;
}

.fullpage-content h1 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.fullpage-content p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.error-code {
  font-family: var(--heading-font);
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.policy-page {
  padding: 40px 0 60px;
}

.policy-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.policy-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.policy-content h2 {
  font-size: 1.4rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.policy-content p {
  margin-bottom: 10px;
  font-size: 0.85rem;
  line-height: 1.7;
}

.policy-content ul {
  margin: 8px 0 16px 20px;
  list-style: disc;
}

.policy-content ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .hero h1 { font-size: 2.4rem; }

  .hero-img-wrap {
    display: none;
  }

  .styles-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-steps::before {
    display: none;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html { font-size: 14px; }

  .section { padding: 44px 0; }

  .menu-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
  }

  .philosophy-grid,
  .about-story,
  .materials-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .styles-grid,
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policy-links {
    justify-content: center;
  }

  .page-banner {
    padding: 80px 0 36px;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }

  .team-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  html { font-size: 13px; }

  .container { padding: 0 14px; }

  .section { padding: 36px 0; }

  .hero { min-height: 65vh; }
  .hero h1 { font-size: 2rem; }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .team-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form-wrap {
    padding: 20px;
  }

  .materials-features {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 320px) {
  html { font-size: 12px; }

  .container { padding: 0 10px; }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .brand-name { font-size: 1.1rem; }
}
