*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #8b7355;
  --primary-dark: #6b5344;
  --secondary: #c4a77d;
  --accent: #d4b896;
  --bg: #faf8f5;
  --bg-alt: #f3ede5;
  --text: #3d3d3d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --transition: 0.3s ease;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
}
body {
  font-family: "Cormorant Garamond", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
h1,
h2,
h3,
h4 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  line-height: 1.3;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.2rem;
}
p {
  font-size: 0.95rem;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.section {
  padding: 50px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 35px;
}
.section-header h2 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.section-header p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.header.scrolled {
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.header.hidden {
  transform: translateY(-100%);
}
.logo {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 1px;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg);
  padding: 70px 30px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow-y: auto;
}
.nav-menu.active {
  right: 0;
}
.nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-menu a {
  display: block;
  padding: 10px 15px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  background: var(--accent);
  color: var(--primary-dark);
}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 50%;
  transform: rotate(-15deg);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}
.hero p {
  color: var(--text-light);
  max-width: 450px;
  margin-bottom: 20px;
}
.hero-badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: 20px;
  margin-bottom: 12px;
  font-family: "Josefin Sans", sans-serif;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--white);
  padding: 25px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.feature-card h3 {
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
.about-content h2 {
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.about-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.about-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(139, 115, 85, 0.2), transparent);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.product-image {
  height: 180px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image i {
  font-size: 3rem;
  color: var(--secondary);
}
.product-info {
  padding: 18px;
}
.product-info h3 {
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-size: 1rem;
}
.product-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.product-price {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}
.testimonial-section {
  background: var(--bg-alt);
}
.testimonial-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.testimonial-card cite {
  font-size: 0.85rem;
  color: var(--text-light);
}
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-section p {
  opacity: 0.9;
  max-width: 450px;
  margin: 0 auto 20px;
}
.cta-section .btn {
  background: var(--white);
  color: var(--primary-dark);
}
.cta-section .btn:hover {
  background: var(--accent);
}
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 25px 0 15px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.footer-info h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.footer-info p,
.footer-info a {
  font-size: 0.8rem;
  opacity: 0.85;
  display: block;
  line-height: 1.8;
}
.footer-info a:hover {
  opacity: 1;
}
.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
}
.footer-links a {
  font-size: 0.8rem;
  opacity: 0.85;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
}
.footer-bottom p {
  opacity: 0.7;
}
.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.policy-links a {
  opacity: 0.7;
}
.policy-links a:hover {
  opacity: 1;
}
.page-header {
  padding: 100px 0 40px;
  background: var(--bg-alt);
  text-align: center;
}
.page-header h1 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.page-header p {
  color: var(--text-light);
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  margin-top: 12px;
}
.breadcrumb a {
  color: var(--primary);
}
.breadcrumb span {
  color: var(--text-light);
}
.content-section {
  background: var(--white);
}
.content-box {
  max-width: 800px;
  margin: 0 auto;
}
.content-box h2 {
  color: var(--primary-dark);
  margin: 25px 0 12px;
  font-size: 1.3rem;
}
.content-box h3 {
  color: var(--primary);
  margin: 20px 0 10px;
  font-size: 1.1rem;
}
.content-box p {
  margin-bottom: 12px;
  color: var(--text);
}
.content-box ul {
  margin: 12px 0 12px 20px;
}
.content-box li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 15px;
  color: var(--text);
}
.content-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.contact-form-section {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form-section h2 {
  color: var(--primary-dark);
  margin-bottom: 20px;
  text-align: center;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.checkbox-group input {
  width: auto;
  margin-top: 3px;
}
.checkbox-group label {
  font-size: 0.8rem;
  color: var(--text-light);
}
.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
}
.contact-info-section {
  display: grid;
  gap: 15px;
}
.contact-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-card i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 3px;
}
.contact-card h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--primary-dark);
}
.contact-card p,
.contact-card a {
  font-size: 0.85rem;
  color: var(--text-light);
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.error-page,
.thankyou-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.error-page i,
.thankyou-page i {
  font-size: 4rem;
  color: #a58965;
  margin-bottom: 20px;
}
.error-page h1,
.thankyou-page h1 {
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.error-page p,
.thankyou-page p {
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: 400px;
}
.about-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.team-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.team-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 10px;
}
.team-card h3 {
  color: var(--primary-dark);
  font-size: 1rem;
  margin-bottom: 4px;
}
.team-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}
.value-card {
  background: var(--bg-alt);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}
.value-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.value-card h4 {
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
}
.value-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-item {
  display: flex;
  gap: 15px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-item i {
  font-size: 1.8rem;
  color: var(--primary);
}
.service-item h3 {
  color: var(--primary-dark);
  margin-bottom: 5px;
}
.service-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.stat-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-card .number {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}
.stat-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--white);
  padding: 15px;
  transform: translateY(100%);
  transition: var(--transition);
  z-index: 1002;
}
.cookie-popup.active {
  transform: translateY(0);
}
.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.cookie-content p {
  font-size: 0.85rem;
  opacity: 0.9;
}
.cookie-content a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-buttons .btn {
  padding: 8px 16px;
  font-size: 0.8rem;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.process-step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.step-number {
  width: 35px;
  height: 35px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content h4 {
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.step-content p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.inspiration-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.inspiration-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.inspiration-card-content {
  padding: 15px;
}
.inspiration-card h3 {
  color: var(--primary-dark);
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.inspiration-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--primary-dark);
}
.faq-question i {
  transition: var(--transition);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active .faq-answer {
  padding: 0 15px 15px;
  max-height: 200px;
}
.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-light);
}
@media (min-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-menu ul {
    flex-direction: row;
    gap: 5px;
  }
  .nav-menu a {
    padding: 8px 12px;
  }
  .hero {
    padding: 120px 0 80px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .section {
    padding: 35px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  .container {
    padding: 0 10px;
  }
  .hero {
    padding: 90px 0 40px;
  }
  .section {
    padding: 30px 0;
  }
}
