/* ==========================================================================
   BASIC 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%;
  font: inherit;
  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;
  background: #F5F5F3;
  color: #2B2C22;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* ==========================================================================
   CUSTOM FONT FAMILY – Retro/Vintage inspired
   ==========================================================================
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Montserrat:wght@900&display=swap');

:root {
  --color-primary: #234C63;
  --color-secondary: #37A18E;
  --color-accent: #F5F5F3;
  --color-dark-vintage: #45382e;
  --color-cream: #F7EDDA;
  --color-caramel: #B38040;
  --color-brown: #6C482D;
  --color-logo-gold: #FFC857;
  --color-logo-red: #E9724C;
  --color-white: #fff;
  --color-black: #1A1816;
  --font-display: 'Shrikhand', 'Montserrat', Arial, sans-serif;
  --font-heading: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ==========================================================================
   TYPOGRAPHY: Vintage meets Modern
   ==========================================================================
*/
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-cream);
  color: var(--color-dark-vintage);
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  font-family: var(--font-display);
  color: var(--color-brown);
  text-shadow: 2px 3px 0px var(--color-logo-gold);
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--color-logo-gold);
  font-family: var(--font-display);
  text-shadow: 1px 1px 0px var(--color-accent);
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
  font-weight: 700;
}
h4, h5, h6 {
  font-weight: 700;
}
p, li, ul, ol, span, a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark-vintage);
}
strong {
  font-weight: bold;
}
.text-section h3 {
  font-size: 1.15rem;
  color: var(--color-logo-red);
  margin-top: 18px;
}
.text-section ul {
  padding-left: 1.25em;
  margin-bottom: 1.5em;
}
.text-section ul li::before {
  content: '\2022';
  color: var(--color-logo-red);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.2em;
}
.text-section ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ==========================================================================
   LAYOUT CONTAINERS & SPACING (VINTAGE CARD/PAPER STYLE)
   ==========================================================================
*/
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==========================================================================
   FLEXBOX LAYOUTS AS REQUIRED
   ==========================================================================
