/* RESET & BASELINE ------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #FFFAF3;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F2E2;
  color: #222019;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
a {
  color: #205843;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px dashed #A88662;
  outline-offset: 2px;
}
ul, ol {
  margin: 0 0 20px 22px;
  padding: 0;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', 'Futura', 'Arial', sans-serif;
  color: #222019;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: .01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  color: #A88662;
  text-shadow: 1px 1px 0 #F4EFE3, 2px 2px 0 #CCA879;
  margin-bottom: 12px;
}
h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
  color: #205843;
}
h3 {
  font-size: 1.2rem;
  color: #AA654C;
  text-shadow: 1px 1px 0 #F8F2E2;
}
.subtitle {
  font-size: 1.14rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #367161;
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* VINTAGE RETRO COLORS ---------------------------- */
:root {
  --primary: #225E37;
  --accent: #42C9A4;
  --accent-dark: #1E8266;
  --secondary: #EFFAF4; /* Brand guideline */
  --cream-bg: #FFF4E0;
  --beige: #FCEDC7;
  --brown: #834C29;
  --vintage-red: #B95541;
  --vintage-yellow: #FFDE71;
  --vintage-orange: #F3A357;
  --text-main: #222019;
  --text-contrast: #fff8e6;
}

/* TYPOGRAPHY VINTAGE ----------------------------- */
@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  font-weight: 700;
  src: local('Montserrat'), local('Montserrat-Bold');
}
@font-face {
  font-family: 'Roboto';
  font-display: swap;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular');
}

/* HEADER ------------------------------------------*/
header {
  background: var(--vintage-yellow);
  border-bottom: 4px solid var(--vintage-orange);
  box-shadow: 0 2px 18px #f3a3573a;
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  width: 164px;
  height: auto;
  filter: sepia(.3) contrast(1.2);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.main-nav a {
  color: var(--primary);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s;
  margin-top: 2px;
}
.main-nav a:hover {
  color: var(--vintage-red);
}
.main-nav a:hover:after {
  width: 100%;
}
.cta {
  margin-left: 20px;
  background: var(--accent);
  color: var(--text-contrast);
  border: none;
  border-radius: 32px;
  padding: 10px 32px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px #b3b59c;
  cursor: pointer;
  transition: background .2s, box-shadow .25s, color .2s;
  text-shadow: 1px 1px 0 #2080601f;
  letter-spacing: .04em;
  display: inline-block;
}
.cta:hover, .cta:focus {
  background: var(--primary);
  color: var(--vintage-yellow);
  box-shadow: 0 6px #bead7b26;
}

/* MOBILE BURGER MENU ----------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--vintage-red);
  color: #fff9e3;
  font-size: 2.2rem;
  border: none;
  border-radius: 6px;
  padding: 3px 16px;
  cursor: pointer;
  margin-left: 10px;
  transition: background .2s;
  z-index: 220;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--vintage-orange);
  outline: 2px solid var(--vintage-yellow);
  color: var(--brown);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 340px;
  height: 100%;
  background: var(--beige);
  box-shadow: -6px 0 32px #cca87950;
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.65,.04,.29,.97);
  padding: 0 6vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 0 0 0;
  background: transparent;
  color: var(--brown);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--vintage-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 38px;
}
.mobile-nav a {
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  background: var(--vintage-yellow);
  border-radius: 20px;
  padding: 10px 18px;
  box-shadow: 0 1px 5px #b48b5040;
  margin-bottom: 4px;
  transition: background .18s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

/* HERO SECTION ----------------------------------- */
.hero {
  background: var(--beige);
  padding: 56px 0 50px 0;
  border-bottom: 5px dashed var(--accent-dark);
  box-shadow: 0 4px 30px #d5c5a620;
}
.hero h1 {
  font-size: 2.3rem;
  color: var(--brown);
  text-shadow: 2px 2px 0 #f8f2e2, 4px 4px 10px #ffbf7755;
}
.hero .subtitle {
  color: #705331;
  font-size: 1.13rem;
}

/* FEATURES / VALUES / SERVICE SECTIONS ----------- */
.features, .about, .journey, .solution-types, .benefits,
.services-overview, .services-list, .project-highlights, .news-feed, .faq, .cta, .legal, .contact-info-section, .team, .case-studies, .thank-you {
  background: #fdf6ea;
  border-radius: 16px;
  box-shadow: 0 4px 28px #a8866220;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.feature-grid, .service-grid, .solution-types-grid, .team-member-list, .project-list, .case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  justify-content: space-between;
}
.feature-item, .service-item, .solution-type, .team-member, .project-item, .case-study {
  background: var(--vintage-yellow);
  border-radius: 12px;
  padding: 32px 22px;
  min-width: 240px;
  flex: 1 1 220px;
  box-shadow: 0 4px 18px #d5b46023;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2px solid #f7e3bf;
  position: relative;
  transition: box-shadow .2s, transform .19s;
}
.feature-item:hover, .service-item:hover, .solution-type:hover, .team-member:hover, .project-item:hover, .case-study:hover {
  box-shadow: 0 8px 40px #debc8e39;
  transform: translateY(-5px) scale(1.02);
}
.feature-item img, .service-detail img, .solution-type img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  filter: sepia(.17) contrast(1.11);
}
.brand-values-list, .benefit-highlights, .team-core-competencies, .solution-highlights ul {
  list-style: disc outside;
  color: #624d33;
  margin-left: 24px;
  margin-bottom: 10px;
  font-size: 1.02rem;
}

