/* 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 {
  font-size: 100%; /* 16px */
  line-height: 1.5;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F3EDE7;
  color: #234F2A;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: break-word;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #234F2A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #B58A66;
  outline-offset: 2px;
}
ul, ol {
  list-style-type: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #234F2A;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.25;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.25rem;
}
p, li, blockquote {
  color: #2A3126;
}
strong, b {
  font-weight: 700;
}
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #B58A66;
  border-left: 4px solid #B58A66;
  padding-left: 16px;
  margin: 20px 0;
}

/* BRAND COLORS AS CSS VARIABLES */
:root {
  --primary: #234F2A;
  --secondary: #B58A66;
  --accent: #F3EDE7;
  --white: #fff;
  --black: #222;
  --shadow: 0 3px 16px rgba(180,125,80,0.08);
  --shadow-strong: 0 4px 20px rgba(35,79,42,0.13);
  --radius-l: 24px;
  --radius: 16px;
  --radius-s: 8px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SPACING AND FLEX LAYOUTS (MANDATORY PATTERNS) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-l);
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.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;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER/NAVIGATION & MOBILE MENU */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 0 0 var(--radius-l) var(--radius-l);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}
.main-nav a img {
  height: 44px;
  width: auto;
  margin-right: 12px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav ul li a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: var(--radius-s);
  transition: background 0.15s, color 0.15s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--secondary);
  color: var(--white);
}
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 1.1rem;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
  cursor: pointer;
  text-align: center;
  box-shadow: var(--shadow);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  margin-left: 14px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow-strong);
}
.btn-secondary {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: var(--white);
}
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  border: none;
  font-size: 2rem;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-s);
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--white);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  padding: 28px 20px 20px 20px;
  transform: translateX(-110%);
  z-index: 1040;
  box-shadow: var(--shadow-strong);
  transition: transform 0.36s cubic-bezier(.44,.09,.65,.99);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  font-size: 2rem;
  background: var(--accent);
  border: none;
  color: var(--primary);
  border-radius: var(--radius-s);
  padding: 4px 12px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.mobile-nav a {
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--primary);
  padding: 12px 6px;
  border-radius: var(--radius-s);
  transition: background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

/* HERO SECTIONS */
.hero {
  background: var(--primary);
  border-radius: var(--radius-l);
  margin-bottom: 60px;
  padding: 48px 0 38px 0;
}
.hero .container,
.hero .content-wrapper {
  color: var(--white);
}
.hero h1, .hero h2 {
  color: var(--white);
}
.hero p {
  color: #E4DBD3;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.hero .btn-primary {
  background: var(--secondary);
  color: var(--white);
  margin-top: 16px;
}
.hero .btn-primary:hover {
  background: var(--white);
  color: var(--primary);
}

/* FEATURES & BENEFITS */
.features, .benefits, .services-teaser, .services {
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
}
.features ul,
.benefits ul,
.services-teaser ul,
.services ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.features ul li,
.benefits ul li,
.services-teaser ul li,
.services ul li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.features ul li img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-s);
  background: var(--accent);
  box-shadow: var(--shadow);
  padding: 5px;
}

/* GENERIC CARDS */
.card {
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px) scale(1.02);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--accent);
  border-radius: var(--radius-l);
  padding: 40px 0 30px 0;
}
.testimonials .content-wrapper {
  gap: 0;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 20px;
  padding: 24px 20px 16px 22px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card strong {
  color: var(--secondary);
  font-family: var(--font-display);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: var(--shadow-strong);
  transform: scale(1.012);
}
.testimonials h2 {
  color: var(--primary);
  margin-bottom: 28px;
}

/* ABOUT, CONTACT, FAQ, TEXT-ONLY SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq ul,
.legal ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq ul li, .legal ul li {
  background: var(--accent);
  border-radius: var(--radius-s);
  padding: 14px 12px;
  color: var(--primary);
  font-size: 1rem;
}
.faq strong, .legal strong {
  color: var(--secondary);
  font-family: var(--font-display);
}

/* CTA BANNER */
.cta-banner {
  background: var(--secondary);
  border-radius: var(--radius-l);
  padding: 40px 0 28px 0;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 18px;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--primary);
  margin-top: 18px;
}
.cta-banner .btn-primary:hover {
  background: var(--primary);
  color: var(--white);
}

/* THANK YOU SECTION */
.thank-you {
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0 28px 0;
}
.thank-you h1 {
  color: var(--secondary);
  margin-bottom: 8px;
}

/* MAP SECTION */
.map {
  background: var(--accent);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0 28px 0;
}

