/* === RESET & BASE STYLES === */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #23301a;
  background-color: #F3F1EE;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #213554;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #3d6e2e;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #213554;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }

/* === COLOR PALETTE === */
:root {
  --primary: #213554;
  --secondary: #E79A3D;
  --accent: #F3F1EE;
  --green: #3d6e2e;
  --earth: #e8dac1;
  --brown: #9e7e5e;
  --beige: #fbf8f3;
  --white: #fff;
  --shadow: 0 3px 12px rgba(33, 53, 84, 0.07), 0 1.5px 6px rgba(61,110,46,0.03);
}

/* === TYPOGRAPHY SCALE & HIERARCHY === */
.section h1, .section h2, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--primary);
}

p, li {
  font-size: 1rem;
  color: #23301a;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--beige);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .section {
    padding: 24px 6vw;
    margin-bottom: 32px;
  }
  .container {
    padding: 0 4vw;
  }
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(33, 53, 84, 0.04);
  position: relative;
  z-index: 30;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 6px;
  border-radius: 12px;
  transition: background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--earth);
  color: var(--green);
}
.button.primary {
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 32px;
  border-radius: 28px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 2px 6px rgba(61, 110, 46, 0.10);
  transition: background 0.18s, color .2s, box-shadow 0.2s;
  cursor: pointer;
  margin-left: 14px;
  border: none;
}
.button.primary:hover, .button.primary:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 5px 18px rgba(61, 110, 46,0.12);
}
.button.secondary {
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 32px;
  border-radius: 28px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 2px 6px rgba(61, 110, 46, 0.10);
  transition: background 0.18s, color .2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--green);
  color: var(--beige);
  box-shadow: 0 5px 18px rgba(230,154,61,0.12);
}

/* --- Burger Menu --- */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 91;
  background: var(--secondary);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: none;
  cursor: pointer;
  margin-left: auto;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--green);
  color: #fff;
}

@media (max-width: 998px) {
  .main-nav, .header-top .button.primary { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .header-top img {
    max-width: 136px;
  }
  .header-top {
    gap: 6px;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  background: var(--beige);
  width: 84vw;
  max-width: 340px;
  height: 100vh;
  box-shadow: -4px 0 22px rgba(33,53,84,0.20);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.75,.06,.29,.95);
  padding: 0 0 30px 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  margin: 22px 10px 8px 0;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-left: 32px;
  margin-top: 22px;
}
.mobile-nav a {
  font-size: 1.12rem;
  color: var(--green);
  font-weight: 600;
  padding: 10px 0 10px 0;
  border-radius: 14px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--earth);
  color: var(--primary);
}
@media (min-width: 999px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* === HERO SECTION === */
.hero {
  width: 100%;
  display: flex;
  background: linear-gradient(120deg, var(--earth) 55%, var(--beige) 100%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 10px 26px rgba(33, 53, 84, 0.05);
  margin-bottom: 40px;
  min-height: 300px;
}
.hero .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: center;
  gap: 16px;
  padding: 42px 0 36px 0;
}
.hero h1 {
  color: var(--green);
  font-size: 2.2rem;
}
.hero p {
  margin: 18px 0 20px 0;
  font-size: 1.18rem;
  color: #32522b;
}
@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 26px 26px;
    margin-bottom: 18px;
    min-height: unset;
  }
  .hero .content-wrapper {
    padding: 24px 0 18px 0;
  }
}

/* === FEATURES, CARDS & FLEX LAYOUTS === */
.features .feature-grid, .services .service-list, .cuisine-list .country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin: 32px 0 0 0;
}
.features .feature-grid li, .services .service-list li, .cuisine-list .country-grid li {
  background: var(--beige);
  border-radius: 18px 38px 18px 38px;
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.15s;
  position: relative;
  overflow: visible;
  border: 1.5px solid var(--earth);
}
.features .feature-grid li:hover, .services .service-list li:hover, .cuisine-list .country-grid li:hover  {
  box-shadow: 0 8px 34px rgba(61,110,46,.10);
  transform: translateY(-3px) scale(1.03);
}
.features .feature-grid li img,
.services .service-list li img,
.cuisine-list .country-grid li img {
  width: 38px;
  margin-bottom: 12px;
  background: var(--earth);
  padding: 8px;
  border-radius: 18px;
}
.features .feature-grid h3,
.services .service-list h3,
.cuisine-list .country-grid h3 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.features .feature-grid p, .services .service-list p {
  color: #32522b;
  font-size: 1rem;
  margin-bottom: 10px;
}
.services .service-list li strong {
  color: var(--green);
  font-size: 1.08rem;
}

@media (max-width: 900px) {
  .features .feature-grid, .services .service-list, .cuisine-list .country-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features .feature-grid li, .services .service-list li, .cuisine-list .country-grid li {
    min-width: 0;
  }
}

