*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #4a6741;
  --primary-dark: #3a5331;
  --secondary: #c9a962;
  --accent: #8b7355;
  --text: #2d3436;
  --text-light: #636e72;
  --bg: #faf9f7;
  --bg-alt: #f0ede8;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius: 6px;
  --transition: 0.3s ease;
}
html {
  scroll-behavior: smooth;
  font-size: 15px;
}
body {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.25rem;
}
p {
  font-size: 0.95rem;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 12px 0;
  transition: var(--transition);
}
.header.scrolled {
  position: fixed;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-toggle {
  display: none;
  background: none;
  padding: 8px;
  color: var(--text);
}
.nav-toggle i {
  font-size: 1.2rem;
}
.nav-menu {
  display: flex;
  gap: 4px;
}
.nav-menu a {
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  background: var(--primary);
  color: var(--white);
}
.nav-overlay {
  display: none;
}
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--primary);
  opacity: 0.03;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 0 40px;
}
.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--primary-dark);
}
.hero p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 480px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.section {
  padding: 60px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.section-header p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}
.features {
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-card i {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 14px;
}
.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.about-preview {
  background: var(--bg-alt);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--secondary);
  border-radius: var(--radius);
  opacity: 0.3;
}
.about-text h2 {
  margin-bottom: 16px;
  color: var(--primary-dark);
}
.about-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 0.9rem;
}
.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.products {
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-image {
  height: 180px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
}
.product-info {
  padding: 20px;
}
.product-info h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}
.product-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.product-price {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
}
.product-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}
.services {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
}
.services .section-header h2,
.services .section-header p {
  color: var(--white);
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.service-item i {
  font-size: 1.4rem;
  color: var(--secondary);
  flex-shrink: 0;
}
.service-item h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.service-item p {
  font-size: 0.8rem;
  opacity: 0.85;
}
.cta {
  background: var(--bg-alt);
  text-align: center;
}
.cta h2 {
  margin-bottom: 12px;
}
.cta p {
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.process {
  background: var(--white);
}
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--bg-alt);
}
.process-step {
  position: relative;
  text-align: center;
  flex: 1;
  padding: 0 10px;
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.process-step p {
  font-size: 0.75rem;
  color: var(--text-light);
}
.testimonials {
  background: var(--bg-alt);
}
.testimonial-card {
  background: var(--white);
  padding: 28px;
  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(--secondary);
  margin-bottom: 14px;
}
.testimonial-card blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}
.contact-section {
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info {
  padding: 30px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: var(--radius);
  color: var(--white);
}
.contact-info h2 {
  margin-bottom: 20px;
  color: var(--white);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-detail i {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-top: 2px;
}
.contact-detail p {
  font-size: 0.9rem;
  line-height: 1.5;
}
.contact-detail a {
  color: var(--white);
  text-decoration: underline;
}
.map-container {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 160px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-form {
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form h3 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--bg-alt);
  border-radius: var(--radius);
  background: var(--bg);
  transition: var(--transition);
  font-size: 0.9rem;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.checkbox-group label {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}
.form-submit {
  margin-top: 20px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
}
.page-hero {
  padding: 100px 0 50px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  text-align: center;
}
.page-hero h1 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.page-hero p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
}
.breadcrumb a {
  color: var(--text-light);
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb span {
  color: var(--primary);
}
.content-section {
  padding: 50px 0;
}
.content-section h2 {
  color: var(--primary-dark);
  margin-bottom: 16px;
  margin-top: 24px;
}
.content-section h2:first-child {
  margin-top: 0;
}
.content-section p {
  margin-bottom: 14px;
  color: var(--text-light);
}
.content-section ul {
  margin: 14px 0 14px 20px;
}
.content-section ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.content-section ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 0.7rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-section {
  background: var(--bg-alt);
}
.team-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.value-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.value-card i {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 12px;
}
.value-card h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.value-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.3rem;
}
.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--primary);
}
.thankyou-page,
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.thankyou-content,
.error-content {
  max-width: 500px;
  margin: 0 auto;
}
.thankyou-content i,
.error-content i {
  font-size: 4rem;
  margin-bottom: 20px;
}
.thankyou-content i {
  color: #5b8050;
}
.error-content i {
  color: var(--secondary);
}
.thankyou-content h1,
.error-content h1 {
  margin-bottom: 14px;
}
.thankyou-content p,
.error-content p {
  color: var(--text-light);
  margin-bottom: 24px;
}
.dynamic-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 10px;
}
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 30px 0 20px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-brand {
  max-width: 280px;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.6;
}
.footer-links h4 {
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: var(--secondary);
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  font-size: 0.8rem;
  opacity: 0.8;
  transition: var(--transition);
}
.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}
.footer-contact p {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 6px;
}
.footer-contact i {
  margin-right: 8px;
  color: var(--secondary);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.copyright {
  font-size: 0.75rem;
  opacity: 0.7;
}
.privacy-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.privacy-links a {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: var(--transition);
}
.privacy-links a:hover {
  opacity: 1;
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}
.cookie-popup.show {
  display: block;
}
.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-content p {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-light);
  min-width: 200px;
}
.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.nav-close {
    display: none;
}

@media (max-width: 992px) {
  .features-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .services-list {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .nav-close {
    display: block;
  }

  .nav-toggle {
    display: block;
  }
  .nav {
    position: relative;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 60px 24px 24px;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1001;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-menu a {
    padding: 12px 16px;
    font-size: 0.95rem;
    width: 100%;
    border-radius: var(--radius);
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
  }
  .nav-overlay.active {
    display: block;
  }
  .nav-close {
    position: fixed;
    top: 16px;
    right: -100%;
    background: none;
    font-size: 1.3rem;
    color: var(--text);
    z-index: 1002;
    transition: var(--transition);
  }
  .nav-menu.active ~ .nav-close {
    right: 16px;
  }
  .hero {
    min-height: auto;
    padding: 80px 0 50px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .features-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-direction: column;
    gap: 24px;
  }
  .process-steps::before {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .privacy-links {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .section {
    padding: 40px 0;
  }
  .btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  .container {
    padding: 0 12px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .logo {
    font-size: 0.95rem;
  }
}
