/* CSS 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;
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #f5e6c8;
  color: #403031;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #086972;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #c25f2e;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: 0.04em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #362e28;
  text-shadow: 0px 2px 0 #FFE8B2;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2e5366;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ad5728;
}
strong {
  font-weight: bold;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: repeating-linear-gradient(135deg, #f5e6c8, #f8eecd 30px, #efd8aa 45px, #f5e6c8 60px);
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #362e28;
  background: #f79c37;
  border: 2px solid #2e5366;
  padding: 12px 32px;
  margin-top: 10px;
  border-radius: 32px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(125, 90, 64, 0.11);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
  text-shadow: 0 1px 0 #fff5e0;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ffcf82;
  color: #672807;
  box-shadow: 0 4px 20px rgba(81, 63, 27, 0.12);
  outline: none;
}

/* =================== RETRO/VINTAGE COLOR PALETTE ==================== */
:root {
  --vintage-bg: #f5e6c8;
  --retro-gold: #ffd87a;
  --retro-orange: #f79c37;
  --retro-brown: #ad5728;
  --retro-blue: #398890;
  --retro-darkblue: #2e5366;
  --retro-cyan: #78bfbb;
  --retro-green: #b4cd6a;
  --retro-black: #362e28;
  --retro-white: #fff5e0;
  --brand-primary: #1A237E;
  --brand-secondary: #00ACC1;
  --retro-shadow: 0 3px 14px rgba(80,47,24,0.07);
}

/* =============== HEADER AND NAVIGATION =============== */
header {
  background-color: var(--vintage-bg);
  border-bottom: 5px solid var(--retro-orange);
  box-shadow: 0 1px 12px rgba(187,136,97,0.02);
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  position: relative;
}
header img {
  height: 56px;
  margin-right: 22px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #2e5366;
  font-weight: 600;
  padding: 4px 6px;
  border-radius: 5px;
  background: none;
  transition: background 0.25s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--retro-orange);
  color: #362e28;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #ad5728;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.2s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--retro-orange);
  outline: none;
}
/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-white);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 10px 0 40px rgba(81,63,27,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  font-weight: bold;
  color: #ad5728;
  align-self: flex-end;
  margin: 30px 28px 22px 0;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-orange);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
  padding: 38px 32px 0 34px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.3rem;
  padding: 9px 6px 9px 12px;
  color: #2e5366;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  font-weight: 700;
  background: none;
  transition: background 0.2s, color 0.18s;
}
.mobile-nav a:hover {
  background: var(--retro-gold);
  color: #ad5728;
}
/* Hide nav and show burger on small screens */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  background:
    url('../assets/retro-pattern.svg') repeat top left,
    linear-gradient(135deg, var(--vintage-bg) 90%, var(--retro-gold) 100%);
  box-shadow: 0 2px 12px rgba(240,182,109,0.07);
  border-top: 8px double #f79c37;
  border-bottom: 8px double #b4cd6a;
  margin-bottom: 60px;
  padding: 64px 20px 54px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.9rem;
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  color: #ad5728;
  text-shadow: 0 2px 0 var(--retro-gold);
}
.hero .subheadline {
  font-size: 1.22rem;
  color: #403031;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 26px;
}

