/* CSS RESET & NORMALIZATION */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  height: 100%;
  scroll-behavior: smooth;
  background: #F9F6F0;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  color: #23402f;
  background: #F9F6F0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}
a {
  color: #d76a39;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #355742;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1.3em;
}
li {
  margin-bottom: 8px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #23402f;
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
p {
  font-size: 1.09rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}

/* CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 16px rgba(213, 134, 108, 0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  background: none;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 32px;
  padding: 0;
}

@media (max-width: 768px) {
  .section {
    padding: 24px 5vw;
  }
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 7px rgba(53, 87, 66, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.main-nav a {
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  color: #355742;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F9F6F0;
  color: #d76a39;
}
.cta-primary {
  background: #d76a39;
  color: #fff !important;
  border-radius: 32px;
  padding: 8px 22px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  box-shadow: 0 2px 8px rgba(53, 87, 66, 0.12);
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #23402f;
  color: #fff;
  box-shadow: 0 4px 16px rgba(53, 87, 66, 0.20);
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  background: #F9F6F0;
  color: #d76a39 !important;
  border-radius: 32px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(213, 134, 108, 0.14);
  margin-top: 12px;
  border: 2px solid #d76a39;
  transition: background 0.18s, color 0.18s, border 0.18s, transform 0.12s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #d76a39;
  color: #fff !important;
  border-color: #d76a39;
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}
/* Burger menu styles */
.mobile-menu-toggle {
  background: #fff;
  color: #d76a39;
  border: 2px solid #d76a39;
  border-radius: 8px;
  font-size: 2rem;
  padding: 3px 14px 5px;
  cursor: pointer;
  display: none;
  transition: background 0.15s, color 0.15s, border 0.20s;
  z-index: 1202;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #d76a39;
  color: #fff;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(249, 246, 240, 0.97);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  box-shadow: 2px 0 16px rgba(53, 87, 66, 0.10);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #d76a39;
  border: none;
  font-size: 2.2rem;
  margin: 20px 0 0 18px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.15s;
  z-index: 1210;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #23402f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  padding: 34px 18px 18px 36px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 500;
  color: #23402f;
  border-radius: 12px;
  transition: color 0.16s, background 0.16s;
  padding: 8px 10px;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f7dfce;
  color: #d76a39;
}

@media (min-width: 769px) {
  .mobile-menu { display: none; }
}


/* HERO SECTION */
.hero {
  background: linear-gradient(110deg, #f7dfce 0%, #F9F6F0 90%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 5px 16px rgba(213, 134, 108, 0.08);
  padding: 56px 0 42px 0;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.55rem;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #355742;
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 20px 0;
    border-radius: 0 0 20px 20px;
  }
  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}

/* FLEX LAYOUTS & FLEXBOX PATTERNS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid > div {
  background: #fff6ee;
  border-radius: 18px;
  box-shadow: 0 2px 9px rgba(215, 106, 57, 0.11);
  flex: 1 1 275px;
  min-width: 220px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 24px rgba(215,106,57,0.16);
  transform: scale(1.035) translateY(-2px);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 13px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.services {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 8px rgba(53, 87, 66, 0.09);
  border-radius: 18px;
  padding: 25px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(215,106,57,0.15);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid > div {
    min-width: 0;
  }
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
  padding: 0;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 18px 26px;
  background: #fff6ee;
  box-shadow: 0 2px 9px rgba(215, 106, 57, 0.14);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
  color: #23402f;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 7px 20px rgba(53,87,66,0.13);
  transform: scale(1.015) translateY(-1px);
}
.testimonial-card p {
  flex: 1 1 auto;
  font-size: 1.07rem;
  color: #23402f;
  margin-bottom: 4px;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #d76a39;
  margin-left: 16px;
  align-self: flex-end;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    padding: 18px 11px;
    gap: 12px;
  }
}

/* FOOTER */
footer {
  background: #23402f;
  color: #F9F6F0;
  padding: 38px 0 0 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.mini-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px;
}
.mini-nav a {
  color: #fff;
  background: rgba(53,87,66,0.13);
  border-radius: 8px;
  padding: 4px 13px 5px 13px;
  font-size: 0.99rem;
  transition: background 0.16s, color 0.14s;
}
.mini-nav a:hover, .mini-nav a:focus {
  color: #d76a39;
  background: #fff6ee;
}
footer .contact-info {
  font-size: 1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer .contact-info img {
  width: 17px;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 3px;
  display: inline-block;
}
footer .contact-info a {
  color: #d76a39;
  text-decoration: underline;
  margin-left: 0;
}
footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
footer .social-links a {
  background: #fff6ee;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  transition: background 0.17s;
}
footer .social-links a:hover {
  background: #d76a39;
}
.newsletter-signup {
  background: #fff6ee;
  border-radius: 13px;
  padding: 12px 18px;
  margin-bottom: 14px;
  color: #23402f;
}
.newsletter-signup p {
  margin-bottom: 8px;
}
@media (max-width: 800px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* GENERAL BUTTON STYLES */
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 32px;
  padding: 9px 24px;
  background: #d76a39;
  color: #fff;
  margin: 3px 0;
  transition: background 0.18s, box-shadow 0.15s, color 0.15s, transform 0.12s;
  box-shadow: 0 2px 8px rgba(215,106,57,0.09);
  cursor: pointer;
  font-size: 1rem;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #355742;
  color: #fff;
  box-shadow: 0 4px 16px rgba(53, 87, 66, 0.15);
  transform: scale(1.03);
}

/* FORMS (if present in future) */
input, textarea, select {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 14px;
  border: 1.5px solid #d76a39;
  padding: 9px 16px;
  margin-bottom: 15px;
  background: #fff;
  color: #23402f;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #23402f;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff6ee;
  color: #23402f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -6px 22px rgba(53, 87, 66, 0.08);
  padding: 24px 18px 18px 18px;
  z-index: 2005;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.99rem;
  animation: banner-fadein 0.55s cubic-bezier(.53,1.64,.51,.97);
}
@keyframes banner-fadein {
  0% {transform: translateY(110%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  margin-bottom: 0;
  flex: 1 1 180px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-actions button, .cookie-actions .button {
  border-radius: 18px;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 7px 17px;
  background: #d76a39;
  color: #fff;
  border: none;
  transition: background 0.15s, color 0.14s;
}
.cookie-actions .cookie-settings {
  background: #fff;
  color: #d76a39;
  border: 1.5px solid #d76a39;
  margin-left: 8px;
}
.cookie-actions .cookie-settings:hover, .cookie-actions .cookie-settings:focus {
  background: #d76a39;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 6vw;
    gap: 13px;
  }
  .cookie-actions {
    flex-wrap: wrap;
    gap: 14px 0;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(53, 87, 66, 0.18);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadein 0.32s cubic-bezier(.53,1.64,.51,.97);
}
@keyframes modal-fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff6ee;
  color: #23402f;
  border-radius: 22px;
  box-shadow: 0 7px 24px rgba(53,87,66,0.12);
  padding: 38px 27px 28px 27px;
  min-width: 310px;
  max-width: 98vw;
  max-height: 94vh;
  overflow-y: auto;
  position: relative;
  animation: modal-slideup 0.38s cubic-bezier(.71,1.7,.55,.98);
}
@keyframes modal-slideup {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #d76a39;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #23402f;
}
.cookie-modal h2 {
  font-size: 1.40rem;
  margin-bottom: 15px;
}
.cookie-modal ul {
  list-style: none;
  margin: 10px 0 18px 0;
  padding: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.06rem;
  gap: 10px;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: #ececec;
  border-radius: 10px;
  position: relative;
  margin-left: 10px;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-toggle.checked {
  background: #d76a39;
}
.cookie-toggle .toggle-thumb {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.20s cubic-bezier(.33,2,.6,1.03);
}
.cookie-toggle.checked .toggle-thumb {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  border-radius: 15px;
  background: #d76a39;
  color: #fff;
  padding: 7px 15px;
  font-size: 0.99rem;
  font-weight: 600;
}
.cookie-modal-actions .cookie-modal-cancel {
  background: #fff;
  color: #d76a39;
  border: 1.5px solid #d76a39;
}
.cookie-modal-actions .cookie-modal-cancel:hover, .cookie-modal-actions .cookie-modal-cancel:focus {
  background: #d76a39;
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 95vw;
    padding: 18px 6vw 20px 6vw;
  }
  .cookie-modal h2 {
    font-size: 1.12rem;
  }
}

/* MISCELLANEOUS - CARDS, SPACING, AND IMAGE WRAPPING */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section + .section {
  margin-top: 28px;
}

/* Extra whitespace helpers */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-32 { margin-top: 32px !important; }
.gap-16 { gap: 16px !important; }

/* Utility classes for easy spacing on mobile */
@media (max-width: 600px) {
  .mb-20, .mt-20, .mb-32, .mt-32 { margin-bottom: 14px !important; margin-top: 14px !important; }
}

/* Decorative elements or backgrounds (if any, e.g. floral SVG etc) */
/* Add future styles here if design requires */

/* ----------- END CSS ----------- */