/* === TESTIMONIALS === */
.testimonials {
  margin: 0 0 60px 0;
  padding: 40px 0 20px 0;
  background: var(--beige);
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 28px;
  margin-bottom: 20px;
  margin-right: 0;
  background: var(--earth);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(33,53,84,0.08);
  border: 1px solid #d8c8aa;
  position: relative;
  color: #1e2930;
  font-size: 1.12rem;
  max-width: 540px;
  transition: box-shadow .16s;
}
.testimonial-card p {
  color: #213554;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--green);
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(33,53,84,0.13);
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 16px 14px;
    font-size: 1rem;
  }
}

/* === ABOUT, INFO, POLICIES, PHILOSOPHY SECTIONS === */
.team ul,
.philosophy ul,
.insights ul,
.story-snippets ul,
.stories ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 16px 0 0 0;
  width: 100%;
}
.team ul li, .philosophy ul li, .insights ul li,
.story-snippets ul li, .stories ul li {
  background: var(--earth);
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: 0 2px 7px rgba(33,53,84,0.03);
  color: #1e2930;
}
@media (max-width: 650px) {
  .team ul li, .philosophy ul li,
  .insights ul li, .story-snippets ul li, .stories ul li {
    padding: 12px 10px;
    font-size: 1rem;
  }
}

/* === CTA/NEWSLETTER === */
.cta, .newsletter {
  background: var(--primary);
  color: var(--white);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(33,53,84,0.09);
}
.cta .content-wrapper, .newsletter .content-wrapper {
  align-items: center;
}
.cta h2, .newsletter h2 {
  color: var(--secondary);
}
.cta p, .newsletter p, .newsletter li {
  color: var(--beige);
  font-size: 1.08rem;
}
.newsletter ul {
  list-style: none;
  gap: 8px;
  margin: 18px 0 18px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.newsletter li:before {
  content: '✔';
  color: var(--secondary);
  display: inline-block;
  margin-right: 7px;
}

/* === CONTACT DETAILS === */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.08rem;
  margin-top: 24px;
  padding-left: 0;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--earth);
  border-radius: 12px;
  padding: 13px 18px;
  box-shadow: 0 1.5px 5px rgba(33,53,84,0.03);
}
.contact-details ul img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
@media (max-width: 600px) {
  .contact-details ul li {
    padding: 9px 10px;
    font-size: 1rem;
  }
}

/* === FOOTER === */
footer {
  background: var(--beige);
  margin-top: 60px;
  border-top: 2px solid var(--earth);
  padding: 0 0 8px 0;
}
footer section {
  padding: 26px 0 0 0;
  margin: 0;
  background: none;
}
.footer-nav {
  display: flex;
  gap: 26px;
  justify-content: flex-end;
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.footer-nav a {
  color: var(--primary);
  opacity: .7;
  transition: color .15s, opacity .11s;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--green); opacity: 1; }
.brand-footer {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  border-radius: 18px;
  background: var(--earth);
  padding: 16px 36px 12px 24px;
  box-shadow: 0 2px 10px rgba(33,53,84,0.03);
}
.brand-footer img {
  width: 80px;
}
.footer-brand-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: .97rem;
  color: #23301a;
  max-width: 290px;
}
.footer-brand-info a {
  color: var(--green);
  text-decoration: underline dotted;
  opacity: .8;
}
.footer-brand-info a:hover, .footer-brand-info a:focus { color: var(--secondary); opacity: 1; }
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-links a img { width: 30px; padding: 3px; border-radius: 8px; transition: background .14s; }
.social-links a:hover img, .social-links a:focus img {
  background: var(--secondary);
}
@media (max-width: 900px) {
  .brand-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 10px 10px 12px;
  }
  .footer-nav { justify-content: flex-start; gap: 16px; }
}

/* === THANK YOU CONFIRMATION === */
.thank-you-confirmation, .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--beige);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

/* === MODAL GENERIC OVERLAY === */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33, 53, 84, 0.32);
  z-index: 1201;
  display: none;
  flex-direction: column;
}
.modal-backdrop.active {
  display: flex;
  animation: fadeInModalBg .22s cubic-bezier(.75,.06,.29,.95);
}
@keyframes fadeInModalBg {
  from { opacity: 0; } to { opacity: 1; }
}

