/* --- 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%;
  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;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F4F4F4;
  color: #2F2924;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
img {
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 12px;
  border: 1px solid #e0ddce;
}
th {
  background: #eee5c1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #0A1D2F;
}

/* --- FONT IMPORTS (Retro/Vintage variants) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&family=Quicksand:wght@700&family=Roboto+Mono:wght@700&family=Special+Elite&display=swap');

:root {
  --color-primary: #0A1D2F;
  --color-secondary: #F4F4F4;
  --color-accent: #C4B382;
  --color-retro-pink: #F3797C;
  --color-retro-mustard: #FFD663;
  --color-retro-green: #A2BA91;
  --color-retro-brown: #A47551;
  --color-dark-text: #1d1811;
  --color-light-cream: #FCF9ED;
  --shadow-elevate: 0 3px 18px rgba(42, 31, 14, 0.08), 0 1.5px 6px rgba(164, 117, 81, 0.05);
  --border-radius-main: 18px;
  --border-radius-sm: 7px;
  --transition: all 0.26s cubic-bezier(.66,.27,.46,1.07);
  --ff-display: 'Montserrat', 'Special Elite', Arial, sans-serif;
  --ff-body: 'Roboto', 'Roboto Mono', Arial, sans-serif;
}

body {
  background: var(--color-secondary);
  color: var(--color-dark-text);
  font-family: var(--ff-body);
  font-size: 16px;
  letter-spacing: 0.01em;
}

/* --- TYPOGRAPHY (Vintage/Retro Flavours) --- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-shadow: 1px 2px 0 var(--color-retro-mustard);
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

.text-section {
  max-width: 650px;
  margin: 0 auto;
}

ul, ol {
  margin-bottom: 24px;
  list-style: none;
}
ul li, ol li {
  padding-left: 36px;
  margin-bottom: 12px;
  position: relative;
  font-size: 1rem;
}
ul li:before {
  content: '';
  display: inline-block;
  background: var(--color-retro-mustard);
  border-radius: 100%;
  width: 13px;
  height: 13px;
  position: absolute;
  left: 10px;
  top: 7px;
  box-shadow: 1px 1px 0 var(--color-retro-brown);
}

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 18px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light-cream);
  border-radius: var(--border-radius-main);
  box-shadow: var(--shadow-elevate);
  border: 1.5px solid #eeddbd;
}

/* --- FLEXBOX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius-main);
  background: #fff;
  box-shadow: var(--shadow-elevate);
  padding: 26px 22px;
  border: 1.5px solid #cfc0a1;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 400px;
}
.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: #fffbe6;
  border-radius: var(--border-radius-main);
  box-shadow: var(--shadow-elevate);
  font-size: 1rem;
  margin-bottom: 20px;
  border: 1.2px solid #FFDE90;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
.usp-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  margin-top: 12px;
}
.usp-icons img {
  background: #f5f3ea;
  border-radius: var(--border-radius-sm);
  padding: 9px;
  box-shadow: 1px 2px 7px 0 #e9debf;
  border: 1px solid #e9debf;
}
.usp-icons span {
  margin-right: 13px;
  margin-left: 8px;
  color: var(--color-retro-brown);
}

/* --- BUTTONS (Retro Styled) --- */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.2rem;
  background: var(--color-retro-pink);
  color: #1d1811;
  padding: 13px 36px;
  border-radius: 40px;
  border: 2.5px solid var(--color-retro-mustard);
  box-shadow: 0 3px 0 0 var(--color-accent), 0 3px 14px -3px #90826230;
  transition: var(--transition);
  margin-top: 10px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-retro-mustard);
  color: var(--color-primary);
  border-color: var(--color-retro-pink);
  box-shadow: 0 5px 0 0 var(--color-retro-pink), 0 3px 22px -3px #C4B38254;
}
.cta-secondary {
  display: inline-flex;
  font-family: var(--ff-display);
  font-weight: 700;
  background: #fff;
  color: var(--color-retro-brown);
  border: 2px dashed var(--color-retro-brown);
  padding: 10px 27px;
  border-radius: 25px;
  margin-top: 8px;
  margin-bottom: 12px;
  transition: var(--transition);
  box-shadow: 0 1px 11px -6px #A4755166;
}
.cta-secondary:hover, .cta-secondary:focus {
  border-style: solid;
  border-color: var(--color-retro-brown);
  background: var(--color-retro-mustard);
  color: var(--color-primary);
}

button, .button {
  font-family: var(--ff-display);
  cursor: pointer;
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  border: none;
  outline: none;
  transition: var(--transition);
}

