@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}
/* ========== ROOT VARIABLES ========== */
:root {
  --bg-light: #fef9f2;
  --bg-card: #ffffff;
  --primary: #067331;
  --primary-dark: #067331;
  --accent: #067331;
  --accent-light: #cce1c7;
  --text-dark: #1e2a2b;
  --text-gray: #5b6e6e;
  --border-radius: 28px;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 35px rgba(0, 0, 0, 0.1);
  --transition: all 0.25s ease;
}

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

body {
  background-color: var(--bg-light);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
footer a {
  color: white;
  text-decoration: none;
}
.main-content {
  flex: 1 0 auto;
}

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

/* ========== TYPOGRAPHY ========== */
.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
}

h1, h2, h3, .logo, .step-number, .achievement-number {
  font-family: 'Space Grotesk', sans-serif;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  margin-bottom: 0.5rem;
}

/* ========== HEADER ========== */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
}
.logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.advertising-badge {
  background: rgba(108, 143, 122, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-dark);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 60px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}
.btn-primary {
  background: linear-gradient(105deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 8px 20px rgba(79, 107, 91, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(79, 107, 91, 0.3);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* ========== HERO ========== */
.hero {
  padding: 4rem 0 2rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}
.stat span {
  font-weight: 700;
  font-size: 1.3rem;
  display: block;
  color: var(--primary-dark);
}
.hero-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* ========== FEATURES + ACHIEVEMENTS ========== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 2rem;
  margin: 3rem auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.achievements-side {
  background: var(--bg-card);
  border-radius: 32px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.achievement-card {
  text-align: center;
}
.achievement-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.achievement-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* ========== COLLECTION ========== */
.collection {
  padding: 4rem 0;
  background: white;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.product-card {
  background: var(--bg-light);
  border-radius: 32px;
  overflow: hidden;
  transition: var(--transition);
}
.product-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.product-info {
  padding: 1.5rem;
}
.price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: var(--primary-dark);
}

/* ========== PROCESS + MISSION ========== */
.process-mission {
  padding: 4rem 0;
  background: var(--accent-light);
}
.two-col-reverse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.steps-block {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.mission-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.mission-stats div {
  background: white;
  padding: 0.6rem 1rem;
  border-radius: 60px;
}

/* ========== GALLERY + TESTIMONIALS ========== */
.gallery-testimonials {
  padding: 4rem 0;
}
.hybrid-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.gallery-mini {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
.gallery-mini img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 24px;
}
.testimonials-compact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.testi-card {
  background: white;
  padding: 1.5rem;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.testi-card i {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* ========== ORDER BLOCK ========== */
.order-block {
  padding: 4rem 0;
  background: white;
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.order-visual img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.usp-floating {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  background: var(--accent-light);
  padding: 1rem;
  border-radius: 60px;
  gap: 1rem;
  flex-wrap: wrap;
}
.usp-floating span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark);
}
.order-form-wrapper {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 32px;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.form-group input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  font-family: inherit;
  transition: 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,143,122,0.2);
}
.checkbox-group {
  margin: 1.5rem 0;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
}
.checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--primary);
  border-radius: 6px;
  display: inline-block;
  position: relative;
}
.custom-checkbox input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 0px;
  left: 4px;
  color: var(--primary-dark);
  font-weight: bold;
}
.form-note {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 1rem;
}

/* ========== FAQ + ABOUT ========== */
.faq-about {
  padding: 4rem 0;
  background: var(--accent-light);
}
.accordion-item {
  background: white;
  border-radius: 20px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  background: white;
  padding: 1.7rem;
  text-align: left;
  font-weight: 900;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s;
}
.accordion-header:hover {
  background: #f9f9f9;
}
.accordion-header i {
  transition: transform 0.3s ease;
}
.accordion-content {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-content.active {
  max-height: 300px;
  padding: 0 1.2rem 1.2rem;
}
.about-creative {
  background: white;
  padding: 2rem;
  border-radius: 32px;
}
.about-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.about-icons div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  padding: 0.6rem 1.2rem;
  border-radius: 60px;
  font-size: 0.9rem;
  font-weight: 500;
}
.about-icons i {
  color: var(--primary);
}

/* ========== FOOTER ========== */
.footer {
  background: #1e2a2b;
  color: #cbd5e1;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}
.disclaimer-text {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* ========== COOKIE ========== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1e2a2b;
  color: white;
  padding: 1rem 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cookie-consent.show {
  transform: translateY(0);
}
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
}
.cookie-content a {
  color: var(--accent);
  text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero-grid, .two-col-grid, .two-col-reverse-grid, .order-grid, .hybrid-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
  .collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .about-icons {
    justify-content: center;
  }
}