/* ==========================================================================
   CSS RESET & BASE SETUP
   ========================================================================== */
html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dt,
dd,fieldset,legend,table,th,td,form,input,button,select,textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.7;
  background: #F7F3EC;
  color: #2D2D2D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #20406A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #E1A922;
  outline: none;
}
ul,
ol {
  list-style: none;
}

/* ==========================================================================
   VINTAGE RETRO DESIGN TOKENS
   ========================================================================== */
:root {
  --vintage-blue: #20406A;
  --vintage-cream: #F7F3EC;
  --vintage-brown: #83553A;
  --vintage-yellow: #E1A922;
  --vintage-accent: #B56C25;
  --vintage-coral: #D5755A;
  --vintage-green: #97B388;
  --vintage-border: #E2D2BE;
  --vintage-grey: #585959;
  --main-radius: 12px;
  --main-shadow: 0 2px 12px 0 rgba(32, 64, 106, 0.09);
  --main-transition: all 0.2s cubic-bezier(.4,0,.2,1);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  color: #20406A;
  font-weight: 900;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin: 36px 0 18px;
  line-height: 1.22;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.25;
}
h4, h5, h6 {
  font-size: 1.19rem;
  line-height: 1.28;
}
p, li, blockquote, td, th, address {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #47382B;
}
strong {
  font-weight: 700;
  color: #20406A;
}
blockquote {
  background: var(--vintage-cream);
  border-left: 6px solid var(--vintage-yellow);
  padding: 24px 30px 24px 24px;
  border-radius: var(--main-radius);
  font-style: italic;
  color: #20406A;
  margin-top: 20px;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF9F2;
  border-radius: var(--main-radius);
  box-shadow: var(--main-shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF9F2;
  border-radius: var(--main-radius);
  box-shadow: var(--main-shadow);
  padding: 32px 24px;
  transition: box-shadow 0.18s;
  border: 1px solid var(--vintage-border);
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(32,64,106,0.15);
  border-color: var(--vintage-yellow);
  z-index: 3;
}
.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;
  margin-bottom: 20px;
  border-radius: var(--main-radius);
  background: #FFF;
  border: 1.5px solid var(--vintage-border);
  box-shadow: 0 2px 8px rgba(32,64,106,0.07);
  font-size: 1.08rem;
  color: #264060;
  min-width: 0;
}
.testimonial-card p {
  margin-bottom: 0;
  flex: 1;
  color: #20406A;
}
.testimonial-card strong {
  font-weight: 700;
}
.testimonial-card span {
  color: #83553A;
  font-size: 0.97rem;
  font-style: italic;
  margin-left: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features > .container > .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 10px;
}
.features ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFF9F2;
  border: 1.4px dashed var(--vintage-brown);
  border-radius: var(--main-radius);
  padding: 24px 18px 18px 18px;
  gap: 8px;
  min-width: 220px;
  max-width: 320px;
}
.features ul li img {
  width: 36px;
  margin-bottom: 8px;
}
.services-overview > .container > .content-wrapper > ul,
.services-list > .container > .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services-overview ul li, .services-list ul li {
  background: #FFF;
  border-radius: var(--main-radius);
  border: 1px solid var(--vintage-border);
  padding: 21px 18px;
  color: #574235;
  box-shadow: var(--main-shadow);
  min-width: 230px;
  max-width: 325px;
  font-size: 1.02rem;
}
.services-list .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 16px 0 24px 0;
  justify-content: space-between;
}
.service-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F2E3CA;
  border: 2px solid var(--vintage-yellow);
  border-radius: var(--main-radius);
  box-shadow: var(--main-shadow);
  padding: 28px 21px;
  min-width: 220px;
  max-width: 300px;
  gap: 10px;
  transition: transform 0.16s, box-shadow 0.16s;
}
.service-block img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.service-block:hover {
  transform: translateY(-7px) scale(1.03) rotate(-1deg);
  box-shadow: 0 4px 24px rgba(32,64,106,0.13);
  border-color: var(--vintage-accent);
  z-index: 2;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  width: 100%;
  background: var(--vintage-cream);
  border-bottom: 3px solid var(--vintage-yellow);
  display: flex;
  align-items: center;
  padding: 0 0 0 0;
  min-height: 80px;
  z-index: 50;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
  height: 70px;
}
.logo img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 8px;
  color: #20406A;
  background: none;
  transition: var(--main-transition);
  position: relative;
}
.main-nav a.cta {
  background: var(--vintage-yellow);
  color: #20406A;
  font-weight: 900;
  border: none;
  padding: 9px 18px;
  margin-left: 10px;
  font-size: 1.06rem;
  box-shadow: var(--main-shadow);
  border-radius: 9px;
  letter-spacing: 0.04em;
}
.main-nav a.cta.primary:hover,
.main-nav a.cta.primary:focus {
  background-color: var(--vintage-brown);
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(32,64,106,0.18);
}
.main-nav a:hover:not(.cta),
.main-nav a:focus:not(.cta) {
  color: var(--vintage-yellow);
  background: rgba(225,169,34,0.07);
}
/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--vintage-accent);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 24px;
  z-index: 120;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F7F3EC;
  box-shadow: -8px 0 22px 0 rgba(32,64,106,0.13);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 44px;
  padding-left: 28px;
  padding-right: 44px;
  transform: translateX(-105%);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--vintage-blue);
  cursor: pointer;
  z-index: 220;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.16rem;
  color: var(--vintage-blue);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: none;
  border-radius: 7px;
  padding: 10px 2px;
  margin-right: 0;
  transition: var(--main-transition);
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--vintage-yellow);
  background: #F2E3CA;
  outline: none;
}
/* Hide main menu on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==========================================================================
   HERO, CTA, & SECTION STYLES
   ========================================================================== */
