/* CSS RESET & NORMALIZE (Vintage-Compatible) */
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 {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #F4F1ED;
  color: #204056;
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  color: #204056;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C2A472;
}
ul, ol {
  margin: 0 0 1rem 1.5rem;
  padding-left: 1.25rem;
}
img {
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  font-size: 16px;
}

/* BRAND FONTS: Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary: #204056;
  --secondary: #C2A472;
  --accent: #F4F1ED;
  --vintage-red: #A94C32;
  --vintage-blue: #578CA9;
  --vintage-yellow: #E3C87C;
  --vintage-green: #49735A;
  --shadow: 0 2px 8px 0 rgba(44,37,24,.09);
  --radius: 16px;
  --border: 1px solid #C2A472;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: #204056;
  margin-bottom: 16px;
  text-shadow: 0 1px 0 #C2A4721c;
  font-weight: 700;
}
h1 { font-size: 2.5rem; letter-spacing: -1px; margin-top: 0.5em; }
h2 { font-size: 2rem; border-bottom: 3px double #E3C87C; padding-bottom: 6px; margin-bottom: 24px; }
h3 { font-size: 1.35rem; color: var(--secondary); }
h4 { font-size: 1.15rem; }

p, li, td, th {
  font-family: 'Roboto', 'Arial', sans-serif;
  color: #3a2d18;
}

strong { color: #204056; }


/* LAYOUT CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
main {
  min-height: 75vh;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 1024px) {
  .container {max-width: 98vw;}
  .section, section {padding: 32px 8px;}
}
@media (max-width: 768px) {
  .section, section {padding: 24px 4px; margin-bottom: 36px;}
}

/* RETRO COLOR MOTIF BACKGROUNDS & DECO */
section:nth-child(odd) {
  background: #F6E9D6;
}
section:nth-child(even) {
  background: #F4F1ED;
}

