/* VINTAGE RETRO CYBER EMBER STYLE.CSS */
/* ================= 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background-color: #f6f3eb;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F6F7FB;
  color: #253350;
  font-family: 'Lato', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  /* Subtle paper pattern */
  background-image:
    repeating-linear-gradient(135deg, #ede1cf 0px, #ede1cf 6px, transparent 6px, transparent 24px),
    repeating-linear-gradient(45deg, #ede1cf 0px, #ede1cf 8px, transparent 8px, transparent 32px);
  background-size: 32px 32px;
  background-blend-mode: multiply;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #EA5B20;
  text-decoration: underline;
  transition: color .2s cubic-bezier(.47,1.64,.41,.8);
}
a:hover, a:focus {
  color: #253350;
}

/* ================= VINTAGE RETRO TYPE, COLORS, HEADINGS ================= */
:root {
  --color-primary: #253350;
  --color-secondary: #EA5B20;
  --color-accent: #F6F7FB;
  --color-bg-vintage: #ede1cf;
  --color-bg-section: #fffaf4;
  --color-retro-yellow: #F6C85F;
  --color-retro-mint: #B6D4BE;
  --color-retro-blue: #7AB7C7;
  --color-retro-cream: #fffaf4;
  --shadow-card: 0 3px 20px rgba(37,51,80,0.09), 0 1.5px 6px #E9C48433;
}
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');
  font-weight: 700 900;
}
@font-face {
  font-family: 'Lato';
  src: local('Lato'), url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
  font-weight: 400 700;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-shadow: 0 1px 0 #E9C48444;
  margin-bottom: 22px;
  letter-spacing: 1px;
  color: #253350;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.16;
  color: #EA5B20;
  /* Classic retro drop shadow */
  text-shadow: 2px 2px 0 #F6C85F, 0 4px 16px #C25F3E11;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  color: #253350;
  margin-bottom: 24px;
  text-shadow: 1px 1px 0 #F6C85F;
}
h3 {
  font-size: 1.31rem;
  color: #EA5B20;
}
.section, 
.hero, .features, .services, .testimonials, .about, .cta, .contact, .legal, .confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: 16px;
  box-shadow: 0 2.5px 12px #D6B98913;
}

.section:last-child { margin-bottom: 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 10px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
}

/* Body text */
p, ul, ol, li, span, td, th {
  font-size: 1.09rem;
  color: #253350;
  font-family: 'Lato', Arial, sans-serif;
}
strong {
  font-weight: 700;
  color: #EA5B20;
}

/* Vintage-retro color tags */
.price {
  display: inline-block;
  background: #F6C85F;
  color: #253350;
  font-size: 1.07rem;
  font-weight: bold;
  padding: 2px 14px;
  margin-left: 8px;
  border-radius: 15px;
  box-shadow: 1px 2px 0 #D6B98955;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
}

/* ====================== FLEXBOX LAYOUTS =================== */
.card-container, .card-grid, .features .content-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  background: #fffaf4;
  transition: box-shadow .18s cubic-bezier(.55,1.65,.45,.78);
  padding: 24px 18px;
  min-width: 260px;
  flex: 1 1 260px;
}
.card:hover {
  box-shadow: 0 5px 32px #C25F3E22, 0 2px 8px #E9C48444;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
  .card-container, .card-grid, .features .content-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #fffaf4;
  border: 2.5px dashed #D6B989;
  border-radius: 18px;
  box-shadow: 0 4px 16px #EA5B2022;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 500px;
  transition: border-color .2s, box-shadow .2s;
}
.testimonial-card p {
  color: #253350;
  font-size: 1.18rem;
  font-family: 'Lato', Arial, sans-serif;
}
.testimonial-card span {
  color: #EA5B20;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: .01em;
  align-self: flex-end;
}
.testimonial-card:hover {
  border-color: #7AB7C7;
  box-shadow: 0 8px 40px #25A5C011, 0 2px 8px #7AB7C733;
}

