/* =====================================================
   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: #F8F5EE;
  color: #40362E;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: #D0A800; text-decoration: none; transition: color .2s; }
a:focus, a:hover { color: #8E6C00; }
ul,
ol {
  list-style: none;
  padding-left: 0;
}
strong { font-weight: bold; }
em { font-style: italic; }

/* Vintage Fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

/* =====================================================
   Root Variables - Vintage Retro Palette
   ===================================================== */
:root {
  --color-primary: #1B365D;
  --color-secondary: #D0A800;
  --color-accent: #FFFFFF;
  --color-bg: #F8F5EE;
  --color-brown: #5D4E3C;
  --color-beige: #F1E5C6;
  --color-red: #C1440E;
  --color-retro-blue: #25516C;
  --color-dark-text: #40362E;
  --color-offwhite: #FCFAF2;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --radius-base: 18px;
  --shadow-retro: 0 3px 14px 0 rgba(27, 54, 93, 0.09);
}

/* =====================================================
   Layout Containers & Responsiveness
   ===================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-offwhite);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-retro);
  /* Optional retro pattern as subtle border */
  border: 4px double var(--color-secondary);
}

@media (max-width: 900px) {
  .container { max-width: 100%; }
}
@media (max-width: 768px) {
  .container { padding-left: 7vw; padding-right: 7vw; }
  .section { padding: 28px 10px; margin-bottom: 42px; }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding-left: 4vw; padding-right: 4vw; }
  .section { padding: 16px 4px; border-width: 2px; }
}

/* =====================================================
   Typography & Vintage Branding
   ===================================================== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin-bottom: 10px;
  color: var(--color-primary);
  letter-spacing: .02em;
  text-shadow: 0 2px 0 #FFFFFF88;
  font-weight: 900;
}
h1 {
  font-size: 2.8rem;
  margin-top: 0;
  margin-bottom: 18px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 8px;
}
h4 { font-size: 1.05rem; margin-bottom: 6px; }

p, ul, ol {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark-text);
  margin-bottom: 10px;
}

li {
  margin-bottom: 6px;
  font-family: var(--font-body);
}

/* Quotes & Retro accents */
blockquote, .testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: var(--color-primary);
  font-style: italic;
  background: #FFFDEB;
  border-left: 7px solid var(--color-secondary);
  padding: 14px 16px 11px 26px;
  border-radius: 0 var(--radius-base) var(--radius-base) 0;
  margin-bottom: 0;
  box-shadow: 0 3px 8px 0 #DBC79233;
}

/* Retro label font for badges etc. */
.badge, .label-retro {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .12em;
  background: var(--color-secondary);
  color: var(--color-accent);
  padding: 3px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 0 #b7900092;
  display: inline-block;
  margin-bottom: 6px;
}

/* =====================================================
   Header & Navigation (Desktop & Mobile)
   ===================================================== */
header {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 600;
  padding: 4px 8px;
  transition: color .2s, background .15s;
  border-radius: 9px;
  position: relative;
  z-index: 1;
}
header nav a:focus, header nav a:hover {
  color: var(--color-secondary);
  background: #ffffff22;
  outline: none;
}
header nav a.cta {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 900px;
  padding: 7px 22px 7px 22px;
  margin-left: 9px;
  font-weight: bold;
  font-size: 1.06rem;
  box-shadow: 0 3px 12px 0 #E2C44F33;
  border: none;
  transition: background .18s, color .18s, box-shadow .18s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #B79205;
  color: var(--color-accent);
  box-shadow: 0 8px 24px 0 #B7920544;
}

header .mobile-menu-toggle {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: var(--color-accent);
  z-index: 1010;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 24px 24px 24px;
  gap: 32px;
  box-shadow: 7px 0 64px 0 #1B365D33;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-secondary);
  align-self: flex-end;
  margin-bottom: 6px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e9ce3f33;
  outline: 2px solid var(--color-secondary);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--color-accent);
  padding: 10px 8px 10px 0;
  border-radius: 7px;
  transition: background .15s, color .18s;
  font-weight: 700;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #a4861f33;
  color: var(--color-secondary);
}
.mobile-nav a.cta {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.06rem;
  border-radius: 900px;
  padding: 7px 26px;
  margin-top: 8px;
  font-weight: bold;
}
.mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
  background: #B79205;
  color: var(--color-accent);
}

@media (max-width: 1020px) {
  header nav { display: none; }
  header .mobile-menu-toggle {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-primary);
    border: none;
    border-radius: 8px;
    font-size: 2.1rem;
    padding: 8px 16px;
    cursor: pointer;
    margin-left: 6px;
    box-shadow: 0 3px 18px 0 #E2C44F22;
    transition: background .15s;
  }
  header .mobile-menu-toggle:focus, header .mobile-menu-toggle:hover {
    background: #B79205;
    color: var(--color-accent);
    outline: 2px solid var(--color-primary);
  }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
}

/* =====================================================
   Vintage Hero Section
   ===================================================== */
