/* ---- CSS RESET & BASE ---- */
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #161919;
  color: #ECECEC;
  min-height: 100vh;
}
::-webkit-scrollbar { width: 8px; background: #222; }
::-webkit-scrollbar-thumb { background: #443228; border-radius: 4px; }

/* ---- BRAND FONTS (load via HTML, fallback) ---- */
body, button, input, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: none;
  color: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #ECECEC;
  letter-spacing: 0.01em;
  line-height: 1.15;
  font-weight: 700;
}
h1   { font-size: 2.5rem; margin-bottom: 16px; }
h2   { font-size: 2rem; margin-bottom: 14px; }
h3   { font-size: 1.3rem; margin-bottom: 10px; font-weight: 600; }
h4   { font-size: 1.1rem; margin-bottom: 8px; font-weight: 500; }
section h2, .section h2 { color: #CBB87D; }

p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 8px;
  word-break: break-word;
}
strong, b { color: #CBB87D; }
a {
  color: #CBB87D;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #ECECEC;
  text-shadow: 0 0 2px #CBB87D, 0 0 4px #CBB87D50;
}

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

/* MANDATORY PATTERNS */
.section, section:not(.hero):not(.footer) {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #28231F;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 3px 18px 0 #000B  ;
  position: relative;
  overflow: hidden;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .about-section .content-wrapper, .services .content-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 12px;
  border-radius: 14px;
  background: #ECECEC;
  color: #232226;
  box-shadow: 0 3px 18px 0 #0009;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #232226;
  border-radius: 13px;
  padding: 24px 18px;
  width: 100%;
  max-width: 320px;
  min-height: 230px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 #0007;
  border: 1px solid #44322860;
  transition: transform 0.21s, box-shadow 0.21s, border 0.21s;
}
.feature-item img {
  width: 46px;
  height: 46px;
}
.feature-item:hover, .feature-item:focus-visible {
  border: 1.5px solid #CBB87D;
  box-shadow: 0 6px 24px 0 #CBB87D40, 0 3px 9px 0 #232226cc;
  transform: translateY(-5px) scale(1.025);
}

/* ---- HEADER & NAV ---- */
header {
  width: 100%;
  background: #161919;
  border-bottom: 1px solid #44322833;
  box-shadow: 0 3px 16px 0 #000C;
  position: sticky;
  top: 0;
  z-index: 55;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 12px 20px;
  gap: 0;
}
header img {
  height: 44px;
  max-width: 130px;
}
.main-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  margin-left: 20px;
}
.main-menu a {
  font-weight: 500;
  font-size: 1rem;
  color: #ECECEC;
  position: relative;
  padding: 3px 4px 2px 4px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-menu a:hover, .main-menu a:focus {
  color: #CBB87D;
  background: #44322844;
}
.button.primary {
  background: linear-gradient(90deg,#CBB87D 0%,#A68F56 100%);
  color: #232226;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 25px;
  font-size: 1.13rem;
  box-shadow: 0 2px 16px #CBB87D33;
  margin-left: 24px;
  border: none;
  outline: none;
  transition: background 0.15s, color 0.15s, transform 0.14s;
  cursor: pointer;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.button.primary:hover, .button.primary:focus {
  background: linear-gradient(90deg,#ECECEC 0%,#CBB87D 100%);
  color: #443228;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 5px 24px 0 #CBB87D50;
}
.button {
  display: inline-block;
  font-family: inherit;
  border: none;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 18px;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(90deg,#443228 60%,#2b2421 100%);
  color: #CBB87D;
  font-size: 2em;
  border: none;
  border-radius: 10px;
  padding: 5px 15px;
  margin-left: 18px;
  cursor: pointer;
  z-index: 100;
  transition: background 0.15s, color 0.15s, box-shadow 0.14s;
}
@media (max-width: 980px) {
  .main-menu { gap: 17px; }
  .button.primary { margin-left: 12px; }
}
@media (max-width: 820px) {
  .main-menu { gap: 11px; }
}
@media (max-width: 768px) {
  header .container { padding: 12px 10px 8px 10px; }
  .main-menu, .button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hamburger Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  min-height: 100vh;
  background: #161919fa;
  z-index: 999;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(.79,.01,.31,.99), box-shadow 0.31s;
  box-shadow: 0 0 0 #000;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  box-shadow: 0 0 48px 0 #000E;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 26px 12px 0;
  font-size: 2.5em;
  background: none;
  border: none;
  color: #CBB87D;
  cursor: pointer;
  padding: 0 10px;
  line-height: 1;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ECECEC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 94vw;
  margin: 0 0 0 28px;
}
.mobile-nav a {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.35rem;
  color: #ECECEC;
  background: none;
  border-radius: 6px;
  padding: 10px 6px;
  width: 100%;
  transition: color 0.17s, background 0.17s;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #CBB87D;
  background: #28231F;
}

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

/* ---- HERO SECTION ---- */
.hero {
  min-height: 300px;
  background: linear-gradient(130deg, #232226 50%, #443228 94%);
  box-shadow: 0 9px 28px 0 #000C;
  display: flex;
  align-items: center;
  padding: 56px 0 36px 0;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.hero h1 {
  color: #CBB87D;
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 4px 18px #44322870, 0 1px 0 #232226;
}
.hero .subheadline {
  color: #ECECEC;
  font-size: 1.25rem;
  max-width: 640px;
  margin-bottom: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
}
.hero .button.primary {
  margin-left: 0;
  margin-top: 8px;
}

/* ---- FEATURE GRID & ITEMS ---- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 22px;
}
.feature-item h3 {
  margin-top: 8px;
  color: #CBB87D;
  font-size: 1.2rem;
}
.feature-item p {
  color: #CEC6B6;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (max-width: 1050px) {
  .features .feature-grid {
    gap: 12px;
  }
  .feature-item { max-width: 46vw; }
}
@media (max-width: 768px) {
  .features .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-item { max-width: 100%; }
}

/* ---- ABOUT & CONTENT SECTIONS ---- */
.about-section .content-wrapper, .services .content-wrapper, .features .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.about-section ul, 
.features .content-wrapper ul, 
.services .content-wrapper ul, 
.services .content-wrapper ol {
  margin-top: 0px;
  margin-bottom: 14px;
  list-style: disc inside;
  color: #CBB87D;
  padding-left: 8px;
  line-height: 1.7;
}
.services .content-wrapper ol {
  list-style: decimal inside;
  color: #ECECEC;
}
.services .content-wrapper h3 {
  margin-top: 18px;
  color: #CBB87D;
  font-size: 1.15rem;
  font-family: 'Merriweather', serif;
  font-weight: 600;
}
.content-wrapper p {
  color: #443228;
}
.map-placeholder {
  background: #ECECEC;
  color: #443228;
  border-radius: 12px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 20px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .about-section .content-wrapper, .services .content-wrapper, .features .content-wrapper, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ---- TESTIMONIALS ---- */
.testimonials .testimonial-card {
  background: #ECECEC;
  color: #232226;
  border-left: 4px solid #CBB87D;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px #44322840;
  font-size: 1.1rem;
  font-family: 'Merriweather', serif;
  line-height: 1.35;
  position: relative;
}
.testimonial-card .testimonial-meta {
  font-size: 1em;
  color: #CBB87D;
  margin-left: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
  margin-top: 0;
  white-space: nowrap;
}
.testimonial-card p {
  margin-right: 5px;
  color: #232226;
}

/* ---- CONTACT CTA ---- */
.contact-cta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-cta .button.primary {
  margin-left: 0;
  min-width: 270px;
}

/* ---- CONTENT CARDS (used in thank you/messages) ---- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.card {
  padding: 18px 20px;
  border-radius: 13px;
  box-shadow: 0 4px 12px 0 #000b;
  background: #232226;
  color: #ECECEC;
}

/* ---- FOOTER ---- */
footer {
  padding: 18px 0 0 0;
  background: #161919;
  border-top: 1.5px solid #44322833;
  font-size: 0.98rem;
  color: #CBB87D;
}
footer .container {
  gap: 16px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #CBB87D;
  font-weight: 500;
  font-size: 0.99rem;
  transition: color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #ECECEC;
  text-shadow: 0 0 2px #CBB87D;
}
.footer-contact {
  color: #ECECEC;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.5;
}
.footer-contact a {
  color: #CBB87D;
  text-decoration: underline dotted;
}
@media (max-width: 650px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* ---- RESPONSIVE UTILS ---- */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.1rem; }
  .hero .subheadline { font-size: 1.06rem; }
}
@media (max-width: 600px) {
  .hero {
    padding: 22px 0 18px 0;
    margin-bottom: 18px;
    min-height: 140px;
  }
  .container { padding: 0 6px; }
  .section, section:not(.hero):not(.footer) {
    padding: 22px 7px;
    margin-bottom: 32px;
  }
  .testimonial-card, .feature-item, .card {
    padding: 15px 10px;
    border-radius: 12px;
  }
  .feature-item {
    min-height: 170px;
  }
}
@media (max-width: 540px) {
  .footer-contact {
    font-size: 0.93rem;
    line-height: 1.32;
  }
}

/* ---- ANIMATIONS ---- */
.button, .feature-item, .main-menu a, .mobile-nav a, .card, .testimonial-card {
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, border 0.17s, transform 0.15s;
}
.hero {
  transition: background 0.25s;
}

/* ---- NEO-FUTURISTIC ACCENTS & NEON ---- */
.button.primary:after {
  content: "";
  display: block;
  position: absolute;
  left: 8px; right: 8px; top: 7px; bottom: 7px;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: 0 0 10px #CBB87D99, 0 0 35px #CBB87D40;
  opacity: 0;
  transition: opacity 0.18s;
  z-index: -1;
}
.button.primary:hover:after, .button.primary:focus:after {
  opacity: 0.7;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 0 8px 3px #CBB87D88 inset, 0 8px 24px 0 #23222677;
}
.testimonial-card {
  border-left: 4px solid #CBB87D;
  box-shadow: 0 0 14px #CBB87D33, 0 4px 15px #23222655;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: #28231Ff7;
  color: #ECECEC;
  padding: 22px 18px 14px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 36px #443228b3, 0 -1.5px 0 #CBB87D;
  border-top: 2.5px solid #CBB87D;
  font-size: 1rem;
  transition: transform 0.31s;
}
.cookie-banner.hide {
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner .button {
  padding: 9px 18px;
  min-width: 100px;
  font-size: 1rem;
  border-radius: 18px;
  font-weight: 600;
  margin: 0;
  background: #CBB87D;
  color: #232226;
  border: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.12s;
  box-shadow: 0 2px 8px #cbb87d33;
}
.cookie-banner .button:hover, .cookie-banner .button:focus {
  background: #ECECEC;
  color: #443228;
  box-shadow: 0 4px 14px #ECECEC44;
}
.cookie-banner .cookie-settings-btn {
  background: #443228;
  color: #CBB87D;
  border: 1px solid #CBB87D;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #CBB87D;
  color: #443228;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px 6px 12px 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1600;
  background: #161919ec;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.33s, pointer-events 0.33s;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-content {
  background: #28231F;
  color: #ECECEC;
  padding: 36px 28px 26px 24px;
  border-radius: 15px;
  min-width: 310px;
  max-width: 95vw;
  width: 96vw;
  max-width: 420px;
  box-shadow: 0 0 40px #443228bb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  animation: modalfadein 0.6s cubic-bezier(.37,.75,.28,.99);
}
@keyframes modalfadein {
  from {transform: scale(0.90) translateY(30px); opacity: 0;}
  to   {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal .modal-content h3 {
  color: #CBB87D;
  margin-bottom: 7px;
}
.cookie-modal .modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal .toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #CBB87D44;
  border-radius: 15px;
  position: relative;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .toggle:checked {
  background: #CBB87D;
}
.cookie-modal .toggle:before {
  content: "";
  width: 18px;height: 18px;
  position: absolute;
  left: 1px; top:1px;
  background: #ECECEC;
  border-radius: 100%;
  box-shadow: 0 1px 4px #cea33e66;
  transition: left 0.22s;
}
.cookie-modal .toggle:checked:before {
  left: 19px;
  background: #443228;
}
.cookie-modal .btn-group {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal .btn-group .button {
  min-width: 110px;
}
.cookie-modal .close-btn {
  position: absolute;
  right: 17px;
  top: 14px;
  background: none;
  color: #CBB87D;
  font-size: 1.9em;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  color: #ECECEC;
}

/* ---- OTHERS ---- */
hr { 
  border-top: 1.5px solid #44322844; 
  margin: 23px 0 20px 0;
}
::-moz-selection { background: #CBB87D44; }
::selection      { background: #CBB87D44; }

/* Accessibility & Focus */
a:focus, button:focus, .button:focus-visible {
  outline: 2px solid #CBB87D; 
  outline-offset: 2px;
}

/* ---- TYPOGRAPHY SCALE ---- */
@media (max-width:600px) { 
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1rem; }
  h4 { font-size: 0.97rem; }
  p, li { font-size: 0.97rem; }
}

/* Utility classes (optional/if needed) */
.hide { display: none !important; }
.show { display: block !important; }

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