/* --------------------
   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, main, 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;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F2F1F0;
  color: #302c23;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font: inherit;
}

/* --------------------------------------
   Vintage Retro Brand Color Variables
---------------------------------------- */
:root {
  --color-primary: #176059;
  --color-secondary: #F2F1F0;
  --color-accent: #96C63F;
  --color-accent-dark: #6a9400;
  --color-warm-cream: #fbf7ee;
  --color-warm-brown: #a36b3a;
  --color-sun-yellow: #ffe172;
  --color-retro-navy: #2d4159;
  --color-retro-red: #c1440e;
  --color-font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  --color-font-body: 'Open Sans', 'Verdana', 'Geneva', sans-serif;
}

/* --------------------
   Typography
--------------------- */
body {
  font-family: var(--color-font-body);
  font-size: 16px;
  color: #302c23;
  background: var(--color-warm-cream);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--color-font-display);
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -1px;
  font-weight: 700;
  text-shadow: 1px 1px 0 #ffe17222, 2px 2px 0 #fff8d6;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--color-retro-navy);
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, li, q, blockquote, cite, dd {
  font-size: 1rem;
  font-family: var(--color-font-body);
  color: #503a1b;
}
p {
  margin-bottom: 18px;
}
ul, ol {
  padding-left: 0;
  margin-bottom: 16px;
}
a {
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
  color: var(--color-primary);
}
a:hover, a:focus {
  color: var(--color-retro-red);
}
blockquote {
  font-style: italic;
  padding-left: 20px;
  border-left: 5px solid var(--color-accent);
  color: #574215;
  margin-bottom: 12px;
}
cite {
  display: block;
  font-size: 0.98rem;
  color: var(--color-warm-brown);
  margin-top: 8px;
  font-style: normal;
  letter-spacing: 1px;
}
.price {
  background: var(--color-sun-yellow);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: bold;
  color: var(--color-retro-navy);
  margin-left: 4px;
  box-shadow: 1px 1px 0 #ffc;
}

/* --------------------
   Container & Layout
--------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  background: #fff8d6;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 #ddd4bc22;
  padding: 32px 24px;
  margin-bottom: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: 0 repeating-linear-gradient(135deg,#ffe17222 0 12px,transparent 12px 24px);
  border-radius: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffdfa;
  border-radius: 16px;
  box-shadow: 0 4px 24px #f5e4be36;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 340px;
  border: 2px solid #e8c883;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}
.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;
  background: #fffdfa;
  border-radius: 18px;
  padding: 20px 26px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px #ffe17227, 0 0px 0px #eee;
  border: 2px dashed #ffe17288;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-item {
  flex: 1 1 240px;
  min-width: 240px;
  background: #fff;
  padding: 24px 16px;
  border-radius: 15px;
  border: 2px solid #e8c883;
  box-shadow: 0 5px 16px #ffe17213;
}

/* ---------------
   Header & Nav
-----------------*/
header {
  width: 100%;
  background: var(--color-primary);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 5px 24px #96c63f10;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header img {
  height: 52px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: var(--color-font-display);
  font-weight: 500;
  color: var(--color-secondary);
  font-size: 1.06rem;
  letter-spacing: .5px;
  padding: 7px 12px;
  border-radius: 7px;
  transition: background .2s, color .2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cta {
  font-family: var(--color-font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--color-accent);
  color: #282a2c;
  border-radius: 28px;
  border: none;
  padding: 12px 32px;
  margin-left: 8px;
  margin-right: 8px;
  cursor: pointer;
  transition: background .18s cubic-bezier(.4,0,.2,1), box-shadow .15s;
  box-shadow: 0 3px 16px #ffe17229;
  border-bottom: 3px solid var(--color-accent-dark);
}
.cta.primary {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid #e4c74f;
}
.cta.secondary {
  background: #fffdfa;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cta:hover, .cta:focus {
  background: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 5px 16px #17605925;
  text-shadow: 1px 1px 2px #00000011;
}


/* Hide mobile nav on desktop initially */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  padding: 6px 14px 8px 14px;
  cursor: pointer;
  transition: background .2s;
  z-index: 52;
  box-shadow: 0 2px 8px #e8c88322;
}
.mobile-menu-toggle:focus {
  outline: 3px dotted var(--color-primary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-warm-cream);
  z-index: 100;
  transform: translateX(120%);
  transition: transform .5s cubic-bezier(.7,.4,.22,1);
  box-shadow: 0 5px 70px #57421566;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 12vw 0 8vw;
  overflow-y: auto;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 8px 70px #57421577;
}
.mobile-menu-close {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 2.2rem;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 8px 22px 10px 22px;
  border-radius: 32px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 101;
  box-shadow: 0 2px 10px #e8c88322;
  transition: background .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-accent-dark);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: var(--color-font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-primary);
  background: #ffe17244;
  border-radius: 15px;
  padding: 14px 16px;
  margin-right: 25px;
  margin-left: 4px;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-accent-dark);
  color: #fff;
}

