/* CSS 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { 
  box-sizing: border-box; 
  font-size: 16px;
}
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.55; background: #fff; color: #24292F; min-height: 100vh; -webkit-font-smoothing: antialiased; font-family: 'Open Sans', Arial, sans-serif; }
img, video { max-width: 100%; height: auto; display:block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color .2s cubic-bezier(.7,.1,.3,1); }
button, input, select, textarea { font: inherit; color: inherit; border: none; outline: none; background: none; }
:focus { outline: 2px solid #6B4F3F; outline-offset: 2px; }

/* FONT IMPORTS (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

:root {
  --primary: #24292F;
  --secondary: #6B4F3F;
  --accent: #E8E0D9;
  --white: #fff;
  --black: #18191a;
  --card-radius: 18px;
  --shadow: 0 4px 32px 0 rgba(36,41,47,0.07);
  --shadow-bold: 0 2px 18px 0 rgba(107,79,63, 0.10);
  --transition: all 0.18s cubic-bezier(.7,.1,.3,1);
  --focus-outline: 2px solid var(--secondary);
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
}

@media (max-width: 768px) {
  section {
    padding: 28px 0 28px 0;
    margin-bottom: 32px;
  }
}

/* HEADER */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(36, 41, 47, 0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 60;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
  margin-right: 26px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.09rem;
  letter-spacing: 0.012em;
  transition: color .16s cubic-bezier(.7,.1,.3,1);
  position: relative;
  padding: 6px 0;
  border-radius: 5px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  background: var(--accent);
}

.cta.primary {
  background: var(--primary);
  color: var(--white);
  border-radius: 40px;
  padding: 0.85em 2.2em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.09rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow);
  margin-left: 32px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--secondary);
  color: var(--accent);
  box-shadow:0 6px 28px rgba(107,79,63,0.19);
}
.cta.secondary {
  background: var(--accent);
  color: var(--secondary);
  border-radius: 40px;
  padding: 0.7em 2em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform:uppercase;
  font-size: 1rem;
  box-shadow: var(--shadow);
  margin-top: 24px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--secondary);
  color: var(--white);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  line-height: 1;
  padding: 10px 18px;
  margin-left: 16px;
  color: var(--primary);
  background: var(--accent);
  border-radius: 10px;
  transition: background .2s;
  box-shadow: var(--shadow);
  z-index: 101;
  border: none;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--white);
}

@media (max-width:1024px) {
  .cta.primary {
    margin-left: 12px;
    padding: 0.7em 1.8em;
  }
  .main-nav {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  z-index: 300;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 44px rgba(36,41,47, 0.42);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.7,.1,.3,1);
  pointer-events: none;
  opacity: 0.97;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  padding: 16px 26px 4px 0;
  cursor: pointer;
  margin-bottom: 18px;
  transition: color .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding: 28px 40px;
  margin-bottom: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.22rem;
  color: var(--white);
  background: none;
  border-radius: 10px;
  padding: 10px 6px;
  letter-spacing: 0.03em;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

@media (min-width:901px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* HERO & HEADINGS */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.08;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.32rem; }
  h3 { font-size: 1.06rem; }
}

.subheadline {
  font-size: 1.17rem;
  color: var(--secondary);
  margin-bottom: 1.4em;
  font-weight: 600;
  line-height: 1.48;
}

/* CONTENT BLOCKS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 32px;
  border-radius: var(--card-radius);
  background: var(--accent);
  box-shadow: var(--shadow-bold);
  gap: 18px;
  margin-bottom: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 0 14px;
  background: var(--white);
  color: var(--primary);
  border-radius: var(--card-radius);
  box-shadow: 0 1px 8px rgba(36,41,47,0.08);
  margin-bottom: 24px;
}
.text-section h2,
.text-section h3 {
  margin-top: 8px;
}
.text-section address {
  font-style: normal;
  margin-bottom: 6px;
  font-weight: 600;
}
.text-section p,
.text-section ul,
.text-section ol {
  font-size: 1.03rem;
}

/* FLEXBOX GRID SYSTEMS */
.card-container, .feature-grid, .category-list, .services-list, .footer-nav, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-bold);
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  min-width: 250px;
  max-width: 360px;
  transition: box-shadow .16s, transform .16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 9px 32px rgba(36,41,47,0.13);
  transform: translateY(-4px) scale(1.012);
}

.feature-grid {
  gap: 28px;
  margin-top: 10px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 180px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--card-radius);
  padding: 22px 20px 18px 20px;
  flex: 1 1 210px;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .content-wrapper, .card, .text-section, .feature-grid li { padding: 18px 12px; }
  .content-wrapper { gap: 14px; }
  .text-image-section { flex-direction: column; gap: 20px; }
}

