* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2d5016;
  --secondary: #8b4513;
  --accent: #d4af37;
  --text: #2c2c2c;
  --light: #f8f6f3;
  --white: #ffffff;
  --gray: #6b6b6b;
  --border: #e0ddd8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.8rem;
}
h3 {
  font-size: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #1f3810;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 14px 38px;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 38px;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-small {
  padding: 12px 28px;
  font-size: 12px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 70px;
}

.section-header-center h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-top {
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.header-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--gray);
}

.header-divider {
  color: var(--border);
}

.header-main {
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-tagline {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 45px;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.hero {
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(45, 80, 22, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-radius: 30px;
}

.hero-title {
  font-size: 4.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-accent {
  color: var(--accent);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  line-height: 1.9;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 4rem;
}

.hero-features {
  display: flex;
  gap: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}

.feature-label {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.5px;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--accent);
  z-index: -1;
}

.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about-image-frame {
  position: relative;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  z-index: -1;
}

.about-image-frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.about-lead {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.about-signature {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 20px;
}

.signature-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.signature-text {
  font-style: italic;
  color: var(--gray);
  font-size: 14px;
}

.services {
  padding: 120px 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background: var(--white);
  padding: 50px 40px;
  transition: all 0.4s ease;
  border: 1px solid var(--border);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: rgba(45, 80, 22, 0.1);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.service-card p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--accent);
}

.products {
  padding: 120px 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.product-card {
  background: var(--white);
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.product-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary);
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-info {
  padding: 0 10px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.product-info h3 {
  color: var(--primary);
  font-size: 1.5rem;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
}

.product-info p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 15px;
}

.why-choose {
  padding: 120px 0;
  background: var(--light);
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.why-choose-content h2 {
  color: var(--primary);
  margin-bottom: 3rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.why-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
}

.why-text h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.why-text p {
  color: var(--gray);
  line-height: 1.8;
}

.why-choose-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonials {
  padding: 120px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: var(--light);
  padding: 45px 40px;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 15px;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.author-name {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.author-location {
  font-size: 13px;
  color: var(--gray);
}

.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1f3810 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.9;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-info p {
  font-size: 14px;
  line-height: 2;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  padding: 25px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.privacy-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  flex: 1;
  min-width: 300px;
  line-height: 1.7;
}

.privacy-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.privacy-link {
  color: var(--accent);
  font-size: 14px;
  text-decoration: underline;
}

.privacy-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.privacy-accept:hover {
  background: var(--accent);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.2rem;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-image-wrapper img {
    height: 500px;
  }

  .about-grid,
  .why-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.3rem;
  }

  .header-info {
    font-size: 11px;
    gap: 10px;
  }

  .logo-main {
    font-size: 1.6rem;
  }

  .nav {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px 20px;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 25px;
  }

  .hero-image-wrapper img {
    height: 400px;
  }

  .about,
  .services,
  .products,
  .why-choose,
  .testimonials,
  .cta {
    padding: 80px 0;
  }

  .about-image-frame img,
  .why-choose-image img {
    height: 400px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image img {
    height: 400px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 14px 30px;
    font-size: 12px;
  }

  .section-header-center {
    margin-bottom: 50px;
  }

  .hero-image-wrapper img,
  .about-image-frame img,
  .why-choose-image img,
  .product-image img {
    height: 350px;
  }
}

.page-hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--gray);
  font-size: 1.2rem;
}

.delivery-info {
  padding: 100px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-content h2 {
  color: var(--primary);
  margin-bottom: 2.5rem;
}

.info-steps {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-content p {
  color: var(--gray);
  line-height: 1.8;
}

.info-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.delivery-zones {
  padding: 100px 0;
  background: var(--light);
}

.delivery-zones h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3.5rem;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.zone-card {
  background: var(--white);
  padding: 50px 40px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid var(--border);
}

.zone-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.zone-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.zone-card p {
  color: var(--gray);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.zone-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.seasonal-intro {
  padding: 100px 0;
}

.seasonal-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.seasonal-content h2 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.seasonal-content p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.seasons {
  padding: 100px 0;
  background: var(--light);
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.season-card {
  background: var(--white);
  padding: 50px 35px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid var(--border);
}

.season-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.season-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.season-card p {
  color: var(--gray);
  line-height: 1.8;
}

.current-season {
  padding: 100px 0;
}

.current-season h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.season-date {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3.5rem;
  font-size: 15px;
}

.current-season-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.season-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.season-info h3 {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.season-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.season-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  color: var(--gray);
  line-height: 1.8;
}

.sustainability {
  padding: 100px 0;
  background: var(--light);
}

.sustainability-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sustainability-content h2 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.sustainability-content p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contact-info-wrapper h2 {
  color: var(--primary);
  margin-bottom: 2.5rem;
}

.contact-info-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 30px;
  background: var(--light);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-info-card p {
  color: var(--gray);
  line-height: 1.8;
}

.contact-form-wrapper h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.form-intro {
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
  cursor: pointer;
  line-height: 1.7;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 4px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.map-section {
  padding: 100px 0;
  background: var(--light);
}

.map-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
}

.map-wrapper {
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .info-grid,
  .current-season-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 70px 0 60px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .delivery-info,
  .seasonal-intro,
  .seasons,
  .current-season,
  .sustainability,
  .contact-section,
  .map-section,
  .delivery-zones {
    padding: 70px 0;
  }

  .info-image img,
  .season-image img {
    height: 400px;
  }

  .zones-grid,
  .seasons-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nav {
    top: 110px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.8rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .zone-card,
  .season-card {
    padding: 35px 25px;
  }

  .contact-info-card {
    padding: 20px;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.2rem;
  }

  .page-hero {
    padding: 50px 0 40px;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .page-hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 11px;
  }

  .delivery-info,
  .seasonal-intro,
  .seasons,
  .current-season,
  .sustainability,
  .contact-section,
  .map-section,
  .delivery-zones {
    padding: 50px 0;
  }

  .step {
    gap: 15px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

  .zone-card,
  .season-card {
    padding: 25px 20px;
  }

  .contact-info-card {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .info-image img,
  .season-image img {
    height: 300px;
  }
}

.policy-section {
  padding: 100px 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.policy-date {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.policy-content h2 {
  color: var(--primary);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.policy-content h3 {
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.policy-content p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.policy-content ul {
  margin: 1.5rem 0 2rem 2rem;
}

.policy-content li {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
  .policy-section {
    padding: 70px 0;
  }

  .policy-content h1 {
    font-size: 2rem;
  }

  .policy-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
  }

  .policy-content h3 {
    font-size: 1.2rem;
  }

  .policy-content ul {
    margin-left: 1.5rem;
  }
}

@media (max-width: 480px) {
  .policy-section {
    padding: 50px 0;
  }

  .policy-content h1 {
    font-size: 1.7rem;
  }

  .policy-content h2 {
    font-size: 1.4rem;
  }

  .policy-content h3 {
    font-size: 1.1rem;
  }

  .about-image-frame::before {
    left: 0;
  }
}

@media (max-width: 320px) {
  .policy-section {
    padding: 40px 0;
  }

  .policy-content h1 {
    font-size: 1.5rem;
  }

  .policy-content h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
  }

  .policy-content h3 {
    font-size: 1rem;
  }

  .policy-content p,
  .policy-content li {
    font-size: 14px;
  }

  .policy-content ul {
    margin-left: 1.2rem;
  }
}


.thankyou-section,
.error-section {
padding: 120px 0;
min-height: calc(100vh - 400px);
display: flex;
align-items: center;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.thankyou-icon {
width: 100px;
height: 100px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3.5rem;
font-weight: 600;
margin: 0 auto 2.5rem;
}

.thankyou-content h1 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.thankyou-content p {
color: var(--gray);
line-height: 1.9;
margin-bottom: 1.5rem;
font-size: 1.05rem;
}

.thankyou-info {
background: var(--light);
padding: 30px;
border-radius: 0;
margin: 2.5rem 0;
}

.thankyou-info p {
margin-bottom: 0;
}

.thankyou-actions {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-top: 2.5rem;
}

.error-number {
font-family: 'Cormorant Garamond', serif;
font-size: 10rem;
font-weight: 600;
color: var(--primary);
opacity: 0.2;
line-height: 1;
margin-bottom: 1.5rem;
}

.error-content h1 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.error-content p {
color: var(--gray);
margin-bottom: 2.5rem;
font-size: 1.05rem;
line-height: 1.9;
}

.error-actions {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

@media (max-width: 768px) {
.thankyou-section,
.error-section {
padding: 80px 0;
}

.thankyou-icon {
width: 80px;
height: 80px;
font-size: 2.5rem;
}

.error-number {
font-size: 7rem;
}

.thankyou-info {
padding: 25px;
}
}

@media (max-width: 480px) {
.thankyou-section,
.error-section {
padding: 60px 0;
}

.thankyou-icon {
width: 70px;
height: 70px;
font-size: 2rem;
margin-bottom: 2rem;
}

.error-number {
font-size: 5rem;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.thankyou-actions .btn,
.error-actions .btn {
width: 100%;
}

.thankyou-info {
padding: 20px;
}
}

@media (max-width: 320px) {
.thankyou-section,
.error-section {
padding: 50px 0;
}

.thankyou-icon {
width: 60px;
height: 60px;
font-size: 1.8rem;
}

.error-number {
font-size: 4rem;
}

.thankyou-content h1,
.error-content h1 {
font-size: 1.6rem;
}

.thankyou-content p,
.error-content p {
font-size: 0.95rem;
}
}