/* ABOUT & JOURNEY -------------------------------- */
.text-section {
  font-size: 1.13rem;
  margin-bottom: 12px;
  color: #665547;
}
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #fffbe9;
  border-radius: 16px;
  padding: 22px 18px;
  margin: 14px 0 16px 0;
  border: 1.5px dashed #daae78;
}
.timeline .step {
  flex: 1 1 210px;
  background: #FFDE71;
  border: 1.5px solid #f7cb5c;
  border-radius: 12px;
  padding: 18px 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 14px #f3c95737;
}
.company-milestones {
  font-style: italic;
  font-size: 1.12rem;
  color: #AA654C;
}

/* SERVICE DETAIL (services.html) ----------------- */
.service-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-detail {
  flex: 1 1 244px;
  background: var(--vintage-yellow);
  border-radius: 12px;
  padding: 26px 18px 22px 18px;
  box-shadow: 0 4px 18px #e3a34a28;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 2px solid #f7e3bf;
  transition: box-shadow .22s, transform .14s;
}
.service-detail:hover {
  box-shadow: 0 10px 32px #ffcd6f45;
  transform: translateY(-3px) scale(1.015);
}
.service-detail img {
  width: 42px;
  height: 42px;
}
.service-icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.service-icons-grid img {
  background: #fffbe9;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  padding: 7px;
  filter: sepia(.08) contrast(1.12);
}

/* FAQ ACCORDION ---------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #FFC985;
  border-radius: 10px;
  border: 2px dotted #DD9933;
  padding: 16px 16px;
  margin-bottom: 10px;
  box-shadow: 0 2px 16px #f7d06e23;
  cursor: pointer;
  position: relative;
  transition: box-shadow .18s, background .2s;
}
.faq-item:hover, .faq-item.active {
  background: #FFDE71;
  box-shadow: 0 6px 29px #ffbe5c37;
}
.faq-answer {
  font-size: 1.03rem;
  color: #624d33;
  margin-top: 10px;
  display: none;
  animation: fadeInAccordion .3s;
}
.faq-item.active .faq-answer {
  display: block;
}
@keyframes fadeInAccordion {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* TESTIMONIALS & CARDS --------------------------- */
.testimonials {
  background: #FAF6F0;
  border-radius: 16px;
  box-shadow: 0 3px 16px #82aeaa23;
  padding: 36px 20px 20px 20px;
}
.testimonials .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff9ea;
  border-radius: 12px;
  box-shadow: 0 4px 18px #f3a35729;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 6px solid var(--vintage-red);
  margin-right: 7px;
  margin-left: 7px;
  position: relative;
  color: #24201B; /* Ensure readable contrast */
  font-size: 1.05rem;
  transition: box-shadow .18s, transform .15s;
}
.testimonials .testimonial-card:hover {
  box-shadow: 0 8px 30px #b48b504d;
  transform: scale(1.015);
}
.testimonial-author {
  color: #AA654C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin-left: 12px;
}