.modal {
  background: var(--beige);
  border-radius: 20px;
  box-shadow: 0 8px 42px rgba(33,53,84,0.17);
  max-width: 400px;
  margin: auto;
  padding: 24px 26px 22px 26px;
  position: relative;
  z-index: 1203;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  animation: slideDownModal .29s cubic-bezier(.71,.18,.17,.96);
}
@keyframes slideDownModal {
  from { transform: translateY(-30px); opacity: 0; } to { transform: none; opacity: 1; }
}
.modal .modal-close {
  position: absolute;
  top: 18px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.6rem;
  cursor: pointer;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  z-index: 2000;
  background: var(--earth);
  border-top: 2px solid var(--secondary);
  box-shadow: 0 -2px 17px rgba(33,53,84,0.10);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 22px 12vw 22px 12vw;
  font-size: 1rem;
  color: #213554;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.65,.18,.29,.95), box-shadow .15s;
  opacity: 1;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner-message {
  flex: 1 1 340px;
  max-width: 700px;
}
.cookie-banner-actions {
  display: flex;
  gap: 19px;
  align-items: center;
}
.cookie-banner button, .modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 24px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 2px 9px rgba(33,53,84,0.06);
  font-size: 1.11rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--green);
  color: var(--white);
  margin-right: 0;
  transition: background .18s, color .16s, box-shadow .16s;
}
.cookie-banner .button.reject,
.modal .button.reject {
  background: #d47a52;
  color: #fff;
}
.cookie-banner button.settings,
.modal .button.settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner button:focus,
.cookie-banner button:hover,
.modal button:focus,
.modal button:hover {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 17px rgba(61,110,46,0.13);
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 4vw 18px 5vw;
    gap: 14px;
    font-size: .99rem;
  }
  .cookie-banner-actions {
    gap: 9px;
  }
}

.cookie-modal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: var(--green);
  margin-top: 4px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 3px 0 0 0;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #29562d;
  cursor: pointer;
}
.cookie-category input[type='checkbox'] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--green);
  border-radius: 6px;
  background: var(--earth);
  margin-right: 5px;
  position: relative;
  outline: none;
  cursor: pointer;
}
.cookie-category input[type='checkbox']:checked {
  background: var(--green);
  border-color: var(--green);
}
.cookie-category input[type='checkbox']:checked:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin: 5px auto;
  background: var(--secondary);
  border-radius: 2px;
}
.cookie-category .desc {
  color: #4c4c3d;
  margin-left: 7px;
  font-size: 0.95rem;
}
.cookie-modal .cookie-hint {
  font-size: 0.96rem;
  color: #6a5d43;
  margin-bottom: 10px;
}

/* === TRANSITIONS & MICRO-INTERACTIONS === */
.button, .button.primary, .button.secondary, a, .main-nav a, .mobile-nav a {
  transition: background 0.19s, color 0.17s, box-shadow .16s, transform .12s;
}
section, .card, .card-container, .content-grid, .testimonial-card {
  transition: box-shadow 0.18s, background 0.18s;
}

/* === FLEX UTILITY CLASSES (MANDATORY ALIGNMENT) === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: var(--earth);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .features .feature-grid, .service-list, .cuisine-list .country-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* === SPACING: ENSURE GAPS BETWEEN CARDS & CONTENT === */
section, .section, .features, .testimonials, .newsletter, .cta, .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use, .thank-you-confirmation {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  section, .section, .features, .testimonials, .newsletter, .cta, .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use, .thank-you-confirmation {
    margin-bottom: 30px;
    padding: 14px 0;
  }
}

/* === ORGANIC SHAPES & TEXTURES === */
.section, .card, .testimonial-card, .newsletter, .feature-item, .about-preview, .cta, .cookie-banner, .modal {
  border-radius: 26px 48px 26px 38px;
  background-image: repeating-linear-gradient(120deg, transparent, transparent 62px, rgba(222, 201, 170, 0.06) 64px, transparent 67px);
}

/* -- Subtle Leaf/Organic Accent Under Headings -- */
h2, .newsletter h2, .testimonials h2, .cta h2, .services h2, .hero h1{
  position: relative;
  z-index: 1;
}
h2:after, .newsletter h2:after, .testimonials h2:after, .cta h2:after, .services h2:after, .hero h1:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 115%;
  width: 56px;
  height: 18px;
  background: url('../assets/icons/organic-leaf.svg') no-repeat center center/contain;
  opacity: 0.17;
  pointer-events: none;
}

/* === RESPONSIVE FONTS === */
@media (max-width: 400px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .button, .button.primary, .button.secondary {
    font-size: .98rem;
    padding: 9px 18px;
  }
}

/* === CUSTOM SCROLLBAR (NATURE STYLE) === */
::-webkit-scrollbar {
  width: 10px;
  background: var(--earth);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 9px;
  border: 2px solid var(--earth);
}

/* === HIDE SKIP-TO-CONTENT/DEFAULT: ACCESSIBILITY === */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 0; top: 0; background: #fff; color: #000; z-index: 1202; padding: 8px 12px 10px; border-radius: 8px; }

/* === PRINT: BASE STYLES === */
@media print {
  header, footer, .cookie-banner { display: none !important; }
  main { padding: 0; }
  .section, .hero { box-shadow: none; background: #fff; }
}