/* Animated section patterns (retro lines) */
.section {
  background: repeating-linear-gradient(135deg, #fff8d6 0 24px, #ffe172 24px 48px);
  border-radius: 30px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 40px #ffe17212;
}

/* ---------------
    Hero Section
-----------------*/
.hero {
  background: repeating-linear-gradient(90deg, #ffe172 0 30px, #fbf7ee 30px 60px);
  background-size: 60px 60px;
  border-bottom: 5px double var(--color-retro-red);
  padding: 38px 0 30px 0;
  margin-bottom: 16px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
  padding-top: 22px;
  padding-bottom: 20px;
}
.hero h1 {
  color: var(--color-retro-red);
  font-size: 2.8rem;
  letter-spacing: -2px;
  text-shadow: 2px 2px 0 #fff8d6, 3px 4px 0 #ffe17255;
  margin-bottom: 12px;
}
.hero .cta {
  margin-top: 18px;
}

/* ----------------
   Feature lists, Ul-list icons
------------------ */
ul li, .service-list .service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: .1px;
}
ul li img {
  margin-right: 2px;
  width: 28px;
  height: 28px;
  filter: sepia(0.44) hue-rotate(-20deg) contrast(0.95) brightness(1.15) drop-shadow(0px 2px 4px #ffe17222);
  border-radius: 30%;
}

/* ----------------
     Footer
------------------ */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 36px 0 28px 0;
  margin-top: 40px;
  border-top: 5px solid #ffe172;
}
footer .container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
footer img {
  width: 80px;
  margin-bottom: 18px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.footer-menu a {
  color: var(--color-sun-yellow);
  font-family: var(--color-font-display);
  font-size: 1rem;
  padding: 4px 0;
  transition: color .18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
}
.contact-details {
  font-size: 0.98rem;
  color: #ffe172;
  margin-top: 6px;
}

/* ------------------
   Responsive Design
-------------------- */
@media (max-width: 1100px) {
  .container { max-width: 860px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 14px; }
  .footer-menu { flex-direction: column; }
}
@media (max-width: 768px) {
  .container { max-width: 740px; padding-left: 12px; padding-right: 12px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .footer-menu { gap: 12px; }
  .contact-details { margin-top: 18px; }
  header .container { flex-wrap: wrap; gap: 10px; }
  .content-wrapper, .text-section, .service-list {
    padding: 18px 4px;
    gap: 12px;
  }
  .section, .text-section { padding: 24px 4px; margin-bottom: 33px; }
  .card-container, .content-grid, .service-list {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card, .card {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    padding: 16px 10px;
  }
  .hero { padding-bottom: 16px; }
  .hero h1 { font-size: 2.1rem; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .card, .service-item {
    padding: 16px 8px;
    min-width: unset;
    width: 100%;
    max-width: unset;
  }
}
@media (max-width:600px) {
  body { font-size: 15px; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.10rem; }
  .footer-menu, .content-wrapper, .text-section {
    gap: 6px; padding: 7px 3px;
  }
  footer .container { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero h1 { font-size: 1.35rem; }
}

/* ------------------------
   Card, Testimonial Details
--------------------------- */
.card {
  border-radius: 14px;
  box-shadow: 0 6px 30px #bca36b0a, 0 1px 2px #2c2c2105;
  border: 2px solid #e8c883;
}
.testimonial-card {
  box-shadow: 0 4px 17px #ffe17222;
  background: #fffdfa;
  border: 2px dashed #ffe17299;
  color: #342710;
}
.testimonial-card blockquote {
  color: #342710;
  font-family: var(--color-font-display);
}

/* ------------------------------------
  Cookie Consent Banner and Modal
-------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe5;
  box-shadow: 0 -4px 34px #ffe17277;
  padding: 22px 8vw 20px 8vw;
  border-top: 4px double var(--color-accent-dark);
  z-index: 900;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  animation: fadeInCookie .7s;
}
@keyframes fadeInCookie {
  0% { opacity: 0; transform: translateY(80px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  color: #4e370c;
  font-family: var(--color-font-body);
  font-size: 1rem;
  max-width: 320px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: var(--color-font-display);
  font-size: .99rem;
  border: none;
  border-radius: 20px;
  padding: 9px 22px;
  margin-right: 2px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  transition: background .17s, color .17s;
  box-shadow: 0 2px 8px #ffe17233;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-accent-dark);
  color: #fff;
}
.cookie-banner .settings {
  background: #fffdfa;
  color: var(--color-primary);
  border: 2px solid var(--color-accent-dark);
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #57421588;
  animation: fadeInBg .34s;
}
@keyframes fadeInBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  bottom: 50%; left: 50%;
  transform: translate(-50%, 50%);
  min-width: 330px;
  max-width: 96vw;
  background: #fffdfa;
  border-radius: 18px;
  padding: 34px 22px 22px 22px;
  z-index: 1000;
  border: 4px solid var(--color-accent);
  box-shadow: 0 4px 40px #ffe17299;
  animation: modalAppear .3s;
}
@keyframes modalAppear {
  0% { opacity: 0; transform: translate(-50%, 70%); }
  100% { opacity: 1; transform: translate(-50%, 50%); }
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cookie-modal ul {
  margin-bottom: 20px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-accent-dark);
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
}
.cookie-modal .cookie-modal-close {
  background: var(--color-primary);
  color: #fffbe5;
  padding: 6px 12px;
  border-radius: 15px;
  position: absolute;
  top: 16px; right: 16px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--color-retro-red);
}

/* ----------------------
  Microinteractions/Transitions
------------------------ */
a, .cta, .main-nav a, .mobile-nav a, .service-item, .card, .testimonial-card, .cookie-modal, .cookie-banner button {
  transition: background 0.23s cubic-bezier(.4,0,.2,1), color 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1), border .18s;
}
.card:hover, .service-item:hover {
  background: #ffe1722c;
  box-shadow: 0 8px 24px #ffe17244;
  outline: 2px solid var(--color-retro-red);
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2.5px;
  background: var(--color-sun-yellow);
  border-radius: 4px;
  margin-top: 2px;
  transition: width .22s cubic-bezier(.4,0,.2,1);
}
.main-nav a:hover:after,.main-nav a:focus:after{width: 92%;}


/* ----------------------
     Miscellaneous
------------------------ */
[tabindex]:focus, button:focus, .cta:focus {
  outline: 2px solid var(--color-retro-red);
  outline-offset: 2px;
}
address {
  font-style: normal;
}
hr {
  border: none;
  border-top: 1.5px dashed var(--color-primary);
  margin: 30px 0;
}

/* Hide cookie modal by default */
.cookie-modal, .cookie-modal-backdrop {
  display: none;
}
.cookie-modal.active, .cookie-modal-backdrop.active {
  display: block;
}

/* Accessibility: visually hidden utility */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px; margin: -1px;
  overflow: hidden; padding: 0;
  position: absolute; width: 1px;
}

/* ----------------------------------------------
   Spacing enforcement for all cards & containers
------------------------------------------------ */
.card, .service-item, .testimonial-card {
  margin-bottom: 20px;
}
.section .card, .section .testimonial-card, .section .service-item {
  margin-bottom: 20px;
}
.card-container, .service-list, .content-grid {
  gap: 24px;
}
.text-image-section, .feature-item {
  gap: 15px;
}

/* -----------------------------------
   Dark text on testimonials & reviews
-------------------------------------- */
.testimonial-card, .testimonial-card blockquote, .testimonial-card cite {
  color: #342710 !important;
  background: #fffdfa;
}

/* ---------------------------------
   Prevent overlapping of all elements
------------------------------------ */
.card, .testimonial-card, .feature-item, .service-item, .cookie-banner, .cookie-modal {
  z-index: 1;
  box-sizing: border-box;
}

/* End of file */