/* FOOTER ----------------------------------------- */
footer {
  background: var(--vintageYellow, #FFD966);
  border-top: 6px solid #834C29;
  padding: 36px 0 20px 0;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
}
.footer-menu a {
  color: #4E391F;
  font-weight: 600;
  font-size: 1.04rem;
  padding: 4px 0;
  transition: color .18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--vintage-red);
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: #463B32;
}
.footer-social-links {
  display: flex;
  gap: 18px;
}
.footer-social-links a img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fffbe9;
  padding: 5px;
  border: 2px solid #AA654C;
  transition: border .23s, transform .15s;
}
.footer-social-links a:hover img, .footer-social-links a:focus img {
  border: 2px solid var(--vintage-red);
  box-shadow: 0 2px 12px #af461e2c;
  transform: rotate(-5deg) scale(1.09);
}

/* COOKIE CONSENT BANNER ----------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #FFF8E5;
  color: #53381A;
  box-shadow: 0 -2px 18px #bf9b5935;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 18px 20px 18px;
  z-index: 800;
  border-top: 4px dashed #DEB06A;
  animation: slideUpCookie 0.5s;
}
@keyframes slideUpCookie {
  from { transform: translateY(90%); opacity: 0 }
  to { transform: none; opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.cookie-banner button,
.cookie-banner .cta,
.cookie-modal button {
  background: var(--accent);
  color: #fff8e6;
  border: none;
  border-radius: 29px;
  padding: 8px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 2px;
  box-shadow: 0 2px 10px #afcfd033;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s;
}
.cookie-banner button.reject {
  background: var(--vintage-red);
  color: #fff3dd;
}
.cookie-banner button.settings {
  background: var(--vintage-yellow);
  color: #47300F;
}
.cookie-banner button:hover, .cookie-banner button:focus, .cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--vintage-orange);
  color: var(--brown);
  box-shadow: 0 4px 22px #b9554160;
}

/* COOKIE MODAL ------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #10100A99;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
  opacity: 1;
  animation: fadeInCookie .35s;
}
@keyframes fadeInCookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #FCEDC7;
  border: 3px solid #B95541;
  border-radius: 20px;
  max-width: 430px;
  width: 93vw;
  padding: 36px 24px 24px 24px;
  color: #363227;
  box-shadow: 0 4px 40px #00000023;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  animation: popCookie .33s;
}
@keyframes popCookie {
  from { transform: scale(.8); opacity: 0 }
  to { transform: scale(1); opacity: 1}
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: transparent;
  border: none;
  color: #B95541;
  font-size: 2rem;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--accent);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #4b270c;
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #AA654C;
  border-radius: 20px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background .2s;
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px; width: 20px;
  left: 2px; bottom: 2px;
  background: #fffbe9;
  border-radius: 50%;
  transition: transform .17s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

/* CTA SECTIONS & BUTTONS ---------------------------*/
.callout, .cta, .newsletter-signup, .thank-you .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
  margin: 0 auto;
}
.newsletter-signup {
  background: var(--beige);
  padding: 16px 0 18px 0;
  border-radius: 14px;
  margin-top: 16px;
}
.newsletter-signup .cta {
  margin-top: 8px;
}
.thank-you {
  background: #fbebd1;
  border: 3px dashed #b95541;
  border-radius: 20px;
  box-shadow: 0 2px 14px #f7ba4050;
  text-align: center;
}

/* CONTACT INFO SECTION --------------------------- */
.contact-info-section .company-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.06rem;
  color: #626262;
  background: #FFF8E5;
  border-radius: 12px;
  padding: 18px 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px #fcce8e25;
}
.contact-info-section .map-embed {
  font-size: 0.97rem;
  color: #764C1B;
  padding: 10px 0 3px 0;
}

