/* ----------------------------
   CSS RESET & BASE STYLES
---------------------------- */
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, caption, tbody, tfoot, thead, tr, th, td, main, section, article, header, footer, nav, summary, details {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #f6f8fa;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2d2a27;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
main {
  display: block;
}
button, a {
  cursor: pointer;
  outline: none;
  transition: color 0.2s, background 0.2s, border 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
a {
  color: #4a5568;
  text-decoration: underline;
}
a:hover, a:focus {
  color: #192e4d;
  text-decoration: none;
}
strong {
  font-weight: 700;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  padding-left: 0;
  margin-bottom: 10px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #192e4d;
  letter-spacing: .02em;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
p {
  margin-bottom: 16px;
}
address {
  font-style: normal;
}

/* ----------------------------
   VINTAGE RETRO THEME COLORS
---------------------------- */
:root {
  --primary: #192e4d;
  --secondary: #8397b8;
  --accent: #f6f8fa;
  --vintage-yellow: #fae29d;
  --vintage-blue: #4682a9;
  --vintage-red: #dd6358;
  --vintage-olive: #847062;
  --vintage-cream: #ffeedd;
  --vintage-brown: #8a6857;
  --vintage-bg-dark: #3B3040;
  --vintage-bg-light: #f5ede6;
}
/* Retro backgrounds and patterns */
body {
  background: var(--vintage-cream);
}
section, .testimonial-card, .card, .service-card, .cookie-banner, .cookie-modal {
  border-radius: 16px;
  box-shadow: 0 4px 14px 0 rgba(88,64,31,0.07), 0 1.5px 6px 0 rgba(88,64,31,0.07);
}

/*******************************
   CONTAINER & GENERAL LAYOUTS
*******************************/
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  box-shadow: 0 4px 14px 0 rgba(136, 104, 94, 0.06);
  border-radius: 18px;
}

/*******************************
   HEADER & NAVIGATION
*******************************/
header {
  width: 100%;
  background: var(--vintage-yellow);
  border-bottom: 4px solid var(--primary);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo img {
  max-height: 40px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, transform 0.24s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vintage-blue);
  color: #fff;
  transform: translateY(-2px) scale(1.07);
}
.cta-button {
  background: var(--vintage-red);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: none;
  padding: 14px 28px;
  border-radius: 14px 14px 0 14px;
  box-shadow: 0 2px 10px rgb(221 99 88 / 10%);
  font-size: 1.1rem;
  transition: background 0.22s, box-shadow 0.24s, transform 0.16s;
  margin-left: 16px;
  text-shadow: 0 1px 1px #b74a3c33;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: #ffeedd;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 28px rgb(25,46,77,.20);
}
/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: var(--vintage-olive);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  transition: background 0.2s, transform 0.21s;
  z-index: 1003;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--vintage-yellow);
  transform: scale(1.08);
}
/*************************************
   MOBILE BURGER NAVIGATION OVERLAY
*************************************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  color: #fff;
  z-index: 1030;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.76,0,.24,1);
  padding-top: 70px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 44px 6px rgba(25,46,77,.22);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: var(--vintage-yellow);
  font-family: 'Montserrat', sans-serif;
  z-index: 1040;
  cursor: pointer;
  padding: 8px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--vintage-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 0 36px;
  margin-top: 30px;
}
.mobile-nav a {
  color: var(--vintage-yellow);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 14px 8px 14px 6px;
  border-radius: 8px;
  transition: background 0.2s, color 0.18s, transform 0.2s;
  width: 100%;
  display: block;
  text-decoration: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-blue);
  color: #fff;
  transform: translateX(14px) scale(1.05);
}

/*******************************
   HERO / ABOUT / GENERAL SECTIONS
*******************************/
.hero {
  background: var(--vintage-yellow);
  color: #2d2a27;
  margin-bottom: 60px;
  border-radius: 0 0 27px 27px;
  padding: 56px 0 44px 0;
  box-shadow: 0 8px 30px rgba(25,46,77,.10);
}
.hero h1 {
  color: var(--vintage-brown);
  font-size: 2.5rem;
  letter-spacing: .04em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 24px;
  text-shadow: 0 2px 0 #f6c86c44;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: #4a3931;
  max-width: 670px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.features ul {
  list-style: disc inside;
  margin-bottom: 0;
  color: var(--primary);
  font-size: 1.1rem;
}
.features li {
  margin-bottom: 10px;
}

.about-preview, .services-preview {
  background: var(--vintage-cream);
  border: 2.5px dashed var(--vintage-brown);
}
.about-preview h2, .services-preview h2 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
.about-preview a, .services-preview a:not(.cta-button) {
  display: inline-block;
  color: var(--vintage-blue);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
  border-bottom: 1.5px dashed var(--vintage-blue);
  transition: color 0.17s;
}
.about-preview a:hover, .services-preview a:not(.cta-button):hover {
  color: var(--vintage-red);
  border-bottom: 1.5px solid var(--vintage-red);
}

.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px 22px 28px;
  background: #fffde7;
  color: #3a2c14;
  font-size: 1.09rem;
  border-left: 8px solid var(--vintage-olive);
  min-width: 200px;
  max-width: 360px;
  flex: 1 1 220px;
  box-shadow: 0 3px 20px 0 #192e4d14;
  margin-bottom: 20px;
  border-radius: 18px 11px 17px 5px;
}
.testimonial-card p {
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card span {
  color: #8a6857;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: .01em;
}

/*****************************
   CARDS (Services, Portfolio)
*****************************/
.card-container, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card {
  background: var(--vintage-bg-light);
  border: 2.5px solid var(--vintage-brown);
  box-shadow: 0 2px 12px rgba(136,104,94,0.11);
  padding: 30px 24px 22px 24px;
  margin-bottom: 20px;
  border-radius: 15px 20px 15px 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.19s, border 0.15s;
  position: relative;
}
.card:hover, .card:focus, .service-card:hover, .service-card:focus {
  box-shadow: 0 8px 32px 0 rgba(25, 46, 77, 0.14);
  border: 2.5px solid var(--vintage-blue);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.service-card h2 {
  font-size: 1.25rem;
  color: var(--vintage-brown);
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--vintage-yellow);
  color: var(--primary);
  border-radius: 7px;
  padding: 5px 13px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  box-shadow: 0 1.5px 5px #fae29d22;
}
/*****************************
   CONTENT GRIDS & FEATURES
*****************************/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-left: 5px solid var(--vintage-red);
  background: #fff2e2;
  border-radius: 9px;
  padding: 14px 18px;
  min-width: 180px;
  margin-bottom: 20px;
}
/*********************************
   TEXT & IMAGE SECTIONS, FLEX
*********************************/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
/*****************************
   CTA / CALL TO ACTION BLOCK
*****************************/
.cta {
  background: var(--vintage-blue);
  color: #fff;
  margin-bottom: 0;
  padding: 36px 20px;
  text-align: center;
  box-shadow: 0 4px 16px #4682a944;
  border-radius: 22px;
}
.cta h2 {
  color: #ffeedd;
  font-size: 2.05rem;
  margin-bottom: 18px;
  text-shadow:0 2px 3px #192e4d22;
}
.cta p {
  font-size: 1.23rem;
  color: #fff8f0;
  margin-bottom: 18px;
}
/*********************************
   FOOTER
*********************************/
footer {
  background: var(--primary);
  color: var(--vintage-yellow);
  border-top: 5px solid var(--vintage-olive);
  padding: 34px 0 20px 0;
  font-size: 1rem;
  margin-top: 64px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer a {
  color: var(--vintage-yellow);
  text-decoration: none;
  font-family: 'Montserrat', Arial,sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  letter-spacing: .01em;
  transition: color .16s;
}
footer a:hover, footer a:focus {
  color: var(--vintage-blue);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--vintage-yellow);
  font-size: 0.99rem;
}

