/* === CSS RESET & NORMALIZE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #23211D;
  background-color: #F8F6F2;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #197278;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #735d28;
  text-decoration: underline;
}
ul, ol {
  margin-left: 2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #1A2236;
  margin-bottom: 0.8em;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4, h5, h6 {
  font-size: 1.10rem;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #FAF7F0;
  border-radius: 20px;
  box-shadow: 0 4px 28px -12px rgba(72, 54, 33, 0.07);
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.15rem;
  color: #675a43;
  margin-bottom: 16px;
}
.text-section {
  font-size: 1.06rem;
  color: #23211D;
  margin-bottom: 8px;
}
/* === RETRO VINTAGE COLOR PALETTE === */
:root {
  --ss-primary: #1A2236;
  --ss-secondary: #197278;
  --ss-accent: #ECE9F0;
  --ss-bg: #F8F6F2;
  --ss-retro-gold: #CE9120;
  --ss-retro-bronze: #A56D2B;
  --ss-retro-blue: #375B7E;
  --ss-retro-mint: #b9dabd;
  --ss-retro-red: #BB4D34;
  --ss-retro-cream: #FFE6C7;
}

/* === LAYOUT FLEXBOX PATTERNS === */
.features-grid,
.services-grid,
.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.features-grid .feature,
.services-grid .service,
.blog-post-grid .blog-post {
  flex: 1 1 250px;
  min-width: 260px;
  max-width: 350px;
  background: var(--ss-retro-cream);
  box-shadow: 0 3px 16px rgba(44,22,9,0.08);
  border: 3px solid #ffdda6;
  border-radius: 16px;
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.features-grid .feature:hover,
.services-grid .service:hover,
.blog-post-grid .blog-post:hover {
  border-color: var(--ss-retro-gold);
  box-shadow: 0 8px 40px -12px rgba(44, 22, 9, 0.11);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(58,40,15,0.08);
  padding: 24px;
}
.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;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 16px 0;
  flex-direction: row;
}
.testimonial-card {
  background: #fffdf5;
  border: 2px dashed var(--ss-retro-bronze);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  max-width: 400px;
  min-width: 240px;
  box-shadow: 0 2px 12px -2px rgba(44,22,9,0.06);
  color: #392a10;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.04rem;
  position: relative;
}
.testimonial-card p {
  color: #392a10;
  margin-right: 8px;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #735d28;
  font-style: italic;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item h3 {
  font-size: 1.1rem;
  color: #59412d;
}
.faq-item p {
  font-size: 1rem;
}
/* === HERO SECTION === */
.hero {
  background: linear-gradient(95deg, #e3c598 0%, #FFD9B3 100%);
  min-height: 370px;
  margin-bottom: 60px;
  padding: 60px 0 60px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 12px 32px -20px rgba(175, 119, 16, 0.10);
}
.hero h1 {
  color: var(--ss-retro-bronze);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 0 #fbf8f4, 4px 4px 0 #bba37b;
}
.hero .subheadline {
  color: #653D08;
}
.hero .btn-primary {
  margin-top: 30px;
}
/* === CTA SECTIONS === */
.cta {
  background: #FDFCFA;
  border: 3px double var(--ss-retro-gold);
  box-shadow: 0 4px 32px -12px #a56d2b17;
  border-radius: 26px;
  padding: 46px 12px 46px 12px;
  text-align: center;
}
.cta h2 {
  color: var(--ss-retro-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0.5em;
}
.cta .btn-primary {
  margin-top: 22px;
}
/* === BUTTONS === */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.12rem;
  padding: 13px 32px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-shadow: 1px 1px 0 #ffe7ba;
  background: var(--ss-retro-gold);
  color: #392a10;
  box-shadow: 0 1.5px 7px rgba(174, 123, 19, 0.11);
  margin-top: 12px;
  margin-bottom: 12px;
  transition: background 0.2s, color 0.15s, box-shadow 0.17s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #CE9120;
  color: #fff;
  box-shadow: 0 4px 14px -2px #a56d2b22;
}
.btn-secondary {
  background: var(--ss-retro-red);
  color: #fffdf5;
  text-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #762F1D;
  color: #fff;
}
/* === NAVIGATION === */
header {
  background: #FFF5EA;
  border-bottom: 3px solid #E8B058;
  box-shadow: 0 1px 16px -9px #7d450515;
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 16px;
  flex-wrap: wrap;
}
.main-nav img {
  height: 38px;
  margin-right: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  color: #75451d;
  padding: 7px 12px;
  border-radius: 20px;
  transition: background 0.2s, color 0.19s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FEEDD2;
  color: var(--ss-retro-blue);
}
header .btn-primary {
  margin-left: auto;
  margin-right: 18px;
  font-size: 1.05rem;
}
.mobile-menu-toggle {
  display: none;
  background: var(--ss-retro-gold);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 6px 15px;
  margin-right: 16px;
  margin-left: 6px;
  box-shadow: 0 2px 9px rgba(174, 123, 19, 0.12);
  cursor: pointer;
  transition: background 0.22s, color 0.13s;
  z-index: 1013;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #A56D2B;
}
/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF5EA;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 0 0;
  box-shadow: -6px 0 22px -8px #70430919;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: #FFD49B;
  color: #1A2236;
  font-size: 2.2rem;
  border: none;
  border-radius: 60%;
  padding: 4px 23px;
  margin: 22px 26px 24px 10px;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 10001;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #ECBC70;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-left: 26px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.18rem;
  color: #392a10;
  padding: 13px 22px 8px 6px;
  border-radius: 12px;
  transition: background 0.18s, color 0.11s;
  width: 100%;
  margin-bottom: 6px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFE6C7;
  color: #A56D2B;
}
/* === FOOTER === */
footer {
  background: #1A2236;
  color: #ffe6c7;
  padding: 36px 0 0 0;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #ffe6c7;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline dotted;
  padding: 2px 9px;
  border-radius: 10px;
  transition: background 0.17s, color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #ffe6c7;
  background: #735d28;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 40px;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding: 22px 0 30px 0;
  font-size: 1rem;
  color: #fdedb3;
  flex-direction: row;
}
.footer-contact img {
  display: inline-block;
  height: 22px;
  width: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
/* === TABLES === */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(64,47,24,0.07);
  border-radius: 14px;
  overflow: hidden;
  font-family: 'Open Sans', Arial, sans-serif;
}
th, td {
  padding: 14px 24px;
  text-align: left;
}
th {
  background: #FFE6C7;
  color: #7D5306;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1.11rem;
  border-bottom: 2.5px solid #ffd196;
}
td {
  border-bottom: 1px solid #f6deb7;
  color: #1A2236;
  font-size: 1rem;
}
tr:last-child td {
  border-bottom: none;
}
/* === BLOG CARDS === */
.blog-post {
  background: #fffefd;
  border: 2px solid #ffd7af;
  border-radius: 16px;
  box-shadow: 0 2px 10px -1px #8755201b;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 20px;
  transition: border-color 0.17s, box-shadow 0.16s;
}
.blog-post h3 {
  color: #965d14;
  margin-bottom: 10px;
}
.blog-post p {
  color: #584228;
}
.blog-post a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: var(--ss-retro-blue);
  margin-top: 12px;
  background: #FFE6C7;
  border-radius: 8px;
  padding: 4px 12px;
  transition: background 0.13s, color 0.12s;
}
.blog-post a:hover,
.blog-post a:focus {
  background: #A56D2B;
  color: #fff;
}
/* === MAP EMBED AND CONTACT DETAILS === */
.contact-details ul {
  margin: 16px 0 14px 20px;
}
.contact-details li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
}
.contact-details img {
  height: 22px;
  width: 22px;
}
.map-embed {
  background: #fffdf5;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 12px -4px #bfa37012;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
}
.map-embed img {
  width: 100%;
  max-width: 380px;
  border-radius: 7px;
}
.map-embed p {
  font-size: 1rem;
  color: #735d28;
}
/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F4E2C3;
  color: #2a2010;
  border-top: 2.5px solid var(--ss-retro-gold);
  box-shadow: 0 -2px 16px #5E370819;
  padding: 20px 18px 16px 18px;
  z-index: 20000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.02rem;
  flex-wrap: wrap;
  animation: cookie-fadein 0.45s cubic-bezier(.32,1.6,.39,.93) both;
}
@keyframes cookie-fadein {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-left: 7px;
  margin-right: 7px;
  font-size: 1.03rem;
  border-radius: 30px;
  padding: 8px 23px;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.12s, box-shadow 0.13s;
  box-shadow: 0 1px 8px -3px #a56d2b23;
}
.cookie-banner .cookie-accept {
  background: var(--ss-retro-gold);
  color: #fff;
  font-weight: bold;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #A56D2B;
  color: #ffe6c7;
}
.cookie-banner .cookie-reject {
  background: #CE9120;
  color: #31250d;
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #BB4D34;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #FAF7F0;
  color: var(--ss-retro-bronze);
  border: 1.5px solid var(--ss-retro-bronze);
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #FFE6C7;
  color: #BB4D34;
}
/* === Cookie Modal === */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44,22,9, 0.22);
  z-index: 21000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.22s;
  animation: cookie-modal-fadein 0.4s cubic-bezier(.32,1.6,.37,1.02) both;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFFAEA;
  color: #1A2236;
  min-width: 300px;
  max-width: 96vw;
  padding: 36px 24px 24px 24px;
  border-radius: 24px;
  box-shadow: 0 8px 30px #67441a1f;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
  z-index: 21001;
  animation: cookie-setting-in .34s ease;
}
@keyframes cookie-setting-in {
  from { transform: scale(0.9); opacity: 0.3; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--ss-retro-bronze);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 21px;
}
.cookie-modal label {
  font-size: 1.07rem;
  color: #735d28;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .cookie-essential {
  font-style: italic;
  color: #a67e33;
  font-size: 1rem;
  margin-left: 13px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 13px;
  right: 17px;
  background: #ffdba8;
  border: none;
  border-radius: 80%;
  color: #1A2236;
  font-size: 1.7rem;
  padding: 2px 13px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .close-modal-btn:hover,
.cookie-modal .close-modal-btn:focus {
  background: #efd09a;
  color: #bb4d34;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
/* === UTILITIES === */
.hide-mobile {
  display: block !important;
}
.hide-desktop {
  display: none !important;
}
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}
/* === DECORATIVE PATTERNS: RETRO LINES & DETAILS === */
section {
  position: relative;
  overflow: hidden;
}
section::before {
  content: '';
  display: block;
  position: absolute;
  left: -18px;
  top: 36px;
  width: 90px;
  height: 6px;
  border-radius: 3px;
  background: var(--ss-retro-bronze);
  opacity: 0.18;
  z-index: 0;
}
section::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 14px;
  width: 120px;
  height: 6px;
  border-radius: 3px;
  background: var(--ss-retro-gold);
  opacity: 0.13;
  z-index: 0;
}
/* Remove on CTA or HERO since it looks odd */
.section.cta::before,
.section.cta::after,
.hero::before,
.hero::after {
  content: none !important;
}
/* ======= RESPONSIVE QUERIES (Mobile-first strategy) ======= */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
}
@media (max-width: 930px) {
  .features-grid .feature, .services-grid .service, .blog-post-grid .blog-post {
    min-width: 220px;
    max-width: 46vw;
  }
  .features-grid, .services-grid, .blog-post-grid {
    gap: 16px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.45rem;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.19rem; }
  .container { padding: 0 4px; }
  .main-nav {
    flex-wrap: wrap;
    gap: 14px;
    padding: 6px 9px;
  }
  .main-nav a, header .btn-primary { font-size: 0.98rem; }
  .features-grid, .services-grid, .blog-post-grid {
    flex-direction: column;
    gap: 12px;
  }
  .features-grid .feature,
  .services-grid .service,
  .blog-post-grid .blog-post {
    min-width: 94vw;
    max-width: 100vw;
    width: 99%;
  }
  .testimonial-card, .blog-post {
    max-width: 100vw;
    width: 100%;
  }
  .testimonials {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
  }
  .footer-contact {
    gap: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .main-nav, header .btn-primary {
    display: none !important;
  }
  .footer-nav { gap: 12px 11px; }
  section, .cta {
    padding: 26px 4px 24px 4px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .header {
    padding: 0 2px;
  }
  .hero h1 {
    font-size: 1.07rem;
  }
  .feature, .service, .blog-post {
    padding: 12px 6px 8px 8px;
    border-radius: 12px;
  }
  .cta {
    border-radius: 12px;
    padding: 18px 2px;
  }
}
/* END OF CSS */