/* --- RESET & NORMALIZATION --- */
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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #E5E7EB;
  color: #23263A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #B4691B;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #955312;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
}
li {
  margin-bottom: 8px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary: #23263A;
  --primary-dark: #151626;
  --secondary: #FFFFFF;
  --secondary-light: #F6F7FB;
  --accent: #B4691B;
  --accent-dark: #955312;
  --gray: #D1D5DB;
  --radius: 22px;
  --shadow: 0 4px 24px 0 rgba(52, 35, 21, 0.09);
  --transition: 0.27s cubic-bezier(.83,.04,.32,1.2);
}

/* --- LAYOUT CONTAINERS --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(180,105,27,0.18);
  transform: translateY(-6px) scale(1.018);
}
.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;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  border-left: 6px solid var(--accent);
  font-style: italic;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER/NAVIGATION --- */
header {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 16px 0 rgba(35, 38, 58, 0.06);
  position: relative;
  z-index: 1000;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
}
header nav > a img {
  height: 44px;
  width: auto;
  margin-right: 24px;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
header nav ul li {
  display: flex;
  align-items: center;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
  padding: 6px 0;
}
header nav ul li a:hover, header nav ul li a:focus {
  color: var(--accent);
}
.btn-primary {
  background: var(--accent);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: var(--radius);
  margin-left: 32px;
  box-shadow: 0 2px 12px 0 rgba(180, 105, 27, 0.10);
  font-size:1.1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  outline: none;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent-dark);
  box-shadow: 0 6px 22px 0 rgba(180, 105, 27, 0.16);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  font-size:1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--secondary);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 22px;
  z-index: 1201;
  background: var(--accent);
  color: var(--secondary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(180, 105, 27, 0.10);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,38,58,0.97);
  color: var(--secondary);
  z-index: 1300;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 18px 0 0 18px;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 2px 8px 0 rgba(180,105,27,0.11);
  transition: background var(--transition);
}
.mobile-menu-close:hover {
  background: var(--accent-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.26rem;
  letter-spacing: 0.03em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color var(--transition), background var(--transition);
  touch-action: manipulation;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--accent);
  background: rgba(180,105,27,0.09);
  border-radius: 10px;
}

