/* ================================================== */
/* 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;
  background: #fcf7ee;
  color: #234057;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}
button, [type='button'], [type='reset'], [type='submit'] {
  cursor: pointer;
}

/* ================================================== */
/* BRAND VARIABLES */
/* ================================================== */
:root {
  --color-primary: #21528B;
  --color-secondary: #F3C43D;
  --color-accent: #FFFFFF;
  --color-bg-light: #fcf7ee;
  --color-bg-card: #fffbee;
  --color-grey: #FAF8F2;
  --color-text: #21528B;
  --color-text-dark: #1B3850;
  --color-text-light: #F6F6F6;
  --color-error: #ef4e4e;
  --color-success: #34b679;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;

  --container-width: 1200px;
  --border-radius: 18px;
  --shadow-soft: 0 2px 14px 1px rgba(34,82,139,0.09);
  --shadow-card: 0 4px 24px 0 rgba(243,196,61,0.15);
}

/* ================================================== */
/* BASE STYLES */
/* ================================================== */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, ul, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.7;
}
strong {
  color: var(--color-primary);
  font-family: var(--font-display);
}

/* ================================================== */
/* HEADER & NAVIGATION */
/* ================================================== */
header {
  background: var(--color-accent);
  box-shadow: 0 2px 12px 0 rgba(33,82,139,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header a img {
  width: 180px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-primary);
  position: relative;
  padding: 6px 0;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-secondary);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2.2em;
  color: var(--color-primary);
  border: none;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(33, 82, 139, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(102%);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(.4,.2,.2,1), opacity 0.28s ease-out;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2em;
  border: none;
  box-shadow: var(--shadow-soft);
}
.mobile-nav {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 80vw;
  max-width: 340px;
  gap: 34px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 0 10px 8px;
  border-left: 5px solid transparent;
  border-radius: 0 12px 12px 0;
  width: 100%;
  transition: background 0.16s, border-left 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-left: 5px solid var(--color-primary);
}
@media (max-width: 1024px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ================================================== */
/* HERO SECTION */
/* ================================================== */
.hero {
  background: var(--color-primary);
  background-image: repeating-linear-gradient(135deg,rgba(243,196,61,.13),rgba(243,196,61,.08) 40px,transparent 80px,transparent 120px);
  color: var(--color-accent);
  padding: 70px 0 60px 0;
  border-radius: 0 0 42px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 10px 36px 0 rgba(33,82,139,0.08);
  margin-bottom: 46px;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  gap: 18px;
  z-index: 1;
}
.hero h1,
.hero p {
  color: var(--color-accent);
  text-shadow: 0 2px 20px rgba(33,82,139,0.18);
}
.hero h1 {
  font-size: 2.4rem;
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 18px;
}

/* ================================================== */
/* BUTTONS & CALL-TO-ACTION */
/* ================================================== */
.cta, .cta.primary, .cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.09rem;
  border-radius: 50px;
  padding: 12px 42px;
  transition: background 0.16s, color 0.14s, box-shadow 0.20s;
  box-shadow: var(--shadow-soft);
  margin-top: 16px;
  margin-bottom: 8px;
  outline: none;
  border: none;
}
.cta.primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cta.primary:hover, .cta.primary:focus {
  background: #ffd762;
  color: var(--color-primary);
  box-shadow: 0 4px 24px 0 rgba(33,82,139,0.10);
}
.cta.secondary {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cta {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.cta:hover, .cta:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* ================================================== */
/* FLEXBOX PATTERNS & LAYOUTS */
/* ================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: var(--color-bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(33,82,139,0.12);
  transform: translateY(-4px) scale(1.025);
}
.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 28px;
  background: var(--color-grey);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 395px;
  flex: 1 1 290px;
  border-left: 7px solid var(--color-secondary);
  transition: box-shadow 0.21s, border-color 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px 0 rgba(243,196,61,0.11);
  border-left: 7px solid var(--color-primary);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.testimonial-meta {
  display: block;
  color: var(--color-primary);
  font-size: 0.96rem;
  margin-top: 6px;
  font-family: var(--font-display);
}
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}
.feature {
  background: var(--color-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  flex: 1 1 220px;
  min-width: 230px;
  padding: 26px 20px 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.17s, background 0.20s;
}
.feature:hover {
  background: #f7e6b2;
  box-shadow: 0 8px 28px 0 rgba(243,196,61,0.09);
}
.feature img {
  height: 42px;
  width: 42px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(33,82,139,0.06));
}
.values-list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* CATEGORY TAGS */
.category-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-tags span {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 600;
  padding: 7px 18px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 9px 0 rgba(243,196,61,0.07);
  margin-bottom: 8px;
}

/* ACTIVITY & TIP LISTS */
.activity-list li, .tip-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  padding: 0 0 0 0;
}
.activity-list img, .tip-list img {
  height: 26px; width: 26px;
  vertical-align: middle;
  margin-right: 6px;
}
.community-tips {
  margin-top: 10px;
}
.community-tips li {
  margin-bottom: 14px;
  line-height: 1.8;
}

/* SPACING RULES */
section, .section, .card, .feature, .testimonial-card {
  margin-bottom: 24px;
}
.card:not(:last-child), .feature:not(:last-child), .testimonial-card:not(:last-child) {
  margin-right: 20px;
}
.content-grid > * {
  margin-bottom: 20px;
}

/* ALIGNMENT RULES */
.card-container, .content-grid, .testimonial-list {
  align-items: stretch;
}
.text-image-section {
  align-items: center;
}
.feature-item {
  align-items: flex-start;
}
.testimonial-card {
  align-items: flex-start;
}

/* ================================================== */
/* FORMS & NEWSLETTER */
/* ================================================== */
.newsletter p {
  font-size: 1.01rem;
  margin-top: 3px;
  margin-bottom: 7px;
  color: var(--color-text);
}
.newsletter a {
  color: var(--color-primary);
  font-weight: 700;
  border-bottom: 1.5px dotted var(--color-secondary);
  transition: color 0.14s, border-bottom 0.19s;
}
.newsletter a:hover {
  color: var(--color-secondary);
  border-bottom: 1.5px solid var(--color-primary);
}

/* ================================================== */
/* FOOTER */
/* ================================================== */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 40px 0 18px;
  margin-top: 64px;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -2px 20px 0 rgba(33,82,139,0.08);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-family: var(--font-display);
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 1.07rem;
  margin: 0 1px;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
}
footer .text-section {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.12rem;
}
footer .text-section p, footer .contact-snippet p{
  color: #cfdfea;
}
.contact-snippet {
  text-align: center;
  font-size: 0.98rem;
  color: #e1ecfc;
}

/* ================================================== */
/* SOCIAL LINKS */
/* ================================================== */
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  margin-top: 10px;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  transition: color 0.19s;
}
.social-links a:hover {
  color: var(--color-secondary);
}

