/* =====================================================================
   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, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #FAF7F2;
  color: #312c24;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  background: none;
  border: none;
}
button {
  cursor: pointer;
}

/* =====================================================================
    VINTAGE RETRO DESIGN VARIABLES
===================================================================== */
:root {
  --clr-bg: #FAF7F2;
  --clr-bg-alt: #ECE1D4;
  --clr-primary: #12171A;
  --clr-secondary: #9CA3AF;
  --clr-accent: #D6AD60;
  --clr-brown: #866346; /* Retro brown accent */
  --clr-orange: #F4B66C;
  --clr-vintage-red: #B66B52;
  --clr-dark-shadow: rgba(55, 43, 34, 0.10);
  --font-display: 'Oswald', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --border-radius: 14px;
  --border-radius-lg: 22px;
  --shadow-card: 0 3px 16px 0 var(--clr-dark-shadow);
  --section-gap: 60px;
  --flex-gap: 24px;
  --heavy-shadow: 0 4px 28px rgba(18,23,26,0.16);
}

/* =====================================================================
    GENERAL CONTAINER & LAYOUT
===================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
  max-width: 900px;
}
.section,
section {
  margin-bottom: var(--section-gap);
  padding: 40px 20px;
  background: transparent;
}
main > section:last-child,
main > .confirmation-section,
main > .contact-summary,
section.contact-section, section.contact-details {
  margin-bottom: 0;
}

/* =====================================================================
    TYPOGRAPHY
===================================================================== */
@font-face {
  font-family: 'Oswald';
  src: local('Oswald'),
    url('https://fonts.gstatic.com/s/oswald/v38/TK3WFoP9XpZpskgngxY.woff2') format('woff2');
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'),
    url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5Q.woff2') format('woff2');
  font-display: swap;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--clr-primary);
  letter-spacing: 1px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, li, blockquote {
  font-family: var(--font-body);
  color: #312c24;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5em;
}
small {
  font-size: 0.93em;
}
blockquote {
  font-style: italic;
  color: var(--clr-brown);
  font-size: 1.16rem;
  margin: 0 0 12px 0;
  border-left: 5px solid var(--clr-accent);
  padding-left: 14px;
  letter-spacing: 0.6px;
  line-height: 1.5;
}
strong {
  font-weight: 600;
  color: var(--clr-primary);
}
.subheadline {
  color: var(--clr-vintage-red);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.5em;
  letter-spacing: 0.3px;
}

/* =====================================================================
    LINKS & BUTTONS
===================================================================== */
a.cta-button,
.cta-button,
.mobile-menu .cta-button,
.contact-section .cta-button,
.confirmation-section .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.17rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  padding: 13px 32px;
  margin-top: 16px;
  box-shadow: 0 2px 8px var(--clr-dark-shadow);
  border: 2px solid var(--clr-accent);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
}
a.cta-button:hover, .cta-button:hover, .cta-button:focus {
  background: var(--clr-primary);
  color: var(--clr-accent);
  box-shadow: 0 4px 16px var(--clr-dark-shadow);
  border-color: var(--clr-primary);
}
nav a {
  color: var(--clr-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--border-radius);
  transition: background 0.16s, color 0.16s;
  position: relative;
  z-index: 1;
}
nav a:hover, nav a:focus {
  background: var(--clr-accent);
  color: var(--clr-primary);
}
.footer-menu a {
  color: var(--clr-brown);
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: var(--border-radius);
  transition: color 0.1s, background 0.1s;
}
.footer-menu a:hover {
  color: var(--clr-primary);
  background: var(--clr-accent);
}

/* =====================================================================
   HEADER & NAVIGATION
===================================================================== */
header {
  background: var(--clr-bg-alt);
  border-bottom: 4px solid var(--clr-accent);
  width: 100%;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
}
.logo-mark, header img[alt="Cepharimed Premium Cars"] {
  height: 52px;
  min-width: 128px;
  margin-right: 28px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.mobile-menu-toggle {
  background: none;
  border: 2px solid var(--clr-brown);
  color: var(--clr-primary);
  font-size: 2rem;
  border-radius: 8px;
  padding: 2px 12px 1px 12px;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 44px;
  transition: background 0.18s, border 0.18s, color 0.18s;
  z-index: 33;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--clr-accent);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 991px) {
  nav { display: none; }
  .cta-button {
    display: none !important;
  }
}

