/* ==== CSS RESET & BASE NORMALIZER ==== */
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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F2EADA;
  color: #213648;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #205360;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #d16838;
  text-decoration: underline;
}
ul, ol {
  margin: 16px 0 16px 20px;
  padding-left: 22px;
}
li {
  margin-bottom: 8px;
  font-family: inherit;
}

/* ==== VINTAGE RETRO COLOR PALETTE ===== */
:root {
  --color-primary: #213648;
  --color-secondary: #8FBBAA;
  --color-accent: #F2EADA;
  --color-retro-green: #8FBBAA;
  --color-retro-blue: #52675c;
  --color-retro-brown: #cbb89d;
  --color-retro-orange: #e39c4f;
  --color-retro-red: #c4584f;
  --color-retro-yellow: #fff7c0;
  --color-text-dark: #213648;
  --color-text-light: #fff;
  --color-shadow: rgba(45,40,36,0.07);
  --border-radius: 18px;
  --retro-font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  --retro-font-body: 'Open Sans', 'Gill Sans', Arial, sans-serif;
}

/* ==== TYPOGRAPHY SCALE & VINTAGE STYLING ==== */
h1, h2, h3, h4 {
  font-family: var(--retro-font-display);
  font-weight: bold;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 var(--color-retro-yellow);
}
h2 {
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, .text-section p {
  line-height: 1.7;
  margin-bottom: 16px;
  font-family: var(--retro-font-body);
  font-size: 1.08rem;
  color: var(--color-primary);
}
strong, b {
  font-weight: 700;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.13rem; }
}

/* ==== CONTAINER & SPACING PATTERNS ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius);
  background: #fffbe8;
  box-shadow: 0 3px 15px var(--color-shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 6px;
  }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.text-section {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-statement {
  background: var(--color-retro-yellow);
  border-left: 5px solid var(--color-retro-orange);
  padding: 14px 24px;
  border-radius: 12px;
  font-style: italic;
  margin: 16px 0;
  font-size: 1.1rem;
}

/* ==== FLEXBOX LAYOUTS ==== */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 16px;
}
.feature-item, .service-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 26px 22px 20px 22px;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 240px;
  border: 3px solid var(--color-retro-green);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-item img, .service-card img {
  height: 44px;
  width: auto;
  margin-bottom: 12px;
  filter: sepia(0.2) contrast(0.85) hue-rotate(-12deg); /* retro tint */
}
.feature-item:hover, .service-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 32px 0 rgba(76,52,26,0.13);
  border-color: var(--color-retro-orange);
}
@media (max-width: 900px) {
  .feature-grid, .service-list {
    flex-direction: column;
  }
  .feature-item, .service-card {
    min-width: 0;
    width: 100%;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffbe8;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 14px var(--color-shadow);
  padding: 32px 20px 18px 20px;
}

.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;
  margin: 16px 0;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 24px;
  background: #f8f4df;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px var(--color-shadow);
  border-left: 5px solid var(--color-retro-orange);
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 #e39c4f30;
  transform: scale(1.02);
}
.star-rating {
  font-size: 1.3rem;
  color: var(--color-retro-orange);
  letter-spacing: 1.5px;
  font-family: var(--retro-font-display);
  margin-bottom: 3px;
}
.customer-info {
  color: var(--color-retro-blue);
  font-size: 1rem;
  font-style: italic;
  align-self: flex-end;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 16px 10px;
    font-size: 1rem;
  }
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 18px 0;
}
.faq-item {
  flex: 1 1 290px;
  background: #fff;
  border-radius: 13px;
  padding: 18px 15px 12px 15px;
  margin-bottom: 20px;
  box-shadow: 0 2.5px 10px rgba(178,175,140,0.08);
  border: 2px solid var(--color-retro-brown);
}
.faq-item h3 {
  color: var(--color-retro-red);
  font-weight: bold;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .faq-list {
    flex-direction: column;
  }
  .faq-item {
    width: 100%;
    min-width: 0;
  }
}

.special-offers {
  background: var(--color-retro-yellow);
  border-radius: 13px;
  margin: 18px 0 8px 0;
  padding: 16px 18px 12px 18px;
}
.special-offers h3 {
  color: var(--color-retro-red);
  font-size: 1.1rem;
  font-family: var(--retro-font-display);
  margin-bottom: 9px;
}

