/* RESET & BASES */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8F7F2;
  color: #3B2A1A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
a {
  text-decoration: none;
  color: #225574;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C57D18;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* VINTAGE RETRO COLORS */
:root {
  --brand-primary: #225574;
  --brand-secondary: #D1EBED;
  --brand-accent: #F2C7A7;
  --vintage-dark: #54382A;
  --vintage-blue: #225574;
  --vintage-mint: #D1EBED;
  --vintage-yellow: #F7E1A0;
  --vintage-rose: #F2ADA0;
  --vintage-orange: #DE923A;
  --vintage-paper: #F8F7F2;
  --vintage-brown: #B0957A;
  --text-dark: #3B2A1A;
  --text-light: #FFF8F0;
  --vintage-border: #E1D2B5;
}

/* FONTS - Vintage Retro Style */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--vintage-dark);
  margin-bottom: 18px;
  line-height: 1.1;
}
h1 { font-size: 2.6rem; text-shadow: 1px 2px 0 var(--vintage-yellow); margin-bottom: 22px; }
h2 { font-size: 2rem; text-shadow: 1px 1px 0 var(--vintage-rose);
margin-bottom: 16px; }
h3 { font-size: 1.3rem; color: var(--vintage-brown); margin-bottom: 10px; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }

p, ul, ol, li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}

blockquote {
  color: var(--brand-primary);
  background: var(--vintage-mint);
  border-left: 4px solid var(--brand-accent);
  padding: 16px 26px 16px 24px;
  font-style: italic;
  border-radius: 14px 20px 14px 14px;
  margin-bottom: 12px;
}

strong { font-weight: 700; }

/* GENERAL LAYOUT */
.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.text-section { max-width: 790px; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-paper);
  border-radius: 28px 40px 24px 24px;
  box-shadow: 0 2px 18px 0 rgba(160,111,56,0.08);
}

/* FLEX CONTAINERS (MANDATORY CLASSES) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--vintage-mint);
  border-radius: 18px 18px 15px 15px;
  box-shadow: 0 2px 9px 0 rgba(111, 78, 55, 0.08);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
}
.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;
  background: var(--vintage-yellow);
  border-radius: 18px 32px 20px 16px;
  box-shadow: 0 3px 16px 0 rgba(160,111,56,0.08), 0 1.5px 0 0 var(--vintage-brown);
  margin-bottom: 24px;
  flex-direction: row;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  background: var(--vintage-blue);
  color: var(--text-light);
  padding: 0 0 4px 0;
  box-shadow: 0 2px 17px rgba(34,85,116,0.06);
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.main-nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav li a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 18px;
  border-radius: 20px;
  transition: background 0.19s, color 0.19s;
}
.main-nav li a:hover, .main-nav li a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.logo-link, .footer-logo {
  display: flex;
  align-items: center;
}
.primary-cta, .secondary-cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 11px 32px;
  border-radius: 29px 29px 16px 12px;
  border: none;
  background: var(--brand-accent);
  color: var(--brand-primary);
  margin-top: 8px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 5px 0 rgba(160,111,56,0.10);
  letter-spacing: 1px;
  transition: background .19s, color .19s, box-shadow .21s;
  cursor: pointer;
}
.primary-cta:hover, .primary-cta:focus {
  background: var(--brand-primary);
  color: var(--text-light);
  box-shadow: 0 4px 14px 0 rgba(160,111,56,0.14);
}
.secondary-cta {
  background: var(--brand-primary);
  color: var(--brand-accent);
}
.secondary-cta:hover, .secondary-cta:focus {
  background: var(--vintage-orange);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 14px;
  top: 22px;
  z-index: 201;
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background .18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--brand-primary);
  color: var(--text-light);
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-primary);
  color: var(--text-light);
  z-index: 4000;
  transform: translateX(-100vw);
  transition: transform .35s cubic-bezier(.5,1.7,.7,1), opacity .13s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 18px 8px 0;
  font-size: 2.2rem;
  background: transparent;
  color: var(--text-light);
  border: none;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 36px;
}
.mobile-nav a {
  color: var(--text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 11px 18px;
  margin-left: 4px;
  border-radius: 18px;
  transition: background .19s, color .19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

/* FOOTER */
footer {
  background: var(--vintage-dark);
  color: var(--text-light);
  padding: 36px 0 22px 0;
  box-shadow: 0 -3px 16px rgba(34,85,116,0.06);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer-logo img {
  max-width: 78px;
  border-radius: 21px;
  box-shadow: 0 3px 11px 0 rgba(222,146,58,0.08);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--text-light);
  font-size: 1rem;
  border-radius: 6px;
  padding: 2.2px 1.8px;
  transition: color 0.13s, background 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-accent);
  background: rgba(222,146,58,0.07);
}
.footer-contact p {
  color: var(--vintage-yellow);
  font-size: 0.97rem;
  margin-bottom: 5px;
}