/*********************************
   SPECIAL TYPOGRAPHY – RETRO
*********************************/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,700&display=swap');
h1, h2, h3, .logo, .cta-button {
  letter-spacing: .03em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.card, .service-card, .feature-item, .testimonial-card {
  font-family: 'Roboto', Arial, sans-serif;
}

/*********************************
   RESPONSIVE DESIGN – MOBILE FIRST
*********************************/
@media (max-width: 1100px) {
  .container {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .footer-contact, .footer-nav, .card-container, .service-cards {
    gap: 16px;
  }
  .container {
    max-width: 98vw;
    padding: 0 6px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .main-nav {
    display:none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-button {
    margin-left: 0;
    margin-top: 12px;
  }
  .about-preview, .services-preview, .section, .cta, .card, .service-card, .testimonial-card {
    padding: 24px 12px;
  }
  .content-wrapper {
    padding: 0;
    gap: 14px;
  }
  .features, .testimonials .content-wrapper, .card-container, .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .card, .service-card, .testimonial-card, .feature-item {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}

/*********************************
   COOKIE CONSENT BANNER
*********************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--vintage-bg-dark);
  color: var(--vintage-yellow);
  z-index: 3000;
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 -2px 26px rgba(25,46,77,0.19);
  border-top: 6px solid var(--vintage-yellow);
  border-radius: 18px 18px 0 0;
  transition: transform 0.32s;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.cookie-banner__button, .cookie-banner__settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 22px;
  border-radius: 12px;
  outline: none;
  border: none;
  margin-right: 4px;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, transform 0.17s;
}
.cookie-banner__button.accept {
  background: var(--vintage-yellow);
  color: #192e4d;
}
.cookie-banner__button.accept:hover, .cookie-banner__button.accept:focus{
  background: var(--vintage-blue);
  color: #fff;
}
.cookie-banner__button.reject {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-banner__button.reject:hover, .cookie-banner__button.reject:focus{
  background: var(--vintage-olive);
}
.cookie-banner__settings {
  background: var(--vintage-blue);
  color: #fff;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus{
  background: var(--primary);
  color: var(--vintage-yellow);
}
/*********************************
   COOKIE PREFERENCES MODAL
*********************************/
.cookie-modal {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%) scale(1);
  background: #fff;
  color: #2d2a27;
  border-radius: 20px;
  box-shadow: 0 12px 60px rgba(25,46,77,0.19);
  z-index: 4000;
  min-width: 320px;
  min-height: 220px;
  max-width: 380px;
  padding: 32px 23px 26px 23px;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: cookiemodal-in .33s cubic-bezier(.8, 0, .22, 1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookiemodal-in {
  0% { transform: translate(-50%,50%) scale(0.85); opacity: 0; }
  100%{ transform: translate(-50%,50%) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 9px;
}
.cookie-modal__category label {
  font-size: 1.07rem;
}
.cookie-modal__save {
  background: var(--vintage-yellow);
  color: var(--primary);
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px #fae29d33;
  padding: 12px 28px;
  margin-top: 16px;
  align-self: flex-end;
}
.cookie-modal__save:hover, .cookie-modal__save:focus{
  background: var(--vintage-blue);
  color: #fff;
}
.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 17px;
  background: transparent;
  border: none;
  font-size: 1.45rem;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus{
  color: var(--vintage-red);
}
/* Essential cookies always enabled (simulate lock icon) */
.cookie-modal__category .locked {
  color: var(--vintage-red);
  font-size: 1.09em;
  margin-left: 2px;
}
/*****************************************
    FORMS (for contact/contact info)
******************************************/
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--vintage-blue);
  border-radius: 6px;
  padding: 9px 14px;
  background: #fff;
  color: var(--primary);
  margin-bottom: 16px;
  transition: border-color 0.16s;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--vintage-brown);
  outline: none;
}
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: normal;
}
/*****************************************
   MISC UTILITIES & MICRO-INTERACTIONS
*****************************************/
.card::before, .service-card::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  width: 34px; height: 34px;
  background: repeating-radial-gradient(circle at 8px 8px, var(--vintage-yellow) 0px, var(--vintage-yellow) 4px, transparent 6px, transparent 100%);
  opacity: 0.15;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.18s;
}
.card:hover::before, .service-card:hover::before {
  opacity: 0.23;
}
/* Subtle retro horizontal lines in sections */
.section:not(.hero)::after {
  content: '';
  display: block;
  width: 32%;
  margin: 29px auto 0 auto;
  border-bottom: 3px dotted var(--vintage-brown);
  opacity: 0.16;
}

/*********************************************
   RETRO BADGES & DECORATIVE ELEMENTS
*********************************************/
.badge {
  display: inline-block;
  background: var(--vintage-yellow);
  color: var(--vintage-brown);
  padding: 3.5px 12px;
  border-radius: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.91rem;
  letter-spacing: 0.07em;
  margin-right: 8px;
  text-transform: uppercase;
  box-shadow: 0 1px 7px #fae29d18;
}

/*********************************
   MISC: PRINT, SELECTION, SCROLL
*********************************/
::selection {
  background: var(--vintage-blue);
  color: #fffbe6;
}

/*********************************
   ACCESSIBILITY UTILITIES
*********************************/
.sr-only {
  position: absolute;
  left: -9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

/*********************************
   HIDE/SHOW LOGIC CLASSES
*********************************/
.hide, [hidden] {
  display: none !important;
}

/*********************************
   PRINT STYLES
*********************************/
@media print {
  header, footer, nav, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body, main, section, .container, .content-wrapper {
    background: #fff !important;
    color: #000 !important;
  }
}
