/* == CSS RESET & NORMALIZE == */
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 {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 100%;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FCF7F0;
  color: #19232E;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #174A7C;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
}
a:hover, a:focus { color: #A13C0D; }
ul, ol {
  list-style: none;
}

/* == VINTAGE RETRO BRAND COLORS & FONTS == */
:root {
  --primary: #174A7C;
  --secondary: #17212B;
  --accent: #F2C230;
  --cream: #FCF7F0;
  --deep-orange: #A13C0D;
  --mint: #D4E1C1;
  --brown: #5C3929;
}

body {
  background: var(--cream);
  color: var(--secondary);
  font-family: 'Open Sans', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Futura', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: var(--brown);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }

p, li, span, a, strong {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--secondary);
}
strong {
  font-weight: 700;
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.08rem; }
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

/* == HEADER & NAVIGATION == */
header {
  background: var(--accent);
  border-bottom: 4px double var(--brown);
  padding: 10px 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1100;
  font-family: 'Montserrat', 'Futura', Arial, sans-serif;
}
header a img {
  height: 50px;
  filter: sepia(0.25) contrast(110%);
  margin-left: 18px;
}
.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 17px;
  margin-left: 32px;
  margin-right: auto;
}
.main-nav a {
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
  text-shadow: 0 1px 0 #fff8dd;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brown);
  text-decoration: underline wavy var(--deep-orange) 2px;
}
.cta-btn {
  background: var(--primary);
  color: #fffbe9;
  border-radius: 18px;
  padding: 11px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-left: 24px;
  box-shadow: 0 2px 8px 0 rgba(34, 26, 0, 0.15), 0 1px 0 #aa7840 inset;
  border: none;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s cubic-bezier(.68,-0.55,.27,1.55);
  text-shadow: 0 2px 0 #613b10c2;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--deep-orange);
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-1.2deg);
  box-shadow: 0 5px 16px 0 rgba(161, 60, 13, 0.17);
}
/* Hide burger on desktop */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
    margin-left: 10px;
  }
  .cta-btn {
    padding: 9px 16px;
    font-size: 16px;
    margin-left: 12px;
  }
  header a img { height: 42px; }
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 8px 0;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--brown);
    margin-right: 16px;
    cursor: pointer;
    z-index: 1201;
    padding: 8px 12px;
    border-radius: 50%;
    transition: background .2s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: var(--mint);
    color: var(--deep-orange);
  }
}

/* == MOBILE MENU OVERLAY == */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #E6D2A8d0;
  backdrop-filter: blur(5px);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  transform: translateX(-105vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.92,-0.47,.17,1.3), opacity .28s 0.06s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--brown);
  font-size: 2rem;
  border: none;
  margin: 18px 26px 8px 0;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s;
  z-index: 1401;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 36px;
  margin-top: 14px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--brown);
  background: var(--cream);
  border: 2px solid var(--primary);
  border-radius: 14px;
  padding: 14px 30px 14px 16px;
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 4px;
  width: 100%;
  text-align: left;
  box-shadow: 0 1px 4px #0001;
  transition: border .18s, box-shadow .18s, background .18s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  border: 2px solid var(--deep-orange);
  color: #fff;
  background: var(--deep-orange);
  box-shadow: 0 3px 16px 0 #42200133;
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important;}
  .mobile-menu-toggle { display: none !important;}
}