/* LEGAL PAGES ------------------------------------ */
.legal {
  background: #FAF6F0;
  border: 2px solid #f5deb3;
  border-radius: 14px;
  padding: 34px 22px;
  color: #4c2e13;
  margin-bottom: 52px;
  box-shadow: 0 2px 14px #f3e1cc25;
}
.privacy-policy-content, .gdpr-content, .cookie-policy-content, .terms-and-conditions-content {
  font-size: 1.06rem;
  line-height: 1.8;
  color: #563c10;
  margin-top: 16px;
}
.privacy-policy-content h2,
.gdpr-content h2,
.cookie-policy-content h2,
.terms-and-conditions-content h2 {
  font-size: 1.15rem;
  color: #AA654C;
  margin: 20px 0 7px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.privacy-policy-content ul, .gdpr-content ul, .cookie-policy-content ul, .terms-and-conditions-content ul {
  list-style: square inside;
  margin-left: 20px;
  margin-bottom: 16px;
}

/* VINTAGE PATTERNS & DECORATIVE ELEMENTS --------- */
.pattern-dots {
  position: absolute;
  top: 0; left: 0;
  width: 120px; height: 40px;
  background: url('../assets/pattern-dots.svg') repeat-x;
  opacity: .15;
  z-index: 1;
}
@media (max-width: 900px) {
  .pattern-dots { display: none !important; }
}

/* SPACING, FLEX & RESPONSIVE LAYOUTS ------------- */
.card-container, .feature-grid, .service-grid, .team-member-list, .solution-types-grid, .project-list, .case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.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;
}
/* Ensure minimum margin between all cards/sections */
.card, .feature-item, .service-item, .solution-type, .team-member, .project-item, .case-study {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* MEDIA QUERIES FOR MOBILE ----------------------- */
@media (max-width: 1100px) {
  .feature-grid, .service-grid, .team-member-list, .solution-types-grid, .project-list, .case-study-list {
    gap: 18px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-grid, .team-member-list, .solution-types-grid, .project-list, .case-study-list {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav {
    gap: 11px;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 34px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta {
    margin-left: 10px;
    padding: 9px 20px;
    font-size: 1rem;
  }
  header .container {
    gap: 16px;
  }
  .card-container, .feature-grid, .service-grid, .team-member-list, .solution-types-grid, .project-list, .case-study-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item, .service-item, .solution-type, .team-member, .project-item, .case-study {
    min-width: 0;
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .faq-accordion {
    gap: 14px;
  }
  .cookie-modal-content {
    padding: 22px 8px 16px 8px;
  }
  header .logo img {
    width: 108px;
  }
  .footer-menu, .contact-info {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 6px;
  }
  .footer-social-links {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.16rem; }
  .section, .features, .about, .solution-types, .benefits, .services-overview, .project-highlights, .news-feed, .faq, .cta, .legal, .team, .contact-info-section, .case-studies, .thank-you {
    padding: 22px 6px;
  }
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .mobile-menu {
    max-width: 99vw;
    padding: 0 3vw;
  }
}

/* ANIMATIONS AND TRANSITIONS --------------------- */
.card, .feature-item, .service-item, .solution-type, .team-member, .project-item, .case-study, .service-detail {
  transition: box-shadow .16s, transform .18s;
}
.button, .cta, .cookie-banner button, .cookie-modal button {
  transition: background .14s, color .19s, box-shadow .13s, transform .16s;
}
.button:hover, .cta:hover {
  transform: scale(1.04);
}

/* MICRO-INTERACTIONS ----------------------------- */
.cta:active, .cookie-banner button:active, .button:active {
  transform: scale(0.96);
  box-shadow: 0 1px 4px #bbb38521;
}

/* MISC VINTAGE DECORATIVE FINISHES --------------- */
.section {
  background: repeating-linear-gradient(135deg, #FFEFC7 0, #FFF7DF 9px, #FFEFC7 18px);
  border-radius: 16px;
  border: 2.5px double #A88662;
  box-shadow: 0 4px 20px #f8dcb744;
}

/* Hide scrollbar for mobile menu */
.mobile-menu {
  overflow-y: auto;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* END OF CSS FILE */
