/* =====================
   CSS RESET & BASE STYLE
   ===================== */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #FDF6E3;
  color: #264653;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #264653;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
p, ul, ol, li { font-size: 1rem; }
ul, ol { margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
li { margin-left: 20px; }
a {
  color: #E76F51;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus { color: #F4A261; }
strong { font-weight: bold; }
em { font-style: italic; }

/* ============
   BRAND COLORS (CSS VARS)
   ============ */
:root {
  --brand-primary: #264653;
  --brand-secondary: #E76F51;
  --brand-accent: #F4A261;
  --brand-bg: #FDF6E3;
  --brand-dark: #232323;
  --brand-paper: #FAEDCD;
  --vintage-mustard: #E9C46A;
  --vintage-blue: #457B9D;
  --vintage-burgundy: #A8374F;
  --vintage-brown: #8D6748;
  --vintage-green: #8CB369;
  --white: #FFF;
  --grey: #8B8B8B;
  --shadow: 0 2px 24px rgba(38,70,83,0.12);
}

/* ============
   GLOBAL CONTAINERS AND SPACING
   ============ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-paper);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(38,70,83,0.07);
  position: relative;
}

/* ============
   TYPOGRAPHY - RETRO
   ============ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--brand-primary);
  background: var(--brand-bg);
}
.hero h1,
.confirmation h1,
.section > h1,
.section > h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-shadow: 1px 1px 0 var(--brand-accent), 2px 2px 0 var(--vintage-mustard);
  letter-spacing: 2px;
}
.hero p, .section p, .features ul li p { font-size: 1.125rem; }

/* Vintage decorative divider */
.section:not(.hero):not(.confirmation):before {
  content: '';
  display: block;
  width: 110px;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--brand-secondary), var(--brand-secondary) 24px, var(--vintage-mustard) 24px, var(--vintage-mustard) 48px);
  border-radius: 10px;
  margin-bottom: 38px;
}

/* ============
   HEADER & NAVIGATION
   ============ */
header {
  width: 100%;
  background: var(--brand-primary);
  box-shadow: 0 4px 24px rgba(38,70,83,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 10px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
.main-navigation {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.main-navigation a {
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 2px;
  transition: color 0.2s;
}
.main-navigation a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--brand-accent);
  margin-top: 4px;
  border-radius: 2px;
  transition: width 0.2s;
}
.main-navigation a:hover:after, .main-navigation a:focus:after {
  width: 100%;
}
.cta-primary {
  background: var(--brand-secondary);
  color: var(--white) !important;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 11px 32px;
  box-shadow: 0 2px 8px rgba(231,111,81,0.12);
  border: none;
  margin-left: 12px;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, box-shadow 0.2s, color 0.15s;
  letter-spacing: 0.5px;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--brand-accent);
  color: var(--brand-primary) !important;
  box-shadow: 0 4px 20px rgba(244,162,97,0.16);
}
.cta-secondary {
  background: transparent;
  border: 2px solid var(--brand-secondary);
  color: var(--brand-secondary) !important;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 28px;
  margin-top: 18px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.25s, background 0.18s, color 0.12s;
  letter-spacing: 0.5px;
  outline: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-secondary);
  color: var(--white) !important;
  border-color: var(--brand-secondary);
}

/* ===========
   MOBILE BURGER MENU
   =========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--brand-accent);
  font-size: 2rem;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  transition: color 0.22s;
  z-index: 120;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-accent);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: var(--brand-primary);
  z-index: 300;
  overflow-y: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(0.74,0.03,0.42,0.98), opacity 0.23s;
  transform: translateX(-100vw);
  opacity: 0;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 2.6rem;
  align-self: flex-end;
  margin: 18px 22px 0 0;
  cursor: pointer;
  z-index: 320;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 44px;
  width: 100%;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 7px 0;
  display: block;
  border-radius: 8px;
  transition: background 0.1s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

@media (max-width: 1024px) {
  .main-navigation {
    gap: 12px;
  }
  .container {
    max-width: 96vw;
    padding: 0 6vw;
  }
}
@media (max-width: 890px) {
  header .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 840px) {
  .main-navigation {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* =============
   HERO SECTION
   ============= */