/* == HERO, SECTION, SPACING == */
.section, section.hero, section.features, section.cta, section.testimonials, section.about, section.about-details, section.services, section.contact-details, section.legal, section.thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffbe9;
  border-radius: 32px;
  box-shadow: 0 4px 24px 2px #B2A06C20, 0 0.5px 1.5px 0 #e4c77a0b;
  border: 3px dashed var(--mint);
  position: relative;
  overflow: visible;
}
section.hero {
  background: linear-gradient(120deg, #F2C230 75%, #D4E1C1 100%);
  box-shadow: 0 6px 32px 0 #A13C0D0d;
  border: 0;
  border-bottom: 4px double var(--brown);
  border-radius: 0 0 38px 38px;
  padding-top: 54px;
}
section.cta {
  background: var(--mint);
  border: 3px solid var(--deep-orange);
  box-shadow: 0 2px 10px 1px #F2C23055;
  border-radius: 38px;
  text-align: center;
  position: relative;
  z-index: 0;
}
section.thank-you .container {
  text-align: center;
}

@media (max-width: 768px) {
  .section,
  section.hero, section.features, section.about, section.cta, section.testimonials,
  section.about-details, section.services, section.contact-details, section.legal, section.thank-you {
    margin-bottom: 36px;
    padding: 24px 6px;
    border-radius: 16px;
  }
  section.hero { border-radius: 0 0 16px 16px; }
}

/* == FLEXBOX LAYOUTS & SPACING == */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 10px #AF970444;
  padding: 26px;
  min-width: 220px;
  max-width: 100%;
}
.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: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* == FEATURE SECTION == */
.features .feature-grid, .features ul, .about .text-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  padding-left: 0 !important;
}
.features .feature-grid li, .features ul li, .about .text-section ul li {
  background: #F7F3E7;
  border: 2px solid var(--mint);
  border-radius: 16px;
  box-shadow: 0 1.5px 9px #17212B11;
  padding: 20px 18px 18px;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 340px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
}
.features .feature-grid li img {
  width: 39px;
  height: 39px;
  margin-bottom: 10px;
  filter: sepia(0.4) saturate(0.8) contrast(120%) hue-rotate(-18deg);
}
@media (max-width: 900px) {
  .features .feature-grid, .features ul, .about .text-section ul {
    flex-direction: column;
    gap: 14px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* == SERVICE LIST == */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.service-list li {
  background: #F7F2E9;
  border: 2px solid var(--brown);
  border-radius: 19px;
  box-shadow: 0 2px 9px #174A7C16;
  padding: 24px 22px 18px;
  min-width: 220px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
  transition: box-shadow .22s, transform .12s;
  position: relative;
  z-index: 0;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 7px 24px #A13C0D11, 0 2px 8px #F2C23033;
  transform: translateY(-3px) scale(1.013) rotate(-1deg);
}
.price {
  margin-top: 8px;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--accent);
  border-radius: 9px;
  padding: 2px 12px;
  box-shadow: 0 1px 4px #e1c87329;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

/* == POST LIST FOR BLOG == */
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post-list li {
  background: #FCF7F0;
  border: 2px solid var(--mint);
  border-radius: 16px;
  box-shadow: 0 1px 5px #17212B16;
  padding: 22px 18px;
  flex: 1 1 240px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  transition: box-shadow .18s, transform .11s;
}
.post-list li:hover,
.post-list li:focus-within {
  box-shadow: 0 6px 22px #F2C23022, 0 1px 4px #37211919;
  transform: translateY(-2px) scale(1.011) rotate(1deg);
}

.category-overview {
  margin-top: 12px;
  background: var(--cream);
  border-left: 6px solid var(--accent);
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 0 12px 12px 0;
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
}

/* == TESTIMONIALS/WARNING/REVIEW CARDS == */
.testimonials {
  background: #F7F3E7 linear-gradient(90deg,#FCF7F0 60%,#EDE7DA 100%);
  border: 0;
  border-radius: 31px;
}
.testimonials h2 { color: var(--primary); }

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 14px;
  box-shadow: 0 3px 14px #174A7C0b;
  margin-bottom: 20px;
  font-size: 1.05em;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  flex-direction: column;
  border: 2.5px solid var(--primary);
}
.testimonial-card p {
  color: var(--secondary);
  font-style: italic;
  font-size: 1.14em;
  margin-bottom: 7px;
  line-height: 1.36;
  letter-spacing: 0.01em;
}
.testimonial-card span {
  color: var(--brown);
  font-weight: 700;
  font-size: 1em;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 14px;
    gap: 10px;
    font-size: 1em;
  }
}