.hero {
  background: linear-gradient(162deg,#FFF9F2 60%,#F2E3CA 100%);
  padding: 56px 0 40px 0;
  border-bottom: 2.5px dotted var(--vintage-yellow);
  margin-bottom: 34px;
  min-height: 330px;
}
.hero h1 {
  color: var(--vintage-brown);
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 0 rgba(225,169,34,.08);
}
.hero p {
  font-size: 1.13rem;
  color: var(--vintage-blue);
  margin-bottom: 26px;
}
.hero .cta.primary {
  margin-top: 10px;
}
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #E1A92212;
  border-radius: var(--main-radius);
  box-shadow: 0 3px 8px 0 rgba(225, 169, 34, 0.06);
  padding: 38px 22px;
  margin-bottom: 54px;
}
.cta h2 {
  margin-bottom: 12px;
}

/* ==========================================================================
   BUTTONS, LINKS, CALL-TO-ACTION
   ========================================================================== */
.cta.primary,
.cta.secondary,
button.cta,
button.cta.primary,
button.cta.secondary {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  border-radius: 24px;
  background: var(--vintage-yellow);
  color: var(--vintage-blue);
  border: none;
  box-shadow: var(--main-shadow);
  cursor: pointer;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 0 rgba(249,241,204,0.15);
  margin-top: 7px;
  margin-bottom: 7px;
  transition: background 0.14s, color 0.16s, box-shadow 0.18s;
}
.cta.primary:hover,
.cta.primary:focus,
button.cta.primary:hover,
button.cta.primary:focus {
  background: var(--vintage-brown);
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(32,64,106,0.15);
  outline: none;
}
.cta.secondary,
button.cta.secondary {
  background: #20406A;
  color: #FFF;
  border: 2.5px solid var(--vintage-yellow);
}
.cta.secondary:hover,
.cta.secondary:focus,
button.cta.secondary:hover,
button.cta.secondary:focus {
  background: var(--vintage-yellow);
  color: #20406A;
  border-color: var(--vintage-yellow);
}
button:active {
  transform: scale(0.98);
}

/* ==========================================================================
   TABLES
   ========================================================================== */