/* ================================================== */
/* CONTACT DETAILS */
/* ================================================== */
.location-info, .contact-details, .contact-reminder {
  margin-bottom: 22px;
}
.location-info img, .contact-details img {
  height: 23px;
  width: 23px;
  vertical-align: middle;
  margin-right: 8px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}
.contact-reminder {
  background: #F3C43D22;
  border-radius: var(--border-radius);
  padding: 11px 20px;
  font-size: 1rem;
  color: var(--color-primary);
}

/* ================================================== */
/* COOKIE CONSENT BANNER & MODAL */
/* ================================================== */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: var(--color-primary);
  color: var(--color-accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 20px 28px;
  box-shadow: 0 -4px 32px 0 rgba(33,82,139,0.13);
  border-radius: 26px 26px 0 0;
  animation: slideUpCookie .58s cubic-bezier(.4,2,.2,1);
}
@keyframes slideUpCookie {
  from { transform: translateY(95px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-consent-banner p { color: var(--color-accent); margin-bottom: 0; font-size: 1rem; }
#cookie-consent-banner .cookie-actions {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-left: auto;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  border-radius: 32px;
  padding: 9px 30px;
  margin-bottom: 2px;
  transition: background 0.16s, color 0.12s, box-shadow 0.17s;
  border: none;
  outline: none;
}
.cookie-accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-accept:hover { background: #ffd762; }
.cookie-reject {
  background: #fffbee;
  color: var(--color-primary);
  border: 1px solid var(--color-secondary);
}
.cookie-reject:hover { background: #f7e6b2; color: var(--color-primary); }
.cookie-settings {
  background: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.cookie-settings:hover { background: var(--color-secondary); color: var(--color-primary); }

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33,82,139,0.22);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 32px 30px 22px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 40px 0 rgba(33,82,139,0.14);
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 98vw;
}
.cookie-modal-content h2 {
  font-size: 1.45rem;
  color: var(--color-primary);
  margin-bottom: 7px;
}
.cookie-category-list {
  margin: 19px 0 23px 0;
  display: flex; flex-direction: column; gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #f6f8fc;
  padding: 10px 16px;
  border-radius: 14px;
}
.cookie-category .toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}
.toggle input[type=checkbox] {
  appearance: none;
  width: 36px; height: 20px;
  background: #cfdfea;
  border-radius: 15px;
  position: relative;
  outline: none;
  transition: background 0.19s;
}
.toggle input[type=checkbox]:checked {
  background: var(--color-secondary);
}
.toggle input[type=checkbox]::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
}
.toggle input[type=checkbox]:checked::before {
  transform: translateX(16px);
  background: var(--color-primary);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 14px;
  justify-content: flex-end;
}

/* ================================================== */
/* RESPONSIVE DESIGN - MOBILE FIRST */
/* ================================================== */
@media (max-width: 700px) {
  html { font-size: 92%; }
  .container { padding-left: 8px; padding-right: 8px; }
  .hero .container, .features-grid, .testimonial-list, .card-container, .content-grid, .social-links {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
  }
  .hero {
    padding: 38px 0 38px 0;
    border-radius: 0 0 28px 0;
    margin-bottom: 26px;
  }
  .card, .feature, .testimonial-card {
    padding: 18px 12px;
    min-width: 100%;
  }
  .section, section {
    padding: 28px 0;
    margin-bottom: 30px;
  }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .section, section { padding: 32px 6px; }
  .container { padding-left: 6px; padding-right: 6px; }
  .text-image-section { flex-direction: column; align-items: stretch; gap: 16px; }
  .features-grid, .testimonial-list, .card-container, .content-grid { flex-direction: column; gap: 18px; }
  .footer-nav { flex-direction: column; gap: 8px; }
  .social-links { gap: 14px; font-size: 1rem; }
  #cookie-consent-banner { flex-direction: column; gap: 13px; text-align: left; padding: 18px 7px; border-radius: 20px 20px 0 0; font-size: 0.97rem; align-items: flex-start; }
}

/* ================================================== */
/* CREATIVE/ARTISTIC STYLE ADD-ONS */
/* ================================================== */
/* Artistic shadow, brush effects, and playful details */
section, .section {
  position: relative;
  background: none;
}
section::before {
  content: '';
  display: block;
  position: absolute;
  top: -28px; left: -28px;
  width: 70px; height: 60px;
  background: radial-gradient(circle at 40% 40%, #F3C43D 0%, #fffbee 80%);
  opacity: 0.25;
  z-index: 0;
  border-radius: 40% 60% 46% 54% / 51% 50% 50% 49%;
  pointer-events: none;
}
section:nth-child(even)::before {
  top: auto; bottom: -24px; left: auto; right: -24px;
  background: radial-gradient(circle at 60% 60%, #21528B 0%, #fffbee 90%);
  opacity: 0.12;
}
.card, .feature, .testimonial-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.card::after, .feature::after {
  content: '';
  display: block;
  position: absolute;
  right: -20px; bottom: -18px;
  width: 40px; height: 23px;
  background: linear-gradient(60deg,#F3C43D 29%,transparent 100%);
  opacity: 0.24;
  border-radius: 60% 80% 80% 60% / 40% 60% 50% 49%;
  z-index: 1;
  pointer-events: none;
}

h1, h2, h3, h4 {
  text-shadow: 0 2px 12px rgba(33,82,139,0.07), 0 0px 2px #f3c43d22;
}
p::first-letter {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-size: 1.08em;
}

/* Fun artistic underline effect for section headings */
section h2, .section h2 {
  position: relative;
  padding-bottom: 5px;
  z-index: 2;
}
section h2::after, .section h2::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 55px; height: 6px;
  background: var(--color-secondary);
  opacity: 0.5;
  border-radius: 6px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 700px) {
  section h2::after {
    width: 36px; height: 4px;
  }
}

/* Misc artistic motions on hover */
.card:hover, .feature:hover, .testimonial-card:hover {
  transition: box-shadow 0.18s, transform 0.12s;
}
.cta, .cta.primary, .cta.secondary, .cookie-btn {
  box-shadow: 0 2px 16px 0 rgba(243,196,61,0.08);
  transition: box-shadow 0.19s, color 0.13s, background 0.14s;
}
.cta:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* ================================================== */
/* TYPOGRAPHY SCALE & ARTISTIC FONTS */
/* ================================================== */
body, p, li { font-size: 1rem; }
h1 { font-size: 2.35rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.15rem; }

@media (max-width: 610px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.09rem; }
}

h1, h2, h3 { font-family: var(--font-display) !important; letter-spacing: 0.01em; }
p, li { font-family: var(--font-body); }

/* ================================================== */
/* UTILITIES & MICRO-ANIMATIONS */
/* ================================================== */
.fade-in {
  animation: fadeIn 0.77s cubic-bezier(.4,2,.2,1);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Ensure no absolute positioning on layout! Only for decorations. */

/* END OF CSS */
