/* --------------------------------------------------
   Radiant Jet Cuisine – "nature_organic" CSS Style
   Author: Professional CSS/UI Expert
   Flexbox-Only Responsive CSS
-----------------------------------------------------*/
/* ---- 1. RESET & NORMALIZE ---- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F6F7F1;
  color: #233018;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #33691E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1b3a0c;
  outline: none;
}
strong, b {
  font-weight: 600;
}
/* Remove tap highlight on mobile */
*:focus { outline: 2px solid #464B29; }
input, button, textarea, select {
  font-family: inherit;
}
ul, ol {
  margin-left: 1.5em;
}
/* ---- 2. TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #233018;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
p, ul, ol { font-size: 1rem; margin-bottom: 16px; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
}
/* ---- 3. GLOBAL SPACING ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(51, 105, 30, 0.11);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.feature {
  background: #F0EEE3;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(34,49,24,0.12);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.feature:hover {
  box-shadow: 0 6px 20px rgba(38,51,22,0.12);
  transform: translateY(-4px) scale(1.035);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 7px;
  filter: saturate(1.3) brightness(1.1) drop-shadow(0 2px 4px #c9cfa7); /* organic pop */
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 1000px) {
  .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 24px;
  }
  .feature, .card {
    min-width: 0;
  }
}
/* ---- 4. ORGANIC BUTTONS & CTA ---- */
.cta-button {
  background: #33691E;
  color: #fff !important;
  padding: 14px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  border: none;
  border-radius: 30px 22px 30px 22px / 22px 30px 22px 30px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(51,105,30,0.08);
  letter-spacing: 0.02em;
  font-weight: 700;
  transition: background 0.22s, color 0.22s, box-shadow 0.19s, transform 0.18s;
  display: inline-block;
  margin-top: 6px;
}
.cta-button:hover, .cta-button:focus {
  background: #233018;
  color: #FFD600 !important;
  box-shadow: 0 6px 20px rgba(51,105,30,0.14);
  transform: translateY(-2px) scale(1.02);
}
button, .button {
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.17s, color 0.2s;
  border-radius: 22px;
}
/* ---- 5. HEADER & NAVIGATION ---- */
header {
  background: #FEFFF9;
  box-shadow: 0 3px 18px rgba(51, 105, 30, 0.07);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 20;
}
header nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #37474F;
  padding: 10px 16px;
  border-radius: 18px;
  transition: background 0.19s, color 0.13s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: #E6ECD9;
  color: #33691E;
}
header nav > a img {
  width: 60px;
  height: auto;
  border-radius: 16px;
  background: #F0EEE3;
  padding: 4px;
  margin-right: 6px;
  box-shadow: 0 1px 3px rgba(51, 105, 30, 0.08);
}
header .cta-button {
  margin-left: 8px;
  font-size: 1.02rem;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(255, 214, 0, 0.06);
}
/* ---- BURGER MENU (Mobile) ---- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2.2rem;
  color: #33691E;
  padding: 8px 12px;
  border: none;
  z-index: 150;
  position: relative;
  transition: color 0.19s, background 0.19s;
  border-radius: 16px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E7F4D0;
  color: #233018;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #F6F7F1;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.63,.11,.43,1.13), opacity 0.17s;
  box-shadow: 0 2px 30px rgba(34,49,24,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #33691E;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  padding: 4px 10px;
  transition: background 0.14s;
  border-radius: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E6ECD9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: flex-start;
  padding: 44px 30px 0 30px;
  font-size: 1.15rem;
}
.mobile-nav a {
  color: #33691E;
  font-weight: 600;
  padding: 11px 8px;
  border-radius: 12px;
  width: 100%;
  transition: background 0.17s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D8E1C7;
  color: #37474F;
}
@media (max-width: 1024px) {
  header nav ul, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
/* ---- 6. HERO SECTION ---- */
.hero {
  background: #E3F2D0 url('../assets/hero-organic-bg.svg') repeat-x center bottom;
  background-size: cover;
  border-radius: 0 0 38px 38px / 0 0 60px 60px;
  margin-bottom: 48px;
  box-shadow: 0 7px 36px rgba(51,105,30,0.10);
  padding-top: 30px;
  padding-bottom: 64px;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  max-width: 700px;
}
.hero h1 {
  color: #33691E;
  margin-bottom: 16px;
}
.hero p {
  color: #37474F;
  font-size: 1.22rem;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 20px 20px / 0 0 36px 36px;
    padding-bottom: 36px;
    min-height: 180px;
  }
  .hero .content-wrapper {
    padding: 0 2px;
  }
}
/* ---- 7. TESTIMONIAL CARDS ---- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 2px solid #e9f5d3;
  border-radius: 22px;
  box-shadow: 0 3px 18px rgba(34,49,24,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border-color 0.18s;
  color: #233018;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #37474F;
  margin-right: 8px;
  flex: 1 1 0;
}
.testimonial-card strong {
  color: #33691E;
}
.testimonial-card span {
  color: #FFD600;
  margin-left: 10px;
  font-size: 1.15rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px rgba(51,105,30,0.17);
  border-color: #cfd8a2;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
  }
}
/* ---- 8. FOOTER ---- */
footer {
  background: #EFF5EB;
  color: #37474F;
  box-shadow: 0 -2px 18px rgba(51,105,30,0.06);
  margin-top: auto;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 18px 0 4px 0;
}
footer nav a {
  color: #33691E;
  padding: 7px 13px;
  border-radius: 12px;
  transition: background 0.18s, color 0.13s;
  font-size: 1rem;
  font-weight: 500;
}
footer nav a:hover, footer nav a:focus {
  background: #D8E1C7;
  color: #233018;
}
.footer-info {
  text-align: center;
  font-size: 0.94rem;
  color: #6B7B67;
  padding: 10px 0 14px 0;
}
/* ---- 9. LISTS & FORMS ---- */
ul, ol {
  margin-bottom: 20px;
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 9px;
  line-height: 1.55;
}
/* ---- 10. ORGANIC ACCENTS & EFFECTS ---- */
.section {
  background: #FEFFF9;
  border-radius: 22px 30px 24px 17px / 24px 18px 30px 22px;
  box-shadow: 0 2px 15px rgba(51,105,30,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    border-radius: 14px 24px 14px 18px / 16px 12px 24px 20px;
    margin-bottom: 36px;
    padding: 24px 6px;
  }
}
/* ---- 11. LOCATION MAP (Contact) ---- */
.location-map {
  background: #F0EEE3;
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 10px;
  font-size: 1rem;
  color: #37474F;
  box-shadow: 0 1px 8px rgba(76,93,71,0.05);
}
.location-map em { color: #33691E; }
/* ---- 12. COOKIE CONSENT BANNER ---- */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  z-index: 8000;
  background: #fffbe6;
  border-top: 2px solid #cfd8a2;
  box-shadow: 0 -6px 24px rgba(47,86,14,0.09);
  padding: 20px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  animation: cookiefadein 0.6s cubic-bezier(.63, .09, .46, 1.1);
}
@keyframes cookiefadein { from { opacity: 0; bottom: -80px; } to { opacity: 1; bottom: 0; } }
.cookie-consent-banner .cookie-message {
  font-size: 1.02rem;
  color: #37474F;
  flex: 1 1 auto;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-consent-banner button {
  font-size: 0.98rem;
  padding: 9px 19px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #33691E;
  color: #fff;
  transition: background 0.19s, color 0.13s;
  margin: 0;
}
.cookie-consent-banner button.cookie-reject {
  background: #37474F;
  color: #fdfbeb;
}
.cookie-consent-banner button.cookie-settings {
  background: #FFD600;
  color: #33691E;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #233018;
  color: #FFD600;
}
.cookie-consent-banner button.cookie-settings:hover, .cookie-consent-banner button.cookie-settings:focus {
  background: #F0EEE3;
  color: #37474F;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 4px;
  }
  .cookie-consent-banner .cookie-buttons {
    gap: 7px;
  }
}
/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(43,56,16,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FEFFF9;
  border-radius: 24px;
  padding: 34px 28px 26px 28px;
  min-width: 320px;
  max-width: 97vw;
  box-shadow: 0 7px 32px rgba(41,75,19,0.13);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieslidein 0.45s cubic-bezier(.6, .28, .5, 1.15);
}
@keyframes cookieslidein { from {transform: translateY(80px); opacity: 0;} to {transform: translateY(0); opacity: 1;} }
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: #33691E;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: #37474F;
}
.cookie-category input[type="checkbox"] {
  accent-color: #33691E;
  width: 19px;
  height: 19px;
}
.cookie-category .essential {
  color: #37474F;
  font-weight: 600;
  margin-left: 7px;
  font-size: 1.04rem;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: #EFF5EB;
  color: #33691E;
  padding: 7px 20px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #E6ECD9;
  color: #233018;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 14px 6px 18px 7px;
    min-width: 0;
  }
  .cookie-modal h2 { font-size: 1.07rem; }
}
/* ---- 13. ACCORDION & MICRO-INTERACTIONS ---- */
/* (Not specifically used, but apply smooth transitions to all domain elements) */
*:not(.cookie-consent-banner) button, .button, nav a, .feature, .card, .testimonial-card {
  transition-property: box-shadow, background, color, border-color, transform;
  transition-duration: 0.17s;
  transition-timing-function: cubic-bezier(.72,0,.44,1.22);
}
/* ---- 14. RESPONSIVE UTILITY ---- */
@media (max-width: 600px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .footer-info, footer nav { font-size: 0.94rem; }
}
/* ---- 15. ACCESSIBILITY FOCUS ---- */
a:focus-visible, button:focus-visible, .cta-button:focus-visible {
  outline: 3px solid #FFD600 !important;
  outline-offset: 3px;
  background: #EFF5EB;
  color: #233018 !important;
}
/* ---- 16. ORGANIC DECORATION ---- */
section:not(.hero), footer, header {
  position: relative;
}
section:not(.hero)::before {
  content: "";
  position: absolute;
  top: -14px; left: -22px;
  width: 60px; height: 36px;
  background: url('../assets/leaves-organic.svg') no-repeat center center/contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
section:not(.hero)::after {
  content: "";
  position: absolute;
  bottom: -9px; right: -14px;
  width: 48px; height: 28px;
  background: url('../assets/leaf-corner.svg') no-repeat center center/contain;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 600px) {
  section:not(.hero)::before, section:not(.hero)::after {
    display: none;
  }
}
/* ---- 17. UTILITY CLASSES ---- */
.hide-mobile { display: block; }
.show-mobile { display: none; }
@media (max-width: 700px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
}
/* ---- 18. PRINT STYLES ---- */
@media print {
  .cookie-consent-banner, .cookie-modal-overlay, .mobile-menu, .mobile-menu-toggle, .cta-button { display: none !important; }
}
/* ---- 19. SPECIAL COMPONENTS ---- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
/* ---- 20. Z-INDEX LAYERING ---- */
header, .mobile-menu { z-index: 200; }
.cookie-consent-banner { z-index: 8000; }
.cookie-modal-overlay { z-index: 9999; }
/* ------------------------------------ END ------------------------------------ */