.star-ratings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  margin-top: 18px;
  color: #223159;
  letter-spacing: 0.04em;
  background: #F6C85F;
  padding: 8px 18px;
  border-radius: 13px;
  align-self: flex-end;
}
/**************** VINTAGE DECOR: DASHED LINES AND SHADOWS  ***************/
hr {
  border: none;
  border-top: 2.5px dashed #D6B989;
  margin: 38px 0;
}
/**************** BUTTONS & CTA-RETRO STYLE ***************/
.cta-button, .cta .cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #EA5B20;
  color: #fffaf4;
  font-size: 1.23rem;
  font-weight: 700;
  padding: 13px 34px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2.5px 9px #C25F3E66;
  letter-spacing: .04em;
  text-decoration: none;
  text-shadow: 1px 1px 0 #C25F3E25;
  position: relative;
  overflow: hidden;
  transition: background .14s cubic-bezier(.49,1.4,.45,.8), color .18s, box-shadow .18s;
  outline: none;
}
.cta-button:after {
  content: '';
  display: block;
  position: absolute;
  left: 20px; right: 20px; bottom: 7px;
  height: 4.5px;
  border-radius: 2.5px;
  background: #F6C85F;
  opacity: .36;
}
.cta-button:hover, .cta-button:focus {
  background: #253350;
  color: #F6C85F;
  box-shadow: 0 5px 14px #25335055;
  cursor: pointer;
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
}

