/* ===== CSS RESET & BASELINE ===== */
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, main, menu,
nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
:focus {
  outline: 2px solid #E2C275;
  outline-offset: 2px;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23272A;
  background: #F7F5EF;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #23272A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E2C275;
}
ul, ol {
  list-style: none;
}

/* ===== BRAND TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #23272A;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 16px; font-weight: 600; }
h4 { font-size: 18px; margin-bottom: 10px; font-weight: 600; }
p, li, table, input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #23272A;
}
strong { color: #23272A; font-weight: 700; font-family: inherit; }

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.text-section {
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(35,39,42,.065);
}
@media (max-width:768px) {
  .container { padding: 0 8px; }
  .section { padding: 24px 8px; margin-bottom: 32px; }
  .content-wrapper { gap: 16px; }
}

/* ===== MAIN NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(35,39,42,0.08);
  position: sticky;
  top: 0;
  z-index: 1001;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
  justify-content: flex-start;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
}
.main-nav a {
  padding: 4px 2px;
  color: #23272A;
  opacity: 0.92;
  position: relative;
  transition: color 0.25s, opacity 0.25s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E2C275;
  opacity: 1;
}
.main-nav a img {
  height: 38px; width: auto; vertical-align: middle;
}
@media (max-width: 991px) {
  .main-nav { gap: 18px; font-size: 16px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* ===== MOBILE BURGER & MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  background: #fff;
  border: none;
  font-size: 32px;
  color: #23272A;
  cursor: pointer;
  z-index: 1101;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f1eddf;
  color: #E2C275;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 39, 42, 0.97);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 28px 10px 0;
  font-size: 32px;
  background: transparent;
  border: none;
  color: #E2C275;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1101;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 32px;
  margin-top: 18px;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  padding: 7px 0px;
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E2C275;
  background: rgba(255,255,255,.15);
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===== SECTIONS & CONTENT LAYOUT ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(35,39,42,0.06);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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;
}
@media (max-width: 900px) {
  .text-image-section { gap: 20px; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background: #F7F5EF;
  color: #23272A;
  box-shadow: 0 3px 12px 0 rgba(35,39,42,0.07);
  min-width: 0;
  margin-bottom: 24px;
}
.testimonial-card p {
  font-size: 18px;
  font-family: 'Playfair Display', Georgia, serif;
  color: #23272A;
  margin-bottom: 0;
}
.testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #5D5D5D;
  margin-left: auto;
}
@media(max-width:770px){
  .testimonial-card{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.map-placeholder {
  width: 100%;
  min-height: 120px;
  background: #ECEAE0;
  border-radius: 7px;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-size: 14px;
  margin: 12px 0;
}

/* ===== CTA BUTTON ===== */
.cta-button {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 12px;
  background: #E2C275;
  color: #23272A;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 2px 9px 0 rgba(226,194,117,0.18);
  text-align: center;
  letter-spacing: 0.01em;
  transition: background 0.22s, color 0.2s, box-shadow 0.22s;
}
.cta-button:hover, .cta-button:focus {
  background: #23272A;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(35,39,42,0.09);
}

