/* ===== 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAF7F1; /* Subtle, retro base */
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #253746;
  font-size: 16px;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #FFCF6D;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ===== VINTAGE/RETRO COLOR PALETTE BASED ON BRAND ===== */
:root {
  --primary: #253746;
  --secondary: #FFCF6D;
  --accent: #F1F3F8;
  --retro-orange: #FF9A56;
  --retro-red: #F25060;
  --retro-mint: #73C6B6;
  --retro-forest: #184D47;
  --retro-beige: #FAF7F1;
  --retro-brown: #66523B;
  --text-dark: #253746;
  --text-light: #73562F;
  --shadow-main: 0 4px 16px rgba(61,39,13, 0.10);
  --font-display: 'Bebas Neue', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0px 1px 0 #FFCF6D, 1px 1px 0 #F25060;
}
h2 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--retro-forest);
}
h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--retro-red);
}
p, ul, li {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
ul {
  padding-left: 16px;
  margin-bottom: 16px;
}
li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
ul li:before {
  content: '◦';
  position: absolute;
  left: 0;
  color: var(--retro-mint);
  font-size: 20px;
  top: 1px;
}
blockquote {
  font-size: 18px;
  font-family: var(--font-body);
  background: var(--accent);
  padding: 24px 32px;
  margin-bottom: 12px;
  border-left: 8px solid var(--retro-orange);
  box-shadow: var(--shadow-main);
  color: var(--text-dark);
  border-radius: 10px 18px 10px 22px;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-beige);
  border-radius: 18px;
  box-shadow: var(--shadow-main);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--accent);
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(61,39,13, 0.12);
  overflow: hidden;
  transition: box-shadow 0.26s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(253, 125, 67, 0.16);
  transform: translateY(-3px) scale(1.015);
}
.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;
  padding: 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow-main);
  margin-bottom: 24px;
  border-left: 8px solid var(--retro-mint);
  flex-wrap: wrap;
  color: var(--text-dark);
}
.testimonial-card blockquote {
  font-size: 18px;
  margin: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.testimonial-card span {
  font-family: var(--font-display);
  color: var(--retro-brown);
  font-size: 16px;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--retro-beige);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: var(--shadow-main);
  min-width: 180px;
}

/* ====== HEADER & NAVIGATION ====== */
header {
  background: var(--primary);
  border-bottom: 7px solid var(--secondary);
  box-shadow: 0 3px 14px #25374622;
  position: relative;
  z-index: 42;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 54px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 20px;
  padding: 6px 10px;
  border-radius: 7px;
  letter-spacing: 1px;
  background: none;
  transition: background 0.26s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 10px var(--secondary)55;
}
.main-nav .cta.primary {
  background: var(--retro-orange);
  color: #fff;
  font-family: var(--font-display);
  border-radius: 16px;
  padding: 9px 24px;
  margin-left: 16px;
  font-size: 22px;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.18s;
  box-shadow:0 6px 18px #f2506022;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: var(--retro-red);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-red);
  border: none;
  color: #fff;
  font-size: 34px;
  padding: 6px 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  z-index: 1101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-orange);
  transform: scale(1.08);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  box-shadow: 0 10px 90px #0007;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.55,.07,.3,1.22);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: none;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 36px;
  font-weight: 700;
  margin: 18px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s, transform 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-red);
  transform: rotate(6deg) scale(1.15);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 40px;
  align-items: center;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 26px;
  background: none;
  padding: 13px 18px;
  border-radius: 14px;
  margin: 2px auto;
  width: 80%;
  text-align: center;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
  background: repeating-linear-gradient(45deg, var(--secondary) 0px, var(--secondary) 20px, var(--retro-beige) 20px, var(--retro-beige) 40px);
  padding: 58px 0 48px 0;
  margin-bottom: 38px;
  border-bottom: 8px solid var(--retro-mint);
  box-shadow: 0 8px 28px #FAF7F155;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: var(--retro-brown);
  margin-bottom: 12px;
  text-shadow: 1px 1px 0 var(--secondary), 2px 2px 0 var(--accent);
}
.hero p {
  font-size: 21px;
  color: var(--retro-forest);
  margin-bottom: 22px;
}