*/
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-accent);
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 8px 32px rgba(35,76,99,0.07), 0 1.5px 6px var(--color-logo-gold);
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid var(--color-logo-gold);
}
.features-grid, .benefits-grid, .testimonials-grid, .analytics-types, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
  margin-bottom: 16px;
}
.features-grid, .benefits-grid, .values-grid, .analytics-types {
  align-items: stretch;
}
.feature-card, .benefit-card, .value-card, .service-card {
  flex: 1 1 240px;
  min-width: 240px;
  background: var(--color-cream);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(108,72,45,0.10);
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid var(--color-logo-gold);
  transition: transform 0.19s, box-shadow 0.2s;
}
.feature-card:hover, .benefit-card:hover, .value-card:hover, .service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(233,114,76,0.12), 0 2px 8px var(--color-logo-gold);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 260px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(108,72,45,0.08);
  border: 1.5px solid var(--color-logo-gold);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.17s;
  color: var(--color-black);
}
.testimonial-card p {
  color: var(--color-brown);
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.98rem;
}
.testimonial-card:hover {
  box-shadow: 0 12px 38px rgba(67,41,19,0.13);
  border-color: var(--color-secondary);
}
.client-logos {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==========================================================================
   HERO SECTIONS
   ==========================================================================
*/
.hero-section {
  padding: 52px 0 32px 0;
  background:
    repeating-linear-gradient(135deg, #f5f5f3, #f7edda 24px, #F7EDDA 28px, #ffe5be 44px),
    url('../assets/pattern-retro.svg') repeat;
  min-height: 350px;
  border-bottom: 4px solid var(--color-logo-gold);
  box-shadow: 0 10px 38px rgba(180,128,64, 0.11), 0 2px 12px var(--color-logo-gold);
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px;
  gap: 14px;
}
.hero-section h1 {
  font-size: 2.8rem;
  font-family: var(--font-display);
  color: var(--color-brown);
  text-shadow: 2px 2px var(--color-logo-gold);
}
.hero-section p {
  font-size: 1.12rem;
  max-width: 600px;
  margin-bottom: 14px;
}

/* ==========================================================================
   HEADER & MAIN NAVIGATION (VINTAGE BAR, BUTTON)
   ==========================================================================
*/
header {
  padding-top: 22px;
  padding-bottom: 18px;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 1px 8px var(--color-brown), 0 0px 1.5px var(--color-logo-gold);
  position: relative;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header a img {
  height: 38px;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  gap: 24px;
  font-family: var(--font-heading);
}
.main-nav a {
  color: var(--color-logo-gold);
  font-weight: 500;
  font-size: 1.06rem;
  padding: 7px 0px;
  border-bottom: 1.5px solid transparent;
  transition: border 0.17s, color 0.18s;
  letter-spacing: 1px;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-white);
  border-bottom: 1.5px solid var(--color-logo-gold);
}
.cta-btn {
  display: inline-block;
  background: var(--color-logo-gold);
  color: var(--color-brown);
  padding: 0.75em 2.2em;
  border-radius: 25px;
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.08rem;
  box-shadow: 0 1px 8px rgba(180,128,64,0.14);
  letter-spacing: 0.04em;
  border: none;
  transition: background 0.16s, transform 0.13s, color 0.14s, box-shadow 0.15s;
  margin-left: 14px;
  margin-top: 0px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--color-logo-red);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 3px 16px rgba(233,114,76,0.14);
}

/* ==========================================================================
   BURGER/MOBILE NAVIGATION
   ==========================================================================
*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: var(--color-logo-gold);
  color: var(--color-primary);
  border-radius: 9px;
  padding: 0.18em 0.45em;
  transition: background 0.18s, color 0.13s, box-shadow 0.14s;
  box-shadow: 0 1.5px 8px rgba(180,128,64,0.17);
  margin-left: 18px;
  z-index: 1201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-logo-red);
  color: #fff;
  outline: 2.5px solid var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  left: 100vw;
  height: 100vh;
  width: 100vw;
  background: var(--color-primary);
  color: var(--color-logo-gold);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 34px 26px 0 26px;
  z-index: 1200;
  transition: transform 0.36s cubic-bezier(0.77,0,0.18,1);
  transform: translateX(100vw);
  box-shadow: -3px 0 36px 0 rgba(35,76,99,0.18), 0 0.5px 6px var(--color-logo-gold);
}
.mobile-menu.open {
  left: 0;
  transform: translateX(0vw);
}
.mobile-menu-close {
  background: var(--color-logo-red);
  color: #fff;
  border-radius: 8px;
  font-size: 2rem;
  padding: 0.07em 0.5em 0 0.5em;
  border: none;
  margin-left: auto;
  margin-bottom: 22px;
  margin-top: 3px;
  transition: background 0.18s, color 0.12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  color: var(--color-logo-gold);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 0 9px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.18s, border 0.14s, background 0.15s;
  text-align: left;
  width: 100%;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #fff;
  border-bottom: 2px solid var(--color-logo-red);
  background: rgba(247,237,218,0.11);
}

@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 950px) {
  .header-flex, .footer-flex {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .features-grid, .benefits-grid, .testimonials-grid, .values-grid, .analytics-types {
    gap: 18px;
  }
}
/* Burger menu triggers for mobile */
@media (max-width: 900px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 650px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .feature-card, .benefit-card, .value-card, .service-card {
    padding: 16px 10px;
    min-width: 0;
  }
  .hero-section {
    padding: 32px 0 19px 0;
    min-height: 200px;
  }
}

/* ==========================================================================
   FOOTER
   ==========================================================================
*/
footer {
  background: var(--color-primary);
  color: var(--color-logo-gold);
  font-family: var(--font-body);
  border-top: 4px solid var(--color-logo-gold);
}
footer .container {
  padding-top: 32px;
  padding-bottom: 18px;
}
footer a {
  color: var(--color-logo-gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-right: 12px;
  transition: color 0.16s, text-decoration 0.15s;
}
footer a:hover {
  color: var(--color-white);
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-contact p, .footer-contact {
  color: var(--color-logo-gold);
  font-size: 0.97rem;
  line-height: 1.56;
}
.footer-contact p img {
  height: 1.2em;
  vertical-align: text-bottom;
  margin-right: 7px;
}

/* ==========================================================================
   CARDS & COMPONENTS
   ==========================================================================
*/
.service-list, .steps-overview, .method-steps, .work-steps {
  margin-bottom: 20px;
  padding-top: 10px;
  font-size: 1.09rem;
}
.service-list li, .steps-overview li, .method-steps li, .work-steps li {
  margin-bottom: 18px;
  background: var(--color-accent);
  border-left: 6px solid var(--color-logo-gold);
  border-radius: 6px;
  padding: 14px 18px 9px 15px;
  color: var(--color-dark-vintage);
  font-family: var(--font-body);
  font-weight: 500;
}
.service-list h3 {
  font-size: 1.13rem;
  margin-bottom: 2px;
  color: var(--color-logo-red);
}

.map, .infographic, .case-example, .data-visualization, .workflow-illustration, .process-map, .case-studies {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 10px;
}

.case-studies p, .case-example p {
  background: var(--color-cream);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 1rem;
  border: 1px solid var(--color-logo-gold);
  font-family: var(--font-body);
}

.client-logos img {
  background: var(--color-cream);
  border-radius: 50%;
  height: 44px;
  width: 44px;
  box-shadow: 0 1px 6px rgba(67,41,19,0.09);
  padding: 5px;
  border: 1.2px solid var(--color-logo-gold);
}

/* ==========================================================================
   UTILITY CLASSES
   ==========================================================================
*/
.text-center {text-align: center;}
.mb-32 {margin-bottom: 32px;}
.mt-32 {margin-top: 32px;}
.gap-24 {gap: 24px;}

/* ==========================================================================
   COOKIE CONSENT BANNER + MODAL
   ==========================================================================
*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-white);
  border-top: 4px solid var(--color-logo-gold);
  box-shadow: 0 -2px 20px rgba(35,76,99,0.10);
  padding: 22px 14px 14px 14px;
  width: 100vw;
  animation: cookie-banner-in 0.8s;
}
@keyframes cookie-banner-in {
  0% {transform: translateY(110%); opacity:0;}
  100% {transform: translateY(0); opacity:1;}
}
.cookie-banner p {
  color: var(--color-brown);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  background: var(--color-logo-gold);
  color: var(--color-brown);
  border: none;
  border-radius: 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.03rem;
  padding: 10px 26px;
  margin-top: 3px;
  transition: background 0.13s, color 0.11s, transform 0.15s;
  box-shadow: 0 1px 4px rgba(180,128,64,0.09);
}
.cookie-btn:hover,.cookie-btn:focus {
  background: var(--color-logo-red);
  color: #fff;
  transform: translateY(-2px);
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn.settings:hover {
  background: var(--color-logo-gold);
  color: var(--color-primary);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%,50%) scale(0.97);
  background: var(--color-white);
  border-radius: 22px 22px 14px 14px;
  box-shadow: 0 3px 40px rgba(67,41,19,0.16);
  z-index: 12001;
  padding: 42px 28px 32px 28px;
  width: 97vw;
  max-width: 410px;
  animation: cookie-modal-in 0.45s;
  display: none;
}
.cookie-modal.active {
  display: block;
}
@keyframes cookie-modal-in {
  0% {transform: translate(-50%,60%) scale(0.9); opacity: 0;}
  100% {transform: translate(-50%,50%) scale(0.97); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.27rem;
  margin-bottom: 11px;
  color: var(--color-brown);
}
.cookie-categories {
  margin-bottom: 27px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 9px 0;
  font-family: var(--font-body);
}
.cookie-category label {
  font-size: 1rem;
  color: var(--color-dark-vintage);
}
.cookie-toggle, .cookie-toggle[disabled] {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 13px;
  background: var(--color-logo-gold);
  outline: none;
  box-shadow: 0 0.5px 8px rgba(233,114,76,0.08);
  transition: background 0.13s;
  position: relative;
  cursor: pointer;
}
.cookie-toggle[checked] {
  background: var(--color-secondary);
}
.cookie-toggle[disabled] {
  opacity: 0.55;
  background: #bbb;
  cursor: not-allowed;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.12s;
}
.cookie-toggle:checked::after {
  left: 17px;
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn-row .cookie-btn {
  min-width: 64px;
  padding: 10px 16px;
  font-size: 1rem;
}

/* ==========================================================================
   INTERACTIONS & TRANSITIONS
   ==========================================================================
*/
a, .cta-btn, .card, .feature-card, .service-card, .benefit-card,
.value-card, .cookie-btn, .mobile-nav a, .main-nav a {
  transition: background 0.17s, color 0.12s, box-shadow 0.1s, border 0.13s, transform 0.12s;
}
.card:active, .card:focus, .feature-card:active, .feature-card:focus {
  outline: 2px solid var(--color-logo-red);
  z-index: 2;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ==========================================================================
*/
@media (max-width: 900px) {
  .features-grid, .benefits-grid, .values-grid, .analytics-types, .testimonials-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-card, .benefit-card, .value-card, .service-card {
    min-width: 0px;
    flex: 1 1 100%;
  }
  .footer-flex {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .header-flex { flex-direction: row; gap: 12px; }
  .footer-flex { flex-direction: column; gap: 15px; }
  .card-container, .features-grid, .benefits-grid, .testimonials-grid, .values-grid, .analytics-types {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-card, .benefit-card, .value-card, .service-card {
    min-width: 0px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero-section h1 {
    font-size: 2.1rem;
  }
  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media (max-width: 600px) {
  .footer-flex {
    gap: 9px;
    padding-bottom: 8px;
    padding-top: 14px;
  }
  .client-logos img { height: 36px; width: 36px; }
  .benefit-card, .feature-card, .service-card, .value-card {
    padding: 9px 7px;
    font-size: 0.98rem;
  }
  h1, h2 { font-size: 1.3rem !important; }
}

/* ==========================================================================
   RETRO DECORATIVE STYLES (BORDERS, SHADOWS, PATTERNS)
   ==========================================================================
*/
.card, .feature-card, .benefit-card, .value-card, .service-card, .testimonial-card {
  border-radius: 1.2em;
  box-shadow: 0 10px 54px rgba(176,128,64,0.11), 0 1.5px 8px var(--color-logo-gold);
  border: 1.5px solid var(--color-logo-gold);
  background: repeating-linear-gradient(135deg, #fffbe6, #fffde3 24px, #F7EDDA 40px), var(--color-accent);
}

/* ==========================================================================
   SCROLLBAR VINTAGE THEME
   ==========================================================================
*/
::-webkit-scrollbar {
  width: 12px;
  background: #FAF5E3;
}
::-webkit-scrollbar-thumb {
  background: var(--color-logo-gold);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-logo-red);
}

/* ==========================================================================
   PRINTABLE FORMS, MESSAGES (THANK YOU, ETC)
   ==========================================================================
*/
.text-section a,
.feature-card a,
.service-card a {
  color: var(--color-logo-red);
  font-weight: bold;
  text-decoration: underline dotted;
  transition: color 0.16s;
}
.text-section a:hover, .feature-card a:hover, .service-card a:hover {
  color: var(--color-secondary);
}

/* ==========================================================================
   Z-INDEX LAYERING
   ==========================================================================
*/
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1001;
}

/* ==========================================================================
   VINTAGE RETRO ELEMENTS: PATTERN & COLORS
   ==========================================================================
*/
body {
  /* Pattern over cream background: fallback if pattern image fails */
  background-color: var(--color-cream);
  background-image: repeating-linear-gradient(135deg, #fff5e1 0px, #fffbe7 30px, #faeece 60px), url('../assets/pattern-retro.svg');
  background-repeat: repeat;
  background-size: auto, 365px;
}

/* ==========================================================================
   ACCESSIBILITY: HIGH CONTRAST FOR TESTIMONIALS + REVIEW SECTIONS
   ==========================================================================
*/
.testimonials-grid {
  background: transparent;
  align-items: flex-start;
  flex-wrap: wrap;
}
.testimonial-card {
  color: #212016;
  background: #fff;
  border: 2px solid var(--color-logo-gold);
  box-shadow: 0 8px 22px rgba(67,41,19,0.13);
}
.testimonial-card p {
  color: var(--color-brown);
}

/* ==========================================================================
   END OF CSS FILE
   ==========================================================================
*/