/* --- NAVIGATION (Retro Bar) --- */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 2px 16px 0 #594f3759;
  border-bottom: 4px double var(--color-retro-mustard);
  z-index: 99;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: flex-start;
  font-family: var(--ff-display);
  font-size: 1.18rem;
  padding: 20px 0 16px 0;
  background: none;
}
.main-nav > a {
  color: var(--color-retro-mustard);
  opacity: 0.93;
  padding: 8px 16px;
  border-radius: 15px;
  position: relative;
  transition: var(--transition);
  font-weight: 700;
}
.main-nav > a:hover, .main-nav > a:focus {
  color: var(--color-retro-brown);
  background: var(--color-retro-mustard);
  opacity: 1;
}
.main-nav > a.cta-primary {
  background: var(--color-retro-pink);
  color: #1d1811;
  box-shadow: 0 2px 6px -3px #C4B38254;
  border: 2px solid var(--color-retro-mustard);
  margin-left: auto;
  margin-right: 0;
  padding: 8px 24px;
}
.main-nav > a.cta-primary:hover, .main-nav > a.cta-primary:focus {
  background: var(--color-retro-mustard);
  color: var(--color-primary);
  border-color: var(--color-retro-pink);
}
.main-nav img {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-right: 25px;
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 12px;
  right: 18px;
  background: var(--color-retro-brown);
  color: #fffbe6;
  font-size: 2rem;
  border: none;
  border-radius: 100px;
  width: 49px;
  height: 49px;
  z-index: 102;
  transition: var(--transition);
  box-shadow: 0 2px 12px -2px #A4755130;
}
.mobile-menu-toggle:active {
  outline: 2px solid var(--color-retro-mustard);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF7DE;
  box-shadow: 0 8px 32px #9071523a;
  z-index: 1100;
  transform: translateX(-100%);
  opacity: 0.97;
  transition: transform 0.37s cubic-bezier(.66,.27,.46,1.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 34px 18px 18px 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-retro-pink);
  color: var(--color-primary);
  font-size: 2.15rem;
  border-radius: 100px;
  border: none;
  width: 49px;
  height: 49px;
  align-self: flex-end;
  margin-bottom: 26px;
  box-shadow: 0 2px 8px -2px #F4BBA8a3;
  transition: var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-retro-mustard);
  color: var(--color-primary);
  outline: 2px solid var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--color-retro-brown);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.35rem;
  padding: 12px 8px 10px 8px;
  border-radius: 7px;
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-retro-pink);
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 1rem;
    font-size: 1.09rem;
  }
  .main-nav img {
    margin-right: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav > a {
    padding: 7px 6px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 6px;
  }
}

/* --- SECTIONS & SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius-main);
  background: var(--color-light-cream);
  box-shadow: var(--shadow-elevate);
}

/* Prevent unwanted overlap between stacked sections */
section + section {
  margin-top: 22px;
}

@media (max-width: 768px) {
  section {
    padding: 25px 5px;
    margin-bottom: 35px;
    border-radius: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
  .usp-icons {
    flex-direction: column;
    gap: 13px;
  }
}

/* --- TABLES (Retro) --- */
table {
  background: #fff;
  box-shadow: 0 2px 22px -8px #E6D2A5;
  border-radius: var(--border-radius-main);
  margin-bottom: 24px;
  font-family: var(--ff-body);
}
table th, table td {
  font-size: 1rem;
  border-radius: 5px;
}
table tr:nth-child(even) td {
  background: #faf6e2;
}

/* --- TESTIMONIALS (Vintage Card) --- */
.testimonial-card {
  background: #fffbe6;
  color: #1d1811;
  border-left: 7px solid var(--color-retro-brown);
  box-shadow: var(--shadow-elevate);
  padding: 20px 22px 18px 30px;
  border-radius: var(--border-radius-main);
  margin-bottom: 20px;
  min-width: 225px;
  font-style: italic;
  font-family: var(--ff-body);
  letter-spacing: 0.02em;
  border: 1.5px solid #ecd08a;
  position: relative;
  transition: box-shadow 0.22s;
}
.testimonial-card strong {
  display: block;
  margin-top: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  text-shadow: 0 1px 0 var(--color-retro-mustard);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 28px -6px #C4B38290;
  border-color: var(--color-retro-pink);
}

/* --- FOOTER (Retro Classic) --- */
footer {
  background: var(--color-primary);
  color: var(--color-retro-mustard);
  padding: 40px 0 28px 0;
  letter-spacing: 1px;
  border-top: 4px double var(--color-retro-mustard);
}
footer .container {
  max-width: 1310px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 13px;
  margin-top: 8px;
}
footer nav a {
  color: var(--color-retro-mustard);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 5px 11px;
  border-radius: 7px;
  transition: var(--transition);
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-retro-mustard);
  color: var(--color-primary);
}
.privacy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 8px;
}
.privacy-links a {
  color: var(--color-retro-mustard);
  opacity: 0.78;
  font-family: var(--ff-display);
  font-size: 0.93rem;
  border-bottom: 1.5px dotted var(--color-retro-brown);
}
.privacy-links a:hover {
  opacity: 1;
  color: var(--color-retro-brown);
  border-bottom: 2px solid var(--color-retro-brown);
}
.footer-info {
  font-family: var(--ff-body);
  font-size: 0.99rem;
  color: #eee5c0;
  margin-bottom: 10px;
}
.footer-info a {
  color: #fffbe6;
  border-bottom: 1px solid var(--color-accent);
  font-weight: 500;
}
.footer-info a:hover {
  color: var(--color-retro-mustard);
  border-bottom: 1.5px solid #fffbe6;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.social-icons img {
  background: #fffbe6;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  box-shadow: 0 1.5px 4px #A4755130;
  border: 1.1px solid #ecd08a;
  transition: transform 0.22s;
}
.social-icons img:hover, .social-icons img:focus {
  transform: scale(1.12) rotate(-6deg);
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* --- UTILITY CLASSES --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.w-100 { width: 100%; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe6;
  color: #623d1e;
  border-top: 3px solid var(--color-retro-brown);
  box-shadow: 0 -2px 18px -6px #A4755190;
  padding: 22px 12px;
  z-index: 1300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  font-family: var(--ff-body);
  animation: slideUpIn 0.6s cubic-bezier(.66,.27,.46,1.07);
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: 13px;
}
.cookie-banner button {
  font-family: var(--ff-display);
  font-weight: 700;
  border: none;
  padding: 9px 26px;
  border-radius: 40px;
  font-size: 1rem;
  transition: var(--transition);
}
.cookie-banner .accept {
  background: var(--color-retro-mustard);
  color: #1d1811;
  border: 2px solid var(--color-retro-brown);
  margin-right: 2px;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-retro-pink);
  color: var(--color-primary);
}
.cookie-banner .reject {
  background: #e1cb92;
  color: #624005;
  border: 2px dashed var(--color-retro-brown);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #f3e1c1;
  color: var(--color-retro-brown);
}
.cookie-banner .settings {
  background: transparent;
  color: var(--color-retro-brown);
  border: 1.3px solid var(--color-retro-brown);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #efd082;
}
@keyframes slideUpIn {
  0% { transform: translateY(120%); opacity: 0; }
  90% { transform: translateY(-7px); opacity: .98; }
  100% { transform: translateY(0); opacity: 1; }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #0a1d2fd0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .37s cubic-bezier(.66,.27,.46,1.07);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbe6;
  border-radius: 20px;
  box-shadow: 0 6px 44px #A4755160;
  color: #552D04;
  font-family: var(--ff-body);
  max-width: 410px;
  padding: 37px 24px 27px 24px;
  text-align: left;
  position: relative;
}
.cookie-modal-content h2 {
  font-family: var(--ff-display);
  color: var(--color-retro-brown);
  margin-bottom: 14px;
  font-size: 1.28rem;
  letter-spacing: 1.2px;
}
.cookie-modal-content label {
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: block;
  padding-left: 4px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: var(--color-retro-mustard);
  width: 17px;
  height: 17px;
  margin-right: 7px;
}
.cookie-modal-content .modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 17px;
  background: var(--color-retro-pink);
  color: #1d1811;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 100px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  z-index: 1430;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-retro-mustard);
  color: var(--color-retro-brown);
}