@media (max-width: 1024px) {
  header nav ul {
    gap: 14px;
  }
  .btn-primary {
    margin-left: 14px;
  }
  header nav {
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 90vw;
    padding: 0 10px;
  }
  header nav {
    max-width: 96vw;
    padding: 0 4px;
  }
}
@media (max-width: 900px) {
  header nav ul {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
}

/* --- HERO / HEADINGS / TYPO --- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  line-height: 1.12;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.02em;
  margin-bottom: 12px;
  background: linear-gradient(88deg,var(--accent) 18%, var(--primary) 68%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 14px 0 10px 0;
  letter-spacing: -.01em;
  color: var(--primary);
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
p, ul, ol, blockquote, em, strong {
  font-size: 1.08rem;
  color: #23263A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
  color: var(--accent-dark);
}
em {
  color: var(--accent);
}
blockquote {
  font-size: 1.15rem;
  color: var(--primary-dark);
  border-left: 4px solid var(--accent-dark);
  padding-left: 16px;
  font-style: italic;
  margin: 0 0 8px 0;
  background: var(--secondary-light);
}

/* --- HERO SECTION --- */
.hero {
  padding: 70px 0 24px 0;
  background: linear-gradient(92deg, #FFF 60%, #FAEEDE 100%);
  min-height: 340px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap:20px;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 18px;
  color: var(--primary);
}
.hero .btn-primary {
  margin-left: 0;
}

/* --- FEATURE LIST / UL --- */
.features ul, .services ul, .portfolio-overview ul, .projects ul, .story ul, .legal ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.features ul li {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  min-width: 230px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  border-left: 6px solid var(--accent);
  position: relative;
}
.features ul li:hover {
  box-shadow: 0 8px 36px 0 rgba(180, 105, 27, 0.15);  
  transform: translateY(-3px) scale(1.016);
}
.features ul img {
  height: 34px;
  width: 34px;
  margin-bottom: 14px;
}
.features ul strong {
  margin-bottom: 5px;
  font-size: 1.18rem;
  letter-spacing: -.01em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary-dark);
}
.features ul em {
  font-size: .99rem;
  color: var(--accent-dark);
}
@media (max-width: 768px) {
  .features ul, .services ul, .portfolio-overview ul, .projects ul, .story ul, .legal ul {
    flex-direction: column;
    gap: 16px;
  }
  .features ul li {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff7e9;
  border-radius: var(--radius);
  margin: 0 0 56px 0;
  padding: 40px 0 40px 0;
}
.testimonials h2 {
  color: var(--primary);
  margin-bottom: 18px;
}
.testimonial-card {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 26px 30px;
  border-left: 5px solid var(--accent);
  font-style: italic;
  color: #21212B;
  font-weight: 400;
  max-width: 670px;
  font-size: 1.12rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial-card span {
  margin-left: 8px;
  font-style: normal;
  color: var(--accent-dark);
  font-weight: 500;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding:18px 13px;
    max-width: 100%;
    font-size:1rem;
  }
}

/* --- ABOUT / STORY / TEAM / IMPACT / LEGAL --- */
.about,
.team,
.story,
.impact,
.legal,
.contact {
  background: var(--secondary-light);
  border-radius: var(--radius);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- CTA & SNIPPETS --- */
.cta {
  background: linear-gradient(90deg,#FFF8EE 70%, #F7F7FC 100%);
  border-radius: var(--radius);
  margin-top: 32px;
  padding: 48px 0 40px 0;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta h2 {
  color: var(--primary);
  margin-bottom: 10px;
}
.contact-snippet {
  background: var(--secondary-light);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-top: 26px;
  box-shadow: 0 2px 12px 0 rgba(35,38,58,0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --- CARDS --*/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* --- BUTTON EFFECTS --- */
button, .btn-primary, .btn-secondary {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}

/* --- BLOG POSTS, PORTFOLIO ITEMS --- */
.featured-posts .text-section {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.featured-posts .btn-secondary {
  align-self: flex-start;
  margin-top: 8px;
}

/* --- GENERIC SPACING --- */
main {
  min-height: 60vh;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section {
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .cta {
    padding: 34px 0 30px 0;
  }
  main {
    gap: 20px;
    padding-top: 16px;
  }
}

/* --- FOOTER --- */
footer {
  margin-top: 40px;
  padding: 34px 0 26px 0;
  background: var(--primary-dark);
  color: var(--secondary);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 -4px 12px 0 rgba(35,38,58, 0.09);
}
footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color var(--transition);
}
footer nav a:hover {
  color: var(--secondary);
}
footer p {
  text-align: center;
  font-size: 0.98rem;
  color: var(--secondary);
  opacity: 0.86;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  background: var(--primary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 24px 16px 22px 16px;
  box-shadow: 0 -4px 24px 0 rgba(35,38,58,0.19);
  font-size:1.09rem;
}
.cookie-banner .cookie-text {
  flex: 1 1 260px;
  margin-right: 26px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner .btn-cookie {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 20px;
  border: none;
  font-size: 1.06rem;
  padding: 9px 24px;
  margin: 0 0 2px 0;
  font-weight: 700;
  cursor: pointer;
  background: var(--accent);
  color: var(--secondary);
  transition: background var(--transition), color var(--transition);
}
.cookie-banner .btn-cookie.settings {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--accent);
  margin-left: 0;
}
.cookie-banner .btn-cookie:focus, .cookie-banner .btn-cookie:hover {
  background: var(--accent-dark);
  color: var(--secondary);
}
.cookie-banner .btn-cookie.settings:hover {
  background: var(--accent);
  color: var(--secondary);
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(35,38,58,0.53);
  z-index: 2020;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity .18s;
}
.cookie-modal-backdrop.active {
  display: flex;
}
.cookie-modal {
  min-width: 300px;
  max-width: min(96vw,420px);
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 8px 56px 0 rgba(35,38,58,.2);
  padding: 38px 28px 30px 28px;
  z-index: 2050;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-in .36s cubic-bezier(.86,.21,.44,1.05);
}
@keyframes cookie-modal-in {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  color: var(--accent-dark);
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.08rem;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif; 
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: var(--accent);
  margin-left: 18px;
  cursor: pointer;
}
.cookie-category.essential label {
  font-weight: 600;
  color: var(--accent-dark);
}
.cookie-category.essential input {
  display: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 17px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .btn-cookie {
  border-radius: 16px;
  padding: 8px 20px;
  font-size: 1.04rem;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 22px 7px 13px 7px;
  }
  .cookie-banner {
    flex-direction: column;
    gap:10px;
    padding: 18px 3px 16px 3px;
    font-size: .99rem;
  }
  .cookie-banner .cookie-text {
    margin-right:0;
    margin-bottom: 7px;
  }
}

/* --- MICRO-ANIMATIONS & HOVER EFFECTS --- */
.btn-primary, .btn-secondary, .btn-cookie {
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-primary:hover, .btn-secondary:hover {
  box-shadow: 0 6px 24px 0 rgba(180,105,27,0.22);
  transform: translateY(-2px) scale(1.03);
}
.card, .testimonial-card, .features ul li, .featured-posts .text-section {
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .features ul li:hover, .testimonial-card:hover{
  box-shadow: 0 10px 32px 0 rgba(180,105,27,0.15), 0 2px 12px 0 rgba(35,38,58,0.08);
  transform: translateY(-5px) scale(1.012);
}

@media (max-width: 640px) {
  h1, .hero h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.43rem;
  }
  .cta, .testimonials {
    padding: 20px 3px 16px 3px;
  }
}

/* --- ARTISTIC ACCENTS (CREATIVE ARTISTIC) --- */
/* Artistic colorful border for hero and highlights */
.hero, .cta, .testimonials, .about, .team, .story, .impact, .projects, .legal {
  position: relative;
}
.hero:before,
.cta:before,
.testimonials:before,
.about:before,
.team:before,
.story:before,
.impact:before,
.projects:before,
.legal:before {
  content: '';
  position: absolute;
  left: -14px;
  top: -14px;
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 44px 4px rgba(180,105,27,0.21);
  opacity: 0.21;
  z-index: 0;
}
.hero:after,
.cta:after,
.testimonials:after,
.about:after,
.team:after,
.story:after,
.impact:after,
.projects:after,
.legal:after {
  content: '';
  position: absolute;
  right: -18px; bottom: -18px;
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 45% 25% 50% 45% / 48% 39% 63% 40%;
  opacity: 0.11;
  z-index: 0;
  filter: blur(2px);
  transform: rotate(-16deg);
}
@media (max-width: 767px) {
  .hero:before, .hero:after, .cta:before, .cta:after, .testimonials:before, .testimonials:after,
  .about:before, .about:after, .team:before, .team:after, .story:before, .story:after, .impact:before, .impact:after, .projects:before, .projects:after, .legal:before, .legal:after {
    display: none;
  }
}

/* --- ACCESSIBILITY & FOCUS STATES --- */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .btn-cookie:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- THANK YOU PAGE --- */
.thank_you h1 {
  color: var(--accent);
  text-align: center;
  margin-bottom: 18px;
}
.thank_you p {
  text-align: center;
}
.thank_you ul {
  margin: 0 auto;
  max-width: 500px;
  margin-bottom:16px;
}
.thank_you .btn-primary {
  display: block;
  margin: 30px auto 0 auto;
}

/* --- CUSTOM LIST ARTISTIC BULLETS --- */
ul li::marker, ol li::marker {
  color: var(--accent);
  font-size: 1.2em;
}

/* --- FLEX RESPONSIVE SECTIONS --- */
.text-image-section {
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- HIDE SCROLLBAR ON MOBILE MENU (FOR ARTISTIC FLUID BACKDROP) --- */
.mobile-menu {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(35,38,58,0.40);
}
.mobile-menu::-webkit-scrollbar {
  width: 7px;
  background: rgba(35,38,58,0.09);
}
.mobile-menu::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}


/* --- VISUAL HINTS FOR ARTISTIC FEEL --- */
.card, .testimonial-card, .features ul li {
  border-image: linear-gradient(to left, var(--accent), var(--primary) 70%) 1 100%;
  border-left-width: 5px;
  border-left-style: solid;
}

/* --- SPECIAL HOVER FOR NAVIGATION ON DESKTOP --- */
@media (hover: hover) and (pointer: fine) {
  header nav ul li a::after {
    content: '';
    display: block;
    border-bottom: 2.5px solid var(--accent);
    width: 0%;
    margin: 0 auto;
    transition: width .36s cubic-bezier(.77,.08,.11,1.12);
  }
  header nav ul li a:hover::after, header nav ul li a:focus::after {
    width: 94%;
  }
}

/* --- LOAD ARTISTIC FONT --*/
@media print {
  .hero h1,h1,h2,h3,h4,h5 {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #1a1a1b !important;
  }
}

/* --- END --- */