.category-list {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.services-list {
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.services-list .highlight {
  color: var(--secondary);
  background: var(--accent);
  border-radius: 7px;
  padding: 0 7px;
  font-weight: 700;
  margin-left: 8px;
}

ol {
  list-style: decimal inside;
  margin-left: 13px;
}
ul {
  list-style: disc inside;
  margin-left: 8px;
}
ul li, ol li { margin-bottom: 7px; }

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: var(--accent);
  border-radius: var(--card-radius);
  box-shadow: 0 2px 12px rgba(36,41,47,0.09);
  margin-bottom: 22px;
  margin-top: 8px;
  max-width: 600px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.testimonial-author {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 900;
  font-family: 'Montserrat',sans-serif;
  letter-spacing: 0.01em;
  margin-top: 2px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 26px rgba(107,79,63,0.16);
}

/* FORMS & FIELDS (Placeholders for contact or booking pages) */
input[type="text"], input[type="email"], textarea, select {
  border: 2px solid var(--accent);
  background: var(--white);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  margin-bottom: 18px;
  width: 100%;
  transition: border .18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
}

button, .cta {
  cursor: pointer;
  transition: var(--transition);
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--accent);
  width: 100%;
  padding: 32px 0 20px 0;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 -5px 24px rgba(107,79,63,0.045);
  margin-top: 28px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 23px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 3px 8px;
  border-radius: 7px;
  transition: background .14s, color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo img {
  height: 39px;
}
footer p {
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  footer .container {
    padding: 0 10px;
  }
  footer {
    border-radius: 14px 14px 0 0;
    padding: 17px 0 10px 0;
  }
  .footer-nav { gap: 9px; }
}

/* SOCIAL NAV */
.social-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.social-nav a img {
  width: 28px;
  height: 28px;
  transition: transform 0.140s;
}
.social-nav a:hover img,
.social-nav a:focus img {
  transform: scale(1.16) rotate(-7deg);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right:0; bottom: 0;
  width: 100%;
  z-index: 7000;
  background: rgba(36,41,47,0.98);
  color: var(--accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  gap: 30px;
  font-size: 1rem;
  box-shadow: 0 -2px 28px rgba(36,41,47,0.16);
  animation: cookieSlideUp .48s cubic-bezier(.68,.01,.38,1) both;
}
@keyframes cookieSlideUp {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text { max-width: 540px; }
.cookie-banner .cookie-btn {
  background: var(--secondary);
  color: var(--accent);
  border-radius: 32px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 14px;
  padding: 11px 32px;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--accent);
  color: var(--secondary);
}
.cookie-banner .cookie-btn.secondary {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
  margin-left: 8px;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 14px 10px;
  }
  .cookie-banner__text { font-size: 0.99rem; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0; top:0; right:0; bottom:0;
  background: rgba(36,41,47,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .42s cubic-bezier(.58,.01,.34,1) both;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--accent);
  color: var(--primary);
  padding: 38px 30px 30px 28px;
  border-radius: 24px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 12px 46px rgba(36,41,47,0.34);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h3 {
  font-family: 'Montserrat',sans-serif;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #C7BCB4;
  font-size: 1rem;
}
.cookie-modal .cookie-category:last-child { border-bottom: none; }
.cookie-modal label {
  font-weight: 700;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 25px; height: 25px;
  margin-left: 16px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .cookie-btn {
  padding: 10px 26px;
  border-radius: 20px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--secondary);
  color: var(--accent);
  box-shadow: 0 1px 6px rgba(107,79,63,0.06);
  border: none;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal .cookie-btn.secondary {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--secondary);
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-modal .cookie-btn.secondary:hover, .cookie-modal .cookie-btn.secondary:focus {
  background: var(--secondary);
  color: var(--white);
}

/* GEOMETRIC DECORATIVE SHAPES (examples, adjust if you use in HTML) */
.shape {
  position: absolute;
  z-index: 1;
  opacity: 0.13;
  pointer-events: none;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 960px) {
  .container { max-width: 97vw; }
}

@media (max-width: 600px) {
  .container { padding: 0 7px; }
  .content-wrapper, .text-section {
    border-radius: 13px;
    margin-bottom: 11px;
  }
}

/* VISUAL HIERARCHY & MICRO-INTERACTIONS */
.card,
.feature-grid li,
.testimonial-card,
.content-wrapper {
  transition: box-shadow .18s, transform .16s;
  will-change: box-shadow, transform;
}
.card:hover, .feature-grid li:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(36,41,47,0.12);
  transform: translateY(-4px) scale(1.016);
}
.cta, .cookie-btn, .main-nav a, .mobile-nav a, .footer-nav a {
  transition: background .16s, color .17s, box-shadow .14s, transform .15s;
}
.cta:active, .cookie-btn:active { transform: scale(0.94); }

/* Z-INDEX for overlays */
.mobile-menu, .mobile-menu-toggle { z-index: 301; }
.cookie-modal-overlay { z-index: 9999; }
.cookie-banner { z-index: 8888; }
header { z-index: 800; }

/* AUXILIARY CLASSES */
.highlight {
  color: var(--secondary);
  background: var(--accent);
  border-radius: 6px;
  padding: 0 7px;
  font-weight: 700;
}
.bold { font-weight: 900; }

/* Hide elements visually */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); 
  white-space: nowrap;
}

/* Miscellaneous typography improvements */
p, li, address {
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--primary);
}
strong {
  font-weight: 700;
  color: var(--primary);
}

/* Prevent overlapping */
section, .card, .feature-grid li, .content-wrapper, .testimonial-card, .text-section {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .content-grid, .services-list { gap: 24px; }

/* Accessibility focus states (custom) */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}

/* Print adjustments */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