/* HERO / MAIN CTA */
.subheadline {
  color: var(--vintage-orange);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

/* FEATURES / SERVICES PREVIEW && LISTS */
.features-list,
.services-preview, 
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.features-list li, .services-preview li, .service-list li {
  background: var(--vintage-rose);
  border: 2px dashed var(--brand-primary);
  border-radius: 18px 32px 22px 20px;
  box-shadow: 0 2px 10px 0 rgba(222,146,58,0.07);
  padding: 28px 22px;
  flex: 1 1 280px;
  min-width: 230px;
  max-width: 345px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .23s, border-color .17s;
  margin-bottom: 20px;
}
.features-list li:hover, .services-preview li:hover, .service-list li:hover {
  box-shadow: 0 7px 22px -3px rgba(34,85,116,0.13);
  border-color: var(--vintage-brown);
}
.features-list img, .service-list img {
  margin-bottom: 13px;
  border-radius: 14px 20px 14px 14px;
  background: var(--brand-secondary);
  padding: 7px;
  box-shadow: 0 1.5px 8px 0 rgba(34,85,116,0.08);
}
.services-preview h3, .service-list h2 {
  margin-bottom: 6px;
  color: var(--vintage-dark);
  font-size: 1.22rem;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  background: var(--vintage-mint);
  border-radius: 18px;
  box-shadow: 0 1.5px 8px 0 rgba(34,85,116,0.06);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 13px 20px;
  font-size: 1.04rem;
  border-bottom: 1px solid var(--vintage-border);
}
.pricing-table th {
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
}
.pricing-table tr:last-child td { border-bottom: none; }

.price-notes {
  color: var(--vintage-brown);
  background: var(--vintage-yellow);
  border-radius: 12px;
  padding: 13px 19px;
  margin-bottom: 22px;
  font-size: 0.97rem;
  line-height: 1.5;
}

/* IMAGE/MAP PLACEHOLDERS */
.image-placeholder, .map-placeholder {
  background: repeating-linear-gradient(-45deg, var(--brand-accent), var(--brand-accent) 16px, #fff 16px, #fff 32px);
  border: 1.5px dotted var(--brand-primary);
  border-radius: 17px 19px 11px 16px;
  min-height: 180px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.1rem;
}

/* TEXT SECTIONS / OL & UL VARIANTS */
.text-section ul,
.text-section ol {
  padding-left: 32px;
  margin-bottom: 8px;
}
.text-section ul li {
  list-style: disc;
  margin-bottom: 7px;
}
.text-section ol li {
  list-style: decimal;
  margin-bottom: 7px;
}
.text-section ul li strong {
  color: var(--brand-primary);
}

/* TESTIMONIALS */
.testimonial-card {
  min-width: 210px;
  color: var(--text-dark);
  background: var(--vintage-yellow);
  border: 2px solid var(--vintage-orange);
  box-shadow: 0 3px 14px 0 rgba(160,111,56,0.08);
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  margin: 0;
  color: var(--brand-primary);
  font-size: 1.05rem;
  font-style: italic;
  box-shadow: none;
  padding: 0;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--vintage-brown);
  padding-left: 14px;
  border-left: 3.5px solid var(--brand-accent);
  line-height: 1.2;
}

/* CONTACT BLOCKS */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-details {
  flex: 1 1 270px;
  min-width: 230px;
  background: var(--vintage-mint);
  border-radius: 13px 21px 20px 13px;
  padding: 18px 18px 12px 18px;
  margin-bottom: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(222,146,58,0.07);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--brand-accent);
  color: var(--brand-primary);
  box-shadow: 0 -2px 17px 0 rgba(34,85,116,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px 18px 26px;
  z-index: 5050;
  font-size: 1.03rem;
  transition: transform .28s, opacity .20s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-left: 24px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--brand-primary);
  color: var(--brand-accent);
  border: none;
  outline: none;
  border-radius: 13px;
  padding: 10px 22px;
  font-size: 1rem;
  margin-right: 3px;
  cursor: pointer;
  transition: background .19s, color .19s, box-shadow .17s;
  box-shadow: 0 1px 5px 0 rgba(222,146,58,0.11);
}
.cookie-banner button.accept {
  background: var(--brand-primary);
  color: var(--brand-accent);
}
.cookie-banner button.accept:hover {
  background: var(--vintage-brown);
  color: #fff;
}
.cookie-banner button.reject {
  background: var(--vintage-orange);
  color: #fff;
}
.cookie-banner button.reject:hover {
  background: var(--vintage-dark);
}
.cookie-banner button.settings {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}
.cookie-banner button.settings:hover {
  background: #fff;
  color: var(--brand-primary);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;top: 0;right: 0;bottom: 0;
  background: rgba(34,85,116,0.22);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .2s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-content {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 16px 22px 14px 18px;
  padding: 36px 32px 22px 32px;
  min-width: 310px;
  max-width: 410px;
  box-shadow: 0 8px 38px 0 rgba(34,85,116,0.17);
  display: flex;
  flex-direction: column;
}
.cookie-modal h3 {
  font-size: 1.32rem;
  color: var(--brand-primary);
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  justify-content: space-between;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-primary);
  width: 18px;
  height: 18px;
}
.cookie-modal-footer {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.cookie-modal button {
  border-radius: 9px;
  padding: 8px 18px;
  font-size: 1rem;
  background: var(--brand-primary);
  color: var(--brand-accent);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background .12s, color .12s;
}
.cookie-modal button:hover {
  background: var(--vintage-orange);
  color: #fff;
}

/* TRANSITIONS / EFFECTS */
button, a, .card, .testimonial-card, .features-list li, .service-list li, .services-preview li, .primary-cta, .secondary-cta {
  transition: 
    background 0.2s, 
    color 0.18s, 
    box-shadow 0.16s, 
    border-color 0.15s, 
    transform 0.13s;
}
.card:hover, .features-list li:hover, .service-list li:hover, .services-preview li:hover {
  transform: translateY(-2px) scale(1.012); 
  box-shadow: 0 8px 19px -4px rgba(222,146,58,0.14);
}

/* RESPONSIVE - MOBILE FIRST */
@media (max-width: 1060px) {
  .container {
    max-width: 97vw;
  }
  .content-wrapper {
    padding-left: 0; padding-right: 0;
  }
}
@media (max-width: 850px) {
  .footer-content {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .features-list, .services-preview, .service-list {
    gap: 20px;
  }
  .card-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .main-nav ul, .main-nav .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-content {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .content-grid, .features-list, .services-preview, .service-list, .card-container, .text-image-section, .testimonial-list, .contact-block {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonials-list {
    flex-direction: column;
    gap: 12px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.07rem; }
  .section {
    padding: 26px 9px;
    border-radius: 16px 17px 10px 10px;
  }
  .cookie-modal .modal-content {
    padding: 23px 11px 15px 11px;
    max-width: 97vw;
  }
}
@media (max-width: 530px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .testimonials-list, .features-list, .services-preview, .service-list, .card-container, .content-grid, .text-image-section, .testimonial-card, .contact-block {
    flex-direction: column;
    gap: 12px;
  }
  h1 {
    font-size: 1.39rem;
    margin-bottom: 15px;
  }
  h2 { font-size: 1rem; }
  .section { padding: 11px 2px; }
  .footer-logo img { max-width: 58px; }
}

/* ACCESSIBILITY FOCUS */
a:focus, button:focus {
  outline: 2px dotted var(--brand-accent) !important;
  outline-offset: 1.5px;
}

/* UTILITY */
.mt-2 { margin-top: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.rounded { border-radius: 21px !important; }
.bg-brand-primary { background: var(--brand-primary) !important; color: var(--text-light) !important; }
.bg-brand-accent { background: var(--brand-accent) !important; color: var(--brand-primary) !important; }
.bg-vintage-yellow { background: var(--vintage-yellow) !important; color: var(--brand-primary) !important; }

/* Hide elements (ex. modal, banners) */
.d-none { display: none !important; opacity: 0 !important;}

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