/* ===== LISTS WITH ICONS (Features) ===== */
ul li, ol li {
  padding-left: 0;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.75;
  font-size: 16px;
}
ul li img {
  height: 20px;
  width: 20px;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
}
/* No default bullets; icons represent bullets where applicable */

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 0 0;
  font-size: 15px;
  min-width:240px;
}
thead { background: #ECEAE0; }
tr { border-bottom: 1px solid #EDE8DD; }
th, td {
  padding: 13px 14px;
  text-align: left;
}
th {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  background: #ECEAE0;
}
tr:nth-child(even) td {
  background: #F7F5EF;
}

/* ===== FOOTER ===== */
footer {
  background: #23272A;
  color: #fff;
  padding: 40px 0 24px 0;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #E2C275;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  text-decoration: none;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
}
.footer-brand img {
  height: 32px; width: auto;
}
@media (max-width: 768px) {
  .footer-nav { flex-direction: column; gap: 10px; }
  .footer-brand { font-size: 15px; }
  footer { padding: 28px 0 18px 0; }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #23272A;
  color: #fff;
  box-shadow: 0 -8px 24px 0 rgba(35,39,42,0.08);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 28px 14px;
  gap: 26px;
  font-size: 16px;
  transition: transform 0.3s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
}
.cookie-banner button {
  padding: 9px 22px;
  font-size: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.cookie-banner .accept {
  background: #E2C275;
  color: #23272A;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #E2C275;
}
.cookie-banner .reject {
  background: #ECEAE0;
  color: #23272A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #E2C275;
  color: #23272A;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #ECEAE0;
  color: #23272A;
  border-color: #ECEAE0;
}
@media (max-width: 648px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 8px; font-size: 15px; }
  .cookie-banner .cookie-actions { gap: 8px; }
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 12000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,39,42,0.43);
  display: none;
  justify-content: center;
  align-items: center;
}
.cookie-modal-backdrop.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #23272A;
  border-radius: 16px;
  min-width: 300px;
  max-width: 96vw;
  width: 420px;
  padding: 40px 28px 28px 28px;
  position: relative;
  box-shadow: 0 10px 32px 0 rgba(35,39,42,0.17);
  animation: cookie-modal-fadein 0.35s cubic-bezier(.15,.8,.54,1.14);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes cookie-modal-fadein {
  from { transform:translateY(48px); opacity:0; }
  to   { transform:translateY(0); opacity:1; }
}
.cookie-modal h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #ECEAE0;
}
.cookie-modal .cookie-category:last-child { border-bottom: none; }
.cookie-modal label {
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23272A;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  background: #ECEAE0;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  transition: background 0.19s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: #E2C275;
}
.cookie-modal .cookie-toggle-inner {
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background: #fff;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] .cookie-toggle-inner {
  left: 17px;
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .accept, .cookie-modal .save {
  background: #E2C275;
  color: #23272A;
  border: none;
  border-radius: 6px;
  padding: 9px 22px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 16px;
}
.cookie-modal .accept:hover, .cookie-modal .save:hover, .cookie-modal .accept:focus, .cookie-modal .save:focus {
  background: #23272A;
  color: #fff;
}
.cookie-modal .cancel {
  background: transparent;
  color: #23272A;
  border: 1.5px solid #ECEAE0;
  border-radius:6px;
  padding: 9px 22px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #ECEAE0;
}
.cookie-modal .cookie-category [disabled],
.cookie-modal .cookie-category[aria-disabled="true"] .cookie-toggle {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 18px; top: 18px;
  background: transparent;
  border: none;
  color: #E2C275;
  font-size: 27px;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus { color: #23272A; }
@media (max-width:510px) {
  .cookie-modal { padding: 26px 8px 18px 8px; width: 96vw; }
  .cookie-modal h2 { font-size: 18px; }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes fadein {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE RULES ===== */
@media (max-width:1120px) {
  .container { max-width: 95vw; }
}
@media (max-width:768px) {
  .container { max-width: 100vw; }
  .card { padding: 18px 10px; border-radius: 10px; }
  .section { border-radius: 10px;}
}

/* ===== FOCUS STYLE ACCESSIBILITY ===== */
.cta-button:focus, .main-nav a:focus, .footer-nav a:focus, .mobile-nav a:focus {
  box-shadow: 0 0 0 2px #E2C275AA, 0 0 0 4px #fff;
  outline: none;
}

/* ===== FORM ELEMENTS (if ever added) ===== */
input[type="text"], input[type="email"], textarea {
  border: 1.3px solid #ECEAE0;
  border-radius: 6px;
  padding: 14px 12px;
  font-size: 16px;
  background: #fff;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  width: 100%;
  transition: border-color 0.15s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #E2C275;
}

/* ===== ADDITIONAL CARD/SECTION SPACING ===== */
@media (min-width:1024px) {
  .card-container, .content-grid { gap: 32px; }
  .card { margin-bottom: 32px; }
  .section { margin-bottom: 72px; }
}

/* ===== SHADOWS, BORDERS, & DETAILS ===== */
.section, .card {
  box-shadow: 0 6px 35px 0 rgba(35,39,42,0.05), 0 1.5px 7px 0 rgba(226,194,117,0.03);
}

/* ===== TABLET ADJUST ===== */
@media (max-width:900px) {
  .main-nav { font-size: 15px; gap: 10px; }
  .card-container, .content-grid { gap: 16px; }
}

/* ===== MINIMUM GAP ENFORCEMENT ===== */
.card, .section { margin-bottom: 20px; }

/* ===== FORBIDDEN PROPERTIES NOT USED ===== */
/* No display: grid, no columns, no absolute for cards/content, only relative on card if needed for decorations */