/* --- FORMS & LINKS --- */
a {
  color: var(--color-retro-pink);
  text-decoration: underline dotted var(--color-retro-mustard);
  transition: color 0.24s;
}
a:hover, a:focus {
  color: var(--color-retro-brown);
  text-decoration: underline solid var(--color-retro-brown);
}

input, textarea, select {
  border: 1.4px solid #d2b780;
  border-radius: 9px;
  padding: 9px 13px;
  font-size: 1rem;
  font-family: var(--ff-body);
  margin-bottom: 11px;
  outline: none;
  background: #fffbe6;
  color: var(--color-dark-text);
  width: 100%;
  transition: border-color 0.23s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-retro-pink);
}

/* --- RESPONSIVE TYPOGRAPHY & LAYOUT --- */
@media (max-width: 678px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.15rem; }
  .usp-icons span { font-size: 0.98rem; }
  .testimonial-card { font-size: 0.98rem; }
  .cta-primary { font-size: 1rem; padding: 11px 18px; }
  .cta-secondary { font-size: 0.98rem; padding: 8px 15px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  table th, table td { font-size: 0.88rem; }
  .testimonial-card { font-size: 0.90rem; padding: 14px 10px; }
}

/* --- RETRO DECORATIVE PATTERNS --- */
section {
  background-image: repeating-linear-gradient(135deg, #fcf9ed 0 17px, #f6ebcf 18px 33px);
  background-blend-mode: lighten;
  border: 1.8px solid #e5d9bb;
}

.card, .testimonial-card {
  background-image:
    linear-gradient(100deg, #fff7e1 62%, #ffeebb 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14"><rect width="14" height="14" fill="none" stroke="%23f0e3c7" stroke-width="1"/></svg>');
  background-blend-mode: lighten;
}

@media (max-width: 480px) {
  section { padding: 13px 1px; }
}

/* --- MICROINTERACTIONS & TRANSITIONS --- */
.cta-primary, .cta-secondary, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close, .footer nav a, .privacy-links a {
  transition: var(--transition);
}
.card, .testimonial-card {
  transition: box-shadow 0.22s, border-color 0.2s;
}
.card:hover, .card:focus-within, .testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px -6px #F3797C44;
  border-color: var(--color-retro-brown);
}


/* --- PRINT (Basic) --- */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none !important; }
  section, .section { background: #fff; box-shadow: none; color: #141008; }
}

/* ---- END OF CSS ---- */