.hero {
  width: 100%;
  background: var(--vintage-mustard);
  background-image: url('../assets/pattern_dots.svg'), linear-gradient(120deg, var(--vintage-mustard) 80%, var(--brand-accent) 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: top left, center;
  background-size: 300px, cover;
  border-bottom: 10px solid var(--brand-secondary);
  margin-bottom: 60px;
  box-shadow: 0 8px 28px rgba(230, 179, 40, 0.07); /* vintage paper shadow */
}
.hero .container {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 56px;
  padding-bottom: 64px;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 6px;
  text-shadow: 1px 1px 0 #fff8e8, 3px 3px 0 var(--vintage-brown);
}
.hero p {
  color: var(--brand-dark);
  max-width: 710px;
  font-size: 1.18rem;
  margin-bottom: 16px;
}

/* =============
   FEATURES & SERVICES
   ============= */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper {
  gap: 20px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
}
.features ul li {
  background: var(--white);
  border: 2px solid var(--vintage-brown);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  min-width: 220px;
  min-height: 120px;
  min-width: 0;
  margin-bottom: 0;
  position: relative;
  transition: box-shadow 0.22s, transform 0.17s;
}
.features ul li:hover, .features ul li:focus-within {
  box-shadow: 0 8px 28px rgba(164, 55, 79, 0.07), 0 0 0 3px var(--vintage-mustard);
  transform: translateY(-5px) scale(1.03);
  z-index: 2;
}
.features ul img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-right: 5px;
}
.features ul li > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.features ul li h3 {
  font-size: 1.1rem;
  color: var(--brand-secondary);
}
.features ul li p {
  color: var(--brand-primary);
  margin-bottom: 0;
}

.services {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.services .content-wrapper {
  gap: 24px;
}
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
}
.services ul li {
  background: var(--white);
  border: 2px dashed var(--brand-accent);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(244,162,97,0.09);
  padding: 20px 18px 15px 18px;
  flex: 1 1 252px;
  min-width: 220px;
  margin-bottom: 0;
  transition: box-shadow 0.22s, border-color 0.19s;
}
.services ul li h3 {
  color: var(--vintage-burgundy);
  font-size: 1.09rem;
  margin-bottom: 8px;
}
.services ul li:hover {
  box-shadow: 0 8px 28px rgba(244,162,97,0.13);
  border-color: var(--brand-secondary);
}
.services ul li p {
  color: var(--brand-primary);
  margin-bottom: 4px;
  font-size: 1rem;
}

.approach-icons ul {
  display: flex;
  flex-direction: row;
  gap: 35px;
  padding: 18px 1px 16px 1px;
  align-items: center;
}
.approach-icons ul li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: var(--brand-primary);
  background: var(--brand-accent);
  border-radius: 18px;
  padding: 8px 15px 8px 7px;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(244,162,97,0.09);
  gap: 9px;
}
.approach-icons ul img {
  width: 28px;
  height: 28px;
}

/* ================
   TESTIMONIALS/REVIEWS
   ================ */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-green);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(140,179,105,0.06);
}
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonials h2 {
  color: var(--brand-primary);
  margin-bottom: 9px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--brand-paper);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(38,70,83,0.08);
  border: 2px solid var(--vintage-brown);
  font-size: 1.1rem;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.17s;
  color: #222;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card p {
  color: #222;
  margin: 0;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-author {
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--brand-secondary);
  font-size: 1rem;
  margin-left: 14px;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(231,111,81,0.13), 0 0 0 2px var(--brand-accent);
  border-color: var(--brand-accent);
  z-index: 1;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: var(--brand-primary);
  color: var(--white);
  padding: 38px 0 0 0;
}
footer .container {
  margin-top: 0;
  margin-bottom: 0;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.brand-summary {
  flex: 2 0 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.brand-summary img {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}
.brand-summary p {
  color: var(--white);
  font-size: 1rem;
  opacity: 0.93;
}
.footer-menu {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.footer-menu a {
  color: var(--brand-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  opacity: 0.92;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--brand-secondary);
  opacity: 1;
}
.contact-info {
  flex: 1 1 225px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--vintage-mustard);
  font-size: 1.01rem;
  margin-bottom: 24px;
  opacity: 0.86;
}
.contact-info strong {
  color: var(--brand-accent);
}
footer {
  margin-bottom: 0;
}

/* ================
   LEGAL/CONFIRMATION/OTHER PAGE SECTIONS
   ================ */
.legal, .confirmation, .about, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-paper);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(38,70,83,0.07);
}
.legal h1, .confirmation h1, .about h1, .contact h1 {
  color: var(--vintage-burgundy);
  text-shadow: 1px 1px 0 var(--vintage-mustard);
}
.legal .text-section,
.confirmation .text-section,
.about .text-section,
.contact .text-section {
  margin-bottom: 20px;
}
.confirmation ul {
  list-style: inside square;
  margin-bottom: 20px;
  gap: 8px;
}
.confirmation a.cta-primary {
  display: inline-block;
  margin-top: 18px;
}

/* ================
   FORMATTING HELPERS
   ================ */
.text-section {
  margin-bottom: 20px;
}
.map-embed {
  margin-top: 12px;
  background: var(--vintage-mustard);
  border-radius: 11px;
  color: var(--brand-primary);
  font-size: 0.96rem;
  padding: 10px 14px 11px 18px;
  box-shadow: 0 1px 6px rgba(232, 111, 81, 0.09);
  font-style: italic;
}

/* ================
   RESPONSIVE DESIGN
   ================ */