/* == LEGAL PAGES == */
.legal .text-section {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--secondary);
}
.legal h2 {
  margin-top: 20px;
  font-size: 1.18rem;
  color: var(--primary);
}

/* == CONTACT SECTION == */
.contact-details .text-section p, .contact-details a {
  font-size: 1.06rem;
}
.contact-details a {
  color: var(--primary);
  text-decoration: underline;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

/* == BUTTONS == */
button, .cta-btn, .cookie-banner button, .cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  border: none;
  margin: 0;
  transition: all .19s cubic-bezier(0.4,0,0.2,1);
}

button:focus, .cta-btn:focus, .cookie-banner button:focus, .cookie-modal button:focus {
  outline: 2px solid var(--deep-orange);
  outline-offset: 2px;
}

/* == FOOTER == */
footer {
  background: #E6D2A8;
  border-top: 4px double var(--brown);
  padding: 40px 0 18px 0;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--brown);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 1.01em;
  transition: background .15s, color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--primary);
  color: #fff;
}
.footer-info {
  font-size: 0.97rem;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 640px) {
  .footer-nav { gap: 10px; }
  footer { padding: 24px 0 8px 0; }
}

/* == COOKIE CONSENT BANNER == */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--cream);
  border-top: 4px double var(--brown);
  box-shadow: 0 -3px 14px #613b1040;
  z-index: 15000;
  padding: 22px 16px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: bannerSlideIn .6s cubic-bezier(.72,-0.48,.25,1.55);
}
@keyframes bannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 200px;
  color: var(--brown);
  font-size: 1.04rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner__actions button {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 1rem;
  margin: 0;
  background: var(--primary);
  color: #fffbe9;
  min-width: 120px;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 6px #174A7C18;
}
.cookie-banner__actions .cookie-reject {
  background: var(--brown);
  color: #fffbe9;
}
.cookie-banner__actions .cookie-settings {
  background: var(--accent);
  color: var(--secondary);
  border: 2px solid var(--primary);
}
.cookie-banner__actions button:hover, .cookie-banner__actions button:focus{
  filter: brightness(0.89) contrast(1.15);
  box-shadow: 0 6px 22px #A13C0D11;
}
@media (max-width: 550px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 7px; padding: 14px 4px; }
}