.hero {
  background: linear-gradient(130deg, #F8F5EE 72%, #FFE8AC 100%);
  margin-bottom: 60px;
  padding: 0;
  border: none;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 390px;
}
.hero .content-wrapper {
  background: #FFFDEB99;
  border-radius: var(--radius-base);
  box-shadow: 0 5px 50px 0 #f7e44213;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 38px 16px 42px 16px;
}
.hero h1 {
  color: var(--color-red);
  font-size: 2.8rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0 4px 0 #ffffff80;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-primary);
  margin-bottom: 18px;
  margin-top: 0;
}

@media (max-width: 660px) {
  .hero .container { min-height: 220px; }
  .hero .content-wrapper { padding: 13vw 1vw; }
  .hero h1 { font-size: 1.85rem; }
}

/* =====================================================
   Cards and Flex Containers
   ===================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-beige);
  border-radius: var(--radius-base);
  box-shadow: 0 4px 20px #1B365D0b;
  padding: 26px 20px 18px 20px;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--color-secondary);
  transition: box-shadow .18s, border-color .17s;
}
.card:hover {
  box-shadow: 0 12px 36px #D0A80029;
  border-color: var(--color-primary);
}
.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: 900px) {
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 14px; }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFDEB;
  padding: 22px 18px;
  border-radius: var(--radius-base);
  border: 2px dashed var(--color-secondary);
}

/* =====================================================
   Features & Lists
   ===================================================== */
.features ul, .services-summary ul, .services ul, .about-summary ul, .product-highlights ul, .benefits ul, .faq-short ul,
.ideas ul, .trends ul, .blog-intro ul, .post-highlights ul, .thank-you ul, .team ul, .text-section ul, .hours ul {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.features ul li,
.benefits ul li,
.services-summary ul li,
.services ul li,
.product-highlights ul li,
.faq-short ul li,
.ideas ul li,
.trends ul li,
.about-summary ul li,
.team ul li,
.text-section ul li,
.contact ul li,
.hours ul li,
.thank-you ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-family: var(--font-body);
  padding: 9px 0 7px 0;
  border-left: 3px solid #ffc06566;
  background: transparent;
  border-radius: 7px;
  color: var(--color-brown);
}
.features ul li img,
.benefits ul li img,
.contact ul li img,
.about-summary ul li img,
.team ul li img,
.text-section ul li img {
  width: 28px;
  height: 28px;
  margin-right: 9px;
}
li strong {
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: .01em;
}

/* For numbered lists (ol or custom) */
ol {
  list-style: decimal inside;
  font-family: var(--font-body);
}
ol li {
  border: none;
  padding-left: 0;
}

/* =====================================================
   Testimonials
   ===================================================== */
.testimonials {
  background: var(--color-beige);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-base);
}
.testimonials h2 {
  color: var(--color-red);
  font-family: var(--font-display);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 20px;
  background: #FFFDEB;
  border-radius: var(--radius-base);
  box-shadow: 0 6px 24px #b6952d13;
  border: 2px solid var(--color-secondary);
  color: #29200a;
  font-family: var(--font-body);
  font-size: 1.12rem;
  flex-wrap: wrap;
}
.testimonial-card p {
  background: none;
  border: none;
  box-shadow: none;
  font-size: 1.08rem;
  font-style: italic;
  color: #29200a;
  margin-bottom: 0;
}
.testimonial-card span {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: .96rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px 10px;
    font-size: .96rem;
  }
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
  background: linear-gradient(120deg, #d0a80012 60%, #a1b5db09 100%);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-base);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 5px 32px #f8be0030;
}
.cta-section h2 {
  color: var(--color-red);
  text-shadow: 0 1px 0 #FFE8AC66;
}
.cta-section p {
  color: var(--color-primary);
  margin-bottom: 14px;
}

/* Main CTA Button */
.cta {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  padding: 11px 38px;
  border-radius: 900px;
  font-size: 1.11rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  border: none;
  box-shadow: 0 2px 24px 0 #EDC54625;
  transition: background .18s cubic-bezier(.73,.01,.37,1), color .18s, box-shadow .21s;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 6px;
  text-align: center;
  outline: none;
}
.cta:focus, .cta:hover {
  background: #B79205;
  color: var(--color-accent);
  box-shadow: 0 12px 50px 0 #B7920540;
}

/* =====================================================
   Footer
   ===================================================== */