@media (max-width: 1020px) {
  .footer .content-wrapper, footer .content-wrapper {
    flex-wrap: wrap;
    gap: 18px;
    padding: 0;
  }
  .content-wrapper {
    gap: 22px;
  }
}
@media (max-width: 800px) {
  .footer .content-wrapper, footer .content-wrapper, .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .section, .hero, .features, .services, .testimonials, .about, .legal, .confirmation, .contact {
    padding: 24px 4vw;
    margin-bottom: 44px;
  }
  .container {
    padding-left: 4vw; padding-right: 4vw;
  }
  .features ul, .services ul {
    flex-direction: column;
    gap: 16px;
  }
  .approach-icons ul {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.53rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  h3 {
    font-size: 1.06rem;
  }
  .cta-primary, .cta-secondary {
    font-size: 1rem;
    padding: 10px 19px;
  }
  .testimonial-card {
    font-size: 0.97rem;
    padding: 13px;
  }
  .brand-summary img {
    width: 48px; height: 48px;
  }
}
@media (max-width: 420px) {
  .section, .hero, .features, .services, .testimonials, .about, .legal, .confirmation, .contact {
    padding: 12px 2vw;
  }
  .container {
    padding-left: 2vw; padding-right: 2vw;
  }
}
/* =======================
   FLEXBOX UTILITY CLASSES
   ======================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 18px 14px;
  min-width: 180px;
  flex: 1 1 260px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}

/* ============== 
   COOKIE CONSENT BANNER & MODAL
   ============== */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  background: var(--brand-paper);
  color: var(--brand-primary);
  font-size: 1rem;
  box-shadow: 0 -4px 18px rgba(38,70,83,0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 36px;
  gap: 30px;
  border-top: 4px solid var(--brand-secondary);
  animation: banner-in 0.28s ease;
}
@keyframes banner-in {
  0% { transform: translateY(90px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
#cookie-consent-banner p {
  flex: 2 1 320px;
  margin-right: 16px;
  color: var(--brand-primary);
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  border-radius: 20px;
  padding: 8px 20px;
  font-size: .98rem;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: background 0.16s, color 0.12s, box-shadow 0.13s;
}
.cookie-btn.accept {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 1px 8px rgba(231,111,81,0.11);
}
.cookie-btn.accept:hover { background: var(--brand-accent); color: var(--brand-primary); }
.cookie-btn.reject {
  background: var(--white);
  border: 2px solid var(--brand-secondary);
  color: var(--brand-secondary);
}
.cookie-btn.reject:hover {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-btn.settings:hover { background: var(--brand-secondary); color: #fff; }
@media (max-width: 670px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 15px 7vw 15px 7vw;
  }
}

#cookie-modal {
  display: none;
  position: fixed;
  z-index: 11000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(39,44,61,0.35);
  justify-content: center;
  align-items: center;
}
#cookie-modal.active {
  display: flex;
  animation: modal-in 0.27s cubic-bezier(0.63,0.03,0.32,0.95);
}
@keyframes modal-in {
  0% { opacity: 0; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-content {
  background: var(--brand-paper);
  border-radius: 15px;
  box-shadow: 0 8px 36px rgba(38,70,83,0.15);
  width: 98vw;
  max-width: 420px;
  padding: 31px 25px 24px 25px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  color: var(--brand-primary);
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--brand-secondary);
  font-size: 1.7rem;
  position: absolute;
  top: 16px; right: 18px;
  cursor: pointer;
  z-index: 12;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 8px 0;
}
.cookie-category label {
  flex: 1;
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  transform: scale(1.18);
  margin-right: 6px;
  accent-color: var(--brand-secondary);
}
.cookie-category.disabled label { color: #777; opacity: .77; }
/* ================
   MICRO-ANIMATIONS
   ================ */
.cta-primary, .cta-secondary, .cookie-btn {
  transition: background 0.2s, color 0.14s, box-shadow 0.18s, border-color 0.15s;
}
.features ul li, .testimonial-card, .services ul li {
  transition: box-shadow 0.22s, border-color 0.13s, transform 0.19s;
}
.main-navigation a, .footer-menu a, .mobile-nav a {
  transition: color 0.14s, background 0.14s, opacity 0.14s, text-decoration 0.12s;
}

/*
=============================
   VINTAGE/RETRO DESIGN EXTRAS
==============================
*/
.section, .features, .about, .confirmation, .testimonials, .legal, .contact {
  border-radius: 18px;
  box-shadow: 0 1.5px 15px rgba(164,55,79,0.045);
  border: 1.5px solid var(--vintage-brown);
  background-image: linear-gradient(135deg, #FAEDCD 90%, #fff6df 100%);
}
.features ul li, .services ul li, .testimonial-card {
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(232, 111, 81, 0.043), 0 0.5px 5px rgba(38,70,83,0.027);
}
.approach-icons ul li, .map-embed {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  box-shadow: 0 1.5px 7px rgba(39,44,61,0.04);
}

/* Small decorative triangle (vintage flair) */
.section:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 17px solid var(--brand-accent);
  margin: 20px auto 0 auto;
  opacity: 0.12;
}

/* ================
   REMOVE GRID
   ================ */
/* Not using CSS Grid, only Flexbox everywhere */

/*
===========================
  END
===========================
*/