/* HEADER & NAVIGATION */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: #204056;
  box-shadow: 0 4px 18px -7px #20405610;
  position: relative;
  z-index: 11;
}
.logo-area {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-area img {
  height: 45px;
  margin-right: 8px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  color: #F4F1ED;
  font-size: 18px;
  position: relative;
  padding-bottom: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #C2A472;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C2A472;
  color: #204056;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  border-radius: 36px;
  padding: 12px 32px;
  margin-left: 34px;
  box-shadow: 0 3px 24px #C2A47224;
  border: none;
  transition: background 0.25s, box-shadow 0.25s, color 0.2s, transform 0.15s;
  letter-spacing: 1px;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: #204056;
  color: #F4F1ED;
  box-shadow: 0 6px 32px #20405631;
  transform: translateY(-1.5px) scale(1.04);
}
.cta-secondary {
  margin-top: 18px;
  color: #C2A472;
  font-weight: 700;
  border: 2px solid #C2A472;
  border-radius: 34px;
  padding: 10px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  transition: background 0.18s, color 0.18s;
  background: #F6E9D6;
  text-align: center;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #C2A472;
  color: #204056;
}

@media (max-width: 1024px) {
  header nav {
    gap: 18px;
  }
  .cta-primary {
    margin-left: 18px;
    font-size: 17px;
    padding: 11px 22px;
  }
  .logo-area img {
    height: 37px;
  }
}

/* --- MOBILE MENU HAMBURGER --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 16px;
  top: 22px;
  background: #F4F1ED;
  color: #204056;
  border-radius: 12px;
  border: 2px solid #C2A472;
  font-size: 2.3rem;
  padding: 5px 18px 7px 18px;
  z-index: 22;
  box-shadow: var(--shadow), 0 0 0 4px #C2A47217;
  cursor: pointer;
  transition: box-shadow 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #C2A472;
  color: #204056;
  box-shadow: 0 2px 12px #20405636, 0 0 0 6px #20405612;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
  header nav, .cta-primary {
    display: none !important;
  }
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #204056fa;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-105vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.87,0,.13,1), opacity 0.27s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #C2A472;
  color: #204056;
  font-size: 2.2rem;
  border: none;
  border-radius: 15px;
  padding: 3px 17px 8px 17px;
  font-weight: bold;
  margin: 22px 0 12px 24px;
  cursor: pointer;
  box-shadow: 0 2px 9px #C2A47232;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #204056;
  color: #F4F1ED;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
  margin-left: 32px;
  margin-top: 28px;
}
.mobile-nav a {
  color: #F4F1ED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  padding: 8px 0 8px 0;
  font-weight: 600;
  border-left: 4px solid #C2A472;
  padding-left: 18px;
  transition: background 0.15s, color 0.18s;
  border-radius: 5px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C2A47233;
  color: #C2A472;
}
@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
  }
}

/* --- END MOBILE MENU --- */

/* --- FOOTER --- */
footer {
  background: #204056;
  color: #C2A472;
  padding: 30px 0 12px 0;
  margin-top: 40px;
  border-top: 8px double #C2A472;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}
footer nav a {
  color: #C2A472;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  transition: text-decoration 0.15s, color 0.15s;
  text-decoration: underline dotted #C2A47266 2px;
}
footer nav a:hover, footer nav a:focus {
  color: #F4F1ED;
  text-decoration: underline solid #F4F1ED 2px;
}
footer small {
  display: block;
  text-align: center;
  opacity: 0.85;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  color: #F4F1ED;
  margin-top: 9px;
  letter-spacing: .5px;
}

/* --- GENERAL CONTENT WRAPPER --- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 670px;
}

/* --- LAYOUT FLEX UTILITIES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #F6E9D6;
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.cta-area {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}
@media (max-width: 900px) {
  .content-grid, .card-container, .feature-grid, .service-details-grid {
    flex-direction: column;
    gap: 18px;
  }
  .contact-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- HERO & HEADERS --- */
section .container > .content-wrapper.text-section {
  align-items: flex-start;
  text-align: left;
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 22px 0 18px 0;
}
.feature-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff6ee;
  border: 2px dashed #E3C87C;
  border-radius: 18px;
  box-shadow: 0 2px 9px 0 #C2A47212;
  padding: 28px 20px 19px 20px;
  min-width: 222px;
  flex: 1 1 230px;
  transition: transform 0.16s, box-shadow 0.18s;
}
.feature-block img {
  height: 48px;
  margin-bottom: 7px;
}
.feature-block h3 {
  color: #A94C32;
}
.feature-block:hover, .feature-block:focus-within {
  transform: translateY(-4px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px #A94C3232, 0 2px 10px #2040561a;
  background: #F6EEDA;
}

/* --- SERVICE LIST & CARDS --- */
.service-list {
  margin: 18px 0 28px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list li {
  background: #F5F1EA;
  border-left: 5px solid #C2A472;
  padding: 15px 20px 14px 18px;
  border-radius: 12px;
  font-size: 1.09em;
  font-family: 'Roboto', sans-serif;
}
.service-list span {
  float: right;
  color: #204056;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98em;
  margin-left: 18px;
}

/* --- SERVICE CARD GRID --- */
.service-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.service-card {
  background: #fff6ee;
  border: 2px solid #E3C87C;
  border-radius: 16px;
  box-shadow: 0 2px 14px #C2A4721a;
  flex: 1 1 230px;
  min-width: 222px;
  max-width: 320px;
  padding: 26px 17px 16px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, border-color 0.12s;
}
.service-card img {
  height: 46px;
  margin-bottom: 7px;
}
.service-card h3 {
  margin-bottom: 8px;
  color: #49735A;
}
.service-price {
  color: #A94C32;
  font-weight: 700;
  font-size: 1.05em;
  background: #E3C87C33;
  border-radius: 7px;
  margin-top: 7px;
  padding: 2px 7px;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 7px 22px #A94C3266, 0 2px 12px #2040561a;
  border-color: #A94C32;
}


/* --- TESTIMONIALS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #F4F1ED;
  color: #204056;
  border-radius: 18px;
  box-shadow: 0 2px 15px #2040560e;
  padding: 24px 26px 19px 26px;
  min-width: 270px;
  max-width: 370px;
  min-height: 135px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.testimonial-card p {
  font-size: 1.09em;
  color: #204056;
  font-style: italic;
  line-height: 1.73;
}
.testimonial-card span {
  color: #C2A472;
  font-weight: 700;
  font-size: 0.97em;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 768px){
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {min-width: unset; max-width: 100%;}
}

/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  margin: 26px 0 22px 0;
  background: #fff6ee;
  border: 2px solid #E3C87C;
  border-radius: 13px;
  box-shadow: 0 2px 9px #C2A47222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  overflow: hidden;
}
.pricing-table th {
  background: #C2A47222;
  color: #204056;
  font-weight: bold;
  font-size: 1.1em;
}
.pricing-table td {
  color: #204056;
}
.pricing-table tr:nth-child(even) td {
  background: #F6E9D6;
}
.notice {
  font-size: 0.95em;
  color: #A94C32;
  margin-top: 12px;
  padding: 8px 6px;
  background: #E3C87C29;
  border-radius: 7px;
}

/* --- MAP EMBED --- */
.map-embed {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #F6E9D6;
  border: 1px solid #C2A472;
  padding: 18px 16px;
  border-radius: 9px;
  margin-top: 10px;
  font-size: 17px;
}
.map-embed img {
  height: 40px;
  flex-shrink: 0;
}

/* --- LISTS --- */
ul li {
  margin-bottom: 7px;
  font-size: 1.06em;
  color: #204056;
  padding-left: 5px;
  font-family: 'Roboto', sans-serif;
  position: relative;
}
ul li::before {
  content: '\26AB';
  color: #E3C87C;
  font-size: 0.7em;
  position: absolute;
  left: -22px;
  top: 6px;
}
ul {
  margin-left: 30px;
}

/* --- FORMS/BUTTONS --- */
button, [type="submit"] {
  cursor: pointer;
  background: #C2A472;
  color: #204056;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 28px;
  padding: 10px 25px;
  border: none;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s, transform 0.11s;
  box-shadow: 0 1px 6px #C2A4721d;
}
button:hover, button:focus {
  background: #204056;
  color: #F4F1ED;
  box-shadow: 0 5px 20px #20405644, 0 2px 8px #20405620;
  transform: translateY(-2px) scale(1.04);
}
label {font-weight: bold; color: #204056; font-family: 'Montserrat', Arial, sans-serif;}
input, textarea, select {
  border: 1.5px solid #C2A472;
  background: #fff6ee;
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 14px;
  transition: border-color 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #204056;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 6px;
  }
  h1 {font-size: 2.05rem;}
  h2 {font-size: 1.3rem;}
}
@media (max-width: 768px) {
  header, .footer-nav, footer nav {flex-direction: column; gap: 8px;}
}
@media (max-width: 520px) {
  .container {padding: 0 1.5vw;}
  h1, h2 {font-size: 1.1rem;}
  footer nav a {font-size: 15px;}
}

/* --- RETRO PATTERNS (subtle for prestige style) --- */
section, .card, .feature-block, .service-card {
  position: relative;
}
section:before {
  content: "";
  display: block;
  position: absolute;
  left: -30px;
  top: -30px;
  width: 76px;
  height: 76px;
  background: url('../assets/pattern_dots.svg') repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
section:after {
  content: "";
  display: block;
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 54px;
  height: 54px;
  background: url('../assets/pattern_wave.svg') repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #204056;
  color: #fff;
  padding: 22px 17px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02em;
  box-shadow: 0 -2px 20px #20405633;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  animation: cookie-fadein 0.95s cubic-bezier(.46,0,.32,1.33);
}
@keyframes cookie-fadein {
  0% { opacity: 0; transform: translateY(64px); } 100% { opacity: 1; transform: none; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 8px 22px;
  border-radius: 24px;
  border: none;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  margin: 0 5px;
  box-shadow: 0 1px 8px #C2A47213;
  background: #C2A472;
  color: #204056;
  transition: background 0.19s, color 0.19s, box-shadow 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff6ee;
  color: #A94C32;
  box-shadow: 0 4px 18px #A94C328a;
}

/* --- COOKIE CONSENT PREFERENCE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,64,86,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.29s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #F4F1ED;
  color: #204056;
  border-radius: 17px;
  box-shadow: 0 9px 46px #20405690;
  max-width: 430px;
  width: calc(100vw - 40px);
  padding: 28px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: popin-cookie 0.43s cubic-bezier(.58,0,.43,1.59);
}
@keyframes popin-cookie {
  0% { opacity:0; transform: scale(0.85) translateY(60px);} 100%{ opacity:1; transform:none;}
}
.cookie-modal-content h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19em;
  margin-bottom: 8px;
  color: #204056;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0 10px 0;
  border-bottom: 1px solid #C2A47243;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
input[type="checkbox"].cookie-switch {
  width: 40px;
  height: 21px;
  background: #E3C87C;
  border-radius: 34px;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  transition: background 0.14s;
}
input[type="checkbox"].cookie-switch:checked {
  background: #C2A472;
}
input[type="checkbox"].cookie-switch:before {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.13s;
  box-shadow: 0 1px 7px #20405633;
}
input[type="checkbox"].cookie-switch:checked:before {
  transform: translateX(19px);
}
.cookie-modal-actions {
  margin-top: 21px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  border-radius: 19px;
  font-size: 1em;
  padding: 8px 22px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 23px;
  right: 30px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #204056;
  cursor: pointer;
  padding: 0;
  z-index: 3300;
}
.cookie-modal .modal-close:hover {
  color: #A94C32;
}

/* Hide modal for print */
@media print {
  .cookie-banner, .cookie-modal {display: none !important;}
}

/* --- ANIMATIONS & TRANSITIONS --- */
section, .card, .feature-block, .service-card, .testimonial-card {
  transition: box-shadow 0.15s, background 0.16s, border-color 0.15s;
}
a, button, .cta-primary, .cta-secondary {
  transition: color 0.17s, background 0.15s, border 0.12s, box-shadow 0.18s, transform 0.14s;
}

/* --- UTILITIES --- */
.m-20 {margin: 20px;}
.mt-16 {margin-top: 16px;}
.mb-28 {margin-bottom: 28px;}
.pb-20 {padding-bottom: 20px;}
.flex-start {align-items: flex-start !important;}
.flex-center {align-items: center !important;}
.flex-row {flex-direction: row !important;}
.flex-col {flex-direction: column !important;}
gap-20 {gap: 20px !important;}
gap-24 {gap: 24px !important;}

/* --- END CSS FILE --- */