footer {
  width: 100%;
  background: var(--color-retro-blue);
  color: var(--color-accent);
  padding: 0;
  font-family: var(--font-body);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 46px;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 20px;
}
.footer-logo { flex-basis: 140px; }
.footer-logo img {
  width: 92px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.footer-menu a {
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--font-display);
  transition: color .15s;
}
.footer-menu a:hover { color: var(--color-accent); }
.footer-contact {
  font-size: 0.97rem;
  color: #e3e5e8;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-contact img {
  width: 19px; height: 19px;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-social { margin-top: 15px; display: flex; gap: 10px; }
.footer-social a, .social-links a {
  display: inline-block;
  background: #d0a80011;
  border-radius: 50%;
  width: 36px; height: 36px;
  text-align: center;
  line-height: 36px;
  transition: background .16s;
}
.footer-social a:hover, .social-links a:hover {
  background: #d0a80033;
}
.footer-social img, .social-links img {
  width: 20px; height: 20px; margin: auto;
}
.copyright {
  flex-basis: 100%;
  margin-top: 15px;
  font-size: .91rem;
  color: #f5ecd2;
  text-align: center;
  opacity: 0.87;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-logo img { margin-bottom: 7px; }
}

/* =====================================================
   Blog & Newsletter
   ===================================================== */
.newsletter.callout {
  background: #FFFDEB;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-base);
  margin-bottom: 60px;
  padding: 36px 20px;
  text-align: center;
}
.newsletter.callout h2 {
  color: var(--color-red);
}

/* =====================================================
   Cookie Consent Banner & Modal
   ===================================================== */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 16px;
  background: #FFFDEB;
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
  box-shadow: 0 8px 30px 0 #1b365d11;
  border-radius: var(--radius-base);
  z-index: 1200;
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  animation: cookie-slide-in .44s cubic-bezier(.4,1.8,.5,1) 1;
}
@keyframes cookie-slide-in {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: none; }
}
.cookie-banner__desc {
  font-size: 1rem;
  margin-bottom: 7px;
  font-family: var(--font-body);
  color: var(--color-primary);
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 12px;
  font-size: 1.02rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 9px 22px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 2px 16px #dbc79213;
  transition: background .14s, color .14s, box-shadow .16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #AE9910;
  color: var(--color-accent);
  box-shadow: 0 4px 30px 0 #D0A80044;
}
.cookie-btn--secondary {
  background: #ffffff;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-btn--secondary:hover, .cookie-btn--secondary:focus {
  background: #fffae5;
  color: var(--color-primary);
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #40362ecc;
  z-index: 1250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .22s, visibility .2s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal__dialog {
  background: #FFFDEB;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-base);
  padding: 34px 25px 28px 25px;
  box-shadow: 0 6px 32px #92730033;
  color: var(--color-primary);
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 10px; right: 18px;
  background: none; border: none;
  color: var(--color-secondary);
  font-size: 2.1rem;
  cursor: pointer;
  padding: 0;
  border-radius: 7px;
  transition: background .14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #e9ce3f33;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.06rem;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-cat label {
  font-weight: 700;
  color: var(--color-primary);
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #DFCC8C;
  border-radius: 16px;
  position: relative;
  margin-right: 0;
  margin-left: 8px;
  outline: none;
  transition: background .18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  background: #f8f5ee;
  border-radius: 50%;
  width: 20px; height: 20px;
  position: absolute;
  left: 1px; top: 1px;
  transition: left .14s;
}
.cookie-toggle:checked:before {
  left: 17px;
}
.cookie-cat--essential label { opacity: .72; }
.cookie-cat--essential .cookie-toggle { opacity: 0.42; pointer-events: none; }

@media (max-width: 630px) {
  .cookie-banner { left: 1vw; right: 1vw; padding: 20px 6px 10px 7px; font-size: .97rem; }
  .cookie-modal__dialog { min-width: 0; padding: 16vw 2vw; }
}

/* Hide when not needed */
.cookie-banner[hidden] { display: none !important; }

/* =====================================================
   Static Pages: Privacy, Terms, etc.
   ===================================================== */
.privacy-policy, .gdpr-section, .cookies-policy, .terms {
  background: #fffdeb;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-base);
  margin-bottom: 60px;
  padding: 32px 20px 30px 20px;
}
.privacy-policy h1, .gdpr-section h1, .cookies-policy h1, .terms h1 {
  color: var(--color-primary);
  font-family: var(--font-display);
}

/* =====================================================
   Other Utilities & Retro Patterns
   ===================================================== */
.retro-pattern {
  background-image: repeating-linear-gradient(135deg, #F8F5EE, #FFFDEB 15px, #FFEDD8 30px, #F8F5EE 45px);
}

/* Map or images inside cards */
.map {
  background: #D0A80011;
  padding: 16px;
  border-radius: var(--radius-base);
  font-style: italic;
  color: var(--color-primary);
  font-size: .97rem;
  margin: 12px 0 10px 0;
  border: 1.5px solid var(--color-secondary);
}

/* Responsive Heading Adjustment */
@media (max-width: 480px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.1rem; }
}

/* Misc retro icing/shadow for cards */
.card:after {
  content: '';
  position: absolute;
  left: 6px; top: 8px;
  width: 88%;
  height: 7px;
  background: repeating-linear-gradient(90deg, #E4D8AF77, #D0A80033 7px, transparent 14px);
  border-radius: 4px 7px 20px 7px;
  opacity: 0.23;
  pointer-events: none;
  z-index: 2;
}

/* Decorative retro border to highlight sections */
.section {
  background: repeating-linear-gradient(135deg, #FFFDEB 1px, #F8F5EE 20px);
}

/* Focus ring for accessibility */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* End of CSS */