/* == COOKIE PREFERENCES MODAL == */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -56%) scale(0.98);
  background: #fffbe9;
  border: 3px solid var(--accent);
  border-radius: 30px;
  box-shadow: 0 10px 60px #00000030;
  z-index: 15001;
  padding: 36px 28px 31px 28px;
  max-width: 370px;
  width: 96vw;
  animation: modalAppear .32s cubic-bezier(.94,-0.68,.39,1.7);
  display: none;
}
.cookie-modal.active {
  display: block;
}
@keyframes modalAppear {
  from { opacity: 0; transform: translate(-50%, -25%) scale(.96); }
  to { opacity: 1; transform: translate(-50%, -56%) scale(1); }
}
.cookie-modal__header {
  font-size: 1.24em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal__body {
  font-size: 1em;
  color: var(--secondary);
  margin-bottom: 15px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 1em;
}
.cookie-category-label {
  font-weight: 700;
  color: var(--brown);
}
.cookie-modal__switch {
  appearance: none;
  width: 46px;
  height: 24px;
  background: var(--accent);
  border-radius: 13px;
  position: relative;
  outline: none;
  margin-left: 6px;
  border: 2px solid var(--primary);
  transition: background 0.16s;
}
.cookie-modal__switch:checked {
  background: var(--primary);
}
.cookie-modal__switch:before {
  content: '';
  position: absolute;
  left: 3.5px;
  top: 3.5px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px #0001;
  transition: left 0.16s cubic-bezier(0.4,0,0.2,1);
}
.cookie-modal__switch:checked:before {
  left: 22px;
}
.cookie-modal__footer {
  display: flex;
  gap: 14px;
  margin-top: 19px;
}
.cookie-modal__footer button {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: 0;
  margin-right: 6px;
}
.cookie-modal .cookie-save {
  background: var(--primary);
  color: #fffbe9;
}
.cookie-modal .cookie-cancel {
  background: var(--brown);
  color: #fffbe9;
}
.cookie-modal .cookie-save:hover, .cookie-modal .cookie-save:focus {
  background: var(--deep-orange);
}
.cookie-modal .cookie-cancel:hover, .cookie-modal .cookie-cancel:focus {
  background: var(--accent);
  color: var(--secondary);
}
@media (max-width: 520px) {
  .cookie-modal { max-width: 99vw; padding: 18px 3vw 14px 3vw; border-radius: 13px; }
}

/* == TYPOGRAPHY ELEMENTS == */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 0;
}
.text-section ul, .text-section ol {
  list-style-type: disc;
  padding-left: 24px;
  color: var(--secondary);
  margin-bottom: 8px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1.01rem;
  line-height: 1.48;
}
.text-section ul li::marker {
  color: var(--accent);
  font-size: 1.13em;
}
.text-section ol {
  list-style-type: decimal;
}
.text-section a {
  text-decoration: underline dotted #A13C0D 1.5px;
  color: var(--primary);
  font-weight: 600;
}

/* == OTHER UTILITIES == */
::-webkit-scrollbar {
  width: 12px;
  background: #e2e2ce;
}
::-webkit-scrollbar-thumb {
  background: #C6B79A;
  border-radius: 10px;
}

/* == RETRO PATTERNS/BG == */
.section:before, .features:before, .testimonials:before, .about:before, .cta:before, .services:before, .legal:before, .thank-you:before {
  content: '';
  display: block;
  position: absolute;
  bottom: -18px;
  left: 14px;
  width: 60px;
  height: 9px;
  background: repeating-linear-gradient(90deg, var(--brown), var(--brown) 14px, transparent 14px, transparent 28px);
  opacity: 0.18;
  border-radius: 7px;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .section:before, .features:before, .testimonials:before, .about:before, .cta:before, .services:before, .legal:before, .thank-you:before {
    left: 7px; width: 32px; bottom: -7px; height: 6px; }
}

/* == MICRO-INTERACTIONS & SUBTLE SHADOWS == */
.card, .testimonial-card, .service-list li, .post-list li, .features .feature-grid li {
  transition: box-shadow .21s cubic-bezier(.44,1.23,.78,1.01), transform .11s cubic-bezier(.44,1.23,.78,1.01);
}
.card:hover, .testimonial-card:hover, .service-list li:hover, .post-list li:hover, .features .feature-grid li:hover {
  box-shadow: 0 10px 37px #A13C0D1e, 0 3px 14px #74542533;
  transform: scale(1.015) rotate(-0.7deg);
  z-index: 2;
}

/* == RESPONSIVE DESIGN (Mobile-First) == */
@media (max-width: 900px) {
  .container { padding: 0 7px; }
}
@media (max-width: 525px) {
  header, main, footer { font-size: .98em; }
  h1,h2,h3 { word-break: break-word; }
}

/* == ACCESSIBLE FOCUS HANDLING == */
:focus-visible { outline: 2px dashed var(--primary); outline-offset: 2px; }

/* == LOCAL OVERRIDES FOR SPECIAL SECTIONS == */
section.thank-you .cta-btn {
  margin-top: 22px;
  background: var(--accent);
  color: var(--brown);
}
section.thank-you .cta-btn:hover, section.thank-you .cta-btn:focus {
  background: var(--brown);
  color: #fffbe9;
}

/* == END OF STYLES == */