/* LEGAL SECTION */
.legal {
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0 28px 0;
}
.legal h1 {
  color: var(--secondary);
  margin-bottom: 16px;
}


/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  box-shadow: var(--shadow);
  padding: 30px 0 20px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 8px;
}
footer ul li a {
  color: var(--secondary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: color 0.2s;
}
footer ul li a:hover, footer ul li a:focus {
  color: var(--white);
}
footer .brand-signature {
  font-family: var(--font-display);
  color: #F3EDE7;
  letter-spacing: 1px;
  font-size: 1rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 16px;
  z-index: 1100;
  box-shadow: 0 -2px 20px rgba(90,45,12,0.14);
  font-size: 1rem;
  animation: bannerSlideIn 0.5s cubic-bezier(.44,.09,.65,.99);
}
@keyframes bannerSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 220px;
  color: var(--white);
  margin: 0 16px 0 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--font-body);
  border: none;
  border-radius: var(--radius-s);
  padding: 10px 18px;
  margin: 0;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
  color: var(--primary);
  background: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner .cookie-settings-btn {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--white);
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--primary);
  color: var(--accent);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35, 79, 42, 0.67);
  z-index: 1150;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.21s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-strong);
  padding: 30px 28px;
  max-width: 400px;
  width: 94vw;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalAppear 0.23s cubic-bezier(.43,.9,.7,1.8);
}
@keyframes modalAppear {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: var(--secondary);
  margin-bottom: 6px;
  font-size: 1.5rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--secondary);
  border-radius: var(--radius-s);
}
.cookie-modal .essential {
  opacity: 0.65;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  border-radius: var(--radius-s);
  padding: 10px 16px;
  border: none;
  font-weight: 600;
  background: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: background 0.15s;
  font-family: var(--font-body);
}
.cookie-modal .cookie-modal-actions button:hover {
  background: var(--primary);
}
.cookie-modal .close-cookie-modal {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal .close-cookie-modal:hover {
  color: var(--white);
  background: var(--primary);
}

/* MISC/UTILITY CLASSES */
.faq-link a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.17s;
  margin-top: 10px;
}
.faq-link a:hover, .faq-link a:focus {
  color: var(--primary);
}


/********************************************
 *            RESPONSIVENESS                *
 ********************************************/
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
    padding: 0 10px;
  }
}

@media (max-width: 900px) {
  .main-nav ul {
    gap: 12px;
  }
  .main-nav .btn-primary {
    padding: 10px 20px;
    margin-left: 8px;
  }
  .section {
    padding: 28px 10px;
  }
}

@media (max-width: 768px) {
  html { font-size: 98%; }
  .main-nav ul {
    display: none;
  }
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 6px;
    max-width: 99vw;
  }
  .features ul,
  .benefits ul,
  .services-teaser ul,
  .services ul {
    gap: 4px;
  }
  .hero, .cta-banner, .testimonials, .thank-you, .map, .legal {
    margin-bottom: 38px;
    padding: 28px 0 20px 0;
    border-radius: var(--radius);
  }
  .testimonial-card {
    padding: 16px 12px 10px 13px;
  }
  .section {
    margin-bottom: 36px;
    padding: 20px 4px;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer .container, footer .container {
    gap: 8px;
  }
  footer ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.29rem;
  }
  .btn-primary, .btn-secondary {
    padding: 10px 16px;
    font-size: 1rem;
  }
  .cookie-modal {
    padding: 18px 8px;
    font-size: 1rem;
  }
}

/********************************************
 * ACCESSIBILITY AND FOCUS STATES           *
 ********************************************/
:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 1.5px;
}
::-webkit-input-placeholder {
  color: var(--secondary);
  opacity: 0.9;
}
::-moz-placeholder {
  color: var(--secondary);
  opacity: 0.9;
}
:-ms-input-placeholder {
  color: var(--secondary);
  opacity: 0.9;
}
::placeholder {
  color: var(--secondary);
  opacity: 0.93;
}

/********************************************
 *        SMOOTH ANIMATION CLASSES          *
 ********************************************/
.fade-in {
  animation: fadeIn 0.44s ease-out;
}
.slide-in {
  animation: modalAppear 0.33s cubic-bezier(.44,.09,.65,.99);
}

/********************************************
 *        CUSTOM SCROLLBAR/THEME            *
 ********************************************/
::-webkit-scrollbar {
  width: 9px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}

/********************************************
 *        BODY LOADED TRANSITIONS           *
 ********************************************/
body {
  transition: background 0.3s, color 0.22s;
}

/********************************************
 *       END STYLE                          *
 ********************************************/
