/* 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, 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.6;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background-color: #E4D2C1;
  color: #22395D;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #B15C09;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #22395D;
  text-decoration: underline;
}

/* FONT FACE (with fallback for retro appearance) */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600&display=swap');

h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  color: #22395D;
  font-weight: 700;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 #fffbe6, 0 2px 6px #e4b8882a;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.subheadline {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #B15C09;
  font-size: 1.25rem;
  margin-bottom: 22px;
  line-height: 1.4;
  letter-spacing: 1px;
}

/* SPACING & CONTAINER */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-repeat: repeat;
  background-size: 140px 140px;
}
main > section:not(:first-child) {
  border-top: 1px dashed #B15C09;
  background-color: #f7efe5;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

/* FLEXBXO MANDATORY CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffbe6;
  border: 1.5px solid #CF7B2F;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 #ad956c28, 0 1.5px 0 #dfb37c13;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.21s cubic-bezier(.47,1.64,.41,.8), box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-5px) scale(1.013);
  box-shadow: 0 7px 24px 0 #ad956c35, 0 2px 0 #dfb37c22;
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: #EADED3;
  border-left: 7px solid #B15C09;
  border-radius: 13px;
  max-width: 620px;
  box-shadow: 0 2px 10px #79540d14;
  font-style: italic;
  color: #22395D;
  position: relative;
}
.testimonial-card p {
  color: #22395D;
  font-size: 1.18rem;
  line-height: 1.6;
}
.testimonial-card span {
  color: #B15C09;
  font-weight: 700;
  font-size: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* RETRO PATTERNS AND COLORS */
.section {
  background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="28" stroke="%23CF7B2F" stroke-width="1.5" fill="%23efe0cd" /></svg>');
  border-radius: 19px;
}

main > section[aria-label="Hero"] {
  background: #FFEFD5;
  border-radius: 21px 21px 0 0;
  box-shadow: 0 7px 42px #E4D2C1cc;
  margin-bottom: 50px;
}

/* HERO BUTTONS, PRIMARY BUTTONS */
.button,
.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #fffbe6;
  background: #B15C09;
  padding: 12px 28px;
  border: 2.5px solid #22395D;
  border-radius: 12px 20px 12px 18px;
  box-shadow: 0 3px 14px #cf7b2f28;
  margin-top: 13px;
  margin-bottom: 13px;
  transition: background 0.18s, color 0.16s, transform 0.14s;
  cursor: pointer;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #ad8b5740;
}
.button.primary:hover, .button.primary:focus {
  background: #22395D;
  color: #fffbe6;
  border-color: #CF7B2F;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 22px 0 #b15c093c;
}
.button.secondary {
  background: #fffbe6;
  color: #22395D;
  border: 2px solid #B15C09;
}
.button.secondary:hover {
  background: #CF7B2F;
  color: #fffbe6;
  border-color: #22395D;
}
.button:active {
  box-shadow: 0 1.5px 5px #b15c092d;
  transform: translateY(1.5px) scale(0.99);
}

/* HEADER, NAVIGATION & MOBILE MENU */
header {
  background: #22395D;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  max-width: 1200px;
}
header img {
  height: 48px;
  margin-right: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
header nav a {
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
  color: #FFEFD5;
  text-shadow: 0 1.5px 0 #53310a63;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border-color 0.22s;
}
header nav a:hover, header nav a:focus {
  color: #B15C09;
  border-bottom: 2px solid #CF7B2F;
  background-color: #fffbe620;
}

/* BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFEFD5;
  font-size: 2.2rem;
  margin-left: 16px;
  cursor: pointer;
}

 /* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #22395Dee;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.32s cubic-bezier(.44,1.1,.4,1), opacity 0.17s;
  transform: translateX(110vw);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0vw);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.15rem;
  margin: 26px 26px 18px 0;
  background: none;
  color: #FFEFD5;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 10006;
}
.mobile-menu-close:hover {
  color: #B15C09;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 38px;
  padding-top: 14px;
  gap: 16px;
}
.mobile-nav a {
  font-size: 1.47rem;
  font-family: 'Merriweather', serif;
  color: #FFEFD5;
  font-weight: 700;
  padding: 9px 0;
  margin-bottom: 3px;
  border-bottom: 1.5px dashed #B15C09;
  width: 100%;
  transition: color 0.14s, background 0.23s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B15C09;
  background: #fffbe620;
}

@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 13px 10px;
  }
  header nav {
    gap: 10px;
  }
  .footer-menu {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 860px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width:768px) {
  html { font-size: 95%; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .section {
    margin-bottom: 45px;
    padding: 21px 7px;
  }
  main > section[aria-label="Hero"] {
    margin-bottom: 26px;
    border-radius: 15px 15px 0 0;
  }
  .testimonial-card {
    padding: 13px;
    min-width: 0;
  }
  .button, .button.primary {
    font-size: 1rem;
    padding: 11px 13px;
  }
  .container {
    padding: 0 7px;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 89%;
  }
  .container {
    padding: 0 3px;
  }
  .section, .content-wrapper {
    padding: 0 2px;
  }
  .feature-grid {
    gap: 16px;
  }
  footer .container, header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}

@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}

/* OFFER / FEATURE ICON GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 30px;
  margin-top: 23px;
  margin-bottom: 17px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 257px;
  background: #fffbe6;
  border: 1.5px solid #CF7B2F;
  border-radius: 15px;
  padding: 23px 12px 19px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  box-shadow: 0 2px 14px #cf7b2f0d, 0 1px 0 #ad956c17;
  transition: transform 0.13s, box-shadow 0.19s;
}
.feature-grid > div img {
  height: 46px;
  margin-bottom: 3px;
}
.feature-grid > div h3 {
  font-size: 1.11rem;
  color: #B15C09;
  margin-bottom: 7px;
  font-family: 'Merriweather', serif;
  text-align: center;
}
.feature-grid > div:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 23px #b1874e21;
  background: #fce8cc;
}

/* TABLES */
table {
  width: 100%;
  margin-top: 18px;
  margin-bottom: 18px;
  border-collapse: collapse;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #fffbe6;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 2px 8px #b15c0926;
}
table th, table td {
  padding: 11px 13px;
  text-align: left;
  border-bottom: 1.5px dashed #CF7B2F;
}
table th {
  font-family: 'Merriweather', serif;
  color: #22395D;
  font-size: 1.1rem;
  background: #E4D2C1;
}
table tr:last-child td {
  border-bottom: none;
}

/* LISTS */
ul li, ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 1.07rem;
  line-height: 1.68;
  color: #22395D;
}
ul li strong, ol li strong {
  color: #B15C09;
  font-weight: bold;
  font-family: 'Merriweather', serif;
}
ul li:before, ol li:before {
  content: '\25CF';
  position: absolute;
  left: 0;
  top: 5px;
  color: #CF7B2F;
  font-size: 1.2em;
}