/**************** NAVIGATION BAR & RETRO DESKTOP NAV ***************/
header {
  background: #253350;
  box-shadow: 0 3.5px 40px #EA5B2017;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  max-width: 1100px;
  padding: 13px 0;
  margin: 0 auto;
}
.main-nav a {
  color: #F6F7FB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: .015em;
  border-bottom: 2.5px solid transparent;
  transition: border-color .18s, color .18s;
  padding: 4px 8px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F6C85F;
  border-bottom: 2.5px solid #F6C85F;
}
.main-nav .cta-button {
  background: #F6C85F;
  color: #253350;
  box-shadow: 0 2px 7px #C25F3E33;
  font-size: 1rem;
  margin-left: 10px;
  padding: 10px 20px;
}
.main-nav .cta-button:hover,
.main-nav .cta-button:focus {
  background: #EA5B20;
  color: #fffaf4;
}
.main-nav img {
  height: 38px;
  margin-right: 9px;
}
/* ============ MOBILE NAV MENU BURGER STYLE ============= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #F6C85F;
  margin: 7px 13px;
  z-index: 330;
}
@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
    padding: 8px 0;
  }
  .main-nav a, .main-nav .cta-button { font-size: 16px; }
}
@media (max-width: 900px) {
  .main-nav a:not(:first-child), .main-nav .cta-button { font-size: 15px; }
  .main-nav img { height: 32px; }
}
@media (max-width: 820px) {
  .main-nav { gap:12px; }
}
@media (max-width: 720px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 21px; right: 24px;
  }
}
/* ============= MOBILE SIDE MENU ============== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 96vw;
  max-width: 360px;
  background: #f6f3eb;
  border-right: 5px solid #F6C85F;
  box-shadow: 4px 0 24px #EA5B2035;
  transform: translateX(-100%);
  z-index: 9999;
  transition: transform .38s cubic-bezier(.64,0,.41,1.12);
  display: flex;
  flex-direction: column;
  padding: 0 0 32px 0;
  gap:40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #EA5B20;
  color: #fffaf4;
  border: none;
  font-size: 2rem;
  margin: 18px 22px 0 0;
  padding: 4px 18px;
  border-radius: 19px 4px 13px 17px;
  box-shadow: 0 2px 8px #E9C48444;
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #253350;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: #253350;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .14s, border .15s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EA5B20;
  border-bottom: 2.5px solid #F6C85F;
}
@media (max-width: 720px) {
  .mobile-menu {
    width: 98vw;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .mobile-menu {
    max-width: 100vw;
    padding-left: 0; padding-right: 0;
  }
  .mobile-nav { padding-left: 23px; }
}

/* ===== HERO, ABOUT, SECTION RETRO EFFECTS ==== */
.hero {
  background: linear-gradient(120deg,#fffaf4 80%,#F6C85F 100%);
  border: 3px solid #F6C85F;
  box-shadow: 0 3.5px 30px #C25F3E11;
}
.hero h1, .hero h2 {
  color: #EA5B20;
  text-shadow: 2px 2px 0 #F6C85F, 0 4px 16px #C25F3E11;
}
.hero p {
  font-size: 1.19rem;
  font-family: 'Lato', Arial, sans-serif;
}
.hero .cta-button { margin-top: 18px; }

@media (max-width: 720px) {
  .hero, .section, .features, .services, .testimonials, .about, .cta, .contact, .legal, .confirmation {
    padding: 20px 6px;
    margin-bottom: 28px;
    border-radius: 14px;
  }
}

/* ============ FEATURES BULLET RETRO STYLE ============ */
.features ul li, .services ul li, .about ul li, .legal ul li {
  position: relative;
  margin-left: 34px;
  margin-bottom: 12px;
  padding-left: 10px;
  font-size: 1.05rem;
  font-family: 'Lato', Arial, sans-serif;
}
.features ul li:before, .services ul li:before, .about ul li:before, .legal ul li:before {
  content:'';
  position: absolute;
  left: -22px;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 60%;
  background: #F6C85F;
  border: 2px solid #EA5B20;
  box-shadow: 0 2px 0 #C25F3E22;
}
ul {
  list-style: none;
  margin-bottom: 12px;
}

/* =============== TABLES =============== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px 0;
  background: #fffaf4;
  box-shadow: 0 2px 12px #E9C48433;
  border-radius: 10px;
  overflow: hidden;
}
thead th {
  background: #EA5B20;
  color: #fffaf4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  padding: 14px 10px;
  border-bottom: 3px solid #F6C85F;
  text-align: left;
}
tbody td {
  padding: 11px 10px;
  border-bottom: 1.7px dashed #F6C85F;
  color: #253350;
  font-family: 'Lato', Arial, sans-serif;
  background: #fffaf4;
  font-size: 1.05rem;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* Secondary location box */
.location-map {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  background: #B6D4BE33;
  border-radius: 10px;
  padding: 11px 17px;
  margin-top: 20px;
  color: #253350;
  box-shadow: 0 2.5px 10px #B6D4BE22;
}

/* ================== FOOTER RETRO STYLE ================ */
footer {
  background: #E9C484;
  border-top: 4.5px solid #EA5B20;
  box-shadow: 0 -6.5px 32px #EA5B2014;
  margin-top: 48px;
}
footer .container { padding: 0 10px; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  padding: 34px 0 10px 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #253350;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: color .12s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #EA5B20; }
.footer-contact {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.03rem;
  color: #253350;
  margin-left:12px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a img {
  background: #fffaf4;
  border-radius: 7px;
  border: 1.5px solid #F6C85F;
  box-shadow: 0 2px 9px #F6C85F33;
  width: 38px;
  height: 38px;
  padding: 3.5px;
  transition: box-shadow .18s, border-color .13s;
}
.footer-social a:hover img, .footer-social a:focus img {
  border-color: #EA5B20;
  box-shadow: 0 6.5px 16px #EA5B2085;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    gap: 19px;
    flex-direction: column;
    align-items: flex-start;
    padding:24px 0 2px 0;
  }
}

/***************** COOKIE CONSENT BANNER & MODAL *****************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #253350;
  color: #fffaf4;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 15px 22px 15px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 30px #EA5B2057;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: slideUpBanner 0.6s cubic-bezier(.52,1.45,.43,1.1);
}
@keyframes slideUpBanner {
  0%{ transform:translateY(120%); opacity:0; }
  65%{ opacity:.5; }
  100%{ transform:translateY(0); opacity:1; }
}
.cookie-banner .cookie-banner-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cookie-banner p {
  color: #fffaf4;
  font-size: 1.09rem;
  margin-bottom: 6px;
  font-family: 'Lato', Arial, sans-serif;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 9px;
  border-radius: 17px 9px 17px 9px;
  box-shadow: 0 2px 4px #E9C48444;
  font-size: 1.03rem;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 9px 17px;
  margin-top: 0;
  transition: background .14s, color .12s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: #F6C85F;
  color: #253350;
}
.cookie-banner .reject {
  background: #EA5B20;
  color: #fffaf4;
  margin-left: 0;
}
.cookie-banner .cookie-settings-btn {
  background: #7AB7C7;
  color: #253350;
}
.cookie-banner button:hover, .cookie-banner .cookie-settings-btn:hover {
  filter:brightness(0.92) contrast(1.07);
}

/* Cookie settings modal */
.cookie-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: #253350aa;
  z-index: 13000;
  align-items: center;
  justify-content: center;
}
.cookie-modal-bg.open {
  display: flex;
}
.cookie-modal {
  min-width:320px;
  max-width: 94vw;
  background: #fffaf4;
  border-radius: 22px;
  border: 3px dotted #F6C85F;
  box-shadow: 0 22px 66px #C25F3E33, 0 2px 8px #F6C85F33;
  padding: 39px 30px 33px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  font-family: 'Lato', Arial, sans-serif;
  animation: fadeInModal .4s cubic-bezier(.55,2,.45,.78);
}
@keyframes fadeInModal {
  0% {transform:scale(.87); opacity:0;}
  85%{opacity:1;}
  100%{transform:scale(1);opacity:1;}
}
.cookie-modal h2 {
  font-family:'Montserrat',Arial,sans-serif;
  font-size:1.45rem;
  margin-bottom:12px;
  color:#EA5B20;
}
.cookie-modal .category {
  display:flex;
  align-items:center;
  gap:12px;
  font-family:'Lato',Arial,sans-serif;
  font-size:1.08rem;
}
.cookie-modal .category label {
  cursor: pointer;
  font-weight: 500;
}
.cookie-modal .toggle-switch {
  display:inline-block;
  width:40px; height:22px;
  background:#E9C484;
  border-radius:13px;
  position:relative;
  margin-right:8px;
}
.cookie-modal .toggle-switch input {
  display:none;
}
.cookie-modal .toggle-slider {
  position:absolute; top:2px; left:2px;
  width:18px; height:18px; border-radius:60%;
  background:#fffaf4;
  transition:.19s cubic-bezier(.48,1.62,.36,.92);
  box-shadow:0 1.5px 6px #D6B9898F;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  background:#7AB7C7;
  left:20px;
}
.cookie-modal .category.essential .toggle-switch {
  background: #B6D4BE;
  opacity: 0.63;
}
.cookie-modal .category.essential label {
  color:#868686;
}
.cookie-modal .category.essential .toggle-slider {
  background: #B6D4BE;
}

.cookie-modal .cookie-close-btn {
  background: #EA5B20;
  color: #fffaf4;
  border: none;
  border-radius: 14px;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 20px;
  margin-top: 8px;
  align-self: flex-end;
  transition: background .15s, color .14s;
}
.cookie-modal .cookie-close-btn:hover, .cookie-modal .cookie-close-btn:focus {
  background: #253350;
}

/************* CONFIRMATION / MISC RETRO *************/
.confirmation h1 {
  color: #EA5B20;
  text-shadow: 1.5px 2px 0 #F6C85F;
}
.confirmation ul {
  margin-top: 18px;
}

/* ========== RESPONSIVE TYPOGRAPHY SCALE ========== */
@media (max-width: 1030px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.13rem; }
  p, ul, li, .footer-contact { font-size: 0.99rem; }
}

