:root {
  --color-primary: #1A3636;
  --color-secondary: #40534C;
  --color-tertiary: #677D6A;
  --color-accent: #D6BD98;
  --color-light: #f8f6f2;
  --color-dark: #0e1f1f;

  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Montserrat', sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);

  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 500;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-tertiary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-light);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.header {
  position: relative;
  padding: var(--space-md) 0;
  background-color: var(--color-light);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.logo img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: rotate(0);
}

@media (max-width: 992px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.header-scroll {
  transition: transform var(--transition-medium);
}

.header-hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: var(--space-lg);
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: var(--space-xs);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width var(--transition-medium);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1000;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

.mobile-nav-list {
  display: none;
}

.hero {
  position: relative;
  height: 80vh;
  max-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--color-secondary);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-light);
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(26, 54, 54, 0.7) 50%, rgba(26, 54, 54, 0) 100%);
}

.section {
  padding: var(--space-xl) 0;
}

.section-title {
  position: relative;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-accent);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.services-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.service-card,
.product-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-img,
.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content,
.product-content {
  padding: var(--space-lg);
}

.service-title,
.product-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.service-desc,
.product-desc {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.product-price {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-content {
  padding-right: var(--space-lg);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: var(--space-md);
}

.faq-question {
  font-weight: 500;
  margin-bottom: var(--space-sm);
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--color-primary);
}

.faq-answer {
  font-size: 0.95rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info {
  padding-right: var(--space-lg);
}

.contact-method {
  margin-bottom: var(--space-lg);
}

.contact-method h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.contact-map {
  width: 100%;
  height: 250px;
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.form-group {
  margin-bottom: var(--space-md);
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.form-checkbox input {
  width: auto;
  margin-right: var(--space-sm);
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: var(--space-lg) 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}


.footer-desc {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: var(--space-sm);
}

.footer-link a {
  color: var(--color-light);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-link a:hover {
  opacity: 1;
}

.footer-contact {
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  background-color: #fff;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  z-index: 1000;
  display: none;
}

.cookie-popup.active {
  display: block;
}

.cookie-text {
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.error-container {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.error-message {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-down {
  animation: fadeInDown var(--transition-medium);
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background-color: var(--color-light);
    z-index: 999;
    padding: var(--space-xl) var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--transition-medium);
    box-shadow: var(--shadow-medium);
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav-list {
    display: block;
    list-style: none;
  }

  .mobile-nav-item {
    margin-bottom: var(--space-md);
  }

  .mobile-nav-link {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .hero-img {
    width: 100%;
  }

  .hero-overlay {
    background: linear-gradient(0deg, var(--color-primary) 0%, rgba(26, 54, 54, 0.7) 50%, rgba(26, 54, 54, 0.5) 100%);
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 0 var(--space-lg);
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }

  .hero {
    height: 70vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .section-title {
    font-size: 1.8rem;
  }
}