/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAF3EE;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: #964B00;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #25E4E7;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}

/* Brand Fonts: Montserrat for display text, Roboto for body */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #181C31;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: -2px;
  margin-bottom: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #2E2320;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  color: #864A21;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
p, li, span, .cta-text {
  font-size: 1.0625rem;
  color: #322920;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.4px;
  line-height: 1.7;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFAE6;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(97, 47, 17, 0.07), 0 2px 0 #EDE0CE;
}

/* Vintage Retro palette */
:root {
  --brand-primary: #181C31;
  --brand-secondary: #25E4E7;
  --brand-accent: #FFD95F;
  --vintage-bg: #FFFAE6;
  --vintage-header: #E39F36;
  --vintage-brown: #864A21;
  --vintage-rose: #FEA88C;
  --vintage-moss: #B7C37B;
  --vintage-burgundy: #B46758;
  --shadow-1: 0 2px 10px 0 rgba(97, 47, 17, 0.07), 0 2px 0 #EDE0CE;
  --border-radius-xl: 18px;
  --border-radius-m: 12px;
  --pattern-stripes: repeating-linear-gradient(-45deg, #FCEFC5, #FCEFC5 12px, #FFF6DC 12px, #FFF6DC 24px);
}

/* Hero Section */
.hero {
  background: var(--pattern-stripes), linear-gradient(90deg, #FFD95F 0%, #FEA88C 100%);
  border-radius: 0 0 38px 38px;
  padding: 62px 0 48px 0;
  box-shadow: 0 4px 28px 0 rgba(97,47,17,0.10);
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* Feature Sections & Cards */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAF3EE;
  border: 2.5px solid #FFD95F;
  border-radius: var(--border-radius-xl);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 8px;
  filter: sepia(0.4) contrast(1.2);
}
.feature-item:hover {
  box-shadow: 0 10px 30px 0 rgba(255, 217, 95, 0.24), 0 2px 0 #FCEFC5;
  transform: translateY(-4px) scale(1.025);
  border-color: var(--brand-accent);
}
.feature-item h3 {
  margin-bottom: 0;
  color: #B46758;
}
.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #964B00;
}

.btn-primary {
  background: linear-gradient(90deg, #FFD95F 0%, #FEA88C 100%);
  color: #181C31;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: var(--border-radius-m);
  padding: 13px 38px;
  font-size: 1.08rem;
  cursor: pointer;
  margin-top: 16px;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px 0 rgba(201, 146, 56, 0.14);
  transition: background 0.2s, box-shadow 0.15s, color 0.2s;
  text-transform: uppercase;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #E39F36 20%, #FEA88C 80%);
  color: #181C31;
  box-shadow: 0 6px 28px 0 rgba(255, 217, 95, 0.16);
}

/* Text/Image Sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  margin-bottom: 14px;
}
.text-section ul {
  list-style: disc inside;
  margin: 12px 0 12px 10px;
}
.text-section ul li {
  margin-bottom: 10px;
  padding-left: 5px;
}

/* Card Containers */
.card-container, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-1);
  background: #FCEFC5;
  padding: 28px 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 #FFD95F22;
  transform: translateY(-3px) scale(1.014);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Testimonials */
.testimonials {
  background: #FFF6DC;
  border-radius: 32px;
  margin-bottom: 60px;
  box-shadow: 0 2px 12px 0 #B4675844;
  padding-top: 34px;
  padding-bottom: 34px;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #FFF;
  border: 2px solid #FCEFC5;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 2px 16px 0 #B7C37B22, 0 2px 0 #FFD95F22;
  min-width: 260px;
  flex: 1 1 300px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border 0.18s, transform 0.16s;
}
.testimonial-card:hover {
  border-color: #B7C37B;
  box-shadow: 0 8px 26px 0 #FFD95F44;
  transform: translateY(-2px) scale(1.014);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #372620;
  font-style: italic;
}
.testimonial-meta {
  font-size: 1rem;
  color: #A07549;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-meta span {
  color: #FFD95F;
  font-size: 1.12em;
  margin-left: 8px;
}

/* Call To Action (CTA) Section */
.cta-text {
  font-size: 1.15rem;
  color: #372620;
  margin: 14px 0 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}

/* Header Styles */
header {
  background: #FFD95F;
  box-shadow: 0 2px 10px 0 #E39F3640;
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 20px 20px;
}
.brand-logo {
  height: 54px;
  width: auto;
  margin-right: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #181C31;
  font-size: 1.13rem;
  font-weight: 800;
  transition: color 0.16s;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 7px 0;
}
header nav a:hover, header nav a:focus {
  color: #B46758;
}
header .btn-primary {
  margin: 0;
}

/* Footer */
footer {
  background: #181C31;
  color: #FFD95F;
  padding: 38px 0 20px 0;
  margin-top: 60px;
  border-radius: 38px 38px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #FFD95F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #25E4E7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  color: #FCEFC5;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 19px;
  left: 18px;
  z-index: 103;
  background: #181C31;
  color: #FFD95F;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px #181C3122;
  transition: background 0.18s, color 0.2s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFD95F;
  color: #181C31;
  outline: none;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  background: #181C31;
  position: fixed;
  top: 0;
  left: 0;
  width: 86vw;
  max-width: 360px;
  height: 100vh;
  z-index: 999;
  box-shadow: 6px 0 42px #181C3140;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.33s cubic-bezier(.58,.01,.6,1), opacity 0.2s;
  padding: 18px 0 0 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFD95F;
  font-size: 2.2rem;
  line-height: 1;
  margin: 0 0 0 22px;
  cursor: pointer;
  padding: 5px 10px;
  align-self: flex-end;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #25E4E7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 32px 0 0 32px;
  width: 85%;
}
.mobile-nav a {
  color: #FFD95F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 13px 0 13px 12px;
  letter-spacing: 0.8px;
  border-left: 5px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #25E4E7;
  border-left: 5px solid #25E4E7;
  background: #292E4A;
}

/* Responsive Layouts */
@media (max-width: 1100px) {
  .container, .content-wrapper {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .section {
    margin-bottom: 48px;
    padding: 28px 9px;
  }
  .feature-item, .testimonial-card {
    flex: 1 1 100%;
    min-width: 210px;
  }
  footer .container {
    flex-direction: column;
    gap: 21px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 16px 10px 10px 10px;
  }
  .feature-grid, .testimonial-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section, .content-grid {
    flex-direction: column !important;
    gap: 20px;
    align-items: flex-start;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header nav,
  header .btn-primary {
    display: none;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .testimonials {
    padding: 18px 0 18px 0;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.35rem;
    margin-bottom: 9px;
  }
  .hero {
    padding: 36px 0 23px 0;
  }
  .section {
    padding: 16px 3vw;
    margin-bottom: 35px;
  }
  .feature-item, .testimonial-card {
    padding: 14px 7px;
  }
  .btn-primary {
    padding: 10px 17px;
    font-size: 1rem;
  }
  .brand-logo {
    height: 38px;
  }
  footer {
    padding: 24px 0 13px 0;
    border-radius: 26px 26px 0 0;
  }
}

/* Microinteractions & Transitions */
*:focus {
  outline: 2px dashed #25E4E7;
  outline-offset: 3px;
  z-index: 2;
}
.feature-item:active, .btn-primary:active {
  transform: translateY(1px) scale(0.99);
}

/* Decorative Patterns & Nostalgia */
.section {
  background: #FFFAE6 url('data:image/svg+xml;utf8,<svg width="80" height="40" viewBox="0 0 80 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="80" height="40" fill="%23FFF6DC"/><path d="M5 20 Q10 7 20 20 T35 20 T50 20 T65 20 T80 20" stroke="%23E39F36" stroke-width="1.5" fill="none"/></svg>') repeat-x top left;
}
.feature-item {
  background-image: url('data:image/svg+xml;utf8,<svg width="6" height="20" viewBox="0 0 6 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="6" height="20" fill="%23FFE6B3"/></svg>');
  background-repeat: no-repeat;
  background-position: top left;
}
.testimonial-card {
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="14" viewBox="0 0 100 14" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="50" cy="7" rx="49" ry="5" fill="%23FCEFC5"/></svg>');
  background-repeat: no-repeat;
  background-position: bottom center;
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FCEFC5;
  color: #181C31;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 -2px 16px #FAF3EE33;
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1040;
  border-radius: 31px 31px 0 0;
  animation: cookie-banner-slidein 0.37s cubic-bezier(.67,-0.04,.65,.98);
}
@keyframes cookie-banner-slidein {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.1rem;
  color: #372620;
}
.cookie-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 23px;
  cursor: pointer;
  margin-right: 5px;
  transition: background 0.16s, color 0.17s;
}
.cookie-btn.accept {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #E39F36;
  color: #fff;
}
.cookie-btn.reject {
  background: #FEA88C;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #B46758;
}
.cookie-btn.settings {
  background: #F5F5F5;
  color: #372620;
  border: 2px solid #FFD95F;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFD95F;
  color: #181C31;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  background: rgba(24, 28, 49, 0.65);
  position: fixed;
  z-index: 1150;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from {opacity:0;} to {opacity:1;}
}
.cookie-modal {
  background: #FFF6DC;
  color: #181C31;
  border-radius: 22px;
  width: 99vw;
  max-width: 390px;
  box-shadow: 0 4px 35px rgba(24,28,49,0.09), 0 0px 0px #FFD95F;
  padding: 36px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modal-slidein 0.31s cubic-bezier(.67,-0.13,.45,1.11);
  position: relative;
  z-index: 1203;
}
@keyframes modal-slidein {
  from {
    transform: scale(0.93) translateY(80px);
    opacity: 0;
  } to {
    transform: none;
    opacity: 1;
  }
}
.cookie-modal h2 {
  color: #B46758;
  font-size: 1.18rem;
  margin-bottom: 6px;
  text-transform: unset;
  letter-spacing: 0.6px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #B46758;
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 1.48rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 5px 10px;
  transition: background 0.13s, color 0.11s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFD95F33;
  color: #181C31;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 10px 0 10px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FFD95F;
  width: 22px;
  height: 22px;
  margin-right: 4px;
}
.cookie-category input[disabled] {
  accent-color: #B7C37B;
  opacity: 0.6;
}
.cookie-category label {
  font-size: 1rem;
  color: #322920;
  font-weight: 500;
}

/* Accent Elements */
strong {
  color: #B46758;
  font-weight: 700;
}

/* Misc Utility Classes */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* Accessibility */
.sr-only {
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* Hide scrollbars on mobile menu if not needed */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Ensure min spacing always present for cards */
.card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}

/* Ensure no element overlaps by guaranteeing minimum spacing in content grids */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Hide default main nav on mobile */
@media (max-width: 768px) {
  header nav, header .btn-primary {
    display: none !important;
  }
}

/* END OF CSS */