/* ==== BUTTONS & CTA === */
.cta-btn {
  background: var(--color-retro-orange);
  color: var(--color-primary);
  font-family: var(--retro-font-display);
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 32px;
  border: none;
  margin-top: 8px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px 0 #e39c4f38;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  color: #fff;
  background: var(--color-retro-red);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px 0 #c4584f28;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #fffbe8;
  box-shadow: 0 5px 20px #e0dfa8a8;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 11px;
  padding-bottom: 11px;
  gap: 18px;
}
header img {
  height: 53px;
  max-width: 170px;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  gap: 19px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--retro-font-display);
  font-size: 1rem;
  padding: 7px 0 3px 0;
  color: var(--color-retro-blue);
  border-bottom: 2.5px solid transparent;
  transition: border 0.16s, color 0.18s;
  opacity: 0.98;
  letter-spacing: 0.03em;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-retro-red);
  border-bottom: 2.5px solid var(--color-retro-red);
}
.mobile-menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-retro-orange);
  display: none;
  padding: 6px 10px;
  margin-left: 8px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  z-index: 1002;
}
.mobile-menu-toggle:hover {
  color: var(--color-retro-red);
  background: #ffe2b8;
  border-radius: 6px;
}
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fef9e1ed;
  transform: translateX(-100vw);
  transition: transform .32s cubic-bezier(0.71,0.06,0.35,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: none;
  border: none;
  color: var(--color-retro-red);
  align-self: flex-end;
  margin: 19px 20px 0 0;
  cursor: pointer;
  padding: 2px 12px;
  border-radius: 7px;
  transition: background 0.19s;
  z-index: 2100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe2b8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 50px 32px 0 32px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: var(--retro-font-display);
  font-size: 1.2rem;
  color: var(--color-primary);
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.19s, background 0.16s, border 0.19s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f8efd5;
  color: var(--color-retro-red);
  border-color: var(--color-retro-red);
}
@media (min-width: 950px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==== FOOTER ==== */
footer {
  background: #213648;
  color: #fff;
  padding: 32px 0 20px 0;
  border-top: 5px dotted #e39c4f;
  font-size: 1rem;
  margin-top: 38px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer-menu {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #fff7c0;
  font-family: var(--retro-font-body);
  text-decoration: none;
  font-size: 0.97em;
  border-bottom: 2px solid transparent;
  transition: border 0.16s, color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-retro-orange);
  border-color: var(--color-retro-orange);
}
.social-icons {
  display: flex;
  gap: 24px;
  margin-bottom: 7px;
}
.social-icons img {
  height: 30px;
  width: 30px;
  background: #fffaf2;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 2px 8px 0 #cbb89d33;
  transition: box-shadow 0.18s, background 0.18s;
  cursor: pointer;
}
.social-icons img:hover {
  background: #ffe9ca;
  box-shadow: 0 6px 18px 0 #e39c4f38;
}
.brand-credits {
  color: #fff7c0;
  font-size: 0.93em;
  opacity: 0.88;
  text-align: center;
}
@media (max-width: 650px) {
  footer .container {
    gap: 14px;
    padding: 0 6px;
  }
}

/* ==== CONTACT DETAILS STYLES ==== */
.contact-short, .contact-details {
  margin: 16px 0;
}
.contact-short ul, .contact-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-short li, .contact-details li {
  display: flex;
  align-items: center;
  font-size: 1.08em;
  gap: 13px;
  color: var(--color-primary);
  background: #fff;
  padding: 8px 13px;
  border-radius: 10px;
  box-shadow: 0 1px 6px var(--color-shadow);
}
.contact-short li img, .contact-details li img {
  height: 26px;
  width: 26px;
  filter: grayscale(0.08) sepia(0.2) hue-rotate(-10deg);
}
.contact-details a, .contact-short a {
  color: var(--color-retro-blue);
  text-decoration: underline;
}
.contact-details a:hover, .contact-short a:hover {
  color: var(--color-retro-red);
}

/* ==== CARD, SECTION AND MISCELLANEOUS ==== */
.card-content, .text-section, .special-offers, .mission-statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

/* Support for other .feature-item layouts */
.feature-item {
  align-items: flex-start;
}

/* ==== RETRO PATTERNS & DECORATIVE ELEMENTS ===== */
.section {
  /* retro pattern overlay */
  position: relative;
  overflow: visible;
}
.section:before {
  content: "";
  display: block;
  position: absolute;
  left: -17px;
  top: 18px;
  height: 80px;
  width: 60px;
  background: repeating-linear-gradient(
    120deg,
    #ffeabd38 0 10px,
    transparent 10px 18px
  );
  border-radius: 12px;
  z-index: 0;
  opacity: .19;
}
@media (max-width: 800px) {
  .section:before { display: none; }
}
.section > .container, .section .content-wrapper {
  position: relative;
  z-index: 1;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }
  .footer-menu, .main-nav {
    gap: 11px;
  }
  .feature-item, .service-card {
    padding: 18px 12px 15px 12px;
    font-size: 0.97em;
  }
  .customer-info {
    font-size: 0.98rem;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffbe8;
  color: var(--color-text-dark);
  border-top: 4px dotted #e39c4f;
  box-shadow: 0 -6px 35px #cbb89d55;
  z-index: 3000;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.7s;
}
@keyframes cookieFadeIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p, .cookie-banner span {
  font-size: 1.05em;
  line-height: 1.5;
  margin: 0 12px 0 0;
  flex: 2 1 220px;
}
.cookie-banner .cookie-btn {
  font-family: var(--retro-font-display);
  background: var(--color-retro-orange);
  color: var(--color-primary);
  border: none;
  border-radius: 19px;
  padding: 9px 22px;
  margin-left: 10px;
  font-size: 1em;
  transition: background 0.17s, color 0.17s, transform 0.14s, box-shadow 0.17s;
  box-shadow: 0 1.5px 8px #ffdba739;
  cursor: pointer;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-retro-red);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-retro-green);
  color: var(--color-primary);
  margin-left: 16px;
}
.cookie-banner .cookie-btn.settings:hover {
  background: var(--color-retro-blue);
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 18px 8px 10px 8px;
  }
  .cookie-banner .cookie-btn {
    margin-left: 0;
    padding: 10px 20px;
    min-width: 120px;
  }
}