/* ========== FEATURE/GRID SECTIONS ========== */
.features, .benefits, .services {
  background: var(--retro-white);
  border-radius: 20px;
  box-shadow: var(--retro-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .feature-grid, .features .startup-list, .benefits .benefit-cards, .investor-benefit-grid, .technology-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item, .benefit-card, .technology-item, .benefit-item, .startup-item {
  background: var(--retro-gold);
  border-radius: 13px;
  box-shadow: 0 2px 9px rgba(167,84,40,0.08);
  padding: 27px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-item img, .technology-item img {
  width: 49px;
  height: 49px;
  background: #fff5e0;
  border-radius: 100%;
  border: 2px solid #ad5728;
  margin-bottom: 12px;
}

/* Startup List/Industry Tags */
.startup-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.startup-item {
  background: #ffe8b2;
  border: 1.5px solid #ad5728;
  border-radius: 14px;
  box-shadow: 0 1px 6px #fad09565;
  padding: 22px 18px;
  margin-bottom: 20px;
  flex: 1 1 220px;
}
.startup-industry-tags {
  margin: 6px 0 7px 0;
  display: flex;
  gap: 9px;
}
.startup-industry-tags li {
  background: #ad5728;
  color: #ffe8b2;
  font-size: 0.88rem;
  padding: 2px 12px 2px 8px;
  border-radius: 18px;
  font-family: 'Montserrat', cursive, Arial, sans-serif;
}
.value-propositions, .return-opportunities, .growth-opportunities, .industry-application-examples {
  margin-top: 18px;
}
.value-propositions li, .return-opportunities li, .growth-opportunities li, .industry-application-examples li {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2e5366;
  margin-bottom: 7px;
  padding-left: 18px;
  position: relative;
}
.value-propositions li:before, .return-opportunities li:before, .growth-opportunities li:before, .industry-application-examples li:before {
  content: '\2738';
  color: #ad5728;
  position: absolute;
  left: 0; top: 2px;
}

.benefit-cards, .investor-benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.benefit-card, .benefit-item {
  background: #f9e5c9;
  border: 1.7px dashed #ad5728;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(120,90,38,0.08);
  padding: 30px 22px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 210px;
  transition: box-shadow 0.16s; 
}
.benefit-card:hover, .benefit-item:hover {
  box-shadow: 0 6px 28px rgba(120,90,38,0.11);
}
.technology-item {
  background: #e2e8e2;
  border: 1.7px dotted #b4cd6a;
  border-radius: 14px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: repeating-linear-gradient(270deg, #ffe8b2, #ffecc0 32px, #eacda3 54px, #ffe8b2 76px);
  border-radius: 22px;
  box-shadow: 0 2px 15px rgba(120,90,38,0.06);
}
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #fff5e0;
  border: 2px solid #ad5728;
  border-radius: 16px;
  box-shadow: 0 5px 20px #cc965b1a;
  padding: 20px 30px;
  margin: 22px 0 20px 0;
  min-width: 0;
  max-width: 670px;
  transition: box-shadow 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px #c25f2e28;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.13rem;
  color: #2e5366;
  font-weight: 600;
  margin: 0 0 0 0;
  line-height: 1.7;
}
.testimonial-footer span {
  color: #ad5728;
  font-size: 0.97rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-left: 10px;
  margin-top: 6px;
  font-style: italic;
}
/* Ensure readable contrast */
.testimonial-card, .testimonial-card * {
  color: #2e5366;
  background: #fff5e0;
}

/* ========== BLOG/PREVIEW CARDS ========== */
.blog-list .post-preview {
  background: #f9e5c9;
  border: 1.6px solid #b4cd6a;
  border-radius: 13px;
  box-shadow: 0 2px 10px #cc965b16;
  padding: 22px 18px;
  margin-bottom: 20px;
}
.blog-list .post-preview h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
  color: #ad5728;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.blog-list .post-preview a {
  color: #398890;
  transition: color 0.17s;
}
.blog-list .post-preview a:hover {
  color: #ad5728;
  text-decoration: underline;
}
.blog-list .topic-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.blog-list .topic-tags span {
  background: #ad5728;
  color: #fff5e0;
  font-size: 0.89rem;
  padding: 0 9px;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.featured-article {
  border: 2.2px solid #ad5728;
  background: #ffe8b2;
}

/* Cards, Grids, and Spacing */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #ffe8b2;
  border-radius: 15px;
  box-shadow: 0 2px 10px #b89d7688;
  margin-bottom: 20px;
  position: relative;
  padding: 30px 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== USP, HIGHLIGHT & MEDIA ========== */
.usp-highlight {
  background: #fff5e0;
  border-left: 7px solid #ad5728;
  padding: 13px 20px;
  margin: 20px 0 0 0;
  border-radius: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #362e28;
  font-size: 1.08rem;
}
.media-mentions, .success-stories, .next-steps-info {
  margin: 22px 0 0 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #403031;
  font-size: 1rem;
  background: #ffecc0;
  padding: 10px 13px;
  border-radius: 9px;
}

/* ========== CTA SECTIONS ========== */
.cta {
  background: #ffcf82;
  border-radius: 22px;
  box-shadow: 0 2px 16px #f79c3740;
  padding: 40px 18px;
  text-align: center;
  margin-bottom: 60px;
}
.cta .btn-primary {
  margin-top: 22px;
  font-size: 1.25rem;
}

/* ========== CONTACT DETAILS & MAP ========== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 7px 0;
  color: #2e5366;
  font-size: 1rem;
}
.contact-details img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 7px;
}
.map-location {
  margin-top: 18px;
  background: #e2e8e2;
  padding: 14px 17px;
  border-radius: 9px;
  font-size: 1rem;
  color: #ad5728;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ========== FOOTER ========== */
footer {
  background: repeating-linear-gradient(90deg, #edb876, #ffe8b2 50px, #e9cf93 75px, #edb876 110px);
  border-top: 4px double #ad5728;
  color: #362e28;
  padding: 44px 0 20px 0;
  margin-top: 80px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 11px;
  justify-content: center;
}
.footer-nav a {
  color: #ad5728;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 2px 8px;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.16s, color 0.14s;
}
.footer-nav a:hover {
  color: #fff5e0;
  background: #ad5728;
}
.footer-brand {
  margin: 16px 0 6px;
  font-size: 0.94rem;
  color: #672807;
}

/* ========== TABLE & LISTS FOR POLICY PAGES ========== */
.text-section {
  margin-top: 6px;
}
.text-section ul, .text-section ol {
  margin-left: 26px;
  margin-top: 0;
  margin-bottom: 22px;
}
.text-section li {
  font-size: 1rem;
  color: #403031;
  margin-bottom: 9px;
  position: relative;
  padding-left: 12px;
}
.text-section li:before {
  content: '\25AB';
  color: #b4cd6a;
  font-size: 0.93em;
  display: inline-block;
  margin-right: 7px;
  position: absolute;
  left: 0;
}
.text-section h3 {
  font-size: 1.08rem;
  color: #ad5728;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 20px;
}

/* ========== THANK YOU / NEXT STEPS ========== */
.thank-you {
  background: #ffe8b2;
  border-radius: 22px;
  box-shadow: 0 4px 26px rgba(240,182,109,0.11);
  padding: 44px 18px;
  margin-bottom: 60px;
  text-align: center;
}
.thank-you h1 {
  color: #ad5728;
  font-size: 2.3rem;
}
.thank-you h2 {
  color: #2e5366;
}
.next-steps-info ul {
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.next-steps-info li {
  font-size: 1rem;
  color: #403031;
  padding-left: 18px;
  position: relative;
}
.next-steps-info li:before {
  content: '\273B';
  position: absolute;
  color: #ad5728;
  left: 0; top: 3px;
}

/* ========== COOKIE CONSENT BANNER ========== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #362e28;
  color: #ffe8b2;
  padding: 24px 16px 22px 16px;
  z-index: 3100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 -6px 40px rgba(71,35,28,0.13);
  font-size: 1.1rem;
  animation: cookieBannerSlideIn 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0.2; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #ad5728;
  color: #fff5e0;
  border: none;
  padding: 8px 26px;
  border-radius: 17px;
  font-weight: bold;
  margin-left: 8px;
  font-size: 1rem;
  margin-top: 7px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s;
  box-shadow: 0 0.8px 7px #ffc24428;
}
#cookie-banner .cookie-btn:hover, #cookie-banner .cookie-btn:focus {
  background: #f79c37;
  color: #362e28;
}
#cookie-banner .cookie-btn.settings {
  background: #00acc1;
  color: #362e28;
}
#cookie-banner .cookie-btn.reject {
  background: #b4cd6a;
  color: #362e28;
}

/* Cookie Modal Popup */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(54,46,40,0.45);
  z-index: 3200;
  align-items: center;
  justify-content: center;
}
#cookie-modal.open {
  display: flex;
  animation: cookieModalFadeIn 0.33s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieModalFadeIn {
  from { opacity: 0.08; }
  to { opacity: 1;   }
}
.cookie-modal-content {
  background: #ffe8b2;
  border: 3px solid #ad5728;
  border-radius: 24px;
  padding: 36px 30px 30px 30px;
  max-width: 380px;
  min-width: 280px;
  box-shadow: 0 5px 40px #ae58106e;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.22rem;
  margin-bottom: 5px;
  color: #ad5728;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.01rem;
}
.cookie-category input[type='checkbox'] {
  width: 22px; height: 22px;
  accent-color: #ad5728;
}
.cookie-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #ad5728;
  font-weight: bold;
  position: absolute;
  top: 11px; right: 15px;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 9999;
}
.cookie-close:hover, .cookie-close:focus {
  color: #00acc1;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 13px;
}
.cookie-actions .cookie-btn {
  min-width: 100px;
  margin: 0;
}

/* ========== FLEX LAYOUT RULES: OVERRIDES & UTILITIES ========== */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.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; }

/* UNIVERSAL SPACING FOR FLEX CONTAINERS */
section > *:not(:last-child) {
  margin-bottom: 20px;
}

/* ========== RESPONSIVE: MOBILE-FIRST & ADAPTIVE LAYOUTS ========== */
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
    padding: 10px 10px;
  }
  .hero {
    padding: 36px 5px 30px 5px;
    border-radius: 0;
  }
  .section, section, .features, .about, .services, .cta, .testimonials, .benefits, .thank-you {
    padding: 23px 5px 23px 5px;
    border-radius: 0;
    margin-bottom: 38px;
  }
  .footer-brand, .contact-details, .footer-nav {
    text-align: center;
  }
  .main-nav {
    display: none;
  }
  .benefit-cards, .investor-benefit-grid, .feature-grid, .startup-list, .technology-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .benefit-card, .technology-item, .benefit-item, .startup-item {
    min-width: 0;
    width: 100%;
    max-width: unset;
    padding: 20px 13px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 14px;
    padding: 17px 12px;
    max-width: 100%;
    min-width: 0;
  }
  .blog-list .post-preview, .blog-list .topic-tags {
    flex-direction: column;
    gap: 7px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .about .core-competencies ul, .media-mentions, .success-stories, .next-steps-info {
    font-size: 0.98rem;
    margin-left: 0;
    padding: 6px 6px;
  }
  #cookie-banner {
    flex-direction: column;
    padding: 20px 6px 17px 6px;
  }
  .cookie-modal-content {
    max-width: 94vw;
    padding: 24px 10px 16px 10px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 11px 20px;
  }
}

/* ========== MICRO-INTERACTIONS ========== */
.btn-primary, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.19s;
}
.btn-primary:active, .cookie-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 3px #ad572849;
}
/* Nav link underline on hover (retro detail) */
.main-nav a:hover, .footer-nav a:hover, .mobile-nav a:hover {
  text-decoration: underline wavy #ad5728 2px;
}

/* ========== FONTS (REMINDER TO INCLUDE VIA <link> IN HTML HEAD) ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600;700&display=swap');