/* =====================================================================
    MOBILE MENU STYLES
===================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F8E5C6;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: transform 0.36s cubic-bezier(0.77, 0.21, 0.27, 1) 0s;
  transform: translateX(-100%);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--clr-accent);
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  border-radius: 8px;
  font-size: 2rem;
  margin: 28px 28px 0 0;
  padding: 4px 15px 5px 15px;
  transition: background 0.12s, color 0.12s, border 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--clr-primary);
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin: 36px 0 0 0;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.36rem;
  color: var(--clr-primary);
  padding: 11px 30px 11px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  margin-right: 16px;
  text-transform: uppercase;
  min-width: 100px;
  display: flex;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--clr-accent);
  color: var(--clr-primary);
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* =====================================================================
    HERO SECTION
===================================================================== */
.hero {
  background: linear-gradient(110deg, #F7E8CA 68%, #F4B66C 110%);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--heavy-shadow);
  overflow: hidden;
  border: 2px solid var(--clr-accent);
  margin-top: 30px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding: 38px 0 24px 0;
  max-width: 720px;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
  }
  .hero .content-wrapper {
    padding: 25px 0 10px 0;
    max-width: 100%;
  }
}

/* =====================================================================
   FEATURE LISTS & BADGES
===================================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 28px;
}
.feature-grid li {
  background: #F9E6C9;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px var(--clr-dark-shadow);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 330px;
  padding: 22px 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  border: 2px solid #edd5a3;
  transition: box-shadow 0.17s, border 0.17s;
  margin-bottom: 20px;
}
.feature-grid li img {
  height: 38px;
  width: 38px;
}
.feature-grid li h3 {
  margin-bottom: 0;
  color: var(--clr-brown);
  font-size: 1.15rem;
  letter-spacing: 0.7px;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 6px 22px var(--clr-dark-shadow);
  border: 2px solid var(--clr-accent);
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 3px;
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #ede1d1;
  border-radius: 17px;
  padding: 7px 15px 7px 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--clr-primary);
  font-weight: 500;
  border: 1px solid #ead7b6;
}
.trust-badges img {
  height: 26px;
  width: 26px;
}
.features-list, .features-section ul, .services-overview ul, .services-section ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0 15px 0;
}
.features-list li, .services-section ul li, .features-section ul li, .services-overview ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.features-list img {
  height: 22px; width: 22px;
  margin-top: 1px;
}
.quality-seals {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin: 18px 0 6px 0;
}
.quality-seals img {
  height: 40px; width: auto;
  filter: grayscale(0.18) contrast(1.09);
}

/* =====================================================================
    CARDS (Generic, Testimonial, Services, Footer)
===================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  background: #FEF9ED;
  padding: 28px 29px 22px 29px;
  border: 2px solid #ecd5b7;
  transition: box-shadow 0.15s, border 0.15s;
}
.card:hover {
  box-shadow: 0 8px 22px var(--clr-dark-shadow);
  border-color: var(--clr-accent);
}
.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: #FFFDF9;
  border-radius: 18px;
  box-shadow: 0 5px 16px #E0B97933;
  border: 2px solid var(--clr-accent);
  padding: 20px 24px;
  max-width: 340px;
  min-width: 230px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s;
}
.testimonial-card blockquote {
  color: var(--clr-vintage-red);
  font-size: 1.09rem;
  margin-bottom: 8px;
  border-left: 4px solid var(--clr-accent);
  padding-left: 13px;
}
.testimonial-card strong, .testimonial-card p {
  color: var(--clr-primary);
  margin: 0;
  font-family: var(--font-body);
}
.testimonial-card:hover {
  box-shadow: 0 7px 30px var(--clr-dark-shadow);
  z-index: 3;
}

/* =====================================================================
    CONTACT - ADDRESS
===================================================================== */
.contact-summary ul,
.contact-section ul,
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 13px 0 18px 0;
}
.contact-summary ul li,
.contact-section ul li,
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-section .cta-button,
.contact-summary .cta-button {
  margin-top: 20px;
}
@media (max-width: 650px) {
  .testimonial-slider,
  .feature-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .feature-grid li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
}