/* ==== COOKIE CONSENT MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.96);
  background: #fffbe8;
  color: var(--color-text-dark);
  box-shadow: 0 12px 48px #876a341f;
  z-index: 4000;
  border-radius: 22px;
  padding: 34px 42px 22px 32px;
  width: 95vw;
  max-width: 420px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, pointer-events .22s, transform .2s;
  animation: cookieModalUp 0.65s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
@keyframes cookieModalUp {
  from { opacity: 0; transform: translate(-50%,-30%) scale(0.9); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  color: var(--color-retro-red);
  font-size: 1.19em;
  margin-bottom: 13px;
  font-family: var(--retro-font-display);
}
.cookie-modal .modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.09em;
}
.cookie-modal .modal-category input[type=checkbox] {
  accent-color: var(--color-retro-green);
  transform: scale(1.15);
}
.cookie-modal .modal-category.label-disabled {
  opacity: 0.7;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 26px;
}
.cookie-modal .cookie-btn {
  font-family: var(--retro-font-display);
  background: var(--color-retro-orange);
  color: var(--color-primary);
  border: none;
  border-radius: 16px;
  padding: 9px 22px;
  font-size: 1em;
  transition: background 0.17s, color 0.17s, transform 0.14s, box-shadow 0.17s;
  min-width: 120px;
  cursor: pointer;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: var(--color-retro-red);
  color: #fff;
}
.cookie-modal .cookie-btn.secondary {
  background: var(--color-retro-green);
  color: var(--color-primary);
}
.cookie-modal .cookie-btn.secondary:hover {
  background: var(--color-retro-blue);
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 22px 7px 18px 7px;
    min-width: 0;
    max-width: 98vw;
  }
}

/* ==== UTILS ===== */
.hide { display: none !important; }

/* ==================================== */
/* ==== RETRO SUBTLE ANIMATION RULES ==== */
.cta-btn, .cookie-banner .cookie-btn, .cookie-modal .cookie-btn {
  will-change: transform, box-shadow;
}
.section, .card, .testimonial-card, .feature-item, .service-card {
  will-change: box-shadow, transform;
  transition: box-shadow 0.22s, transform 0.22s;
}

/* ===================== */
/* ==== FOCUS STYLES ==== */
:focus-visible {
  outline: 2.5px solid var(--color-retro-red);
  outline-offset: 2px;
  z-index: 10;
}

/* =========================== */
/* ==== SCROLLBAR RETRO STYLING = */
::-webkit-scrollbar {
  width: 10px;
  background: #ffe9ca;
}
::-webkit-scrollbar-thumb {
  background: var(--color-retro-orange);
  border-radius: 13px;
  border: 2px solid #ffe2b8;
}

/* ================================ */
/* ==== PRINT NEATLY ==== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; }
}