/* ===== FEATURES & GRIDS ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.feature-grid li {
  background: var(--accent);
  border-radius: 15px;
  box-shadow: 0 3px 12px #21272a0a;
  padding: 30px 24px 18px 24px;
  min-width: 210px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  border: 3px dashed var(--retro-mint);
  transition: background 0.16s, box-shadow 0.20s, transform 0.15s;
}
.feature-grid li:hover {
  background: var(--secondary);
  border-color: var(--retro-orange);
  box-shadow: 0 10px 38px #FFCF6D33;
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  height: 40px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  font-size: 22px;
  color: var(--retro-red);
  font-family: var(--font-display);
  margin-bottom: 6px;
}

/* ====== CTA BUTTONS ====== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  border: none;
  border-radius: 18px;
  padding: 14px 32px;
  margin-top: 8px;
  box-shadow: 0 2px 8px #FF9A5632;
  transition: background 0.19s, color 0.14s, transform 0.16s;
  cursor: pointer;
  letter-spacing: 1px;
  background: var(--retro-mint);
  color: var(--primary);
  text-shadow: none;
}
.cta.primary {
  background: var(--retro-orange);
  color: #fff;
  box-shadow: 0 6px 24px #F2506055;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--retro-red);
  color: #fff;
  transform: scale(1.045);
}
.cta.secondary {
  background: var(--secondary);
  color: var(--retro-brown);
  box-shadow: 0 2px 12px #ffcf6d44;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--retro-mint);
  color: var(--primary);
  transform: scale(1.045);
}

/* ====== CARDS & SHADOWS ====== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 26px 26px 24px 26px;
}

/* ===== CONTACT DETAILS ===== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-family: var(--font-body);
  color: var(--text-dark);
}
.contact-details img {
  height: 22px;
  width: 22px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: var(--secondary);
  font-family: var(--font-body);
  padding: 38px 0 0 0;
  position: relative;
  margin-top: 48px;
  border-top: 7px solid var(--secondary);
  box-shadow: 0 -4px 20px #25374622;
}
footer .container > section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 9px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 16px;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--retro-red);
  color: #fff;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  max-width: 560px;
}
.brand-info img {
  height: 45px;
}
.brand-info p {
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 17px;
}
.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 10px;
}
.social-links a img {
  height: 33px;
  width: 33px;
  filter: drop-shadow(0 2px 4px #25374633);
  transition: filter 0.15s, transform 0.15s;
}
.social-links a:hover img,
.social-links a:focus img {
  filter: drop-shadow(0 8px 15px var(--retro-orange));
  transform: scale(1.12);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 30px 18px 24px 18px;
  box-shadow: 0 -2px 16px #25374633;
  z-index: 1700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.29s;
  transform: translateY(120px);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.cookie-banner .cookie-banner-btns {
  display: flex;
  gap: 16px;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  border: none;
  font-family: var(--font-display);
  font-size: 18px;
  padding: 11px 29px;
  border-radius: 14px;
  margin-right: 4px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, transform 0.15s;
  box-shadow: 0 2px 9px var(--retro-mint)1a;
}
.cookie-banner .accept {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--retro-red);
}
.cookie-banner .reject {
  background: var(--retro-red);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--primary);
}
.cookie-banner .settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--retro-mint);
  color: var(--primary);
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  display: none;
  flex-direction: column;
  align-items: center;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  justify-content: center;
  background: rgba(37,55,70,0.88);
  z-index: 2200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--accent);
  border-radius: 23px;
  box-shadow: 0 6px 38px #25374626;
  padding: 48px 40px 29px 40px;
  min-width: 310px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 29px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--retro-red);
  cursor: pointer;
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--retro-forest);
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.cookie-modal .toggle {
  width: 48px;
  height: 28px;
  background: var(--retro-mint);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-modal .toggle input {
  display: none;
}
.cookie-modal .toggle span {
  display: block;
  height: 22px;
  width: 22px;
  background: var(--secondary);
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: left 0.14s;
}
.cookie-modal .toggle input:checked + span {
  left: 23px;
  background: var(--retro-orange);
}
.cookie-modal .cookie-category .lock {
  color: var(--retro-red);
  font-size: 19px;
  margin-right: 7px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .modal-actions button {
  border: none;
  padding: 10px 29px;
  font-family: var(--font-display);
  font-size: 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, transform 0.15s;
  background: var(--retro-mint);
  color: var(--primary);
}
.cookie-modal .modal-actions .accept {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-modal .modal-actions .accept:hover {
  background: var(--retro-red);
}
.cookie-modal .modal-actions .close {
  background: var(--secondary);
  color: var(--primary);
}

/* ===== UTILS ===== */
.hide-mobile { display: none !important; }
@media (min-width:769px) {
  .hide-mobile { display: initial !important; }
}