/* =====================================================================
    SECTION SPACING, FLEX ALIGNMENT, PATTERNS
===================================================================== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
}
.services-overview {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* =====================================================================
    FOOTER
===================================================================== */
footer {
  background: #ECE1D4;
  border-top: 4px solid var(--clr-accent);
  margin-top: 70px;
  padding-top: 30px;
  color: var(--clr-brown);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  padding: 0 16px 36px 16px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.company-info p {
  font-size: 1em;
  color: var(--clr-brown);
  text-align: center;
  margin: 9px 0 0 0;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 15px;
  align-items: center;
}
.social-links a img {
  height: 28px;
  width: 28px;
  border-radius: 24px;
  border: 1px solid var(--clr-accent);
  background: #FAF7F2;
  transition: box-shadow 0.13s, border 0.13s;
  box-shadow: 0 2px 6px #f2ddbf91;
}
.social-links a:hover img {
  border: 1.5px solid var(--clr-brown);
  box-shadow: 0 4px 14px var(--clr-brown);
}
@media (max-width: 650px) {
  footer .container { gap: 18px; padding-bottom: 25px; }
  .footer-menu { flex-direction: column; gap: 7px; margin-bottom: 0; }
}

/* =====================================================================
    DIALOGS, ALERTS, THANK-YOU, SECTIONS
===================================================================== */
.confirmation-section, .contact-details {
  background: #FEF9ED;
  border-radius: var(--border-radius-lg);
  border: 2px solid #ecd8bc;
  box-shadow: 0 4px 20px #ece1d4ba;
  margin-top: 40px;
  margin-bottom: 80px;
}
.confirmation-section .content-wrapper {
  align-items: center;
}
.thank-you-message {
  font-size: 1.33rem;
  color: var(--clr-brown);
  margin-bottom: 14px;
  text-align: center;
}
.next-steps {
  color: var(--clr-primary);
  margin-bottom: 22px;
  text-align: center;
}

/* =====================================================================
    RETRO & VINTAGE PATTERNS, BORDERS, EFFECTS - DECORATIVE
===================================================================== */
section {
  border-radius: var(--border-radius-lg);
  /* Optional: subtle dashed lines for retro vibes */
  box-shadow: 0 2px 12px #eedec3;
  border: 2px dashed #edd5a3;
}

@media (max-width: 650px) {
  section, .confirmation-section { border-radius: 0; }
}
hr {
  border: none;
  border-top: 2px dashed #edd5a3;
  margin: 26px 0;
}

/* =====================================================================
    COOKIE BANNER & PREFERENCES MODAL
===================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4999;
  background: #fffbe9;
  color: var(--clr-primary);
  border-top: 2.5px solid var(--clr-accent);
  box-shadow: 0 -2px 14px #f5e4c7cf;
  padding: 19px 3% 16px 3%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 1rem;
  animation: cookie-banner-fade 0.24s 1;
}
@keyframes cookie-banner-fade { from { opacity: 0;transform: translateY(30px);} to {opacity: 1; transform: none;} }
.cookie-banner p { margin: 0; font-size: 1rem; color: var(--clr-brown); }

.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .cta-button {
  background: var(--clr-accent);
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-accent);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 16px;
  margin: 0;
  transition: background 0.13s, color 0.13s, border 0.13s;
}
.cookie-banner button:hover, .cookie-banner .cta-button:hover {
  background: var(--clr-primary);
  color: var(--clr-accent);
  border-color: var(--clr-primary);
}
.cookie-banner .reject {
  background: #edd5a3;
  color: var(--clr-brown);
  border: 1.5px solid #eed7ae;
}
.cookie-banner .reject:hover {
  background: var(--clr-brown);
  color: #fffbe9;
  border-color: var(--clr-accent);
}
.cookie-banner .settings {
  background: #f8f2dc;
  color: var(--clr-primary);
  border: 1.5px dashed var(--clr-accent);
}
.cookie-banner .settings:hover {
  background: var(--clr-accent);
  color: var(--clr-primary);
  border-style: solid;
}
@media (max-width: 900px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 18px; padding: 17px 4% 15px 4%; }
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(50,38,18,0.56);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadein 0.26s;
}
.cookie-modal.open { display: flex; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-content {
  background: #fffbe9;
  color: var(--clr-primary);
  border: 2px solid var(--clr-accent);
  border-radius: var(--border-radius-lg);
  max-width: 90vw;
  min-width: 320px;
  max-width: 410px;
  padding: 34px 29px 22px 29px;
  box-shadow: var(--heavy-shadow);
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: popin 0.28s;
}
@keyframes popin { from {transform: scale(0.96);} to {transform: scale(1);} }
.cookie-modal-content h2 {
  margin-bottom: 8px;
  color: var(--clr-primary);
  font-size: 1.46rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6eccf;
  border-radius: 9px;
  padding: 8px 16px;
  border: 1px solid #eed7ae;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--clr-accent);
  width: 19px; height: 19px;
  border-radius: 7px;
}
.cookie-category.essential {
  background: #ede1d1;
  color: var(--clr-brown);
  font-weight: 700;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-buttons button, .cookie-modal-buttons .cta-button {
  font-size: 1rem;
  padding: 7px 16px;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  background: var(--clr-accent);
  color: var(--clr-primary);
  border-radius: 6px;
  border: 1.2px dotted var(--clr-primary);
  padding: 1px 11px;
  font-size: 1.3rem;
  transition: background .2s, color .2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--clr-brown);
  color: #fffbe9;
  border: 1.2px solid var(--clr-accent);
}

/* =====================================================================
    RESPONSIVE DESIGN
===================================================================== */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
  .content-wrapper { max-width: 97vw; }
}
@media (max-width: 870px) {
  .container { max-width: 100vw; }
  .hero .content-wrapper { max-width: 98vw; }
}
@media (max-width: 650px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  .section, section { padding: 24px 7px; margin-bottom: 40px; }
  .card, .confirmation-section, .contact-details { padding: 18px 8px 18px 8px; margin-top: 15px; }
  .hero { border-radius: 0; box-shadow: none; margin-left: 0; margin-right: 0; }
  .hero .content-wrapper { padding-left: 0; padding-right: 0; gap: 14px; }
  .content-wrapper { gap: 15px; padding: 0 2vw; }
}

/* =====================================================================
    MICRO-INTERACTIONS & HOVER EFFECTS
===================================================================== */
.cta-button,
.card,
.feature-grid li,
.footer-menu a,
.social-links a img,
.cookie-banner button, .cookie-banner .cta-button,
.cookie-banner .reject, .cookie-banner .settings,
.mobile-menu-toggle,
.mobile-menu-close,
.testimonial-card {
  transition: box-shadow 0.16s, border 0.16s, background 0.16s, color 0.10s, transform 0.12s;
}
.cta-button:active, .card:active, .feature-grid li:active, .testimonial-card:active {
  transform: translateY(1.5px) scale(0.98);
}

/* Vintage-style subtle animated underline for links */
nav a::after, .footer-menu a::after {
  content: '';
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transition: transform 0.18s;
}
nav a:hover::after, nav a:focus::after,
.footer-menu a:hover::after, .footer-menu a:focus::after {
  transform: scaleX(1);
}

/* =====================================================================
    PRINT FRIENDLY
===================================================================== */
@media print {
  header, footer, .cookie-banner { display: none !important; }
  body { background: #fff; color: #000; }
  section, .card, .testimonial-card { box-shadow: none !important; border: none !important; }
}