/* FOCUS STATES */
a:focus, button:focus, .button:focus {
  outline: 2.5px dashed #B15C09;
  outline-offset: 2px;
}

/* FOOTER */
footer {
  background: #E4D2C1;
  padding: 32px 0 17px 0;
  border-top: 3.5px double #B15C09;
  margin-top: 45px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding: 0 10px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 19px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  color: #22395D;
  margin-bottom: 8px;
  justify-content: center;
}
.footer-menu a {
  color: #B15C09;
  font-family: 'Merriweather', serif;
}
.footer-menu a:hover {
  text-decoration: underline;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.brand-info img {
  width: 38px;
  height: auto;
}
.brand-info span {
  font-size: 1.02rem;
  color: #7b4319;
}
.contact-snippet {
  color: #8a631a;
  font-size: .96rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  text-align: center;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9001;
  width: 100vw;
  background: #22395Df8;
  color: #FFEFD5;
  box-shadow: 0 -6px 28px #22395d44;
  padding: 21px 12px 18px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1.08rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  transition: transform 0.26s, opacity 0.19s;
  transform: translateY(120%);
  opacity: 0;
}
.cookie-consent-banner.active {
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-left: 18px;
}
.cookie-consent-banner .button {
  padding: 9px 18px;
  font-size: 1rem;
  border-radius: 8px 16px 8px 12px;
  box-shadow: 0 2px 8px #b15c090d;
}
.cookie-consent-banner .button.primary {
  background: #B15C09;
  color: #fffbe6;
  border-color: #fffbe6;
}
.cookie-consent-banner .button.secondary {
  background: #fffbe6;
  color: #B15C09;
  border-color: #B15C09;
}
.cookie-consent-banner .button:hover {
  background: #CF7B2F;
  color: #fffbe6;
  border-color: #22395D;
}
@media (max-width: 640px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 13px;
    font-size: .99rem;
    padding: 18px 4px 21px 4px;
    text-align: left;
  }
  .cookie-consent-buttons {
    flex-direction: column;
    gap: 9px;
    margin-left: 0;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #22395da0;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fffbe6;
  color: #22395D;
  border-radius: 19px;
  max-width: 400px;
  padding: 35px 28px 26px 28px;
  box-shadow: 0 7px 32px #B15C0944;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  position: relative;
  animation: modal-pop .26s cubic-bezier(.47,1.4,.41,.85);
}
@keyframes modal-pop {
  from {
    transform: scale(0.92);
    opacity: 0.34;
  } to {
    transform: scale(1);
    opacity: 1;
  }
}
.cookie-modal-title {
  font-family: 'Merriweather', serif;
  color: #B15C09;
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}
.cookie-category input[type="checkbox"][disabled] {
  accent-color: #B15C09;
  filter: grayscale(60%);
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .button {
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  right: 17px;
  top: 13px;
  background: none;
  border: none;
  font-size: 1.23rem;
  color: #B15C09;
  cursor: pointer;
}

/* MICRO-INTERACTIONS & RETRO DETAILS */
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.16s, transform 0.18s;
}
section[aria-label="Hero"] {
  overflow: hidden;
  position: relative;
}
section[aria-label="Hero"]::before {
  content: '';
  position: absolute;
  left: -120px; top: -80px;
  width: 160px; height: 160px;
  background: #E4D2C199;
  border-radius: 50%;
  z-index: 0;
  box-shadow: 0 0 70px 38px #cf7b2f2e;
}
section[aria-label="Hero"] .content-wrapper {
  position: relative;
  z-index: 2;
}

/* FORM ELEMENTS */
input, select, textarea {
  background: #fffbe6;
  color: #22395D;
  border: 1.5px solid #B15C09;
  border-radius: 8px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 11px;
  margin-bottom: 11px;
  box-shadow: 0 1px 3px #cf7b2f13;
  transition: border-color 0.17s;
}
input:focus, select:focus, textarea:focus {
  border-color: #22395D;
  outline: none;
}

/* Z-INDEX LAYERS */
header {
  z-index: 1001;
}
.mobile-menu {
  z-index: 2002;
}
.cookie-modal-overlay {
  z-index: 9002;
}

/* ACCESSIBILITY: HIGH CONTRAST FOR TESTIMONIALS */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #1D2A3A !important;
  background: #EADED3 !important;
}

/* PRINT STYLES */
@media print {
  header, .mobile-menu-toggle, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay, footer {display:none !important;}
  .container {max-width: none !important;}
}

/* END OF STYLE */