/* ======= RESPONSIVE BREAKPOINTS ======= */
@media (max-width: 1024px) {
  .container { max-width: 980px; }
  h1 { font-size: 38px; }
  h2 { font-size: 26px; }
  .hero { padding: 40px 0 26px 0; }
  .feature-grid li { min-width: 170px; padding: 18px 12px 14px 12px; }
}
@media (max-width: 768px) {
  html, body { font-size: 15px; }
  h1, .hero h1 { font-size: 29px; }
  h2 { font-size: 21px; }
  h3 { font-size: 16px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .feature-grid { gap: 13px; }
  .feature-grid li { min-width: 100px; font-size: 14px; padding: 13px 8px 11px 8px; }
  .card-container { gap: 12px; }
  .testimonial-card {
    flex-direction: column;
    gap: 7px;
    padding: 14px;
    margin-bottom: 12px;
  }
  .brand-info { flex-direction: column; gap: 8px; text-align:center; }
  .footer-nav { gap: 8px; }
  .section { padding: 22px 5px; margin-bottom: 30px; }
  .container { padding-left: 6px; padding-right: 6px; }
  .content-wrapper { gap: 10px; }
  .text-image-section { flex-direction: column; gap: 15px; }
  .contact-details { gap: 7px; }
}
@media (max-width: 480px) {
  h1, .hero h1 { font-size: 21px; }
  h2 { font-size: 15px; }
  .brand-info p { font-size: 13px; }
  .section { padding: 14px 2px; }
  .footer-nav a { font-size: 11px; }
}

/* ===== MICRO-ACTS & ANIMATIONS ===== */
.cta, .main-nav a, .footer-nav a, .mobile-menu-toggle, .mobile-nav a, .cookie-banner button {
  transition: background 0.16s, color 0.14s, box-shadow 0.16s, transform 0.15s;
}
.feature-grid li, .card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.13s, background 0.15s, border 0.15s;
}

/* ===== VINTAGE PATTERNS & DECOR ===== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -50px;
  left: -80px;
  width: 380px;
  height: 85px;
  background: repeating-linear-gradient(105deg, var(--retro-orange) 0, var(--retro-orange) 18px, transparent 18px, transparent 28px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.section {
  background: repeating-linear-gradient(-45deg, var(--accent), var(--retro-beige) 30px);
}

@media (max-width: 768px) {
  .hero:after { left: -150px; bottom: -20px; width: 170px; height:45px; }
}

/* ===== FORMS (if any) ===== */
input[type="text"],input[type="email"],textarea {
  padding: 12px 13px;
  border-radius: 10px;
  border: 2px solid var(--secondary);
  font-size: 15px;
  font-family: var(--font-body);
  margin-bottom: 11px;
  outline: none;
  transition: border 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--retro-mint);
}

/* ===== ACCESSIBILITY ===== */
:focus {
  outline: 2px dashed var(--retro-red) !important;
  outline-offset: 2px;
}

/* ===== MISC - REMOVE GRID FALLBACKS, ADD SAFE FLEXBOX FALLBACKS ===== */
/* NO GRID USED (per requirements) */

/* ===== PRINT ===== */
@media print { body * { color: #222!important; background: none!important; box-shadow: none!important; } }

