/* RESET AND BASE STYLES */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F0E9DA;
  color: #244C3C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; border-radius: 12px; }
a { color: #96672A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #B58B56; text-decoration: underline; }
ul, ol { padding-left: 1.25em; margin-bottom: 1em; }
li { margin-bottom: 0.4em; }
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #244C3C;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 { font-size: 2.2rem; margin-bottom: 24px; }
h2 { font-size: 1.7rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
p { margin-bottom: 1em; }
strong { font-weight: 700; }
button, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  outline: none;
  border: none;
  border-radius: 24px;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, color 0.25s, border 0.2s;
  margin: 8px 8px 8px 0;
  box-shadow: 0 2px 15px rgba(36,76,60,0.10);
  display: inline-block;
}
.btn-primary, a.btn-primary {
  background: #244C3C;
  color: #F8F6F1;
  font-weight: 700;
}
.btn-primary:hover, .btn-primary:focus {
  background: #B58B56;
  color: #FFF;
  box-shadow: 0 6px 20px rgba(150,103,42,0.15);
}
.btn-secondary {
  background: #fff;
  color: #244C3C;
  border: 2px solid #B58B56;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B58B56;
  color: #fff;
}
::-webkit-input-placeholder { color: #a19785; }
::-moz-placeholder { color: #a19785; }
:-ms-input-placeholder { color: #a19785; }
::placeholder { color: #a19785; }

/* CONTAINER AND LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-section { background: #F0E9DA; box-shadow: none; }
.text-section h2, .text-section h3 { color: #B58B56; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 15px rgba(36,76,60,0.10);
  position: relative;
  padding: 24px 20px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(36,76,60,0.08);
  padding: 20px;
  margin-bottom: 20px;
  color: #244C3C;
  min-width: 220px;
  max-width: 420px;
  flex: 1 1 220px;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #244C3C;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  color: #96672A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff8ee;
  padding: 22px 20px;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(230,193,144,0.08);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}
footer {
  background: #244C3C;
  color: #F0E9DA;
  border-radius: 32px 32px 0 0;
  margin-top: 50px;
  padding: 48px 0 24px;
}
footer .container {
  max-width: 1200px;
}
footer img { background: none; border-radius: 0; }
footer nav a {
  color: #F0E9DA;
  font-size: 1rem;
  margin-right: 24px;
  opacity: 0.88;
  transition: opacity 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: #B58B56;
  opacity: 1;
}
footer address,
footer small {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  color: #d6ccba;
  font-style: normal;
}
footer address img { vertical-align: middle; margin-right: 8px; width: 22px; height: 22px; display: inline-block; }
footer small { display: block; text-align: center; padding-top: 24px; opacity: 0.75; }

/* HEADER AND NAV */
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(36,76,60,0.05);
  border-radius: 0 0 32px 32px;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  min-height: 72px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #244C3C;
  font-size: 1.06rem;
  font-weight: 500;
  border-radius: 22px;
  padding: 6px 16px;
  margin-right: 0;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #fbf7ef;
  color: #B58B56;
}
.main-nav .btn-primary {
  margin-left: 10px;
  margin-right: 0;
  color: #fff;
  font-size: 1rem;
  padding: 8px 22px;
}
header img {
  max-height: 55px;
  margin-right: 18px;
}
/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  background: #96672A;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 8px rgba(150,103,42,0.08);
  transition: background .18s;
  cursor: pointer;
  z-index: 110;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #244C3C;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #244C3C;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.6,0,.25,1);
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 24px 12px 0;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  z-index: 130;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #B58B56;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px 32px 18px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 600;
  background: none;
  border: none;
  margin: 0;
  padding: 10px 6px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  min-width: 180px;
  display: block;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #B58B56;
  color: #fff9f4;
}
.mobile-nav a.btn-primary {
  background: #B58B56;
  color: #fff;
  margin-top: 16px;
  text-align: center;
  width: fit-content;
  align-self: start;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ----- Spacing & Cards for All Sections ----- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-child {
  margin-bottom: 0;
}
ul, ol {
  padding-left: 1.4em;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* --- SPECIAL CLASSES FOR ADVANTAGES LISTS --- */
ul li img {
  vertical-align: middle;
  margin-right: 10px;
  width: 26px;
  height: 26px;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbea;
  color: #244C3C;
  box-shadow: 0 -2px 12px rgba(36,76,60,0.09);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 32px 24px 24px;
  border-radius: 24px 24px 0 0;
  opacity: 1;
  transition: opacity 0.5s, bottom 0.5s;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  bottom: -350px;
  pointer-events: none;
}
.cookie-banner p {
  color: #244C3C;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  min-width: 120px;
  font-size: 1rem;
  padding: 10px 22px;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 210;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,76,60, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  flex-direction: column;
  transition: opacity 0.3s;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
.cookie-modal .modal-content {
  background: #fffbea;
  color: #244C3C;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(36,76,60,0.20);
  min-width: 320px;
  max-width: 420px;
  padding: 36px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal h2 {
  color: #B58B56;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.cookie-modal .cookie-category {
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-modal .cookie-category input[type="checkbox"] { accent-color: #B58B56; }
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #244C3C;
}
.cookie-modal .cookie-category .essential {
  color: #a19785;
  font-size: 0.98rem;
  margin-left: 6px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  width: 100%;
  margin-top: 18px;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary {
  min-width: 110px;
}

/* --- Responsive Layouts & Media Queries --- */
@media (max-width: 1024px) {
  .container { max-width: 94vw; }
  .footer-grid { flex-direction: column; gap: 16px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
  .container { max-width: 98vw; padding-left: 8px; padding-right: 8px; }
  .content-wrapper { padding: 28px 8px; }
  section { padding: 32px 0; }
}
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  .footer-grid { flex-direction: column; gap: 22px; }
  .content-wrapper { padding: 20px 6px; }
  section { padding: 20px 0; }
  .testimonial-card {
    max-width: 98vw;
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 680px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1rem; }
  .footer-grid { gap: 10px; }
  .cookie-modal .modal-content {
    padding: 18px 8px 18px 8px;
    max-width: 95vw;
  }
}
@media (max-width: 560px) {
  .container { padding: 0 3vw; }
  .content-wrapper { padding: 12px 2px; border-radius: 14px; }
  section { margin-bottom: 32px; }
  .testimonial-card { padding: 14px 4px; border-radius: 15px; }
  .section { padding: 18px 0; margin-bottom: 32px; }
  .cookie-banner { padding: 18px 2px 15px; border-radius: 11px 11px 0 0; }
}
/* FLEXBOX ORIENTATIONS */
@media (max-width: 900px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* --- Accessibility Focus States --- */
a:focus, .btn-primary:focus, .btn-secondary:focus, button:focus, input:focus { outline: 2px solid #B58B56; outline-offset: 1px; }

/* --- Animations and Transitions --- */
.section, .content-wrapper, .card, .testimonial-card {
  transition: box-shadow 0.24s, background 0.19s, transform 0.22s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 6px 36px rgba(150,103,42,0.08);
  transform: translateY(-3px) scale(1.012);
}
.btn-primary, .btn-secondary {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.16s;
}
.btn-primary:active, .btn-secondary:active { transform: scale(0.97); }

/* --- Miscellaneous --- */
address { font-style: normal; line-height: 1.4; margin-bottom: 16px; }
.business-hours { color: #B58B56; font-size: 1.02rem; margin-top: 2px; }

/* --- Util Classes if Needed --- */
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 24px; }

/* --- Hide Elements by Utility Class --- */
.hide { display: none !important; }

/* --- FORMS (if any on contact) --- */
input, textarea, select {
  font-family: 'Montserrat', Arial, sans-serif;
  border: 1px solid #e9e3d7;
  border-radius: 12px;
  padding: 12px 10px;
  margin-top: 6px;
  margin-bottom: 18px;
  width: 100%;
  font-size: 1rem;
  background: #fff;
  color: #244C3C;
  box-shadow: 0 1px 8px rgba(230,193,144,0.03);
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #B58B56;
  outline: none;
}

/* --- End of Style File --- */