table {
  border-collapse: collapse;
  width: 100%;
  background: #F2E3CA;
  margin-top: 18px;
  border-radius: var(--main-radius);
  overflow: hidden;
  box-shadow: var(--main-shadow);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
thead {
  background: var(--vintage-yellow);
}
th, td {
  padding: 18px 18px;
  text-align: left;
  border-bottom: 1px solid #F7F3EC;
}
th {
  color: #20406A;
  font-weight: bold;
  font-size: 1.05rem;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #20406A;
  color: #fff;
  padding: 34px 0 18px 0;
  border-top: 5px double var(--vintage-yellow);
  font-size: 1rem;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--vintage-yellow);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: underline dotted;
  padding: 4px 0;
  border-radius: 5px;
  transition: color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--vintage-yellow);
  color: #20406A;
}
.brand-signature {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #FFF8E2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: .87;
}
.brand-signature img {
  height: 27px;
  margin-right: 6px;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea, select {
  padding: 12px 19px;
  border: 1.2px solid var(--vintage-border);
  border-radius: 7px;
  font-size: 1rem;
  background: #FAF6EE;
  color: #47382B;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-top: 7px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.13s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--vintage-yellow);
  box-shadow: 0 2px 12px 0 rgba(225,169,34,.13);
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #20406A;
  font-size: 1.02rem;
  margin-top: 8px;
  margin-bottom: 3px;
}

/* ==========================================================================
   SPECIFIC PAGE STYLES
   ========================================================================== */
.thank-you {
  background: #F2E3CA;
  border: 2.5px solid var(--vintage-yellow);
  border-radius: var(--main-radius);
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.policy, .about, .team, .why-us, .contact-form, .contact-info {
  background: #FFF9F2;
  border-radius: var(--main-radius);
  box-shadow: var(--main-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.text-section {
  margin-bottom: 18px;
  max-width: 700px;
  color: #47382B;
}
.text-section ul {
  margin-top: 8px;
  margin-left: 22px;
  list-style: disc outside;
}
.text-section li {
  margin-bottom: 8px;
  color: #64482E;
}
.text-section a {
  color: var(--vintage-accent);
  text-decoration: underline dotted;
  font-weight: 600;
}
.text-section a:hover {
  color: var(--vintage-yellow);
}

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF7E0;
  box-shadow: 0 -4px 24px 0 rgba(32,64,106,0.07);
  border-top: 2.5px solid var(--vintage-yellow);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 14px;
  gap: 26px;
  flex-wrap: wrap;
  animation: cookie-slide-in 0.34s cubic-bezier(.4,0,.2,1);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(80px); opacity: 0; }
  80% { transform: translateY(-6px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #20406A;
  font-size: 1rem;
  letter-spacing: .01em;
  margin: 0 0 9px 0;
  font-family: 'Open Sans', sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 15px;
  padding: 10px 24px;
  border: none;
  background: var(--vintage-yellow);
  color: #20406A;
  margin-right: 8px;
  cursor: pointer;
  box-shadow: var(--main-shadow);
  transition: background .16s, color .14s, box-shadow .15s;
}
.cookie-btn.primary {
  background: var(--vintage-yellow);
  color: #20406A;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: var(--vintage-brown);
  color: #FFF;
  outline: none;
}
.cookie-btn.secondary {
  background: #20406A;
  color: #FFF9F2;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: var(--vintage-accent);
  color: #FFF;
  outline: none;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--vintage-brown);
  border: 1.5px solid var(--vintage-brown);
  padding: 10px 21px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  border-color: var(--vintage-yellow);
  color: var(--vintage-yellow);
}

/* Cookie Modal */
.cookie-modal-overlay {
  background: rgba(32, 64, 106, 0.24);
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-fade-in 0.26s cubic-bezier(.4,0,.2,1);
}
@keyframes cookie-fade-in {
  from {opacity: 0;} to {opacity: 1;}
}
.cookie-modal {
  background: #FFF9F2;
  border-radius: var(--main-radius);
  border: 2.5px solid var(--vintage-yellow);
  color: #20406A;
  min-width: 320px;
  max-width: 92vw;
  box-shadow: 0 8px 33px 0 rgba(32,64,106,0.19);
  padding: 33px 28px 28px 28px;
  position: relative;
  animation: cookie-modal-pop 0.24s cubic-bezier(.35,1.35,.4,1.01);
}
@keyframes cookie-modal-pop {
  0% {transform: scale(.8);} 100% {transform: scale(1);}
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #20406A;
  margin-bottom: 15px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-modal .category label {
  margin: 0;
  font-size: 1.08rem;
  color: #83553A;
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: var(--vintage-yellow);
  transform: scale(1.31);
}
.cookie-modal .category.disabled label {
  color: #BBB;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  align-items: center;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #83553A;
  cursor: pointer;
  z-index: 4120;
  opacity: .78;
  transition: color .14s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--vintage-accent);
  outline: none;
}

/* ==========================================================================
   RESPONSIVE STYLES (Mobile First)
   ========================================================================== */
@media (max-width: 1100px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
  .main-nav a { font-size: 0.97rem; }
  h1 { font-size: 2.07rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 900px) {
  .services-list .services-grid {
    flex-direction: column;
    gap: 28px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer-nav a { font-size: 1rem; }
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 20px 0;
    min-height: 200px;
    margin-bottom: 18px;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .section, .policy, .about, .team, .why-us, .contact-form, .contact-info, .thank-you {
    padding: 22px 6px;
  }
  .features > .container > .content-wrapper > ul,
  .services-overview > .container > .content-wrapper > ul,
  .services-list > .container > .content-wrapper > ul {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .service-block {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .text-section { max-width: 100%; }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.03rem;
  }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.41rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .hero {
    padding: 24px 0 10px 0;
  }
  .cta, .thank-you {
    padding: 18px 5px;
  }
}

/* ==========================================================================
   RETRO DECORATIVE PATTERNS
   ========================================================================== */
.section,
.policy,
.about,
.team,
.why-us,
.contact-form,
.contact-info,
.thank-you {
  background-image: repeating-linear-gradient(135deg, #F2E3CA 0px, #F2E3CA 12px, transparent 12px, transparent 24px), repeating-linear-gradient(45deg, #FFF9F2 0px, #FFF9F2 8px, transparent 8px, transparent 22px);
  background-size: 70px 70px, 36px 36px;
  background-blend-mode: lighten;
  border-radius: var(--main-radius);
  box-shadow: var(--main-shadow);
}
.features ul li,
.services-overview ul li,
.services-list ul li {
  border-style: dashed;
  background: #FEF7ED;
}
.service-block {
  background: linear-gradient(145deg, #F9E1C0 85%, #FDEEB9 100%);
}
.testimonial-card {
  background: #FFFDF7;
  border: 2px solid var(--vintage-yellow);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-style: italic;
  box-shadow: 0 3px 10px 0 rgba(32,64,106,0.07);
}

/* ==========================================================================
   MICRO-INTERACTIONS & EFFECTS
   ========================================================================== */
.card, .service-block, .testimonial-card, .cta.primary, .cta.secondary, .main-nav a.cta {
  transition: box-shadow .17s, transform .12s, border-color .17s, color .14s, background .17s;
}
.card:active, .service-block:active {
  transform: scale(0.98);
}
.service-block:focus {
  outline: 2.5px dashed var(--vintage-yellow);
}
.main-nav a:active,
.mobile-nav a:active,
.footer-nav a:active {
  transform: scale(0.969);
}

/* ==========================================================================
   ACCESSIBILITY & OVERRIDES
   ========================================================================== */
:focus {
  outline: 2px dashed var(--vintage-yellow) !important;
  outline-offset: 1.5px;
}
::selection {
  background: #E1A922;
  color: #FFF;
}

/* Avoid overflow on small screens for tables */
@media (max-width: 700px) {
  table { font-size: 0.98rem; }
  th, td { padding: 10px 6px; }
}

/* Prevent content overlapping anywhere */
.card, .service-block, .testimonial-card, .section, .cta, .policy, .about, .team, .why-us, .contact-form, .contact-info, .thank-you {
  margin-bottom: 24px;
  min-width: 0;
}

/* ==========================================================================
   NO GRID, NO ABSOLUTE FOR CONTENT   (only for decor/menu/modal)
   ==========================================================================
  Verified: Only flex, never grid or columns above
*/