/***** ADJUST SPACING, GAPS ON MOBILE *****/
@media (max-width: 550px) {
  .section, .hero, .features, .testimonials, .about, .cta, .contact, .legal, .confirmation {
    padding: 9px 3px;
    margin-bottom: 16px;
    border-radius: 11px;
  }
  .content-wrapper { gap: 16px; }
  .testimonial-card { min-width: 0; }
}

/************ MISC RETRO TOUCHES ***************/
/* Posters, accent lines, drop shadows */
.decorative-retroline {
  width:100px;height:8px;
  background: #EA5B20;
  border-radius: 8px;
  margin: 14px 0 22px 0;
  box-shadow: 0 2px 14px #F6C85F66;
}
.decor-dot {
  width:12px; height: 12px;
  border-radius: 99px;
  background: #7AB7C7;
  display: inline-block;
}

/************** UTILITY CLASSES ***************/
.text-center { text-align: center; }
.flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-20 { gap: 20px; }
.space-between { justify-content: space-between; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.rounded-12 { border-radius: 12px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/******** ACCESSIBILITY: FOCUS VISIBLE ********/
:focus {
  outline: 2.5px dashed #EA5B20;
  outline-offset: 3px;
}

/********** HIDE PRINT/SCREEN ONLY *********/
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cta, .cookie-banner, .cookie-modal { display: none !important; }
}

/* *****************************************
  ENSURE NO CSS GRID OR COLUMNS USED (FLEX ONLY)
***************************************** */